You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Add inclusionAI/Ring-1T-FP8 to ChutesModelId type union
- Add model configuration with $1.0000 input and $3.0000 output pricing per million tokens
- Add comprehensive test case for the new model
- Resolves issue #8654
Copy file name to clipboardExpand all lines: packages/types/src/providers/chutes.ts
+20-6Lines changed: 20 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,7 @@ export type ChutesModelId =
30
30
|"Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8"
31
31
|"microsoft/MAI-DS-R1-FP8"
32
32
|"tngtech/DeepSeek-R1T-Chimera"
33
+
|"inclusionAI/Ring-1T-FP8"
33
34
|"zai-org/GLM-4.5-Air"
34
35
|"zai-org/GLM-4.5-FP8"
35
36
|"zai-org/GLM-4.5-turbo"
@@ -87,7 +88,8 @@ export const chutesModels = {
87
88
supportsPromptCache: false,
88
89
inputPrice: 0.23,
89
90
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
+
description:
92
+
"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
93
},
92
94
"deepseek-ai/DeepSeek-V3.1-turbo": {
93
95
maxTokens: 32768,
@@ -96,7 +98,8 @@ export const chutesModels = {
96
98
supportsPromptCache: false,
97
99
inputPrice: 1.0,
98
100
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.",
101
+
description:
102
+
"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
103
},
101
104
"deepseek-ai/DeepSeek-V3.2-Exp": {
102
105
maxTokens: 163840,
@@ -105,7 +108,8 @@ export const chutesModels = {
105
108
supportsPromptCache: false,
106
109
inputPrice: 0.25,
107
110
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.",
111
+
description:
112
+
"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.",
description: "Ring 1T FP8 model optimized for efficient inference with FP8 precision.",
302
+
},
290
303
"zai-org/GLM-4.5-Air": {
291
304
maxTokens: 32768,
292
305
contextWindow: 151329,
@@ -387,8 +400,9 @@ export const chutesModels = {
387
400
contextWindow: 262144,
388
401
supportsImages: true,
389
402
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.",
403
+
inputPrice: 0.16,
404
+
outputPrice: 0.65,
405
+
description:
406
+
"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.",
0 commit comments