Skip to content

Commit 00f20de

Browse files
committed
feat: add qwen3-vl-plus vision model support for Qwen Code CLI
- Added qwen3-vl-plus to QwenCodeModelId type - Added model configuration with vision support (supportsImages: true) - Set 1M context window and 65K max tokens matching other Qwen models - Closes #8993
1 parent 5fb36d9 commit 00f20de

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

packages/types/src/providers/qwen-code.ts

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { ModelInfo } from "../model.js"
22

3-
export type QwenCodeModelId = "qwen3-coder-plus" | "qwen3-coder-flash"
3+
export type QwenCodeModelId = "qwen3-coder-plus" | "qwen3-coder-flash" | "qwen3-vl-plus"
44

55
export const qwenCodeDefaultModelId: QwenCodeModelId = "qwen3-coder-plus"
66

@@ -27,4 +27,15 @@ export const qwenCodeModels = {
2727
cacheReadsPrice: 0,
2828
description: "Qwen3 Coder Flash - Fast coding model with 1M context window optimized for speed",
2929
},
30+
"qwen3-vl-plus": {
31+
maxTokens: 65_536,
32+
contextWindow: 1_000_000,
33+
supportsImages: true,
34+
supportsPromptCache: false,
35+
inputPrice: 0,
36+
outputPrice: 0,
37+
cacheWritesPrice: 0,
38+
cacheReadsPrice: 0,
39+
description: "Qwen3 VL Plus - Vision-Language model with 1M context window for multimodal understanding",
40+
},
3041
} as const satisfies Record<QwenCodeModelId, ModelInfo>

0 commit comments

Comments
 (0)