pi-hypercharm-provider 1.1.4 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.pi/fabric/mesh/state.json +106 -0
- package/AGENTS.md +2 -1
- package/README.md +81 -50
- package/deprecated-models.json +34 -1
- package/index.ts +951 -291
- package/models.json +436 -125
- package/package.json +9 -2
- package/patch.json +1 -155
- package/pnpm-workspace.yaml +15 -0
- package/scripts/update-models.js +181 -101
- package/status.ts +305 -0
- package/tests/status.smoke.ts +146 -0
- package/tsconfig.json +15 -0
package/models.json
CHANGED
|
@@ -3,167 +3,263 @@
|
|
|
3
3
|
"id": "deepseek-v4-flash",
|
|
4
4
|
"name": "DeepSeek V4 Flash",
|
|
5
5
|
"reasoning": true,
|
|
6
|
+
"thinkingLevelMap": {
|
|
7
|
+
"off": null,
|
|
8
|
+
"minimal": null,
|
|
9
|
+
"low": null,
|
|
10
|
+
"medium": null,
|
|
11
|
+
"high": "high",
|
|
12
|
+
"xhigh": "xhigh",
|
|
13
|
+
"max": null
|
|
14
|
+
},
|
|
6
15
|
"input": [
|
|
7
16
|
"text"
|
|
8
17
|
],
|
|
9
18
|
"cost": {
|
|
10
19
|
"input": 0.2,
|
|
11
20
|
"output": 0.4,
|
|
12
|
-
"cacheRead": 0
|
|
13
|
-
"cacheWrite": 0
|
|
21
|
+
"cacheRead": 0,
|
|
22
|
+
"cacheWrite": 0
|
|
14
23
|
},
|
|
15
24
|
"contextWindow": 1000000,
|
|
16
25
|
"maxTokens": 384000,
|
|
26
|
+
"compat": {
|
|
27
|
+
"supportsStore": false,
|
|
28
|
+
"supportsReasoningEffort": true,
|
|
29
|
+
"thinkingFormat": "deepseek",
|
|
30
|
+
"maxTokensField": "max_tokens"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"id": "deepseek-v4-flash-0731",
|
|
35
|
+
"name": "DeepSeek V4 Flash 0731",
|
|
36
|
+
"reasoning": true,
|
|
17
37
|
"thinkingLevelMap": {
|
|
38
|
+
"off": "none",
|
|
18
39
|
"minimal": null,
|
|
19
40
|
"low": null,
|
|
20
41
|
"medium": null,
|
|
21
42
|
"high": "high",
|
|
22
|
-
"
|
|
43
|
+
"xhigh": "xhigh",
|
|
44
|
+
"max": null
|
|
45
|
+
},
|
|
46
|
+
"input": [
|
|
47
|
+
"text"
|
|
48
|
+
],
|
|
49
|
+
"cost": {
|
|
50
|
+
"input": 0.152432,
|
|
51
|
+
"output": 0.304864,
|
|
52
|
+
"cacheRead": 0,
|
|
53
|
+
"cacheWrite": 0
|
|
23
54
|
},
|
|
55
|
+
"contextWindow": 1048576,
|
|
56
|
+
"maxTokens": 384000,
|
|
24
57
|
"compat": {
|
|
25
|
-
"thinkingFormat": "deepseek",
|
|
26
|
-
"maxTokensField": "max_tokens",
|
|
27
|
-
"supportsDeveloperRole": true,
|
|
28
58
|
"supportsStore": false,
|
|
29
59
|
"supportsReasoningEffort": true,
|
|
30
|
-
"
|
|
60
|
+
"thinkingFormat": "deepseek",
|
|
61
|
+
"maxTokensField": "max_tokens"
|
|
31
62
|
}
|
|
32
63
|
},
|
|
33
64
|
{
|
|
34
65
|
"id": "deepseek-v4-pro",
|
|
35
66
|
"name": "DeepSeek V4 Pro",
|
|
36
67
|
"reasoning": true,
|
|
68
|
+
"thinkingLevelMap": {
|
|
69
|
+
"off": null,
|
|
70
|
+
"minimal": null,
|
|
71
|
+
"low": null,
|
|
72
|
+
"medium": null,
|
|
73
|
+
"high": "high",
|
|
74
|
+
"xhigh": "xhigh",
|
|
75
|
+
"max": null
|
|
76
|
+
},
|
|
37
77
|
"input": [
|
|
38
78
|
"text"
|
|
39
79
|
],
|
|
40
80
|
"cost": {
|
|
41
81
|
"input": 2.4,
|
|
42
82
|
"output": 4.8,
|
|
43
|
-
"cacheRead": 0
|
|
44
|
-
"cacheWrite": 0
|
|
83
|
+
"cacheRead": 0,
|
|
84
|
+
"cacheWrite": 0
|
|
45
85
|
},
|
|
46
86
|
"contextWindow": 1000000,
|
|
47
87
|
"maxTokens": 384000,
|
|
48
|
-
"thinkingLevelMap": {
|
|
49
|
-
"minimal": null,
|
|
50
|
-
"low": null,
|
|
51
|
-
"medium": null,
|
|
52
|
-
"high": "high",
|
|
53
|
-
"max": "max"
|
|
54
|
-
},
|
|
55
88
|
"compat": {
|
|
56
|
-
"thinkingFormat": "deepseek",
|
|
57
|
-
"maxTokensField": "max_tokens",
|
|
58
|
-
"supportsDeveloperRole": true,
|
|
59
89
|
"supportsStore": false,
|
|
60
90
|
"supportsReasoningEffort": true,
|
|
61
|
-
"
|
|
91
|
+
"thinkingFormat": "deepseek",
|
|
92
|
+
"maxTokensField": "max_tokens"
|
|
62
93
|
}
|
|
63
94
|
},
|
|
64
95
|
{
|
|
65
96
|
"id": "gemma-4-26b-a4b-it",
|
|
66
97
|
"name": "Gemma 4 26B A4B",
|
|
67
98
|
"reasoning": true,
|
|
99
|
+
"thinkingLevelMap": {
|
|
100
|
+
"off": "off",
|
|
101
|
+
"minimal": null,
|
|
102
|
+
"low": null,
|
|
103
|
+
"medium": null,
|
|
104
|
+
"high": null,
|
|
105
|
+
"xhigh": null,
|
|
106
|
+
"max": "max"
|
|
107
|
+
},
|
|
68
108
|
"input": [
|
|
69
|
-
"text"
|
|
70
|
-
"image"
|
|
109
|
+
"text"
|
|
71
110
|
],
|
|
72
111
|
"cost": {
|
|
73
|
-
"input": 0.
|
|
74
|
-
"output": 0.
|
|
75
|
-
"cacheRead": 0.
|
|
112
|
+
"input": 0.124,
|
|
113
|
+
"output": 0.42,
|
|
114
|
+
"cacheRead": 0.062,
|
|
76
115
|
"cacheWrite": 0
|
|
77
116
|
},
|
|
78
117
|
"contextWindow": 256000,
|
|
79
|
-
"maxTokens": 25600
|
|
118
|
+
"maxTokens": 25600,
|
|
119
|
+
"compat": {
|
|
120
|
+
"supportsStore": false,
|
|
121
|
+
"supportsReasoningEffort": false,
|
|
122
|
+
"thinkingFormat": "deepseek",
|
|
123
|
+
"maxTokensField": "max_tokens"
|
|
124
|
+
}
|
|
80
125
|
},
|
|
81
126
|
{
|
|
82
127
|
"id": "glm-5.1",
|
|
83
|
-
"name": "GLM
|
|
128
|
+
"name": "GLM-5.1",
|
|
84
129
|
"reasoning": true,
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
"cacheWrite": 0.26
|
|
130
|
+
"thinkingLevelMap": {
|
|
131
|
+
"off": null,
|
|
132
|
+
"minimal": null,
|
|
133
|
+
"low": null,
|
|
134
|
+
"medium": null,
|
|
135
|
+
"high": "high",
|
|
136
|
+
"xhigh": null,
|
|
137
|
+
"max": "max"
|
|
94
138
|
},
|
|
95
|
-
"contextWindow": 202800,
|
|
96
|
-
"maxTokens": 131072
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
"id": "glm-5",
|
|
100
|
-
"name": "GLM-5",
|
|
101
|
-
"reasoning": true,
|
|
102
139
|
"input": [
|
|
103
140
|
"text"
|
|
104
141
|
],
|
|
105
142
|
"cost": {
|
|
106
|
-
"input":
|
|
107
|
-
"output":
|
|
108
|
-
"cacheRead": 0
|
|
143
|
+
"input": 1.52432,
|
|
144
|
+
"output": 4.79072,
|
|
145
|
+
"cacheRead": 0,
|
|
109
146
|
"cacheWrite": 0
|
|
110
147
|
},
|
|
111
|
-
"contextWindow":
|
|
112
|
-
"maxTokens":
|
|
148
|
+
"contextWindow": 202800,
|
|
149
|
+
"maxTokens": 131072,
|
|
150
|
+
"compat": {
|
|
151
|
+
"supportsStore": false,
|
|
152
|
+
"supportsReasoningEffort": true,
|
|
153
|
+
"thinkingFormat": "deepseek",
|
|
154
|
+
"maxTokensField": "max_tokens"
|
|
155
|
+
}
|
|
113
156
|
},
|
|
114
157
|
{
|
|
115
158
|
"id": "glm-5.2",
|
|
116
159
|
"name": "GLM-5.2",
|
|
117
160
|
"reasoning": true,
|
|
161
|
+
"thinkingLevelMap": {
|
|
162
|
+
"off": null,
|
|
163
|
+
"minimal": null,
|
|
164
|
+
"low": null,
|
|
165
|
+
"medium": null,
|
|
166
|
+
"high": "high",
|
|
167
|
+
"xhigh": "xhigh",
|
|
168
|
+
"max": null
|
|
169
|
+
},
|
|
118
170
|
"input": [
|
|
119
171
|
"text"
|
|
120
172
|
],
|
|
121
173
|
"cost": {
|
|
122
174
|
"input": 1.4,
|
|
123
175
|
"output": 4.4,
|
|
124
|
-
"cacheRead": 0
|
|
125
|
-
"cacheWrite": 0
|
|
176
|
+
"cacheRead": 0,
|
|
177
|
+
"cacheWrite": 0
|
|
126
178
|
},
|
|
127
179
|
"contextWindow": 1000000,
|
|
128
|
-
"maxTokens": 128000
|
|
180
|
+
"maxTokens": 128000,
|
|
181
|
+
"compat": {
|
|
182
|
+
"supportsStore": false,
|
|
183
|
+
"supportsReasoningEffort": true,
|
|
184
|
+
"thinkingFormat": "deepseek",
|
|
185
|
+
"maxTokensField": "max_tokens"
|
|
186
|
+
}
|
|
129
187
|
},
|
|
130
188
|
{
|
|
131
189
|
"id": "gpt-oss-120b",
|
|
132
|
-
"name": "
|
|
190
|
+
"name": "gpt-oss-120b",
|
|
133
191
|
"reasoning": true,
|
|
192
|
+
"thinkingLevelMap": {
|
|
193
|
+
"off": null,
|
|
194
|
+
"minimal": null,
|
|
195
|
+
"low": "low",
|
|
196
|
+
"medium": "medium",
|
|
197
|
+
"high": "high",
|
|
198
|
+
"xhigh": null,
|
|
199
|
+
"max": null
|
|
200
|
+
},
|
|
134
201
|
"input": [
|
|
135
202
|
"text"
|
|
136
203
|
],
|
|
137
204
|
"cost": {
|
|
138
|
-
"input": 0.
|
|
139
|
-
"output": 0.
|
|
140
|
-
"cacheRead": 0.
|
|
205
|
+
"input": 0.178,
|
|
206
|
+
"output": 0.71,
|
|
207
|
+
"cacheRead": 0.089,
|
|
141
208
|
"cacheWrite": 0
|
|
142
209
|
},
|
|
143
210
|
"contextWindow": 131072,
|
|
144
|
-
"maxTokens": 13107
|
|
211
|
+
"maxTokens": 13107,
|
|
212
|
+
"compat": {
|
|
213
|
+
"supportsStore": false,
|
|
214
|
+
"supportsReasoningEffort": true,
|
|
215
|
+
"thinkingFormat": "deepseek",
|
|
216
|
+
"maxTokensField": "max_tokens"
|
|
217
|
+
}
|
|
145
218
|
},
|
|
146
219
|
{
|
|
147
220
|
"id": "kimi-k2.5",
|
|
148
221
|
"name": "Kimi K2.5",
|
|
149
222
|
"reasoning": true,
|
|
223
|
+
"thinkingLevelMap": {
|
|
224
|
+
"off": "off",
|
|
225
|
+
"minimal": null,
|
|
226
|
+
"low": null,
|
|
227
|
+
"medium": null,
|
|
228
|
+
"high": null,
|
|
229
|
+
"xhigh": null,
|
|
230
|
+
"max": "max"
|
|
231
|
+
},
|
|
150
232
|
"input": [
|
|
151
|
-
"text"
|
|
152
|
-
"image"
|
|
233
|
+
"text"
|
|
153
234
|
],
|
|
154
235
|
"cost": {
|
|
155
|
-
"input": 0.
|
|
156
|
-
"output": 2.
|
|
157
|
-
"cacheRead": 0.
|
|
236
|
+
"input": 0.55,
|
|
237
|
+
"output": 2.89,
|
|
238
|
+
"cacheRead": 0.275,
|
|
158
239
|
"cacheWrite": 0
|
|
159
240
|
},
|
|
160
241
|
"contextWindow": 262144,
|
|
161
|
-
"maxTokens": 26214
|
|
242
|
+
"maxTokens": 26214,
|
|
243
|
+
"compat": {
|
|
244
|
+
"supportsStore": false,
|
|
245
|
+
"supportsReasoningEffort": false,
|
|
246
|
+
"thinkingFormat": "deepseek",
|
|
247
|
+
"maxTokensField": "max_tokens"
|
|
248
|
+
}
|
|
162
249
|
},
|
|
163
250
|
{
|
|
164
251
|
"id": "kimi-k2.6",
|
|
165
252
|
"name": "Kimi K2.6",
|
|
166
253
|
"reasoning": true,
|
|
254
|
+
"thinkingLevelMap": {
|
|
255
|
+
"off": null,
|
|
256
|
+
"minimal": null,
|
|
257
|
+
"low": "low",
|
|
258
|
+
"medium": "medium",
|
|
259
|
+
"high": "high",
|
|
260
|
+
"xhigh": null,
|
|
261
|
+
"max": null
|
|
262
|
+
},
|
|
167
263
|
"input": [
|
|
168
264
|
"text",
|
|
169
265
|
"image"
|
|
@@ -172,47 +268,85 @@
|
|
|
172
268
|
"input": 0.95,
|
|
173
269
|
"output": 4,
|
|
174
270
|
"cacheRead": 0.16,
|
|
175
|
-
"cacheWrite": 0
|
|
271
|
+
"cacheWrite": 0
|
|
176
272
|
},
|
|
177
273
|
"contextWindow": 262000,
|
|
178
|
-
"maxTokens": 262000
|
|
274
|
+
"maxTokens": 262000,
|
|
275
|
+
"compat": {
|
|
276
|
+
"supportsStore": false,
|
|
277
|
+
"supportsReasoningEffort": true,
|
|
278
|
+
"thinkingFormat": "deepseek",
|
|
279
|
+
"maxTokensField": "max_tokens"
|
|
280
|
+
}
|
|
179
281
|
},
|
|
180
282
|
{
|
|
181
283
|
"id": "kimi-k2.7-code",
|
|
182
284
|
"name": "Kimi K2.7 Code",
|
|
183
|
-
"reasoning":
|
|
285
|
+
"reasoning": false,
|
|
184
286
|
"input": [
|
|
185
|
-
"text"
|
|
287
|
+
"text",
|
|
288
|
+
"image"
|
|
186
289
|
],
|
|
187
290
|
"cost": {
|
|
188
291
|
"input": 0.95,
|
|
189
292
|
"output": 4,
|
|
190
|
-
"cacheRead": 0
|
|
191
|
-
"cacheWrite": 0
|
|
293
|
+
"cacheRead": 0,
|
|
294
|
+
"cacheWrite": 0
|
|
192
295
|
},
|
|
193
296
|
"contextWindow": 256000,
|
|
194
|
-
"maxTokens": 16000
|
|
297
|
+
"maxTokens": 16000,
|
|
298
|
+
"compat": {
|
|
299
|
+
"supportsStore": false,
|
|
300
|
+
"supportsReasoningEffort": false,
|
|
301
|
+
"thinkingFormat": "deepseek",
|
|
302
|
+
"maxTokensField": "max_tokens"
|
|
303
|
+
}
|
|
195
304
|
},
|
|
196
305
|
{
|
|
197
306
|
"id": "kimi-k3",
|
|
198
307
|
"name": "Kimi K3",
|
|
199
|
-
"reasoning":
|
|
308
|
+
"reasoning": true,
|
|
309
|
+
"thinkingLevelMap": {
|
|
310
|
+
"off": null,
|
|
311
|
+
"minimal": null,
|
|
312
|
+
"low": "low",
|
|
313
|
+
"medium": null,
|
|
314
|
+
"high": "high",
|
|
315
|
+
"xhigh": null,
|
|
316
|
+
"max": "max"
|
|
317
|
+
},
|
|
200
318
|
"input": [
|
|
201
|
-
"text"
|
|
319
|
+
"text",
|
|
320
|
+
"image"
|
|
202
321
|
],
|
|
203
322
|
"cost": {
|
|
204
|
-
"input":
|
|
205
|
-
"output":
|
|
323
|
+
"input": 3.2664,
|
|
324
|
+
"output": 16.332,
|
|
206
325
|
"cacheRead": 0,
|
|
207
326
|
"cacheWrite": 0
|
|
208
327
|
},
|
|
209
328
|
"contextWindow": 1048576,
|
|
210
|
-
"maxTokens": 131072
|
|
329
|
+
"maxTokens": 131072,
|
|
330
|
+
"compat": {
|
|
331
|
+
"supportsStore": false,
|
|
332
|
+
"supportsReasoningEffort": true,
|
|
333
|
+
"thinkingFormat": "deepseek",
|
|
334
|
+
"maxTokensField": "max_tokens"
|
|
335
|
+
}
|
|
211
336
|
},
|
|
212
337
|
{
|
|
213
338
|
"id": "llama-3.3-70b-instruct",
|
|
214
339
|
"name": "Llama 3.3 70B Instruct",
|
|
215
|
-
"reasoning":
|
|
340
|
+
"reasoning": true,
|
|
341
|
+
"thinkingLevelMap": {
|
|
342
|
+
"off": "off",
|
|
343
|
+
"minimal": null,
|
|
344
|
+
"low": null,
|
|
345
|
+
"medium": null,
|
|
346
|
+
"high": null,
|
|
347
|
+
"xhigh": null,
|
|
348
|
+
"max": "max"
|
|
349
|
+
},
|
|
216
350
|
"input": [
|
|
217
351
|
"text"
|
|
218
352
|
],
|
|
@@ -223,76 +357,125 @@
|
|
|
223
357
|
"cacheWrite": 0
|
|
224
358
|
},
|
|
225
359
|
"contextWindow": 128000,
|
|
226
|
-
"maxTokens": 12800
|
|
360
|
+
"maxTokens": 12800,
|
|
361
|
+
"compat": {
|
|
362
|
+
"supportsStore": false,
|
|
363
|
+
"supportsReasoningEffort": false,
|
|
364
|
+
"thinkingFormat": "deepseek",
|
|
365
|
+
"maxTokensField": "max_tokens"
|
|
366
|
+
}
|
|
227
367
|
},
|
|
228
368
|
{
|
|
229
369
|
"id": "llama-4-maverick-17b-128e-instruct-fp8",
|
|
230
|
-
"name": "Llama 4 Maverick 17B 128E FP8",
|
|
231
|
-
"reasoning":
|
|
370
|
+
"name": "Llama 4 Maverick 17B 128E Instruct FP8",
|
|
371
|
+
"reasoning": true,
|
|
372
|
+
"thinkingLevelMap": {
|
|
373
|
+
"off": "off",
|
|
374
|
+
"minimal": null,
|
|
375
|
+
"low": null,
|
|
376
|
+
"medium": null,
|
|
377
|
+
"high": null,
|
|
378
|
+
"xhigh": null,
|
|
379
|
+
"max": "max"
|
|
380
|
+
},
|
|
232
381
|
"input": [
|
|
233
382
|
"text"
|
|
234
383
|
],
|
|
235
384
|
"cost": {
|
|
236
|
-
"input": 0.
|
|
237
|
-
"output": 0.
|
|
238
|
-
"cacheRead": 0.
|
|
385
|
+
"input": 0.274,
|
|
386
|
+
"output": 0.8992,
|
|
387
|
+
"cacheRead": 0.137,
|
|
239
388
|
"cacheWrite": 0
|
|
240
389
|
},
|
|
241
390
|
"contextWindow": 430000,
|
|
242
|
-
"maxTokens": 43000
|
|
391
|
+
"maxTokens": 43000,
|
|
392
|
+
"compat": {
|
|
393
|
+
"supportsStore": false,
|
|
394
|
+
"supportsReasoningEffort": false,
|
|
395
|
+
"thinkingFormat": "deepseek",
|
|
396
|
+
"maxTokensField": "max_tokens"
|
|
397
|
+
}
|
|
243
398
|
},
|
|
244
399
|
{
|
|
245
400
|
"id": "minimax-m2.7",
|
|
246
401
|
"name": "MiniMax M2.7",
|
|
247
|
-
"reasoning":
|
|
402
|
+
"reasoning": false,
|
|
248
403
|
"input": [
|
|
249
404
|
"text"
|
|
250
405
|
],
|
|
251
406
|
"cost": {
|
|
252
|
-
"input": 0.
|
|
253
|
-
"output": 1.
|
|
254
|
-
"cacheRead": 0.
|
|
255
|
-
"cacheWrite": 0
|
|
407
|
+
"input": 0.436,
|
|
408
|
+
"output": 1.72,
|
|
409
|
+
"cacheRead": 0.218,
|
|
410
|
+
"cacheWrite": 0
|
|
256
411
|
},
|
|
257
|
-
"contextWindow":
|
|
258
|
-
"maxTokens":
|
|
412
|
+
"contextWindow": 262100,
|
|
413
|
+
"maxTokens": 6553,
|
|
414
|
+
"compat": {
|
|
415
|
+
"supportsStore": false,
|
|
416
|
+
"supportsReasoningEffort": false,
|
|
417
|
+
"thinkingFormat": "deepseek",
|
|
418
|
+
"maxTokensField": "max_tokens"
|
|
419
|
+
}
|
|
259
420
|
},
|
|
260
421
|
{
|
|
261
422
|
"id": "minimax-m3",
|
|
262
423
|
"name": "MiniMax M3",
|
|
263
|
-
"reasoning":
|
|
424
|
+
"reasoning": true,
|
|
425
|
+
"thinkingLevelMap": {
|
|
426
|
+
"off": null,
|
|
427
|
+
"minimal": null,
|
|
428
|
+
"low": "low",
|
|
429
|
+
"medium": "medium",
|
|
430
|
+
"high": "high",
|
|
431
|
+
"xhigh": null,
|
|
432
|
+
"max": null
|
|
433
|
+
},
|
|
264
434
|
"input": [
|
|
265
|
-
"text"
|
|
435
|
+
"text",
|
|
436
|
+
"image"
|
|
266
437
|
],
|
|
267
438
|
"cost": {
|
|
268
|
-
"input": 0,
|
|
269
|
-
"output":
|
|
439
|
+
"input": 0.32664,
|
|
440
|
+
"output": 1.30656,
|
|
270
441
|
"cacheRead": 0,
|
|
271
442
|
"cacheWrite": 0
|
|
272
443
|
},
|
|
273
444
|
"contextWindow": 512000,
|
|
274
|
-
"maxTokens": 512000
|
|
445
|
+
"maxTokens": 512000,
|
|
446
|
+
"compat": {
|
|
447
|
+
"supportsStore": false,
|
|
448
|
+
"supportsReasoningEffort": true,
|
|
449
|
+
"thinkingFormat": "deepseek",
|
|
450
|
+
"maxTokensField": "max_tokens"
|
|
451
|
+
}
|
|
275
452
|
},
|
|
276
453
|
{
|
|
277
454
|
"id": "qwen3-coder-480b-a35b-instruct-int4-mixed-ar",
|
|
278
|
-
"name": "Qwen3 Coder 480B A35B INT4",
|
|
279
|
-
"reasoning":
|
|
455
|
+
"name": "Qwen3 Coder 480B A35B Instruct INT4 Mixed AR",
|
|
456
|
+
"reasoning": false,
|
|
280
457
|
"input": [
|
|
281
458
|
"text"
|
|
282
459
|
],
|
|
283
460
|
"cost": {
|
|
284
|
-
"input": 0.
|
|
285
|
-
"output": 2.
|
|
286
|
-
"cacheRead": 0.
|
|
461
|
+
"input": 0.569,
|
|
462
|
+
"output": 2.135,
|
|
463
|
+
"cacheRead": 0.2845,
|
|
287
464
|
"cacheWrite": 0
|
|
288
465
|
},
|
|
289
466
|
"contextWindow": 106000,
|
|
290
|
-
"maxTokens": 10600
|
|
467
|
+
"maxTokens": 10600,
|
|
468
|
+
"compat": {
|
|
469
|
+
"supportsStore": false,
|
|
470
|
+
"supportsReasoningEffort": false,
|
|
471
|
+
"thinkingFormat": "deepseek",
|
|
472
|
+
"maxTokensField": "max_tokens"
|
|
473
|
+
}
|
|
291
474
|
},
|
|
292
475
|
{
|
|
293
476
|
"id": "qwen3-next-80b-a3b-instruct",
|
|
294
|
-
"name": "Qwen3 Next 80B A3B",
|
|
295
|
-
"reasoning":
|
|
477
|
+
"name": "Qwen3 Next 80B A3B Instruct",
|
|
478
|
+
"reasoning": false,
|
|
296
479
|
"input": [
|
|
297
480
|
"text"
|
|
298
481
|
],
|
|
@@ -303,12 +486,27 @@
|
|
|
303
486
|
"cacheWrite": 0
|
|
304
487
|
},
|
|
305
488
|
"contextWindow": 262144,
|
|
306
|
-
"maxTokens": 26214
|
|
489
|
+
"maxTokens": 26214,
|
|
490
|
+
"compat": {
|
|
491
|
+
"supportsStore": false,
|
|
492
|
+
"supportsReasoningEffort": false,
|
|
493
|
+
"thinkingFormat": "deepseek",
|
|
494
|
+
"maxTokensField": "max_tokens"
|
|
495
|
+
}
|
|
307
496
|
},
|
|
308
497
|
{
|
|
309
498
|
"id": "qwen3.6-flash",
|
|
310
499
|
"name": "Qwen3.6-Flash",
|
|
311
500
|
"reasoning": true,
|
|
501
|
+
"thinkingLevelMap": {
|
|
502
|
+
"off": "off",
|
|
503
|
+
"minimal": null,
|
|
504
|
+
"low": null,
|
|
505
|
+
"medium": null,
|
|
506
|
+
"high": null,
|
|
507
|
+
"xhigh": null,
|
|
508
|
+
"max": "max"
|
|
509
|
+
},
|
|
312
510
|
"input": [
|
|
313
511
|
"text",
|
|
314
512
|
"image"
|
|
@@ -317,32 +515,61 @@
|
|
|
317
515
|
"input": 1,
|
|
318
516
|
"output": 4,
|
|
319
517
|
"cacheRead": 1.25,
|
|
320
|
-
"cacheWrite": 0
|
|
518
|
+
"cacheWrite": 0
|
|
321
519
|
},
|
|
322
520
|
"contextWindow": 1000000,
|
|
323
|
-
"maxTokens": 64000
|
|
521
|
+
"maxTokens": 64000,
|
|
522
|
+
"compat": {
|
|
523
|
+
"supportsStore": false,
|
|
524
|
+
"supportsReasoningEffort": false,
|
|
525
|
+
"thinkingFormat": "deepseek",
|
|
526
|
+
"maxTokensField": "max_tokens"
|
|
527
|
+
}
|
|
324
528
|
},
|
|
325
529
|
{
|
|
326
530
|
"id": "qwen3.6-max",
|
|
327
531
|
"name": "Qwen3.6-Max",
|
|
328
532
|
"reasoning": true,
|
|
533
|
+
"thinkingLevelMap": {
|
|
534
|
+
"off": "off",
|
|
535
|
+
"minimal": null,
|
|
536
|
+
"low": null,
|
|
537
|
+
"medium": null,
|
|
538
|
+
"high": null,
|
|
539
|
+
"xhigh": null,
|
|
540
|
+
"max": "max"
|
|
541
|
+
},
|
|
329
542
|
"input": [
|
|
330
|
-
"text"
|
|
331
|
-
"image"
|
|
543
|
+
"text"
|
|
332
544
|
],
|
|
333
545
|
"cost": {
|
|
334
546
|
"input": 2,
|
|
335
547
|
"output": 12,
|
|
336
548
|
"cacheRead": 2.5,
|
|
337
|
-
"cacheWrite": 0
|
|
549
|
+
"cacheWrite": 0
|
|
338
550
|
},
|
|
339
551
|
"contextWindow": 256000,
|
|
340
|
-
"maxTokens": 64000
|
|
552
|
+
"maxTokens": 64000,
|
|
553
|
+
"compat": {
|
|
554
|
+
"supportsStore": false,
|
|
555
|
+
"supportsReasoningEffort": false,
|
|
556
|
+
"thinkingFormat": "deepseek",
|
|
557
|
+
"maxTokensField": "max_tokens"
|
|
558
|
+
}
|
|
341
559
|
},
|
|
342
560
|
{
|
|
343
561
|
"id": "qwen3.6-plus",
|
|
344
562
|
"name": "Qwen3.6-Plus",
|
|
345
563
|
"reasoning": true,
|
|
564
|
+
"thinkingLevelMap": {
|
|
565
|
+
"off": "off",
|
|
566
|
+
"minimal": null,
|
|
567
|
+
"low": null,
|
|
568
|
+
"medium": null,
|
|
569
|
+
"high": null,
|
|
570
|
+
"xhigh": null,
|
|
571
|
+
"max": "max"
|
|
572
|
+
},
|
|
346
573
|
"input": [
|
|
347
574
|
"text",
|
|
348
575
|
"image"
|
|
@@ -351,58 +578,142 @@
|
|
|
351
578
|
"input": 2,
|
|
352
579
|
"output": 6,
|
|
353
580
|
"cacheRead": 2.5,
|
|
354
|
-
"cacheWrite": 0
|
|
581
|
+
"cacheWrite": 0
|
|
355
582
|
},
|
|
356
583
|
"contextWindow": 1000000,
|
|
357
|
-
"maxTokens": 64000
|
|
584
|
+
"maxTokens": 64000,
|
|
585
|
+
"compat": {
|
|
586
|
+
"supportsStore": false,
|
|
587
|
+
"supportsReasoningEffort": false,
|
|
588
|
+
"thinkingFormat": "deepseek",
|
|
589
|
+
"maxTokensField": "max_tokens"
|
|
590
|
+
}
|
|
358
591
|
},
|
|
359
592
|
{
|
|
360
593
|
"id": "qwen3.7-flash",
|
|
361
594
|
"name": "Qwen3.7-Flash",
|
|
362
|
-
"reasoning":
|
|
595
|
+
"reasoning": true,
|
|
596
|
+
"thinkingLevelMap": {
|
|
597
|
+
"off": "off",
|
|
598
|
+
"minimal": null,
|
|
599
|
+
"low": null,
|
|
600
|
+
"medium": null,
|
|
601
|
+
"high": null,
|
|
602
|
+
"xhigh": null,
|
|
603
|
+
"max": "max"
|
|
604
|
+
},
|
|
363
605
|
"input": [
|
|
364
|
-
"text"
|
|
606
|
+
"text",
|
|
607
|
+
"image"
|
|
365
608
|
],
|
|
366
609
|
"cost": {
|
|
367
|
-
"input": 0,
|
|
368
|
-
"output": 0,
|
|
610
|
+
"input": 0.2,
|
|
611
|
+
"output": 0.8,
|
|
369
612
|
"cacheRead": 0,
|
|
370
613
|
"cacheWrite": 0
|
|
371
614
|
},
|
|
372
615
|
"contextWindow": 1000000,
|
|
373
|
-
"maxTokens": 64000
|
|
616
|
+
"maxTokens": 64000,
|
|
617
|
+
"compat": {
|
|
618
|
+
"supportsStore": false,
|
|
619
|
+
"supportsReasoningEffort": false,
|
|
620
|
+
"thinkingFormat": "deepseek",
|
|
621
|
+
"maxTokensField": "max_tokens"
|
|
622
|
+
}
|
|
374
623
|
},
|
|
375
624
|
{
|
|
376
625
|
"id": "qwen3.7-max",
|
|
377
626
|
"name": "Qwen3.7-Max",
|
|
378
627
|
"reasoning": true,
|
|
628
|
+
"thinkingLevelMap": {
|
|
629
|
+
"off": "off",
|
|
630
|
+
"minimal": null,
|
|
631
|
+
"low": null,
|
|
632
|
+
"medium": null,
|
|
633
|
+
"high": null,
|
|
634
|
+
"xhigh": null,
|
|
635
|
+
"max": "max"
|
|
636
|
+
},
|
|
379
637
|
"input": [
|
|
380
|
-
"text"
|
|
381
|
-
"image"
|
|
638
|
+
"text"
|
|
382
639
|
],
|
|
383
640
|
"cost": {
|
|
384
641
|
"input": 2.5,
|
|
385
642
|
"output": 7.5,
|
|
386
|
-
"cacheRead":
|
|
387
|
-
"cacheWrite": 0
|
|
643
|
+
"cacheRead": 0,
|
|
644
|
+
"cacheWrite": 0
|
|
388
645
|
},
|
|
389
646
|
"contextWindow": 1000000,
|
|
390
|
-
"maxTokens": 64000
|
|
647
|
+
"maxTokens": 64000,
|
|
648
|
+
"compat": {
|
|
649
|
+
"supportsStore": false,
|
|
650
|
+
"supportsReasoningEffort": false,
|
|
651
|
+
"thinkingFormat": "deepseek",
|
|
652
|
+
"maxTokensField": "max_tokens"
|
|
653
|
+
}
|
|
391
654
|
},
|
|
392
655
|
{
|
|
393
656
|
"id": "qwen3.7-plus",
|
|
394
657
|
"name": "Qwen3.7-Plus",
|
|
395
658
|
"reasoning": true,
|
|
659
|
+
"thinkingLevelMap": {
|
|
660
|
+
"off": "off",
|
|
661
|
+
"minimal": null,
|
|
662
|
+
"low": null,
|
|
663
|
+
"medium": null,
|
|
664
|
+
"high": null,
|
|
665
|
+
"xhigh": null,
|
|
666
|
+
"max": "max"
|
|
667
|
+
},
|
|
396
668
|
"input": [
|
|
397
|
-
"text"
|
|
669
|
+
"text",
|
|
670
|
+
"image"
|
|
398
671
|
],
|
|
399
672
|
"cost": {
|
|
400
673
|
"input": 1.2,
|
|
401
674
|
"output": 4.8,
|
|
402
|
-
"cacheRead":
|
|
403
|
-
"cacheWrite": 0
|
|
675
|
+
"cacheRead": 0,
|
|
676
|
+
"cacheWrite": 0
|
|
404
677
|
},
|
|
405
678
|
"contextWindow": 1000000,
|
|
406
|
-
"maxTokens": 64000
|
|
679
|
+
"maxTokens": 64000,
|
|
680
|
+
"compat": {
|
|
681
|
+
"supportsStore": false,
|
|
682
|
+
"supportsReasoningEffort": false,
|
|
683
|
+
"thinkingFormat": "deepseek",
|
|
684
|
+
"maxTokensField": "max_tokens"
|
|
685
|
+
}
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
"id": "qwen3.8-max",
|
|
689
|
+
"name": "Qwen3.8-Max",
|
|
690
|
+
"reasoning": true,
|
|
691
|
+
"thinkingLevelMap": {
|
|
692
|
+
"off": "off",
|
|
693
|
+
"minimal": null,
|
|
694
|
+
"low": null,
|
|
695
|
+
"medium": null,
|
|
696
|
+
"high": null,
|
|
697
|
+
"xhigh": null,
|
|
698
|
+
"max": "max"
|
|
699
|
+
},
|
|
700
|
+
"input": [
|
|
701
|
+
"text",
|
|
702
|
+
"image"
|
|
703
|
+
],
|
|
704
|
+
"cost": {
|
|
705
|
+
"input": 2,
|
|
706
|
+
"output": 6,
|
|
707
|
+
"cacheRead": 0,
|
|
708
|
+
"cacheWrite": 0
|
|
709
|
+
},
|
|
710
|
+
"contextWindow": 1000000,
|
|
711
|
+
"maxTokens": 65536,
|
|
712
|
+
"compat": {
|
|
713
|
+
"supportsStore": false,
|
|
714
|
+
"supportsReasoningEffort": false,
|
|
715
|
+
"thinkingFormat": "deepseek",
|
|
716
|
+
"maxTokensField": "max_tokens"
|
|
717
|
+
}
|
|
407
718
|
}
|
|
408
719
|
]
|