Update chutes.ts to add Qwen3 235B A22B Thinking 2507 model (#7578)

Co-authored-by: Matt Rubens <mrubens@users.noreply.github.com>
This commit is contained in:
Mohammad Danaee nia 2025-09-03 16:57:24 +03:30 committed by GitHub
parent 43ff486d42
commit 84bc7035ee
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -30,6 +30,7 @@ export type ChutesModelId =
| "zai-org/GLM-4.5-Air"
| "zai-org/GLM-4.5-FP8"
| "moonshotai/Kimi-K2-Instruct-75k"
| "Qwen/Qwen3-235B-A22B-Thinking-2507"
export const chutesDefaultModelId: ChutesModelId = "deepseek-ai/DeepSeek-R1-0528"
@ -288,4 +289,13 @@ export const chutesModels = {
outputPrice: 0.5926,
description: "Moonshot AI Kimi K2 Instruct model with 75k context window.",
},
"Qwen/Qwen3-235B-A22B-Thinking-2507": {
maxTokens: 32768,
contextWindow: 262144,
supportsImages: false,
supportsPromptCache: false,
inputPrice: 0.077968332,
outputPrice: 0.31202496,
description: "Qwen3 235B A22B Thinking 2507 model with 262K context window.",
},
} as const satisfies Record<string, ModelInfo>