From 4c5d79e3cbec363fd0692422ba6bd310927ea7a6 Mon Sep 17 00:00:00 2001 From: Diwakar Date: Sat, 6 Sep 2025 16:30:46 +0700 Subject: [PATCH 1/2] Support Qwen3-Coder-480B-A35B-Instruct on Google Vertex AI --- packages/types/src/providers/vertex.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/packages/types/src/providers/vertex.ts b/packages/types/src/providers/vertex.ts index ee8a56ae2c..5d96af400d 100644 --- a/packages/types/src/providers/vertex.ts +++ b/packages/types/src/providers/vertex.ts @@ -294,6 +294,15 @@ export const vertexModels = { outputPrice: 1.15, description: "Meta Llama 4 Maverick 17B Instruct model, 128K context.", }, + "qwen/qwen3-coder-480b-a35b-instruct-maas": { + maxTokens: 65_536, + contextWindow: 262_144, + supportsImages: false, + supportsPromptCache: false, + inputPrice: 1, + outputPrice: 4, + description: "Qwen 3 Coder 480B Instruct", + }, } as const satisfies Record export const VERTEX_REGIONS = [ @@ -306,6 +315,7 @@ export const VERTEX_REGIONS = [ { value: "us-west2", label: "us-west2" }, { value: "us-west3", label: "us-west3" }, { value: "us-west4", label: "us-west4" }, + { value: "us-south1", label: "us-south1" }, { value: "northamerica-northeast1", label: "northamerica-northeast1" }, { value: "northamerica-northeast2", label: "northamerica-northeast2" }, { value: "southamerica-east1", label: "southamerica-east1" }, From d95de205d5ba398915c524941cec87c06737de09 Mon Sep 17 00:00:00 2001 From: Diwakar Date: Sat, 6 Sep 2025 16:36:12 +0700 Subject: [PATCH 2/2] Update max tokens for Qwen3-Coder-480B-A35B-Instruct on Google Vertex AI --- packages/types/src/providers/vertex.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/types/src/providers/vertex.ts b/packages/types/src/providers/vertex.ts index 5d96af400d..655cc3b37e 100644 --- a/packages/types/src/providers/vertex.ts +++ b/packages/types/src/providers/vertex.ts @@ -295,7 +295,7 @@ export const vertexModels = { description: "Meta Llama 4 Maverick 17B Instruct model, 128K context.", }, "qwen/qwen3-coder-480b-a35b-instruct-maas": { - maxTokens: 65_536, + maxTokens: 32_768, contextWindow: 262_144, supportsImages: false, supportsPromptCache: false,