Skip to content

Commit 7f08528

Browse files
committed
feat: add missing Vertex AI models and us-south1 region
- Added gpt-oss-120b-maas model - Added gpt-oss-20b-maas model - Added deepseek-r1-0528-maas model - Added deepseek-v3.1-maas model - Added qwen3-coder-480b-a35b-instruct-maas model - Added qwen3-235b-a22b-instruct-2507-maas model - Added us-south1 to VERTEX_REGIONS for qwen models support Fixes #7725
1 parent e8deedd commit 7f08528

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed

packages/types/src/providers/vertex.ts

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,60 @@ export const vertexModels = {
294294
outputPrice: 1.15,
295295
description: "Meta Llama 4 Maverick 17B Instruct model, 128K context.",
296296
},
297+
"gpt-oss-120b-maas": {
298+
maxTokens: 8192,
299+
contextWindow: 128_000,
300+
supportsImages: false,
301+
supportsPromptCache: false,
302+
inputPrice: 2.0,
303+
outputPrice: 8.0,
304+
description: "GPT OSS 120B model via Model-as-a-Service.",
305+
},
306+
"gpt-oss-20b-maas": {
307+
maxTokens: 8192,
308+
contextWindow: 128_000,
309+
supportsImages: false,
310+
supportsPromptCache: false,
311+
inputPrice: 0.5,
312+
outputPrice: 2.0,
313+
description: "GPT OSS 20B model via Model-as-a-Service.",
314+
},
315+
"deepseek-r1-0528-maas": {
316+
maxTokens: 8192,
317+
contextWindow: 128_000,
318+
supportsImages: false,
319+
supportsPromptCache: false,
320+
inputPrice: 1.0,
321+
outputPrice: 4.0,
322+
description: "DeepSeek R1 0528 model via Model-as-a-Service.",
323+
},
324+
"deepseek-v3.1-maas": {
325+
maxTokens: 8192,
326+
contextWindow: 128_000,
327+
supportsImages: false,
328+
supportsPromptCache: false,
329+
inputPrice: 0.8,
330+
outputPrice: 3.2,
331+
description: "DeepSeek V3.1 model via Model-as-a-Service.",
332+
},
333+
"qwen3-coder-480b-a35b-instruct-maas": {
334+
maxTokens: 8192,
335+
contextWindow: 128_000,
336+
supportsImages: false,
337+
supportsPromptCache: false,
338+
inputPrice: 3.0,
339+
outputPrice: 12.0,
340+
description: "Qwen3 Coder 480B Instruct model via Model-as-a-Service.",
341+
},
342+
"qwen3-235b-a22b-instruct-2507-maas": {
343+
maxTokens: 8192,
344+
contextWindow: 128_000,
345+
supportsImages: false,
346+
supportsPromptCache: false,
347+
inputPrice: 2.5,
348+
outputPrice: 10.0,
349+
description: "Qwen3 235B Instruct model via Model-as-a-Service.",
350+
},
297351
} as const satisfies Record<string, ModelInfo>
298352

299353
export const VERTEX_REGIONS = [
@@ -306,6 +360,7 @@ export const VERTEX_REGIONS = [
306360
{ value: "us-west2", label: "us-west2" },
307361
{ value: "us-west3", label: "us-west3" },
308362
{ value: "us-west4", label: "us-west4" },
363+
{ value: "us-south1", label: "us-south1" },
309364
{ value: "northamerica-northeast1", label: "northamerica-northeast1" },
310365
{ value: "northamerica-northeast2", label: "northamerica-northeast2" },
311366
{ value: "southamerica-east1", label: "southamerica-east1" },

0 commit comments

Comments
 (0)