Skip to content

Commit 3ac04b1

Browse files
committed
feat(providers): add Qwen3.8 Max to ClinePass
1 parent f1eb0b8 commit 3ac04b1

2 files changed

Lines changed: 11 additions & 1 deletion

File tree

open-sse/config/providers/registry/clinepass/index.ts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export const clinepassProvider: RegistryEntry = {
3232
"HTTP-Referer": "https://cline.bot",
3333
"X-Title": "Cline",
3434
},
35-
// Offline fallback copied from Cline CLI 3.0.46's generated catalog. Live
35+
// Offline fallback copied from Cline CLI 3.0.53's generated catalog. Live
3636
// discovery replaces it with the authored recommended-models order.
3737
models: [
3838
{
@@ -111,6 +111,15 @@ export const clinepassProvider: RegistryEntry = {
111111
maxInputTokens: 1048576,
112112
maxOutputTokens: 131072,
113113
},
114+
{
115+
id: "cline-pass/qwen3.8-max",
116+
name: "Qwen3.8 Max",
117+
toolCalling: true,
118+
supportsReasoning: true,
119+
contextLength: 1000000,
120+
maxInputTokens: 1000000,
121+
maxOutputTokens: 65536,
122+
},
114123
{
115124
id: "cline-pass/qwen3.7-max",
116125
name: "Qwen3.7 Max",

tests/unit/clinepass-provider.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ test("ClinePass fallback is the official subscription-only catalog", () => {
6868
"cline-pass/kimi-k2.7-code",
6969
"cline-pass/mimo-v2.5-pro",
7070
"cline-pass/mimo-v2.5",
71+
"cline-pass/qwen3.8-max",
7172
"cline-pass/qwen3.7-max",
7273
"cline-pass/qwen3.7-plus",
7374
]);

0 commit comments

Comments
 (0)