Skip to content

Commit cf4330e

Browse files
daniel-lxsjqknono
authored andcommitted
feat: add Qwen3 Next 80B A3B models to chutes provider (RooCodeInc#7948)
1 parent 036a343 commit cf4330e

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

packages/types/src/providers/chutes.ts

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ export type ChutesModelId =
3232
| "moonshotai/Kimi-K2-Instruct-75k"
3333
| "moonshotai/Kimi-K2-Instruct-0905"
3434
| "Qwen/Qwen3-235B-A22B-Thinking-2507"
35+
| "Qwen/Qwen3-Next-80B-A3B-Instruct"
36+
| "Qwen/Qwen3-Next-80B-A3B-Thinking"
3537

3638
export const chutesDefaultModelId: ChutesModelId = "deepseek-ai/DeepSeek-R1-0528"
3739

@@ -308,4 +310,24 @@ export const chutesModels = {
308310
outputPrice: 0.31202496,
309311
description: "Qwen3 235B A22B Thinking 2507 model with 262K context window.",
310312
},
313+
"Qwen/Qwen3-Next-80B-A3B-Instruct": {
314+
maxTokens: 32768,
315+
contextWindow: 131072,
316+
supportsImages: false,
317+
supportsPromptCache: false,
318+
inputPrice: 0,
319+
outputPrice: 0,
320+
description:
321+
"Fast, stable instruction-tuned model optimized for complex tasks, RAG, and tool use without thinking traces.",
322+
},
323+
"Qwen/Qwen3-Next-80B-A3B-Thinking": {
324+
maxTokens: 32768,
325+
contextWindow: 131072,
326+
supportsImages: false,
327+
supportsPromptCache: false,
328+
inputPrice: 0,
329+
outputPrice: 0,
330+
description:
331+
"Reasoning-first model with structured thinking traces for multi-step problems, math proofs, and code synthesis.",
332+
},
311333
} as const satisfies Record<string, ModelInfo>

0 commit comments

Comments
 (0)