-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmodels_config.json
More file actions
96 lines (96 loc) · 2.51 KB
/
models_config.json
File metadata and controls
96 lines (96 loc) · 2.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"providers": {
"blablador": {
"prefix": "B: ",
"note": "Blablador models can be temporarily unavailable; CLAPP may fall back automatically.",
"aliases": [
{
"contains": "GPT-OSS-120b",
"alias": "1-GPT-OSS-120b",
"note": "(Best) An open model released by OpenAI in August 2025"
},
{
"contains": "MiniMax-M2.1",
"alias": "2-MiniMax-M2.1",
"note": "(Current) Our best model as of December 26, 2025"
},
{
"contains": "Apertus",
"alias": "4-Apertus-8B",
"note": "A new swiss model from September 2025"
},
{
"contains": "Ministral-3-14B",
"alias": "3-Ministral-3",
"note": "The latest Ministral from Dec.2.2025"
},
{
"contains": "Qwen3 235",
"alias": "5-Qwen3-235",
"note": "Long-context Qwen3 model from Alibaba"
},
{
"contains": "Qwen3-Coder-30B-A3B-Instruct",
"alias": "6-Qwen3-Coder-30B",
"note": "(Function calls) A code model from August 2025"
},
{
"contains": "Qwen3-Coder-Next",
"alias": "7-Qwen3-Coder-Next",
"note": "(Function calls) Newer Qwen3 Coder from Feb 2026"
},
{
"contains": "Qwen3-Coder",
"alias": "Qwen3-Coder"
},
{
"contains": "GLM-4.7 Quantized",
"alias": "8-GLM-4.7-Quantized",
"note": "(Slow) Quantized - The best model as of January 22nd, 2026"
},
{
"contains": "alias-huge",
"alias": "alias-huge"
},
{
"contains": "alias-large",
"alias": "alias-large"
},
{
"contains": "alias-code",
"alias": "alias-code"
},
{
"contains": "alias-fast",
"alias": "alias-fast"
}
],
"priority_contains": [
"GPT-OSS-120b",
"MiniMax-M2.1",
"alias-huge",
"alias-large",
"alias-code",
"alias-fast"
]
},
"gemini": {
"prefix": "G: ",
"note": "Gemini models show up when GEMINI_API_KEY is set.",
"models": [
"gemini-3-flash-preview",
"gemini-2.5-pro",
"gemini-2.5-flash"
]
},
"openai": {
"prefix": "O: ",
"note": "OpenAI models show up when OPENAI_API_KEY is set.",
"models": [
"gpt-4o-mini",
"gpt-4o",
"gpt-4.1"
]
}
}
}