Skip to content

Commit 8622d93

Browse files
authored
feat: add new DeepSeek and GLM models with detailed descriptions to the Chutes provider (#8467)
1 parent 13534cc commit 8622d93

File tree

1 file changed

+51
-0
lines changed

1 file changed

+51
-0
lines changed

packages/types/src/providers/chutes.ts

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ export type ChutesModelId =
66
| "deepseek-ai/DeepSeek-R1"
77
| "deepseek-ai/DeepSeek-V3"
88
| "deepseek-ai/DeepSeek-V3.1"
9+
| "deepseek-ai/DeepSeek-V3.1-Terminus"
10+
| "deepseek-ai/DeepSeek-V3.1-turbo"
11+
| "deepseek-ai/DeepSeek-V3.2-Exp"
912
| "unsloth/Llama-3.3-70B-Instruct"
1013
| "chutesai/Llama-4-Scout-17B-16E-Instruct"
1114
| "unsloth/Mistral-Nemo-Instruct-2407"
@@ -30,11 +33,13 @@ export type ChutesModelId =
3033
| "zai-org/GLM-4.5-Air"
3134
| "zai-org/GLM-4.5-FP8"
3235
| "zai-org/GLM-4.5-turbo"
36+
| "zai-org/GLM-4.6-FP8"
3337
| "moonshotai/Kimi-K2-Instruct-75k"
3438
| "moonshotai/Kimi-K2-Instruct-0905"
3539
| "Qwen/Qwen3-235B-A22B-Thinking-2507"
3640
| "Qwen/Qwen3-Next-80B-A3B-Instruct"
3741
| "Qwen/Qwen3-Next-80B-A3B-Thinking"
42+
| "Qwen/Qwen3-VL-235B-A22B-Thinking"
3843

3944
export const chutesDefaultModelId: ChutesModelId = "deepseek-ai/DeepSeek-R1-0528"
4045

@@ -75,6 +80,33 @@ export const chutesModels = {
7580
outputPrice: 0,
7681
description: "DeepSeek V3.1 model.",
7782
},
83+
"deepseek-ai/DeepSeek-V3.1-Terminus": {
84+
maxTokens: 163840,
85+
contextWindow: 163840,
86+
supportsImages: false,
87+
supportsPromptCache: false,
88+
inputPrice: 0.23,
89+
outputPrice: 0.9,
90+
description: "DeepSeek‑V3.1‑Terminus is an update to V3.1 that improves language consistency by reducing CN/EN mix‑ups and eliminating random characters, while strengthening agent capabilities with notably better Code Agent and Search Agent performance.",
91+
},
92+
"deepseek-ai/DeepSeek-V3.1-turbo": {
93+
maxTokens: 32768,
94+
contextWindow: 163840,
95+
supportsImages: false,
96+
supportsPromptCache: false,
97+
inputPrice: 1.0,
98+
outputPrice: 3.0,
99+
description: "DeepSeek-V3.1-turbo is an FP8, speculative-decoding turbo variant optimized for ultra-fast single-shot queries (~200 TPS), with outputs close to the originals and solid function calling/reasoning/structured output, priced at $1/M input and $3/M output tokens, using 2× quota per request and not intended for bulk workloads.",
100+
},
101+
"deepseek-ai/DeepSeek-V3.2-Exp": {
102+
maxTokens: 163840,
103+
contextWindow: 163840,
104+
supportsImages: false,
105+
supportsPromptCache: false,
106+
inputPrice: 0.25,
107+
outputPrice: 0.35,
108+
description: "DeepSeek-V3.2-Exp is an experimental LLM that introduces DeepSeek Sparse Attention to improve long‑context training and inference efficiency while maintaining performance comparable to V3.1‑Terminus.",
109+
},
78110
"unsloth/Llama-3.3-70B-Instruct": {
79111
maxTokens: 32768, // From Groq
80112
contextWindow: 131072, // From Groq
@@ -284,6 +316,16 @@ export const chutesModels = {
284316
outputPrice: 3,
285317
description: "GLM-4.5-turbo model with 128K token context window, optimized for fast inference.",
286318
},
319+
"zai-org/GLM-4.6-FP8": {
320+
maxTokens: 32768,
321+
contextWindow: 202752,
322+
supportsImages: false,
323+
supportsPromptCache: false,
324+
inputPrice: 0,
325+
outputPrice: 0,
326+
description:
327+
"GLM-4.6 introduces major upgrades over GLM-4.5, including a longer 200K-token context window for complex tasks, stronger coding performance in benchmarks and real-world tools (such as Claude Code, Cline, Roo Code, and Kilo Code), improved reasoning with tool use during inference, more capable and efficient agent integration, and refined writing that better matches human style, readability, and natural role-play scenarios.",
328+
},
287329
"Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8": {
288330
maxTokens: 32768,
289331
contextWindow: 262144,
@@ -340,4 +382,13 @@ export const chutesModels = {
340382
description:
341383
"Reasoning-first model with structured thinking traces for multi-step problems, math proofs, and code synthesis.",
342384
},
385+
"Qwen/Qwen3-VL-235B-A22B-Thinking": {
386+
maxTokens: 262144,
387+
contextWindow: 262144,
388+
supportsImages: true,
389+
supportsPromptCache: false,
390+
inputPrice: 0.1600,
391+
outputPrice: 0.6500,
392+
description: "Qwen3‑VL‑235B‑A22B‑Thinking is an open‑weight MoE vision‑language model (235B total, ~22B activated) optimized for deliberate multi‑step reasoning with strong text‑image‑video understanding and long‑context capabilities.",
393+
},
343394
} as const satisfies Record<string, ModelInfo>

0 commit comments

Comments
 (0)