@theokit/sdk 4.13.1 → 4.14.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/CHANGELOG.md +6 -0
- package/dist/{cron-C7catiH8.d.ts → cron-DY0uC1ng.d.ts} +7 -0
- package/dist/{cron-DK1WVZnI.d.cts → cron-ElTj1cSH.d.cts} +7 -0
- package/dist/cron.cjs +134 -8
- package/dist/cron.cjs.map +1 -1
- package/dist/cron.d.cts +1 -1
- package/dist/cron.d.ts +1 -1
- package/dist/cron.js +134 -8
- package/dist/cron.js.map +1 -1
- package/dist/eval.cjs +134 -8
- package/dist/eval.cjs.map +1 -1
- package/dist/eval.js +134 -8
- package/dist/eval.js.map +1 -1
- package/dist/index.cjs +134 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +134 -8
- package/dist/index.js.map +1 -1
- package/dist/internal/llm/openai.d.ts +1 -0
- package/dist/internal/providers/builtin/cerebras.d.ts +5 -0
- package/dist/internal/providers/builtin/cohere.d.ts +6 -0
- package/dist/internal/providers/builtin/deepinfra.d.ts +2 -0
- package/dist/internal/providers/builtin/google.d.ts +6 -0
- package/dist/internal/providers/builtin/groq.d.ts +2 -0
- package/dist/internal/providers/builtin/mistral.d.ts +2 -0
- package/dist/internal/providers/builtin/openai-compatible.d.ts +1 -0
- package/dist/internal/providers/builtin/perplexity.d.ts +5 -0
- package/dist/internal/providers/builtin/together.d.ts +2 -0
- package/dist/internal/providers/builtin/xai.d.ts +2 -0
- package/dist/models.cjs +116 -2
- package/dist/models.cjs.map +1 -1
- package/dist/models.js +116 -2
- package/dist/models.js.map +1 -1
- package/dist/provider-catalog.json +467 -143
- package/dist/types/provider-profile.d.ts +7 -0
- package/package.json +1 -1
|
@@ -5,8 +5,13 @@
|
|
|
5
5
|
"apiMode": "chat_completions",
|
|
6
6
|
"authType": "api_key",
|
|
7
7
|
"baseUrl": "https://api.openai.com/v1",
|
|
8
|
-
"envVars": [
|
|
9
|
-
|
|
8
|
+
"envVars": [
|
|
9
|
+
"OPENAI_API_KEY"
|
|
10
|
+
],
|
|
11
|
+
"fallbackModels": [
|
|
12
|
+
"gpt-4o-mini",
|
|
13
|
+
"gpt-4o"
|
|
14
|
+
],
|
|
10
15
|
"capabilities": {
|
|
11
16
|
"supportsToolUse": true,
|
|
12
17
|
"supportsVision": true,
|
|
@@ -14,7 +19,9 @@
|
|
|
14
19
|
"supportsStreaming": true,
|
|
15
20
|
"supportsCacheControl": false
|
|
16
21
|
},
|
|
17
|
-
"aliases": [
|
|
22
|
+
"aliases": [
|
|
23
|
+
"openai"
|
|
24
|
+
],
|
|
18
25
|
"models": {
|
|
19
26
|
"gpt-4o-mini": {
|
|
20
27
|
"name": "GPT-4o mini",
|
|
@@ -34,8 +41,13 @@
|
|
|
34
41
|
"output": 16384
|
|
35
42
|
},
|
|
36
43
|
"modalities": {
|
|
37
|
-
"input": [
|
|
38
|
-
|
|
44
|
+
"input": [
|
|
45
|
+
"text",
|
|
46
|
+
"image"
|
|
47
|
+
],
|
|
48
|
+
"output": [
|
|
49
|
+
"text"
|
|
50
|
+
]
|
|
39
51
|
},
|
|
40
52
|
"cache_control": false
|
|
41
53
|
},
|
|
@@ -57,8 +69,13 @@
|
|
|
57
69
|
"output": 16384
|
|
58
70
|
},
|
|
59
71
|
"modalities": {
|
|
60
|
-
"input": [
|
|
61
|
-
|
|
72
|
+
"input": [
|
|
73
|
+
"text",
|
|
74
|
+
"image"
|
|
75
|
+
],
|
|
76
|
+
"output": [
|
|
77
|
+
"text"
|
|
78
|
+
]
|
|
62
79
|
},
|
|
63
80
|
"cache_control": false
|
|
64
81
|
},
|
|
@@ -79,8 +96,13 @@
|
|
|
79
96
|
"output": 4096
|
|
80
97
|
},
|
|
81
98
|
"modalities": {
|
|
82
|
-
"input": [
|
|
83
|
-
|
|
99
|
+
"input": [
|
|
100
|
+
"text",
|
|
101
|
+
"image"
|
|
102
|
+
],
|
|
103
|
+
"output": [
|
|
104
|
+
"text"
|
|
105
|
+
]
|
|
84
106
|
},
|
|
85
107
|
"cache_control": false
|
|
86
108
|
},
|
|
@@ -102,8 +124,12 @@
|
|
|
102
124
|
"output": 100000
|
|
103
125
|
},
|
|
104
126
|
"modalities": {
|
|
105
|
-
"input": [
|
|
106
|
-
|
|
127
|
+
"input": [
|
|
128
|
+
"text"
|
|
129
|
+
],
|
|
130
|
+
"output": [
|
|
131
|
+
"text"
|
|
132
|
+
]
|
|
107
133
|
},
|
|
108
134
|
"cache_control": false
|
|
109
135
|
},
|
|
@@ -125,8 +151,12 @@
|
|
|
125
151
|
"output": 100000
|
|
126
152
|
},
|
|
127
153
|
"modalities": {
|
|
128
|
-
"input": [
|
|
129
|
-
|
|
154
|
+
"input": [
|
|
155
|
+
"text"
|
|
156
|
+
],
|
|
157
|
+
"output": [
|
|
158
|
+
"text"
|
|
159
|
+
]
|
|
130
160
|
},
|
|
131
161
|
"cache_control": false
|
|
132
162
|
},
|
|
@@ -148,8 +178,13 @@
|
|
|
148
178
|
"output": 32768
|
|
149
179
|
},
|
|
150
180
|
"modalities": {
|
|
151
|
-
"input": [
|
|
152
|
-
|
|
181
|
+
"input": [
|
|
182
|
+
"text",
|
|
183
|
+
"image"
|
|
184
|
+
],
|
|
185
|
+
"output": [
|
|
186
|
+
"text"
|
|
187
|
+
]
|
|
153
188
|
},
|
|
154
189
|
"cache_control": false
|
|
155
190
|
}
|
|
@@ -161,8 +196,13 @@
|
|
|
161
196
|
"apiMode": "anthropic_messages",
|
|
162
197
|
"authType": "api_key",
|
|
163
198
|
"baseUrl": "https://api.anthropic.com/v1",
|
|
164
|
-
"envVars": [
|
|
165
|
-
|
|
199
|
+
"envVars": [
|
|
200
|
+
"ANTHROPIC_API_KEY"
|
|
201
|
+
],
|
|
202
|
+
"fallbackModels": [
|
|
203
|
+
"claude-sonnet-4-20250514",
|
|
204
|
+
"claude-3-5-haiku-latest"
|
|
205
|
+
],
|
|
166
206
|
"capabilities": {
|
|
167
207
|
"supportsToolUse": true,
|
|
168
208
|
"supportsVision": true,
|
|
@@ -170,14 +210,18 @@
|
|
|
170
210
|
"supportsStreaming": true,
|
|
171
211
|
"supportsCacheControl": true
|
|
172
212
|
},
|
|
173
|
-
"aliases": [
|
|
213
|
+
"aliases": [
|
|
214
|
+
"anthropic"
|
|
215
|
+
],
|
|
174
216
|
"models": {
|
|
175
217
|
"claude-3-5-haiku-latest": {
|
|
176
218
|
"tool_call": true,
|
|
177
219
|
"structured_output": false,
|
|
178
220
|
"cache_control": true,
|
|
179
221
|
"modalities": {
|
|
180
|
-
"input": [
|
|
222
|
+
"input": [
|
|
223
|
+
"text"
|
|
224
|
+
]
|
|
181
225
|
},
|
|
182
226
|
"limit": {
|
|
183
227
|
"context": 200000,
|
|
@@ -203,8 +247,14 @@
|
|
|
203
247
|
"output": 128000
|
|
204
248
|
},
|
|
205
249
|
"modalities": {
|
|
206
|
-
"input": [
|
|
207
|
-
|
|
250
|
+
"input": [
|
|
251
|
+
"text",
|
|
252
|
+
"image",
|
|
253
|
+
"pdf"
|
|
254
|
+
],
|
|
255
|
+
"output": [
|
|
256
|
+
"text"
|
|
257
|
+
]
|
|
208
258
|
},
|
|
209
259
|
"cache_control": true
|
|
210
260
|
},
|
|
@@ -227,8 +277,14 @@
|
|
|
227
277
|
"output": 128000
|
|
228
278
|
},
|
|
229
279
|
"modalities": {
|
|
230
|
-
"input": [
|
|
231
|
-
|
|
280
|
+
"input": [
|
|
281
|
+
"text",
|
|
282
|
+
"image",
|
|
283
|
+
"pdf"
|
|
284
|
+
],
|
|
285
|
+
"output": [
|
|
286
|
+
"text"
|
|
287
|
+
]
|
|
232
288
|
},
|
|
233
289
|
"cache_control": true
|
|
234
290
|
},
|
|
@@ -251,8 +307,14 @@
|
|
|
251
307
|
"output": 64000
|
|
252
308
|
},
|
|
253
309
|
"modalities": {
|
|
254
|
-
"input": [
|
|
255
|
-
|
|
310
|
+
"input": [
|
|
311
|
+
"text",
|
|
312
|
+
"image",
|
|
313
|
+
"pdf"
|
|
314
|
+
],
|
|
315
|
+
"output": [
|
|
316
|
+
"text"
|
|
317
|
+
]
|
|
256
318
|
},
|
|
257
319
|
"cache_control": true
|
|
258
320
|
},
|
|
@@ -261,7 +323,10 @@
|
|
|
261
323
|
"structured_output": false,
|
|
262
324
|
"cache_control": true,
|
|
263
325
|
"modalities": {
|
|
264
|
-
"input": [
|
|
326
|
+
"input": [
|
|
327
|
+
"text",
|
|
328
|
+
"image"
|
|
329
|
+
]
|
|
265
330
|
},
|
|
266
331
|
"limit": {
|
|
267
332
|
"context": 200000,
|
|
@@ -273,7 +338,10 @@
|
|
|
273
338
|
"structured_output": false,
|
|
274
339
|
"cache_control": true,
|
|
275
340
|
"modalities": {
|
|
276
|
-
"input": [
|
|
341
|
+
"input": [
|
|
342
|
+
"text",
|
|
343
|
+
"image"
|
|
344
|
+
]
|
|
277
345
|
},
|
|
278
346
|
"limit": {
|
|
279
347
|
"context": 200000,
|
|
@@ -285,7 +353,10 @@
|
|
|
285
353
|
"structured_output": false,
|
|
286
354
|
"cache_control": true,
|
|
287
355
|
"modalities": {
|
|
288
|
-
"input": [
|
|
356
|
+
"input": [
|
|
357
|
+
"text",
|
|
358
|
+
"image"
|
|
359
|
+
]
|
|
289
360
|
},
|
|
290
361
|
"limit": {
|
|
291
362
|
"context": 200000,
|
|
@@ -297,7 +368,10 @@
|
|
|
297
368
|
"structured_output": false,
|
|
298
369
|
"cache_control": true,
|
|
299
370
|
"modalities": {
|
|
300
|
-
"input": [
|
|
371
|
+
"input": [
|
|
372
|
+
"text",
|
|
373
|
+
"image"
|
|
374
|
+
]
|
|
301
375
|
},
|
|
302
376
|
"limit": {
|
|
303
377
|
"context": 200000,
|
|
@@ -309,7 +383,10 @@
|
|
|
309
383
|
"structured_output": false,
|
|
310
384
|
"cache_control": true,
|
|
311
385
|
"modalities": {
|
|
312
|
-
"input": [
|
|
386
|
+
"input": [
|
|
387
|
+
"text",
|
|
388
|
+
"image"
|
|
389
|
+
]
|
|
313
390
|
},
|
|
314
391
|
"limit": {
|
|
315
392
|
"context": 200000,
|
|
@@ -321,7 +398,10 @@
|
|
|
321
398
|
"structured_output": false,
|
|
322
399
|
"cache_control": true,
|
|
323
400
|
"modalities": {
|
|
324
|
-
"input": [
|
|
401
|
+
"input": [
|
|
402
|
+
"text",
|
|
403
|
+
"image"
|
|
404
|
+
]
|
|
325
405
|
},
|
|
326
406
|
"limit": {
|
|
327
407
|
"context": 200000,
|
|
@@ -333,7 +413,10 @@
|
|
|
333
413
|
"structured_output": false,
|
|
334
414
|
"cache_control": true,
|
|
335
415
|
"modalities": {
|
|
336
|
-
"input": [
|
|
416
|
+
"input": [
|
|
417
|
+
"text",
|
|
418
|
+
"image"
|
|
419
|
+
]
|
|
337
420
|
},
|
|
338
421
|
"limit": {
|
|
339
422
|
"context": 200000,
|
|
@@ -345,7 +428,10 @@
|
|
|
345
428
|
"structured_output": false,
|
|
346
429
|
"cache_control": true,
|
|
347
430
|
"modalities": {
|
|
348
|
-
"input": [
|
|
431
|
+
"input": [
|
|
432
|
+
"text",
|
|
433
|
+
"image"
|
|
434
|
+
]
|
|
349
435
|
},
|
|
350
436
|
"limit": {
|
|
351
437
|
"context": 200000,
|
|
@@ -357,7 +443,10 @@
|
|
|
357
443
|
"structured_output": false,
|
|
358
444
|
"cache_control": true,
|
|
359
445
|
"modalities": {
|
|
360
|
-
"input": [
|
|
446
|
+
"input": [
|
|
447
|
+
"text",
|
|
448
|
+
"image"
|
|
449
|
+
]
|
|
361
450
|
},
|
|
362
451
|
"limit": {
|
|
363
452
|
"context": 200000,
|
|
@@ -372,8 +461,12 @@
|
|
|
372
461
|
"apiMode": "chat_completions",
|
|
373
462
|
"authType": "api_key",
|
|
374
463
|
"baseUrl": "https://openrouter.ai/api/v1",
|
|
375
|
-
"envVars": [
|
|
376
|
-
|
|
464
|
+
"envVars": [
|
|
465
|
+
"OPENROUTER_API_KEY"
|
|
466
|
+
],
|
|
467
|
+
"fallbackModels": [
|
|
468
|
+
"openai/gpt-4o-mini"
|
|
469
|
+
],
|
|
377
470
|
"capabilities": {
|
|
378
471
|
"supportsToolUse": true,
|
|
379
472
|
"supportsVision": true,
|
|
@@ -381,7 +474,9 @@
|
|
|
381
474
|
"supportsStreaming": true,
|
|
382
475
|
"supportsCacheControl": false
|
|
383
476
|
},
|
|
384
|
-
"aliases": [
|
|
477
|
+
"aliases": [
|
|
478
|
+
"openrouter"
|
|
479
|
+
]
|
|
385
480
|
},
|
|
386
481
|
{
|
|
387
482
|
"id": "groq",
|
|
@@ -389,8 +484,12 @@
|
|
|
389
484
|
"apiMode": "chat_completions",
|
|
390
485
|
"authType": "api_key",
|
|
391
486
|
"baseUrl": "https://api.groq.com/openai/v1",
|
|
392
|
-
"envVars": [
|
|
393
|
-
|
|
487
|
+
"envVars": [
|
|
488
|
+
"GROQ_API_KEY"
|
|
489
|
+
],
|
|
490
|
+
"fallbackModels": [
|
|
491
|
+
"llama-3.3-70b-versatile"
|
|
492
|
+
],
|
|
394
493
|
"capabilities": {
|
|
395
494
|
"supportsToolUse": true,
|
|
396
495
|
"supportsVision": true,
|
|
@@ -415,8 +514,12 @@
|
|
|
415
514
|
"output": 32768
|
|
416
515
|
},
|
|
417
516
|
"modalities": {
|
|
418
|
-
"input": [
|
|
419
|
-
|
|
517
|
+
"input": [
|
|
518
|
+
"text"
|
|
519
|
+
],
|
|
520
|
+
"output": [
|
|
521
|
+
"text"
|
|
522
|
+
]
|
|
420
523
|
}
|
|
421
524
|
}
|
|
422
525
|
}
|
|
@@ -427,8 +530,12 @@
|
|
|
427
530
|
"apiMode": "chat_completions",
|
|
428
531
|
"authType": "api_key",
|
|
429
532
|
"baseUrl": "https://api.mistral.ai/v1",
|
|
430
|
-
"envVars": [
|
|
431
|
-
|
|
533
|
+
"envVars": [
|
|
534
|
+
"MISTRAL_API_KEY"
|
|
535
|
+
],
|
|
536
|
+
"fallbackModels": [
|
|
537
|
+
"mistral-large-latest"
|
|
538
|
+
],
|
|
432
539
|
"capabilities": {
|
|
433
540
|
"supportsToolUse": true,
|
|
434
541
|
"supportsVision": true,
|
|
@@ -453,8 +560,13 @@
|
|
|
453
560
|
"output": 262144
|
|
454
561
|
},
|
|
455
562
|
"modalities": {
|
|
456
|
-
"input": [
|
|
457
|
-
|
|
563
|
+
"input": [
|
|
564
|
+
"text",
|
|
565
|
+
"image"
|
|
566
|
+
],
|
|
567
|
+
"output": [
|
|
568
|
+
"text"
|
|
569
|
+
]
|
|
458
570
|
}
|
|
459
571
|
}
|
|
460
572
|
}
|
|
@@ -465,8 +577,12 @@
|
|
|
465
577
|
"apiMode": "chat_completions",
|
|
466
578
|
"authType": "api_key",
|
|
467
579
|
"baseUrl": "https://api.deepseek.com/v1",
|
|
468
|
-
"envVars": [
|
|
469
|
-
|
|
580
|
+
"envVars": [
|
|
581
|
+
"DEEPSEEK_API_KEY"
|
|
582
|
+
],
|
|
583
|
+
"fallbackModels": [
|
|
584
|
+
"deepseek-chat"
|
|
585
|
+
],
|
|
470
586
|
"capabilities": {
|
|
471
587
|
"supportsToolUse": true,
|
|
472
588
|
"supportsVision": false,
|
|
@@ -492,8 +608,12 @@
|
|
|
492
608
|
"output": 384000
|
|
493
609
|
},
|
|
494
610
|
"modalities": {
|
|
495
|
-
"input": [
|
|
496
|
-
|
|
611
|
+
"input": [
|
|
612
|
+
"text"
|
|
613
|
+
],
|
|
614
|
+
"output": [
|
|
615
|
+
"text"
|
|
616
|
+
]
|
|
497
617
|
}
|
|
498
618
|
},
|
|
499
619
|
"deepseek-v4-flash": {
|
|
@@ -514,8 +634,12 @@
|
|
|
514
634
|
"output": 8000
|
|
515
635
|
},
|
|
516
636
|
"modalities": {
|
|
517
|
-
"input": [
|
|
518
|
-
|
|
637
|
+
"input": [
|
|
638
|
+
"text"
|
|
639
|
+
],
|
|
640
|
+
"output": [
|
|
641
|
+
"text"
|
|
642
|
+
]
|
|
519
643
|
},
|
|
520
644
|
"cache_control": false
|
|
521
645
|
},
|
|
@@ -524,7 +648,9 @@
|
|
|
524
648
|
"structured_output": false,
|
|
525
649
|
"cache_control": false,
|
|
526
650
|
"modalities": {
|
|
527
|
-
"input": [
|
|
651
|
+
"input": [
|
|
652
|
+
"text"
|
|
653
|
+
]
|
|
528
654
|
},
|
|
529
655
|
"limit": {
|
|
530
656
|
"context": 131072,
|
|
@@ -539,8 +665,12 @@
|
|
|
539
665
|
"apiMode": "chat_completions",
|
|
540
666
|
"authType": "api_key",
|
|
541
667
|
"baseUrl": "https://api.together.xyz/v1",
|
|
542
|
-
"envVars": [
|
|
543
|
-
|
|
668
|
+
"envVars": [
|
|
669
|
+
"TOGETHER_API_KEY"
|
|
670
|
+
],
|
|
671
|
+
"fallbackModels": [
|
|
672
|
+
"meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo"
|
|
673
|
+
],
|
|
544
674
|
"capabilities": {
|
|
545
675
|
"supportsToolUse": true,
|
|
546
676
|
"supportsVision": true,
|
|
@@ -555,8 +685,12 @@
|
|
|
555
685
|
"apiMode": "chat_completions",
|
|
556
686
|
"authType": "api_key",
|
|
557
687
|
"baseUrl": "https://api.fireworks.ai/inference/v1",
|
|
558
|
-
"envVars": [
|
|
559
|
-
|
|
688
|
+
"envVars": [
|
|
689
|
+
"FIREWORKS_API_KEY"
|
|
690
|
+
],
|
|
691
|
+
"fallbackModels": [
|
|
692
|
+
"accounts/fireworks/models/llama-v3p1-70b-instruct"
|
|
693
|
+
],
|
|
560
694
|
"capabilities": {
|
|
561
695
|
"supportsToolUse": true,
|
|
562
696
|
"supportsVision": true,
|
|
@@ -571,8 +705,13 @@
|
|
|
571
705
|
"apiMode": "chat_completions",
|
|
572
706
|
"authType": "api_key",
|
|
573
707
|
"baseUrl": "https://generativelanguage.googleapis.com/v1beta/openai",
|
|
574
|
-
"envVars": [
|
|
575
|
-
|
|
708
|
+
"envVars": [
|
|
709
|
+
"GOOGLE_API_KEY",
|
|
710
|
+
"GEMINI_API_KEY"
|
|
711
|
+
],
|
|
712
|
+
"fallbackModels": [
|
|
713
|
+
"gemini-2.0-flash"
|
|
714
|
+
],
|
|
576
715
|
"capabilities": {
|
|
577
716
|
"supportsToolUse": true,
|
|
578
717
|
"supportsVision": true,
|
|
@@ -580,7 +719,10 @@
|
|
|
580
719
|
"supportsStreaming": true,
|
|
581
720
|
"supportsCacheControl": false
|
|
582
721
|
},
|
|
583
|
-
"aliases": [
|
|
722
|
+
"aliases": [
|
|
723
|
+
"gemini",
|
|
724
|
+
"google"
|
|
725
|
+
],
|
|
584
726
|
"models": {
|
|
585
727
|
"gemini-2.0-flash": {
|
|
586
728
|
"name": "Gemini 2.0 Flash",
|
|
@@ -600,8 +742,16 @@
|
|
|
600
742
|
"output": 8192
|
|
601
743
|
},
|
|
602
744
|
"modalities": {
|
|
603
|
-
"input": [
|
|
604
|
-
|
|
745
|
+
"input": [
|
|
746
|
+
"text",
|
|
747
|
+
"image",
|
|
748
|
+
"audio",
|
|
749
|
+
"video",
|
|
750
|
+
"pdf"
|
|
751
|
+
],
|
|
752
|
+
"output": [
|
|
753
|
+
"text"
|
|
754
|
+
]
|
|
605
755
|
},
|
|
606
756
|
"status": "deprecated"
|
|
607
757
|
},
|
|
@@ -623,8 +773,13 @@
|
|
|
623
773
|
"output": 8000
|
|
624
774
|
},
|
|
625
775
|
"modalities": {
|
|
626
|
-
"input": [
|
|
627
|
-
|
|
776
|
+
"input": [
|
|
777
|
+
"text",
|
|
778
|
+
"image"
|
|
779
|
+
],
|
|
780
|
+
"output": [
|
|
781
|
+
"text"
|
|
782
|
+
]
|
|
628
783
|
},
|
|
629
784
|
"cache_control": false
|
|
630
785
|
},
|
|
@@ -646,8 +801,13 @@
|
|
|
646
801
|
"output": 8000
|
|
647
802
|
},
|
|
648
803
|
"modalities": {
|
|
649
|
-
"input": [
|
|
650
|
-
|
|
804
|
+
"input": [
|
|
805
|
+
"text",
|
|
806
|
+
"image"
|
|
807
|
+
],
|
|
808
|
+
"output": [
|
|
809
|
+
"text"
|
|
810
|
+
]
|
|
651
811
|
},
|
|
652
812
|
"cache_control": false
|
|
653
813
|
}
|
|
@@ -660,7 +820,9 @@
|
|
|
660
820
|
"authType": "none",
|
|
661
821
|
"baseUrl": "http://localhost:11434/v1",
|
|
662
822
|
"envVars": [],
|
|
663
|
-
"fallbackModels": [
|
|
823
|
+
"fallbackModels": [
|
|
824
|
+
"llama3.2"
|
|
825
|
+
],
|
|
664
826
|
"capabilities": {
|
|
665
827
|
"supportsToolUse": true,
|
|
666
828
|
"supportsVision": true,
|
|
@@ -668,7 +830,9 @@
|
|
|
668
830
|
"supportsStreaming": true,
|
|
669
831
|
"supportsCacheControl": false
|
|
670
832
|
},
|
|
671
|
-
"aliases": [
|
|
833
|
+
"aliases": [
|
|
834
|
+
"ollama"
|
|
835
|
+
]
|
|
672
836
|
},
|
|
673
837
|
{
|
|
674
838
|
"id": "lmstudio",
|
|
@@ -677,7 +841,9 @@
|
|
|
677
841
|
"authType": "none",
|
|
678
842
|
"baseUrl": "http://localhost:1234/v1",
|
|
679
843
|
"envVars": [],
|
|
680
|
-
"fallbackModels": [
|
|
844
|
+
"fallbackModels": [
|
|
845
|
+
"lmstudio-community/default"
|
|
846
|
+
],
|
|
681
847
|
"capabilities": {
|
|
682
848
|
"supportsToolUse": true,
|
|
683
849
|
"supportsVision": false,
|
|
@@ -685,7 +851,9 @@
|
|
|
685
851
|
"supportsStreaming": true,
|
|
686
852
|
"supportsCacheControl": false
|
|
687
853
|
},
|
|
688
|
-
"aliases": [
|
|
854
|
+
"aliases": [
|
|
855
|
+
"lmstudio"
|
|
856
|
+
]
|
|
689
857
|
},
|
|
690
858
|
{
|
|
691
859
|
"id": "llamacpp",
|
|
@@ -694,7 +862,9 @@
|
|
|
694
862
|
"authType": "none",
|
|
695
863
|
"baseUrl": "http://localhost:8080/v1",
|
|
696
864
|
"envVars": [],
|
|
697
|
-
"fallbackModels": [
|
|
865
|
+
"fallbackModels": [
|
|
866
|
+
"default"
|
|
867
|
+
],
|
|
698
868
|
"capabilities": {
|
|
699
869
|
"supportsToolUse": true,
|
|
700
870
|
"supportsVision": false,
|
|
@@ -702,7 +872,9 @@
|
|
|
702
872
|
"supportsStreaming": true,
|
|
703
873
|
"supportsCacheControl": false
|
|
704
874
|
},
|
|
705
|
-
"aliases": [
|
|
875
|
+
"aliases": [
|
|
876
|
+
"llamacpp"
|
|
877
|
+
]
|
|
706
878
|
},
|
|
707
879
|
{
|
|
708
880
|
"id": "bedrock",
|
|
@@ -710,8 +882,13 @@
|
|
|
710
882
|
"apiMode": "bedrock",
|
|
711
883
|
"authType": "aws_sdk",
|
|
712
884
|
"baseUrl": "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
713
|
-
"envVars": [
|
|
714
|
-
|
|
885
|
+
"envVars": [
|
|
886
|
+
"AWS_ACCESS_KEY_ID",
|
|
887
|
+
"AWS_SECRET_ACCESS_KEY"
|
|
888
|
+
],
|
|
889
|
+
"fallbackModels": [
|
|
890
|
+
"anthropic.claude-3-5-sonnet-20241022-v2:0"
|
|
891
|
+
],
|
|
715
892
|
"capabilities": {
|
|
716
893
|
"supportsToolUse": true,
|
|
717
894
|
"supportsVision": true,
|
|
@@ -719,7 +896,9 @@
|
|
|
719
896
|
"supportsStreaming": true,
|
|
720
897
|
"supportsCacheControl": true
|
|
721
898
|
},
|
|
722
|
-
"aliases": [
|
|
899
|
+
"aliases": [
|
|
900
|
+
"bedrock"
|
|
901
|
+
]
|
|
723
902
|
},
|
|
724
903
|
{
|
|
725
904
|
"id": "vertex",
|
|
@@ -727,8 +906,12 @@
|
|
|
727
906
|
"apiMode": "chat_completions",
|
|
728
907
|
"authType": "gcp_oauth",
|
|
729
908
|
"baseUrl": "https://us-central1-aiplatform.googleapis.com/v1",
|
|
730
|
-
"envVars": [
|
|
731
|
-
|
|
909
|
+
"envVars": [
|
|
910
|
+
"GOOGLE_APPLICATION_CREDENTIALS"
|
|
911
|
+
],
|
|
912
|
+
"fallbackModels": [
|
|
913
|
+
"gemini-1.5-pro"
|
|
914
|
+
],
|
|
732
915
|
"capabilities": {
|
|
733
916
|
"supportsToolUse": true,
|
|
734
917
|
"supportsVision": true,
|
|
@@ -736,7 +919,9 @@
|
|
|
736
919
|
"supportsStreaming": true,
|
|
737
920
|
"supportsCacheControl": false
|
|
738
921
|
},
|
|
739
|
-
"aliases": [
|
|
922
|
+
"aliases": [
|
|
923
|
+
"vertex"
|
|
924
|
+
]
|
|
740
925
|
},
|
|
741
926
|
{
|
|
742
927
|
"id": "cohere",
|
|
@@ -744,8 +929,12 @@
|
|
|
744
929
|
"apiMode": "chat_completions",
|
|
745
930
|
"authType": "api_key",
|
|
746
931
|
"baseUrl": "https://api.cohere.com/v2",
|
|
747
|
-
"envVars": [
|
|
748
|
-
|
|
932
|
+
"envVars": [
|
|
933
|
+
"COHERE_API_KEY"
|
|
934
|
+
],
|
|
935
|
+
"fallbackModels": [
|
|
936
|
+
"command-r-plus"
|
|
937
|
+
],
|
|
749
938
|
"capabilities": {
|
|
750
939
|
"supportsToolUse": true,
|
|
751
940
|
"supportsVision": false,
|
|
@@ -760,8 +949,12 @@
|
|
|
760
949
|
"apiMode": "chat_completions",
|
|
761
950
|
"authType": "api_key",
|
|
762
951
|
"baseUrl": "https://api.perplexity.ai",
|
|
763
|
-
"envVars": [
|
|
764
|
-
|
|
952
|
+
"envVars": [
|
|
953
|
+
"PERPLEXITY_API_KEY"
|
|
954
|
+
],
|
|
955
|
+
"fallbackModels": [
|
|
956
|
+
"llama-3.1-sonar-large-128k-online"
|
|
957
|
+
],
|
|
765
958
|
"capabilities": {
|
|
766
959
|
"supportsToolUse": false,
|
|
767
960
|
"supportsVision": false,
|
|
@@ -776,8 +969,12 @@
|
|
|
776
969
|
"apiMode": "chat_completions",
|
|
777
970
|
"authType": "api_key",
|
|
778
971
|
"baseUrl": "https://api.x.ai/v1",
|
|
779
|
-
"envVars": [
|
|
780
|
-
|
|
972
|
+
"envVars": [
|
|
973
|
+
"XAI_API_KEY"
|
|
974
|
+
],
|
|
975
|
+
"fallbackModels": [
|
|
976
|
+
"grok-2"
|
|
977
|
+
],
|
|
781
978
|
"capabilities": {
|
|
782
979
|
"supportsToolUse": true,
|
|
783
980
|
"supportsVision": true,
|
|
@@ -785,7 +982,9 @@
|
|
|
785
982
|
"supportsStreaming": true,
|
|
786
983
|
"supportsCacheControl": false
|
|
787
984
|
},
|
|
788
|
-
"aliases": [
|
|
985
|
+
"aliases": [
|
|
986
|
+
"grok"
|
|
987
|
+
]
|
|
789
988
|
},
|
|
790
989
|
{
|
|
791
990
|
"id": "sambanova",
|
|
@@ -793,8 +992,12 @@
|
|
|
793
992
|
"apiMode": "chat_completions",
|
|
794
993
|
"authType": "api_key",
|
|
795
994
|
"baseUrl": "https://api.sambanova.ai/v1",
|
|
796
|
-
"envVars": [
|
|
797
|
-
|
|
995
|
+
"envVars": [
|
|
996
|
+
"SAMBANOVA_API_KEY"
|
|
997
|
+
],
|
|
998
|
+
"fallbackModels": [
|
|
999
|
+
"Meta-Llama-3.1-70B-Instruct"
|
|
1000
|
+
],
|
|
798
1001
|
"capabilities": {
|
|
799
1002
|
"supportsToolUse": true,
|
|
800
1003
|
"supportsVision": false,
|
|
@@ -809,8 +1012,12 @@
|
|
|
809
1012
|
"apiMode": "chat_completions",
|
|
810
1013
|
"authType": "api_key",
|
|
811
1014
|
"baseUrl": "https://api.cerebras.ai/v1",
|
|
812
|
-
"envVars": [
|
|
813
|
-
|
|
1015
|
+
"envVars": [
|
|
1016
|
+
"CEREBRAS_API_KEY"
|
|
1017
|
+
],
|
|
1018
|
+
"fallbackModels": [
|
|
1019
|
+
"llama3.1-70b"
|
|
1020
|
+
],
|
|
814
1021
|
"capabilities": {
|
|
815
1022
|
"supportsToolUse": true,
|
|
816
1023
|
"supportsVision": false,
|
|
@@ -825,8 +1032,12 @@
|
|
|
825
1032
|
"apiMode": "chat_completions",
|
|
826
1033
|
"authType": "api_key",
|
|
827
1034
|
"baseUrl": "https://api.deepinfra.com/v1/openai",
|
|
828
|
-
"envVars": [
|
|
829
|
-
|
|
1035
|
+
"envVars": [
|
|
1036
|
+
"DEEPINFRA_API_KEY"
|
|
1037
|
+
],
|
|
1038
|
+
"fallbackModels": [
|
|
1039
|
+
"meta-llama/Meta-Llama-3.1-70B-Instruct"
|
|
1040
|
+
],
|
|
830
1041
|
"capabilities": {
|
|
831
1042
|
"supportsToolUse": true,
|
|
832
1043
|
"supportsVision": true,
|
|
@@ -841,8 +1052,13 @@
|
|
|
841
1052
|
"apiMode": "chat_completions",
|
|
842
1053
|
"authType": "api_key",
|
|
843
1054
|
"baseUrl": "https://api-inference.huggingface.co/v1",
|
|
844
|
-
"envVars": [
|
|
845
|
-
|
|
1055
|
+
"envVars": [
|
|
1056
|
+
"HF_TOKEN",
|
|
1057
|
+
"HUGGINGFACE_API_KEY"
|
|
1058
|
+
],
|
|
1059
|
+
"fallbackModels": [
|
|
1060
|
+
"meta-llama/Llama-3.2-3B-Instruct"
|
|
1061
|
+
],
|
|
846
1062
|
"capabilities": {
|
|
847
1063
|
"supportsToolUse": true,
|
|
848
1064
|
"supportsVision": false,
|
|
@@ -857,8 +1073,12 @@
|
|
|
857
1073
|
"apiMode": "chat_completions",
|
|
858
1074
|
"authType": "api_key",
|
|
859
1075
|
"baseUrl": "https://integrate.api.nvidia.com/v1",
|
|
860
|
-
"envVars": [
|
|
861
|
-
|
|
1076
|
+
"envVars": [
|
|
1077
|
+
"NVIDIA_API_KEY"
|
|
1078
|
+
],
|
|
1079
|
+
"fallbackModels": [
|
|
1080
|
+
"meta/llama-3.1-70b-instruct"
|
|
1081
|
+
],
|
|
862
1082
|
"capabilities": {
|
|
863
1083
|
"supportsToolUse": true,
|
|
864
1084
|
"supportsVision": true,
|
|
@@ -873,8 +1093,12 @@
|
|
|
873
1093
|
"apiMode": "chat_completions",
|
|
874
1094
|
"authType": "api_key",
|
|
875
1095
|
"baseUrl": "https://llama3-1-70b.lepton.run/api/v1",
|
|
876
|
-
"envVars": [
|
|
877
|
-
|
|
1096
|
+
"envVars": [
|
|
1097
|
+
"LEPTON_API_KEY"
|
|
1098
|
+
],
|
|
1099
|
+
"fallbackModels": [
|
|
1100
|
+
"llama3-1-70b"
|
|
1101
|
+
],
|
|
878
1102
|
"capabilities": {
|
|
879
1103
|
"supportsToolUse": true,
|
|
880
1104
|
"supportsVision": false,
|
|
@@ -889,8 +1113,12 @@
|
|
|
889
1113
|
"apiMode": "chat_completions",
|
|
890
1114
|
"authType": "api_key",
|
|
891
1115
|
"baseUrl": "https://api.endpoints.anyscale.com/v1",
|
|
892
|
-
"envVars": [
|
|
893
|
-
|
|
1116
|
+
"envVars": [
|
|
1117
|
+
"ANYSCALE_API_KEY"
|
|
1118
|
+
],
|
|
1119
|
+
"fallbackModels": [
|
|
1120
|
+
"meta-llama/Meta-Llama-3-70B-Instruct"
|
|
1121
|
+
],
|
|
894
1122
|
"capabilities": {
|
|
895
1123
|
"supportsToolUse": true,
|
|
896
1124
|
"supportsVision": false,
|
|
@@ -905,8 +1133,12 @@
|
|
|
905
1133
|
"apiMode": "chat_completions",
|
|
906
1134
|
"authType": "api_key",
|
|
907
1135
|
"baseUrl": "https://openai-proxy.replicate.com/v1",
|
|
908
|
-
"envVars": [
|
|
909
|
-
|
|
1136
|
+
"envVars": [
|
|
1137
|
+
"REPLICATE_API_TOKEN"
|
|
1138
|
+
],
|
|
1139
|
+
"fallbackModels": [
|
|
1140
|
+
"meta/meta-llama-3-70b-instruct"
|
|
1141
|
+
],
|
|
910
1142
|
"capabilities": {
|
|
911
1143
|
"supportsToolUse": false,
|
|
912
1144
|
"supportsVision": true,
|
|
@@ -921,8 +1153,12 @@
|
|
|
921
1153
|
"apiMode": "chat_completions",
|
|
922
1154
|
"authType": "api_key",
|
|
923
1155
|
"baseUrl": "https://api.ai21.com/studio/v1",
|
|
924
|
-
"envVars": [
|
|
925
|
-
|
|
1156
|
+
"envVars": [
|
|
1157
|
+
"AI21_API_KEY"
|
|
1158
|
+
],
|
|
1159
|
+
"fallbackModels": [
|
|
1160
|
+
"jamba-1.5-large"
|
|
1161
|
+
],
|
|
926
1162
|
"capabilities": {
|
|
927
1163
|
"supportsToolUse": true,
|
|
928
1164
|
"supportsVision": false,
|
|
@@ -937,8 +1173,12 @@
|
|
|
937
1173
|
"apiMode": "chat_completions",
|
|
938
1174
|
"authType": "api_key",
|
|
939
1175
|
"baseUrl": "https://api.aleph-alpha.com/v1",
|
|
940
|
-
"envVars": [
|
|
941
|
-
|
|
1176
|
+
"envVars": [
|
|
1177
|
+
"ALEPH_ALPHA_API_KEY"
|
|
1178
|
+
],
|
|
1179
|
+
"fallbackModels": [
|
|
1180
|
+
"luminous-extended"
|
|
1181
|
+
],
|
|
942
1182
|
"capabilities": {
|
|
943
1183
|
"supportsToolUse": false,
|
|
944
1184
|
"supportsVision": false,
|
|
@@ -953,8 +1193,13 @@
|
|
|
953
1193
|
"apiMode": "chat_completions",
|
|
954
1194
|
"authType": "api_key",
|
|
955
1195
|
"baseUrl": "https://api.cloudflare.com/client/v4/accounts/{account_id}/ai/v1",
|
|
956
|
-
"envVars": [
|
|
957
|
-
|
|
1196
|
+
"envVars": [
|
|
1197
|
+
"CLOUDFLARE_API_TOKEN",
|
|
1198
|
+
"CLOUDFLARE_ACCOUNT_ID"
|
|
1199
|
+
],
|
|
1200
|
+
"fallbackModels": [
|
|
1201
|
+
"@cf/meta/llama-3.1-70b-instruct"
|
|
1202
|
+
],
|
|
958
1203
|
"capabilities": {
|
|
959
1204
|
"supportsToolUse": true,
|
|
960
1205
|
"supportsVision": false,
|
|
@@ -969,8 +1214,13 @@
|
|
|
969
1214
|
"apiMode": "chat_completions",
|
|
970
1215
|
"authType": "api_key",
|
|
971
1216
|
"baseUrl": "https://{resource}.openai.azure.com/openai/deployments/{deployment}",
|
|
972
|
-
"envVars": [
|
|
973
|
-
|
|
1217
|
+
"envVars": [
|
|
1218
|
+
"AZURE_OPENAI_API_KEY",
|
|
1219
|
+
"AZURE_OPENAI_ENDPOINT"
|
|
1220
|
+
],
|
|
1221
|
+
"fallbackModels": [
|
|
1222
|
+
"gpt-4o"
|
|
1223
|
+
],
|
|
974
1224
|
"capabilities": {
|
|
975
1225
|
"supportsToolUse": true,
|
|
976
1226
|
"supportsVision": true,
|
|
@@ -985,8 +1235,12 @@
|
|
|
985
1235
|
"apiMode": "chat_completions",
|
|
986
1236
|
"authType": "api_key",
|
|
987
1237
|
"baseUrl": "https://models.inference.ai.azure.com",
|
|
988
|
-
"envVars": [
|
|
989
|
-
|
|
1238
|
+
"envVars": [
|
|
1239
|
+
"GITHUB_TOKEN"
|
|
1240
|
+
],
|
|
1241
|
+
"fallbackModels": [
|
|
1242
|
+
"gpt-4o-mini"
|
|
1243
|
+
],
|
|
990
1244
|
"capabilities": {
|
|
991
1245
|
"supportsToolUse": true,
|
|
992
1246
|
"supportsVision": true,
|
|
@@ -1001,8 +1255,12 @@
|
|
|
1001
1255
|
"apiMode": "chat_completions",
|
|
1002
1256
|
"authType": "api_key",
|
|
1003
1257
|
"baseUrl": "https://api.hyperbolic.xyz/v1",
|
|
1004
|
-
"envVars": [
|
|
1005
|
-
|
|
1258
|
+
"envVars": [
|
|
1259
|
+
"HYPERBOLIC_API_KEY"
|
|
1260
|
+
],
|
|
1261
|
+
"fallbackModels": [
|
|
1262
|
+
"meta-llama/Meta-Llama-3.1-70B-Instruct"
|
|
1263
|
+
],
|
|
1006
1264
|
"capabilities": {
|
|
1007
1265
|
"supportsToolUse": true,
|
|
1008
1266
|
"supportsVision": false,
|
|
@@ -1017,8 +1275,12 @@
|
|
|
1017
1275
|
"apiMode": "chat_completions",
|
|
1018
1276
|
"authType": "api_key",
|
|
1019
1277
|
"baseUrl": "https://api.novita.ai/v3/openai",
|
|
1020
|
-
"envVars": [
|
|
1021
|
-
|
|
1278
|
+
"envVars": [
|
|
1279
|
+
"NOVITA_API_KEY"
|
|
1280
|
+
],
|
|
1281
|
+
"fallbackModels": [
|
|
1282
|
+
"meta-llama/llama-3.1-70b-instruct"
|
|
1283
|
+
],
|
|
1022
1284
|
"capabilities": {
|
|
1023
1285
|
"supportsToolUse": true,
|
|
1024
1286
|
"supportsVision": false,
|
|
@@ -1033,8 +1295,12 @@
|
|
|
1033
1295
|
"apiMode": "chat_completions",
|
|
1034
1296
|
"authType": "api_key",
|
|
1035
1297
|
"baseUrl": "https://api.moonshot.cn/v1",
|
|
1036
|
-
"envVars": [
|
|
1037
|
-
|
|
1298
|
+
"envVars": [
|
|
1299
|
+
"MOONSHOT_API_KEY"
|
|
1300
|
+
],
|
|
1301
|
+
"fallbackModels": [
|
|
1302
|
+
"moonshot-v1-8k"
|
|
1303
|
+
],
|
|
1038
1304
|
"capabilities": {
|
|
1039
1305
|
"supportsToolUse": true,
|
|
1040
1306
|
"supportsVision": false,
|
|
@@ -1049,8 +1315,12 @@
|
|
|
1049
1315
|
"apiMode": "chat_completions",
|
|
1050
1316
|
"authType": "api_key",
|
|
1051
1317
|
"baseUrl": "https://dashscope.aliyuncs.com/compatible-mode/v1",
|
|
1052
|
-
"envVars": [
|
|
1053
|
-
|
|
1318
|
+
"envVars": [
|
|
1319
|
+
"DASHSCOPE_API_KEY"
|
|
1320
|
+
],
|
|
1321
|
+
"fallbackModels": [
|
|
1322
|
+
"qwen-plus"
|
|
1323
|
+
],
|
|
1054
1324
|
"capabilities": {
|
|
1055
1325
|
"supportsToolUse": true,
|
|
1056
1326
|
"supportsVision": true,
|
|
@@ -1058,14 +1328,18 @@
|
|
|
1058
1328
|
"supportsStreaming": true,
|
|
1059
1329
|
"supportsCacheControl": false
|
|
1060
1330
|
},
|
|
1061
|
-
"aliases": [
|
|
1331
|
+
"aliases": [
|
|
1332
|
+
"dashscope"
|
|
1333
|
+
],
|
|
1062
1334
|
"models": {
|
|
1063
1335
|
"qwen3-coder-30b-a3b-instruct": {
|
|
1064
1336
|
"tool_call": true,
|
|
1065
1337
|
"structured_output": false,
|
|
1066
1338
|
"cache_control": false,
|
|
1067
1339
|
"modalities": {
|
|
1068
|
-
"input": [
|
|
1340
|
+
"input": [
|
|
1341
|
+
"text"
|
|
1342
|
+
]
|
|
1069
1343
|
},
|
|
1070
1344
|
"limit": {
|
|
1071
1345
|
"context": 160000,
|
|
@@ -1080,8 +1354,12 @@
|
|
|
1080
1354
|
"apiMode": "chat_completions",
|
|
1081
1355
|
"authType": "api_key",
|
|
1082
1356
|
"baseUrl": "https://open.bigmodel.cn/api/paas/v4",
|
|
1083
|
-
"envVars": [
|
|
1084
|
-
|
|
1357
|
+
"envVars": [
|
|
1358
|
+
"ZHIPU_API_KEY"
|
|
1359
|
+
],
|
|
1360
|
+
"fallbackModels": [
|
|
1361
|
+
"glm-4-plus"
|
|
1362
|
+
],
|
|
1085
1363
|
"capabilities": {
|
|
1086
1364
|
"supportsToolUse": true,
|
|
1087
1365
|
"supportsVision": true,
|
|
@@ -1089,7 +1367,10 @@
|
|
|
1089
1367
|
"supportsStreaming": true,
|
|
1090
1368
|
"supportsCacheControl": false
|
|
1091
1369
|
},
|
|
1092
|
-
"aliases": [
|
|
1370
|
+
"aliases": [
|
|
1371
|
+
"glm",
|
|
1372
|
+
"z-ai"
|
|
1373
|
+
],
|
|
1093
1374
|
"models": {
|
|
1094
1375
|
"glm-4.7-flash": {
|
|
1095
1376
|
"name": "GLM-4.7-Flash",
|
|
@@ -1109,8 +1390,12 @@
|
|
|
1109
1390
|
"output": 8000
|
|
1110
1391
|
},
|
|
1111
1392
|
"modalities": {
|
|
1112
|
-
"input": [
|
|
1113
|
-
|
|
1393
|
+
"input": [
|
|
1394
|
+
"text"
|
|
1395
|
+
],
|
|
1396
|
+
"output": [
|
|
1397
|
+
"text"
|
|
1398
|
+
]
|
|
1114
1399
|
},
|
|
1115
1400
|
"structured_output": false,
|
|
1116
1401
|
"cache_control": false
|
|
@@ -1123,8 +1408,12 @@
|
|
|
1123
1408
|
"apiMode": "chat_completions",
|
|
1124
1409
|
"authType": "api_key",
|
|
1125
1410
|
"baseUrl": "https://api.minimax.chat/v1",
|
|
1126
|
-
"envVars": [
|
|
1127
|
-
|
|
1411
|
+
"envVars": [
|
|
1412
|
+
"MINIMAX_API_KEY"
|
|
1413
|
+
],
|
|
1414
|
+
"fallbackModels": [
|
|
1415
|
+
"MiniMax-Text-01"
|
|
1416
|
+
],
|
|
1128
1417
|
"capabilities": {
|
|
1129
1418
|
"supportsToolUse": true,
|
|
1130
1419
|
"supportsVision": false,
|
|
@@ -1139,8 +1428,12 @@
|
|
|
1139
1428
|
"apiMode": "chat_completions",
|
|
1140
1429
|
"authType": "api_key",
|
|
1141
1430
|
"baseUrl": "https://api.baichuan-ai.com/v1",
|
|
1142
|
-
"envVars": [
|
|
1143
|
-
|
|
1431
|
+
"envVars": [
|
|
1432
|
+
"BAICHUAN_API_KEY"
|
|
1433
|
+
],
|
|
1434
|
+
"fallbackModels": [
|
|
1435
|
+
"Baichuan4"
|
|
1436
|
+
],
|
|
1144
1437
|
"capabilities": {
|
|
1145
1438
|
"supportsToolUse": true,
|
|
1146
1439
|
"supportsVision": false,
|
|
@@ -1155,8 +1448,12 @@
|
|
|
1155
1448
|
"apiMode": "chat_completions",
|
|
1156
1449
|
"authType": "api_key",
|
|
1157
1450
|
"baseUrl": "https://api.voyageai.com/v1",
|
|
1158
|
-
"envVars": [
|
|
1159
|
-
|
|
1451
|
+
"envVars": [
|
|
1452
|
+
"VOYAGE_API_KEY"
|
|
1453
|
+
],
|
|
1454
|
+
"fallbackModels": [
|
|
1455
|
+
"voyage-3"
|
|
1456
|
+
],
|
|
1160
1457
|
"capabilities": {
|
|
1161
1458
|
"supportsToolUse": false,
|
|
1162
1459
|
"supportsVision": false,
|
|
@@ -1171,8 +1468,12 @@
|
|
|
1171
1468
|
"apiMode": "chat_completions",
|
|
1172
1469
|
"authType": "api_key",
|
|
1173
1470
|
"baseUrl": "https://api.jina.ai/v1",
|
|
1174
|
-
"envVars": [
|
|
1175
|
-
|
|
1471
|
+
"envVars": [
|
|
1472
|
+
"JINA_API_KEY"
|
|
1473
|
+
],
|
|
1474
|
+
"fallbackModels": [
|
|
1475
|
+
"jina-embeddings-v3"
|
|
1476
|
+
],
|
|
1176
1477
|
"capabilities": {
|
|
1177
1478
|
"supportsToolUse": false,
|
|
1178
1479
|
"supportsVision": false,
|
|
@@ -1187,8 +1488,13 @@
|
|
|
1187
1488
|
"apiMode": "chat_completions",
|
|
1188
1489
|
"authType": "api_key",
|
|
1189
1490
|
"baseUrl": "https://oai.helicone.ai/v1",
|
|
1190
|
-
"envVars": [
|
|
1191
|
-
|
|
1491
|
+
"envVars": [
|
|
1492
|
+
"HELICONE_API_KEY",
|
|
1493
|
+
"OPENAI_API_KEY"
|
|
1494
|
+
],
|
|
1495
|
+
"fallbackModels": [
|
|
1496
|
+
"gpt-4o-mini"
|
|
1497
|
+
],
|
|
1192
1498
|
"capabilities": {
|
|
1193
1499
|
"supportsToolUse": true,
|
|
1194
1500
|
"supportsVision": true,
|
|
@@ -1214,8 +1520,13 @@
|
|
|
1214
1520
|
"output": 16384
|
|
1215
1521
|
},
|
|
1216
1522
|
"modalities": {
|
|
1217
|
-
"input": [
|
|
1218
|
-
|
|
1523
|
+
"input": [
|
|
1524
|
+
"text",
|
|
1525
|
+
"image"
|
|
1526
|
+
],
|
|
1527
|
+
"output": [
|
|
1528
|
+
"text"
|
|
1529
|
+
]
|
|
1219
1530
|
}
|
|
1220
1531
|
}
|
|
1221
1532
|
}
|
|
@@ -1226,8 +1537,12 @@
|
|
|
1226
1537
|
"apiMode": "chat_completions",
|
|
1227
1538
|
"authType": "api_key",
|
|
1228
1539
|
"baseUrl": "https://api.portkey.ai/v1",
|
|
1229
|
-
"envVars": [
|
|
1230
|
-
|
|
1540
|
+
"envVars": [
|
|
1541
|
+
"PORTKEY_API_KEY"
|
|
1542
|
+
],
|
|
1543
|
+
"fallbackModels": [
|
|
1544
|
+
"gpt-4o-mini"
|
|
1545
|
+
],
|
|
1231
1546
|
"capabilities": {
|
|
1232
1547
|
"supportsToolUse": true,
|
|
1233
1548
|
"supportsVision": true,
|
|
@@ -1242,8 +1557,12 @@
|
|
|
1242
1557
|
"apiMode": "chat_completions",
|
|
1243
1558
|
"authType": "api_key",
|
|
1244
1559
|
"baseUrl": "https://bridge.baseten.co/v1",
|
|
1245
|
-
"envVars": [
|
|
1246
|
-
|
|
1560
|
+
"envVars": [
|
|
1561
|
+
"BASETEN_API_KEY"
|
|
1562
|
+
],
|
|
1563
|
+
"fallbackModels": [
|
|
1564
|
+
"meta-llama/Meta-Llama-3-70B-Instruct"
|
|
1565
|
+
],
|
|
1247
1566
|
"capabilities": {
|
|
1248
1567
|
"supportsToolUse": true,
|
|
1249
1568
|
"supportsVision": false,
|
|
@@ -1258,8 +1577,13 @@
|
|
|
1258
1577
|
"apiMode": "chat_completions",
|
|
1259
1578
|
"authType": "api_key",
|
|
1260
1579
|
"baseUrl": "https://api.modal.com/v1",
|
|
1261
|
-
"envVars": [
|
|
1262
|
-
|
|
1580
|
+
"envVars": [
|
|
1581
|
+
"MODAL_TOKEN_ID",
|
|
1582
|
+
"MODAL_TOKEN_SECRET"
|
|
1583
|
+
],
|
|
1584
|
+
"fallbackModels": [
|
|
1585
|
+
"meta-llama/Meta-Llama-3-70B-Instruct"
|
|
1586
|
+
],
|
|
1263
1587
|
"capabilities": {
|
|
1264
1588
|
"supportsToolUse": true,
|
|
1265
1589
|
"supportsVision": false,
|