From d09689bf9bf2782e8cbff72fbba320959ce75d5f Mon Sep 17 00:00:00 2001 From: Daniel <57051444+daniel-lxs@users.noreply.github.com> Date: Sat, 13 Sep 2025 22:07:57 -0500 Subject: [PATCH] feat: add Qwen3 Next 80B A3B models to chutes provider (#7948) --- packages/types/src/providers/chutes.ts | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/packages/types/src/providers/chutes.ts b/packages/types/src/providers/chutes.ts index 7060cdad82..15dea58263 100644 --- a/packages/types/src/providers/chutes.ts +++ b/packages/types/src/providers/chutes.ts @@ -32,6 +32,8 @@ export type ChutesModelId = | "moonshotai/Kimi-K2-Instruct-75k" | "moonshotai/Kimi-K2-Instruct-0905" | "Qwen/Qwen3-235B-A22B-Thinking-2507" + | "Qwen/Qwen3-Next-80B-A3B-Instruct" + | "Qwen/Qwen3-Next-80B-A3B-Thinking" export const chutesDefaultModelId: ChutesModelId = "deepseek-ai/DeepSeek-R1-0528" @@ -308,4 +310,24 @@ export const chutesModels = { outputPrice: 0.31202496, description: "Qwen3 235B A22B Thinking 2507 model with 262K context window.", }, + "Qwen/Qwen3-Next-80B-A3B-Instruct": { + maxTokens: 32768, + contextWindow: 131072, + supportsImages: false, + supportsPromptCache: false, + inputPrice: 0, + outputPrice: 0, + description: + "Fast, stable instruction-tuned model optimized for complex tasks, RAG, and tool use without thinking traces.", + }, + "Qwen/Qwen3-Next-80B-A3B-Thinking": { + maxTokens: 32768, + contextWindow: 131072, + supportsImages: false, + supportsPromptCache: false, + inputPrice: 0, + outputPrice: 0, + description: + "Reasoning-first model with structured thinking traces for multi-step problems, math proofs, and code synthesis.", + }, } as const satisfies Record