mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-11 22:51:26 +00:00
Merge b5b93f6c30 into 319b5576c7
This commit is contained in:
commit
25a13118c2
1 changed files with 13 additions and 2 deletions
|
|
@ -1,8 +1,8 @@
|
|||
import type { ModelInfo } from "../model.js"
|
||||
|
||||
export type QwenCodeModelId = "qwen3-coder-plus" | "qwen3-coder-flash"
|
||||
export type QwenCodeModelId = "qwen3-coder-plus" | "qwen3-coder-flash" | "coder-model"
|
||||
|
||||
export const qwenCodeDefaultModelId: QwenCodeModelId = "qwen3-coder-plus"
|
||||
export const qwenCodeDefaultModelId: QwenCodeModelId = "coder-model"
|
||||
|
||||
export const qwenCodeModels = {
|
||||
"qwen3-coder-plus": {
|
||||
|
|
@ -27,4 +27,15 @@ export const qwenCodeModels = {
|
|||
cacheReadsPrice: 0,
|
||||
description: "Qwen3 Coder Flash - Fast coding model with 1M context window optimized for speed",
|
||||
},
|
||||
"coder-model": {
|
||||
maxTokens: 65_536,
|
||||
contextWindow: 1_000_000,
|
||||
supportsImages: true,
|
||||
supportsPromptCache: false,
|
||||
inputPrice: 0,
|
||||
outputPrice: 0,
|
||||
cacheWritesPrice: 0,
|
||||
cacheReadsPrice: 0,
|
||||
description: "Qwen 3.5 Plus - efficient hybrid model with leading coding performance",
|
||||
},
|
||||
} as const satisfies Record<QwenCodeModelId, ModelInfo>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue