Skip to content

Commit d70d0c1

Browse files
authored
Add Qwen3 model series to the Chutes provider (#3710)
* Add Qwen3 model series to the Chutes provider New models for the Chutes provider: - Qwen/Qwen3-235B-A22B - Qwen/Qwen3-32B - Qwen/Qwen3-30B-A3B - Qwen/Qwen3-14B - Qwen/Qwen3-8B * add changeset
1 parent d851586 commit d70d0c1

File tree

2 files changed

+61
-0
lines changed

2 files changed

+61
-0
lines changed

.changeset/curly-plants-pull.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
"roo-cline": patch
3+
---
4+
5+
New models for the Chutes provider:
6+
7+
- Qwen/Qwen3-235B-A22B
8+
- Qwen/Qwen3-32B
9+
- Qwen/Qwen3-30B-A3B
10+
- Qwen/Qwen3-14B
11+
- Qwen/Qwen3-8B

src/shared/api.ts

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1533,6 +1533,11 @@ export type ChutesModelId =
15331533
| "deepseek-ai/DeepSeek-V3-Base"
15341534
| "deepseek-ai/DeepSeek-R1-Zero"
15351535
| "deepseek-ai/DeepSeek-V3-0324"
1536+
| "Qwen/Qwen3-235B-A22B"
1537+
| "Qwen/Qwen3-32B"
1538+
| "Qwen/Qwen3-30B-A3B"
1539+
| "Qwen/Qwen3-14B"
1540+
| "Qwen/Qwen3-8B"
15361541
| "microsoft/MAI-DS-R1-FP8"
15371542
| "tngtech/DeepSeek-R1T-Chimera"
15381543
export const chutesDefaultModelId: ChutesModelId = "deepseek-ai/DeepSeek-R1"
@@ -1663,6 +1668,51 @@ export const chutesModels = {
16631668
outputPrice: 0,
16641669
description: "DeepSeek V3 (0324) model.",
16651670
},
1671+
"Qwen/Qwen3-235B-A22B": {
1672+
maxTokens: 32768,
1673+
contextWindow: 40960,
1674+
supportsImages: false,
1675+
supportsPromptCache: false,
1676+
inputPrice: 0,
1677+
outputPrice: 0,
1678+
description: "Qwen3 235B A22B model.",
1679+
},
1680+
"Qwen/Qwen3-32B": {
1681+
maxTokens: 32768,
1682+
contextWindow: 40960,
1683+
supportsImages: false,
1684+
supportsPromptCache: false,
1685+
inputPrice: 0,
1686+
outputPrice: 0,
1687+
description: "Qwen3 32B model.",
1688+
},
1689+
"Qwen/Qwen3-30B-A3B": {
1690+
maxTokens: 32768,
1691+
contextWindow: 40960,
1692+
supportsImages: false,
1693+
supportsPromptCache: false,
1694+
inputPrice: 0,
1695+
outputPrice: 0,
1696+
description: "Qwen3 30B A3B model.",
1697+
},
1698+
"Qwen/Qwen3-14B": {
1699+
maxTokens: 32768,
1700+
contextWindow: 40960,
1701+
supportsImages: false,
1702+
supportsPromptCache: false,
1703+
inputPrice: 0,
1704+
outputPrice: 0,
1705+
description: "Qwen3 14B model.",
1706+
},
1707+
"Qwen/Qwen3-8B": {
1708+
maxTokens: 32768,
1709+
contextWindow: 40960,
1710+
supportsImages: false,
1711+
supportsPromptCache: false,
1712+
inputPrice: 0,
1713+
outputPrice: 0,
1714+
description: "Qwen3 8B model.",
1715+
},
16661716
"microsoft/MAI-DS-R1-FP8": {
16671717
maxTokens: 32768,
16681718
contextWindow: 163840,

0 commit comments

Comments
 (0)