@theokit/sdk 4.12.2 → 4.13.1
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/CHANGELOG.md +12 -0
- package/dist/cron.cjs +201 -78
- package/dist/cron.cjs.map +1 -1
- package/dist/cron.js +201 -78
- package/dist/cron.js.map +1 -1
- package/dist/eval.cjs +201 -78
- package/dist/eval.cjs.map +1 -1
- package/dist/eval.js +201 -78
- package/dist/eval.js.map +1 -1
- package/dist/index.cjs +215 -92
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +215 -92
- package/dist/index.js.map +1 -1
- package/dist/internal/providers/catalog-loader.d.ts +8 -0
- package/dist/internal/providers/catalog-schema.d.ts +53 -0
- package/dist/internal/providers/catalog-source-models-dev.d.ts +33 -0
- package/dist/models.cjs +954 -257
- package/dist/models.cjs.map +1 -1
- package/dist/models.d.cts +2 -0
- package/dist/models.d.ts +2 -0
- package/dist/models.js +952 -258
- package/dist/models.js.map +1 -1
- package/dist/provider-catalog.json +574 -5
- package/package.json +1 -1
|
@@ -14,7 +14,146 @@
|
|
|
14
14
|
"supportsStreaming": true,
|
|
15
15
|
"supportsCacheControl": false
|
|
16
16
|
},
|
|
17
|
-
"aliases": ["openai"]
|
|
17
|
+
"aliases": ["openai"],
|
|
18
|
+
"models": {
|
|
19
|
+
"gpt-4o-mini": {
|
|
20
|
+
"name": "GPT-4o mini",
|
|
21
|
+
"release_date": "2024-07-18",
|
|
22
|
+
"attachment": true,
|
|
23
|
+
"reasoning": false,
|
|
24
|
+
"temperature": true,
|
|
25
|
+
"tool_call": true,
|
|
26
|
+
"structured_output": true,
|
|
27
|
+
"cost": {
|
|
28
|
+
"input": 0.15,
|
|
29
|
+
"output": 0.6,
|
|
30
|
+
"cache_read": 0.075
|
|
31
|
+
},
|
|
32
|
+
"limit": {
|
|
33
|
+
"context": 128000,
|
|
34
|
+
"output": 16384
|
|
35
|
+
},
|
|
36
|
+
"modalities": {
|
|
37
|
+
"input": ["text", "image"],
|
|
38
|
+
"output": ["text"]
|
|
39
|
+
},
|
|
40
|
+
"cache_control": false
|
|
41
|
+
},
|
|
42
|
+
"gpt-4o": {
|
|
43
|
+
"name": "GPT-4o",
|
|
44
|
+
"release_date": "2024-05-13",
|
|
45
|
+
"attachment": true,
|
|
46
|
+
"reasoning": false,
|
|
47
|
+
"temperature": true,
|
|
48
|
+
"tool_call": true,
|
|
49
|
+
"structured_output": true,
|
|
50
|
+
"cost": {
|
|
51
|
+
"input": 2.5,
|
|
52
|
+
"output": 10,
|
|
53
|
+
"cache_read": 1.25
|
|
54
|
+
},
|
|
55
|
+
"limit": {
|
|
56
|
+
"context": 128000,
|
|
57
|
+
"output": 16384
|
|
58
|
+
},
|
|
59
|
+
"modalities": {
|
|
60
|
+
"input": ["text", "image"],
|
|
61
|
+
"output": ["text"]
|
|
62
|
+
},
|
|
63
|
+
"cache_control": false
|
|
64
|
+
},
|
|
65
|
+
"gpt-4-turbo": {
|
|
66
|
+
"name": "GPT-4 Turbo",
|
|
67
|
+
"release_date": "2023-11-06",
|
|
68
|
+
"attachment": true,
|
|
69
|
+
"reasoning": false,
|
|
70
|
+
"temperature": true,
|
|
71
|
+
"tool_call": true,
|
|
72
|
+
"structured_output": false,
|
|
73
|
+
"cost": {
|
|
74
|
+
"input": 10,
|
|
75
|
+
"output": 30
|
|
76
|
+
},
|
|
77
|
+
"limit": {
|
|
78
|
+
"context": 128000,
|
|
79
|
+
"output": 4096
|
|
80
|
+
},
|
|
81
|
+
"modalities": {
|
|
82
|
+
"input": ["text", "image"],
|
|
83
|
+
"output": ["text"]
|
|
84
|
+
},
|
|
85
|
+
"cache_control": false
|
|
86
|
+
},
|
|
87
|
+
"o1": {
|
|
88
|
+
"name": "o1",
|
|
89
|
+
"release_date": "2024-12-05",
|
|
90
|
+
"attachment": true,
|
|
91
|
+
"reasoning": true,
|
|
92
|
+
"temperature": false,
|
|
93
|
+
"tool_call": true,
|
|
94
|
+
"structured_output": true,
|
|
95
|
+
"cost": {
|
|
96
|
+
"input": 15,
|
|
97
|
+
"output": 60,
|
|
98
|
+
"cache_read": 7.5
|
|
99
|
+
},
|
|
100
|
+
"limit": {
|
|
101
|
+
"context": 200000,
|
|
102
|
+
"output": 100000
|
|
103
|
+
},
|
|
104
|
+
"modalities": {
|
|
105
|
+
"input": ["text"],
|
|
106
|
+
"output": ["text"]
|
|
107
|
+
},
|
|
108
|
+
"cache_control": false
|
|
109
|
+
},
|
|
110
|
+
"o3": {
|
|
111
|
+
"name": "o3",
|
|
112
|
+
"release_date": "2025-04-16",
|
|
113
|
+
"attachment": true,
|
|
114
|
+
"reasoning": true,
|
|
115
|
+
"temperature": false,
|
|
116
|
+
"tool_call": true,
|
|
117
|
+
"structured_output": true,
|
|
118
|
+
"cost": {
|
|
119
|
+
"input": 2,
|
|
120
|
+
"output": 8,
|
|
121
|
+
"cache_read": 0.5
|
|
122
|
+
},
|
|
123
|
+
"limit": {
|
|
124
|
+
"context": 200000,
|
|
125
|
+
"output": 100000
|
|
126
|
+
},
|
|
127
|
+
"modalities": {
|
|
128
|
+
"input": ["text"],
|
|
129
|
+
"output": ["text"]
|
|
130
|
+
},
|
|
131
|
+
"cache_control": false
|
|
132
|
+
},
|
|
133
|
+
"gpt-4.1": {
|
|
134
|
+
"name": "GPT-4.1",
|
|
135
|
+
"release_date": "2025-04-14",
|
|
136
|
+
"attachment": true,
|
|
137
|
+
"reasoning": false,
|
|
138
|
+
"temperature": true,
|
|
139
|
+
"tool_call": true,
|
|
140
|
+
"structured_output": true,
|
|
141
|
+
"cost": {
|
|
142
|
+
"input": 2,
|
|
143
|
+
"output": 8,
|
|
144
|
+
"cache_read": 0.5
|
|
145
|
+
},
|
|
146
|
+
"limit": {
|
|
147
|
+
"context": 1047576,
|
|
148
|
+
"output": 32768
|
|
149
|
+
},
|
|
150
|
+
"modalities": {
|
|
151
|
+
"input": ["text", "image"],
|
|
152
|
+
"output": ["text"]
|
|
153
|
+
},
|
|
154
|
+
"cache_control": false
|
|
155
|
+
}
|
|
156
|
+
}
|
|
18
157
|
},
|
|
19
158
|
{
|
|
20
159
|
"id": "anthropic",
|
|
@@ -31,7 +170,201 @@
|
|
|
31
170
|
"supportsStreaming": true,
|
|
32
171
|
"supportsCacheControl": true
|
|
33
172
|
},
|
|
34
|
-
"aliases": ["anthropic"]
|
|
173
|
+
"aliases": ["anthropic"],
|
|
174
|
+
"models": {
|
|
175
|
+
"claude-3-5-haiku-latest": {
|
|
176
|
+
"tool_call": true,
|
|
177
|
+
"structured_output": false,
|
|
178
|
+
"cache_control": true,
|
|
179
|
+
"modalities": {
|
|
180
|
+
"input": ["text"]
|
|
181
|
+
},
|
|
182
|
+
"limit": {
|
|
183
|
+
"context": 200000,
|
|
184
|
+
"output": 8192
|
|
185
|
+
}
|
|
186
|
+
},
|
|
187
|
+
"claude-opus-4-7": {
|
|
188
|
+
"name": "Claude Opus 4.7",
|
|
189
|
+
"release_date": "2026-04-14",
|
|
190
|
+
"attachment": true,
|
|
191
|
+
"reasoning": true,
|
|
192
|
+
"temperature": false,
|
|
193
|
+
"tool_call": true,
|
|
194
|
+
"structured_output": true,
|
|
195
|
+
"cost": {
|
|
196
|
+
"input": 5,
|
|
197
|
+
"output": 25,
|
|
198
|
+
"cache_read": 0.5,
|
|
199
|
+
"cache_write": 6.25
|
|
200
|
+
},
|
|
201
|
+
"limit": {
|
|
202
|
+
"context": 1000000,
|
|
203
|
+
"output": 128000
|
|
204
|
+
},
|
|
205
|
+
"modalities": {
|
|
206
|
+
"input": ["text", "image", "pdf"],
|
|
207
|
+
"output": ["text"]
|
|
208
|
+
},
|
|
209
|
+
"cache_control": true
|
|
210
|
+
},
|
|
211
|
+
"claude-sonnet-4-6": {
|
|
212
|
+
"name": "Claude Sonnet 4.6",
|
|
213
|
+
"release_date": "2026-02-17",
|
|
214
|
+
"attachment": true,
|
|
215
|
+
"reasoning": true,
|
|
216
|
+
"temperature": true,
|
|
217
|
+
"tool_call": true,
|
|
218
|
+
"structured_output": true,
|
|
219
|
+
"cost": {
|
|
220
|
+
"input": 3,
|
|
221
|
+
"output": 15,
|
|
222
|
+
"cache_read": 0.3,
|
|
223
|
+
"cache_write": 3.75
|
|
224
|
+
},
|
|
225
|
+
"limit": {
|
|
226
|
+
"context": 1000000,
|
|
227
|
+
"output": 128000
|
|
228
|
+
},
|
|
229
|
+
"modalities": {
|
|
230
|
+
"input": ["text", "image", "pdf"],
|
|
231
|
+
"output": ["text"]
|
|
232
|
+
},
|
|
233
|
+
"cache_control": true
|
|
234
|
+
},
|
|
235
|
+
"claude-haiku-4-5-20251001": {
|
|
236
|
+
"name": "Claude Haiku 4.5",
|
|
237
|
+
"release_date": "2025-10-15",
|
|
238
|
+
"attachment": true,
|
|
239
|
+
"reasoning": true,
|
|
240
|
+
"temperature": true,
|
|
241
|
+
"tool_call": true,
|
|
242
|
+
"structured_output": true,
|
|
243
|
+
"cost": {
|
|
244
|
+
"input": 1,
|
|
245
|
+
"output": 5,
|
|
246
|
+
"cache_read": 0.1,
|
|
247
|
+
"cache_write": 1.25
|
|
248
|
+
},
|
|
249
|
+
"limit": {
|
|
250
|
+
"context": 200000,
|
|
251
|
+
"output": 64000
|
|
252
|
+
},
|
|
253
|
+
"modalities": {
|
|
254
|
+
"input": ["text", "image", "pdf"],
|
|
255
|
+
"output": ["text"]
|
|
256
|
+
},
|
|
257
|
+
"cache_control": true
|
|
258
|
+
},
|
|
259
|
+
"claude-opus-4": {
|
|
260
|
+
"tool_call": true,
|
|
261
|
+
"structured_output": false,
|
|
262
|
+
"cache_control": true,
|
|
263
|
+
"modalities": {
|
|
264
|
+
"input": ["text", "image"]
|
|
265
|
+
},
|
|
266
|
+
"limit": {
|
|
267
|
+
"context": 200000,
|
|
268
|
+
"output": 32000
|
|
269
|
+
}
|
|
270
|
+
},
|
|
271
|
+
"claude-sonnet-4": {
|
|
272
|
+
"tool_call": true,
|
|
273
|
+
"structured_output": false,
|
|
274
|
+
"cache_control": true,
|
|
275
|
+
"modalities": {
|
|
276
|
+
"input": ["text", "image"]
|
|
277
|
+
},
|
|
278
|
+
"limit": {
|
|
279
|
+
"context": 200000,
|
|
280
|
+
"output": 16000
|
|
281
|
+
}
|
|
282
|
+
},
|
|
283
|
+
"claude-3-5-sonnet": {
|
|
284
|
+
"tool_call": true,
|
|
285
|
+
"structured_output": false,
|
|
286
|
+
"cache_control": true,
|
|
287
|
+
"modalities": {
|
|
288
|
+
"input": ["text", "image"]
|
|
289
|
+
},
|
|
290
|
+
"limit": {
|
|
291
|
+
"context": 200000,
|
|
292
|
+
"output": 8192
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
"claude-3-5-sonnet-latest": {
|
|
296
|
+
"tool_call": true,
|
|
297
|
+
"structured_output": false,
|
|
298
|
+
"cache_control": true,
|
|
299
|
+
"modalities": {
|
|
300
|
+
"input": ["text", "image"]
|
|
301
|
+
},
|
|
302
|
+
"limit": {
|
|
303
|
+
"context": 200000,
|
|
304
|
+
"output": 8192
|
|
305
|
+
}
|
|
306
|
+
},
|
|
307
|
+
"claude-3-haiku": {
|
|
308
|
+
"tool_call": true,
|
|
309
|
+
"structured_output": false,
|
|
310
|
+
"cache_control": true,
|
|
311
|
+
"modalities": {
|
|
312
|
+
"input": ["text", "image"]
|
|
313
|
+
},
|
|
314
|
+
"limit": {
|
|
315
|
+
"context": 200000,
|
|
316
|
+
"output": 4096
|
|
317
|
+
}
|
|
318
|
+
},
|
|
319
|
+
"claude-3-opus": {
|
|
320
|
+
"tool_call": true,
|
|
321
|
+
"structured_output": false,
|
|
322
|
+
"cache_control": true,
|
|
323
|
+
"modalities": {
|
|
324
|
+
"input": ["text", "image"]
|
|
325
|
+
},
|
|
326
|
+
"limit": {
|
|
327
|
+
"context": 200000,
|
|
328
|
+
"output": 4096
|
|
329
|
+
}
|
|
330
|
+
},
|
|
331
|
+
"claude-opus-4.1": {
|
|
332
|
+
"tool_call": true,
|
|
333
|
+
"structured_output": false,
|
|
334
|
+
"cache_control": true,
|
|
335
|
+
"modalities": {
|
|
336
|
+
"input": ["text", "image"]
|
|
337
|
+
},
|
|
338
|
+
"limit": {
|
|
339
|
+
"context": 200000,
|
|
340
|
+
"output": 32000
|
|
341
|
+
}
|
|
342
|
+
},
|
|
343
|
+
"claude-sonnet-4.5": {
|
|
344
|
+
"tool_call": true,
|
|
345
|
+
"structured_output": false,
|
|
346
|
+
"cache_control": true,
|
|
347
|
+
"modalities": {
|
|
348
|
+
"input": ["text", "image"]
|
|
349
|
+
},
|
|
350
|
+
"limit": {
|
|
351
|
+
"context": 200000,
|
|
352
|
+
"output": 16000
|
|
353
|
+
}
|
|
354
|
+
},
|
|
355
|
+
"claude-3.5-sonnet": {
|
|
356
|
+
"tool_call": true,
|
|
357
|
+
"structured_output": false,
|
|
358
|
+
"cache_control": true,
|
|
359
|
+
"modalities": {
|
|
360
|
+
"input": ["text", "image"]
|
|
361
|
+
},
|
|
362
|
+
"limit": {
|
|
363
|
+
"context": 200000,
|
|
364
|
+
"output": 8192
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
}
|
|
35
368
|
},
|
|
36
369
|
{
|
|
37
370
|
"id": "openrouter",
|
|
@@ -64,6 +397,28 @@
|
|
|
64
397
|
"supportsStructuredOutput": true,
|
|
65
398
|
"supportsStreaming": true,
|
|
66
399
|
"supportsCacheControl": false
|
|
400
|
+
},
|
|
401
|
+
"models": {
|
|
402
|
+
"llama-3.3-70b-versatile": {
|
|
403
|
+
"name": "Llama 3.3 70B",
|
|
404
|
+
"release_date": "2024-12-06",
|
|
405
|
+
"attachment": false,
|
|
406
|
+
"reasoning": false,
|
|
407
|
+
"temperature": true,
|
|
408
|
+
"tool_call": true,
|
|
409
|
+
"cost": {
|
|
410
|
+
"input": 0.59,
|
|
411
|
+
"output": 0.79
|
|
412
|
+
},
|
|
413
|
+
"limit": {
|
|
414
|
+
"context": 131072,
|
|
415
|
+
"output": 32768
|
|
416
|
+
},
|
|
417
|
+
"modalities": {
|
|
418
|
+
"input": ["text"],
|
|
419
|
+
"output": ["text"]
|
|
420
|
+
}
|
|
421
|
+
}
|
|
67
422
|
}
|
|
68
423
|
},
|
|
69
424
|
{
|
|
@@ -80,6 +435,28 @@
|
|
|
80
435
|
"supportsStructuredOutput": true,
|
|
81
436
|
"supportsStreaming": true,
|
|
82
437
|
"supportsCacheControl": false
|
|
438
|
+
},
|
|
439
|
+
"models": {
|
|
440
|
+
"mistral-large-latest": {
|
|
441
|
+
"name": "Mistral Large (latest)",
|
|
442
|
+
"release_date": "2024-11-01",
|
|
443
|
+
"attachment": true,
|
|
444
|
+
"reasoning": false,
|
|
445
|
+
"temperature": true,
|
|
446
|
+
"tool_call": true,
|
|
447
|
+
"cost": {
|
|
448
|
+
"input": 0.5,
|
|
449
|
+
"output": 1.5
|
|
450
|
+
},
|
|
451
|
+
"limit": {
|
|
452
|
+
"context": 262144,
|
|
453
|
+
"output": 262144
|
|
454
|
+
},
|
|
455
|
+
"modalities": {
|
|
456
|
+
"input": ["text", "image"],
|
|
457
|
+
"output": ["text"]
|
|
458
|
+
}
|
|
459
|
+
}
|
|
83
460
|
}
|
|
84
461
|
},
|
|
85
462
|
{
|
|
@@ -96,6 +473,64 @@
|
|
|
96
473
|
"supportsStructuredOutput": true,
|
|
97
474
|
"supportsStreaming": true,
|
|
98
475
|
"supportsCacheControl": false
|
|
476
|
+
},
|
|
477
|
+
"models": {
|
|
478
|
+
"deepseek-chat": {
|
|
479
|
+
"name": "DeepSeek Chat",
|
|
480
|
+
"release_date": "2025-12-01",
|
|
481
|
+
"attachment": true,
|
|
482
|
+
"reasoning": false,
|
|
483
|
+
"temperature": true,
|
|
484
|
+
"tool_call": true,
|
|
485
|
+
"cost": {
|
|
486
|
+
"input": 0.14,
|
|
487
|
+
"output": 0.28,
|
|
488
|
+
"cache_read": 0.0028
|
|
489
|
+
},
|
|
490
|
+
"limit": {
|
|
491
|
+
"context": 1000000,
|
|
492
|
+
"output": 384000
|
|
493
|
+
},
|
|
494
|
+
"modalities": {
|
|
495
|
+
"input": ["text"],
|
|
496
|
+
"output": ["text"]
|
|
497
|
+
}
|
|
498
|
+
},
|
|
499
|
+
"deepseek-v4-flash": {
|
|
500
|
+
"name": "DeepSeek V4 Flash",
|
|
501
|
+
"release_date": "2026-04-24",
|
|
502
|
+
"attachment": false,
|
|
503
|
+
"reasoning": true,
|
|
504
|
+
"temperature": true,
|
|
505
|
+
"tool_call": true,
|
|
506
|
+
"structured_output": false,
|
|
507
|
+
"cost": {
|
|
508
|
+
"input": 0.14,
|
|
509
|
+
"output": 0.28,
|
|
510
|
+
"cache_read": 0.0028
|
|
511
|
+
},
|
|
512
|
+
"limit": {
|
|
513
|
+
"context": 1048576,
|
|
514
|
+
"output": 8000
|
|
515
|
+
},
|
|
516
|
+
"modalities": {
|
|
517
|
+
"input": ["text"],
|
|
518
|
+
"output": ["text"]
|
|
519
|
+
},
|
|
520
|
+
"cache_control": false
|
|
521
|
+
},
|
|
522
|
+
"deepseek-v3.2": {
|
|
523
|
+
"tool_call": true,
|
|
524
|
+
"structured_output": false,
|
|
525
|
+
"cache_control": false,
|
|
526
|
+
"modalities": {
|
|
527
|
+
"input": ["text"]
|
|
528
|
+
},
|
|
529
|
+
"limit": {
|
|
530
|
+
"context": 131072,
|
|
531
|
+
"output": 8000
|
|
532
|
+
}
|
|
533
|
+
}
|
|
99
534
|
}
|
|
100
535
|
},
|
|
101
536
|
{
|
|
@@ -145,7 +580,78 @@
|
|
|
145
580
|
"supportsStreaming": true,
|
|
146
581
|
"supportsCacheControl": false
|
|
147
582
|
},
|
|
148
|
-
"aliases": ["gemini"]
|
|
583
|
+
"aliases": ["gemini", "google"],
|
|
584
|
+
"models": {
|
|
585
|
+
"gemini-2.0-flash": {
|
|
586
|
+
"name": "Gemini 2.0 Flash",
|
|
587
|
+
"release_date": "2024-12-11",
|
|
588
|
+
"attachment": true,
|
|
589
|
+
"reasoning": false,
|
|
590
|
+
"temperature": true,
|
|
591
|
+
"tool_call": true,
|
|
592
|
+
"structured_output": true,
|
|
593
|
+
"cost": {
|
|
594
|
+
"input": 0.1,
|
|
595
|
+
"output": 0.4,
|
|
596
|
+
"cache_read": 0.025
|
|
597
|
+
},
|
|
598
|
+
"limit": {
|
|
599
|
+
"context": 1048576,
|
|
600
|
+
"output": 8192
|
|
601
|
+
},
|
|
602
|
+
"modalities": {
|
|
603
|
+
"input": ["text", "image", "audio", "video", "pdf"],
|
|
604
|
+
"output": ["text"]
|
|
605
|
+
},
|
|
606
|
+
"status": "deprecated"
|
|
607
|
+
},
|
|
608
|
+
"gemini-2.5-flash-lite": {
|
|
609
|
+
"name": "Gemini 2.5 Flash-Lite",
|
|
610
|
+
"release_date": "2025-06-17",
|
|
611
|
+
"attachment": true,
|
|
612
|
+
"reasoning": true,
|
|
613
|
+
"temperature": true,
|
|
614
|
+
"tool_call": true,
|
|
615
|
+
"structured_output": true,
|
|
616
|
+
"cost": {
|
|
617
|
+
"input": 0.1,
|
|
618
|
+
"output": 0.4,
|
|
619
|
+
"cache_read": 0.01
|
|
620
|
+
},
|
|
621
|
+
"limit": {
|
|
622
|
+
"context": 1048576,
|
|
623
|
+
"output": 8000
|
|
624
|
+
},
|
|
625
|
+
"modalities": {
|
|
626
|
+
"input": ["text", "image"],
|
|
627
|
+
"output": ["text"]
|
|
628
|
+
},
|
|
629
|
+
"cache_control": false
|
|
630
|
+
},
|
|
631
|
+
"gemini-2.5-pro": {
|
|
632
|
+
"name": "Gemini 2.5 Pro",
|
|
633
|
+
"release_date": "2025-06-17",
|
|
634
|
+
"attachment": true,
|
|
635
|
+
"reasoning": true,
|
|
636
|
+
"temperature": true,
|
|
637
|
+
"tool_call": true,
|
|
638
|
+
"structured_output": true,
|
|
639
|
+
"cost": {
|
|
640
|
+
"input": 1.25,
|
|
641
|
+
"output": 10,
|
|
642
|
+
"cache_read": 0.125
|
|
643
|
+
},
|
|
644
|
+
"limit": {
|
|
645
|
+
"context": 1048576,
|
|
646
|
+
"output": 8000
|
|
647
|
+
},
|
|
648
|
+
"modalities": {
|
|
649
|
+
"input": ["text", "image"],
|
|
650
|
+
"output": ["text"]
|
|
651
|
+
},
|
|
652
|
+
"cache_control": false
|
|
653
|
+
}
|
|
654
|
+
}
|
|
149
655
|
},
|
|
150
656
|
{
|
|
151
657
|
"id": "ollama",
|
|
@@ -552,7 +1058,21 @@
|
|
|
552
1058
|
"supportsStreaming": true,
|
|
553
1059
|
"supportsCacheControl": false
|
|
554
1060
|
},
|
|
555
|
-
"aliases": ["dashscope"]
|
|
1061
|
+
"aliases": ["dashscope"],
|
|
1062
|
+
"models": {
|
|
1063
|
+
"qwen3-coder-30b-a3b-instruct": {
|
|
1064
|
+
"tool_call": true,
|
|
1065
|
+
"structured_output": false,
|
|
1066
|
+
"cache_control": false,
|
|
1067
|
+
"modalities": {
|
|
1068
|
+
"input": ["text"]
|
|
1069
|
+
},
|
|
1070
|
+
"limit": {
|
|
1071
|
+
"context": 160000,
|
|
1072
|
+
"output": 8000
|
|
1073
|
+
}
|
|
1074
|
+
}
|
|
1075
|
+
}
|
|
556
1076
|
},
|
|
557
1077
|
{
|
|
558
1078
|
"id": "zhipu",
|
|
@@ -569,7 +1089,33 @@
|
|
|
569
1089
|
"supportsStreaming": true,
|
|
570
1090
|
"supportsCacheControl": false
|
|
571
1091
|
},
|
|
572
|
-
"aliases": ["glm"]
|
|
1092
|
+
"aliases": ["glm", "z-ai"],
|
|
1093
|
+
"models": {
|
|
1094
|
+
"glm-4.7-flash": {
|
|
1095
|
+
"name": "GLM-4.7-Flash",
|
|
1096
|
+
"release_date": "2026-01-19",
|
|
1097
|
+
"attachment": false,
|
|
1098
|
+
"reasoning": true,
|
|
1099
|
+
"temperature": true,
|
|
1100
|
+
"tool_call": true,
|
|
1101
|
+
"cost": {
|
|
1102
|
+
"input": 0,
|
|
1103
|
+
"output": 0,
|
|
1104
|
+
"cache_read": 0,
|
|
1105
|
+
"cache_write": 0
|
|
1106
|
+
},
|
|
1107
|
+
"limit": {
|
|
1108
|
+
"context": 202752,
|
|
1109
|
+
"output": 8000
|
|
1110
|
+
},
|
|
1111
|
+
"modalities": {
|
|
1112
|
+
"input": ["text"],
|
|
1113
|
+
"output": ["text"]
|
|
1114
|
+
},
|
|
1115
|
+
"structured_output": false,
|
|
1116
|
+
"cache_control": false
|
|
1117
|
+
}
|
|
1118
|
+
}
|
|
573
1119
|
},
|
|
574
1120
|
{
|
|
575
1121
|
"id": "minimax",
|
|
@@ -649,6 +1195,29 @@
|
|
|
649
1195
|
"supportsStructuredOutput": true,
|
|
650
1196
|
"supportsStreaming": true,
|
|
651
1197
|
"supportsCacheControl": false
|
|
1198
|
+
},
|
|
1199
|
+
"models": {
|
|
1200
|
+
"gpt-4o-mini": {
|
|
1201
|
+
"name": "OpenAI GPT-4o-mini",
|
|
1202
|
+
"release_date": "2024-07-18",
|
|
1203
|
+
"attachment": false,
|
|
1204
|
+
"reasoning": false,
|
|
1205
|
+
"temperature": true,
|
|
1206
|
+
"tool_call": true,
|
|
1207
|
+
"cost": {
|
|
1208
|
+
"input": 0.15,
|
|
1209
|
+
"output": 0.6,
|
|
1210
|
+
"cache_read": 0.075
|
|
1211
|
+
},
|
|
1212
|
+
"limit": {
|
|
1213
|
+
"context": 128000,
|
|
1214
|
+
"output": 16384
|
|
1215
|
+
},
|
|
1216
|
+
"modalities": {
|
|
1217
|
+
"input": ["text", "image"],
|
|
1218
|
+
"output": ["text"]
|
|
1219
|
+
}
|
|
1220
|
+
}
|
|
652
1221
|
}
|
|
653
1222
|
},
|
|
654
1223
|
{
|
package/package.json
CHANGED