mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
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
This commit is contained in:
parent
d851586042
commit
d70d0c1627
2 changed files with 61 additions and 0 deletions
11
.changeset/curly-plants-pull.md
Normal file
11
.changeset/curly-plants-pull.md
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
---
|
||||
"roo-cline": patch
|
||||
---
|
||||
|
||||
New models for the Chutes provider:
|
||||
|
||||
- Qwen/Qwen3-235B-A22B
|
||||
- Qwen/Qwen3-32B
|
||||
- Qwen/Qwen3-30B-A3B
|
||||
- Qwen/Qwen3-14B
|
||||
- Qwen/Qwen3-8B
|
||||
|
|
@ -1533,6 +1533,11 @@ export type ChutesModelId =
|
|||
| "deepseek-ai/DeepSeek-V3-Base"
|
||||
| "deepseek-ai/DeepSeek-R1-Zero"
|
||||
| "deepseek-ai/DeepSeek-V3-0324"
|
||||
| "Qwen/Qwen3-235B-A22B"
|
||||
| "Qwen/Qwen3-32B"
|
||||
| "Qwen/Qwen3-30B-A3B"
|
||||
| "Qwen/Qwen3-14B"
|
||||
| "Qwen/Qwen3-8B"
|
||||
| "microsoft/MAI-DS-R1-FP8"
|
||||
| "tngtech/DeepSeek-R1T-Chimera"
|
||||
export const chutesDefaultModelId: ChutesModelId = "deepseek-ai/DeepSeek-R1"
|
||||
|
|
@ -1663,6 +1668,51 @@ export const chutesModels = {
|
|||
outputPrice: 0,
|
||||
description: "DeepSeek V3 (0324) model.",
|
||||
},
|
||||
"Qwen/Qwen3-235B-A22B": {
|
||||
maxTokens: 32768,
|
||||
contextWindow: 40960,
|
||||
supportsImages: false,
|
||||
supportsPromptCache: false,
|
||||
inputPrice: 0,
|
||||
outputPrice: 0,
|
||||
description: "Qwen3 235B A22B model.",
|
||||
},
|
||||
"Qwen/Qwen3-32B": {
|
||||
maxTokens: 32768,
|
||||
contextWindow: 40960,
|
||||
supportsImages: false,
|
||||
supportsPromptCache: false,
|
||||
inputPrice: 0,
|
||||
outputPrice: 0,
|
||||
description: "Qwen3 32B model.",
|
||||
},
|
||||
"Qwen/Qwen3-30B-A3B": {
|
||||
maxTokens: 32768,
|
||||
contextWindow: 40960,
|
||||
supportsImages: false,
|
||||
supportsPromptCache: false,
|
||||
inputPrice: 0,
|
||||
outputPrice: 0,
|
||||
description: "Qwen3 30B A3B model.",
|
||||
},
|
||||
"Qwen/Qwen3-14B": {
|
||||
maxTokens: 32768,
|
||||
contextWindow: 40960,
|
||||
supportsImages: false,
|
||||
supportsPromptCache: false,
|
||||
inputPrice: 0,
|
||||
outputPrice: 0,
|
||||
description: "Qwen3 14B model.",
|
||||
},
|
||||
"Qwen/Qwen3-8B": {
|
||||
maxTokens: 32768,
|
||||
contextWindow: 40960,
|
||||
supportsImages: false,
|
||||
supportsPromptCache: false,
|
||||
inputPrice: 0,
|
||||
outputPrice: 0,
|
||||
description: "Qwen3 8B model.",
|
||||
},
|
||||
"microsoft/MAI-DS-R1-FP8": {
|
||||
maxTokens: 32768,
|
||||
contextWindow: 163840,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue