modelpedia 0.0.2 → 0.0.3

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.
Files changed (64) hide show
  1. package/README.md +135 -0
  2. package/dist/index.cjs +1 -101
  3. package/dist/index.mjs +1 -92
  4. package/dist/providers/alibaba.cjs +4 -835
  5. package/dist/providers/alibaba.mjs +4 -833
  6. package/dist/providers/amazon.cjs +4 -1484
  7. package/dist/providers/amazon.mjs +4 -1482
  8. package/dist/providers/anthropic.cjs +3 -698
  9. package/dist/providers/anthropic.mjs +3 -696
  10. package/dist/providers/azure.cjs +6 -1491
  11. package/dist/providers/azure.mjs +6 -1489
  12. package/dist/providers/baseten.cjs +3 -279
  13. package/dist/providers/baseten.mjs +3 -277
  14. package/dist/providers/cerebras.cjs +4 -145
  15. package/dist/providers/cerebras.mjs +4 -143
  16. package/dist/providers/cloudflare.cjs +4 -826
  17. package/dist/providers/cloudflare.mjs +4 -824
  18. package/dist/providers/cohere.cjs +5 -525
  19. package/dist/providers/cohere.mjs +5 -523
  20. package/dist/providers/cursor.cjs +1 -856
  21. package/dist/providers/cursor.mjs +1 -854
  22. package/dist/providers/deepseek.cjs +3 -64
  23. package/dist/providers/deepseek.mjs +3 -62
  24. package/dist/providers/fireworks.cjs +3 -3794
  25. package/dist/providers/fireworks.mjs +3 -3792
  26. package/dist/providers/google.cjs +6 -972
  27. package/dist/providers/google.mjs +6 -970
  28. package/dist/providers/groq.cjs +3 -353
  29. package/dist/providers/groq.mjs +3 -351
  30. package/dist/providers/huggingface.cjs +3 -1022
  31. package/dist/providers/huggingface.mjs +3 -1020
  32. package/dist/providers/meta.cjs +3 -481
  33. package/dist/providers/meta.mjs +3 -479
  34. package/dist/providers/minimax.cjs +3 -156
  35. package/dist/providers/minimax.mjs +3 -154
  36. package/dist/providers/mistral.cjs +3 -1594
  37. package/dist/providers/mistral.mjs +3 -1592
  38. package/dist/providers/moonshot.cjs +3 -138
  39. package/dist/providers/moonshot.mjs +3 -136
  40. package/dist/providers/nvidia.cjs +3 -2040
  41. package/dist/providers/nvidia.mjs +3 -2038
  42. package/dist/providers/ollama.cjs +3 -326
  43. package/dist/providers/ollama.mjs +3 -324
  44. package/dist/providers/openai.cjs +3 -9079
  45. package/dist/providers/openai.mjs +3 -9077
  46. package/dist/providers/opencode.cjs +3 -367
  47. package/dist/providers/opencode.mjs +3 -365
  48. package/dist/providers/openrouter.cjs +12 -7835
  49. package/dist/providers/openrouter.mjs +12 -7833
  50. package/dist/providers/perplexity.cjs +3 -311
  51. package/dist/providers/perplexity.mjs +3 -309
  52. package/dist/providers/qwen.cjs +3 -835
  53. package/dist/providers/qwen.mjs +3 -833
  54. package/dist/providers/together.cjs +4 -360
  55. package/dist/providers/together.mjs +4 -358
  56. package/dist/providers/vercel.cjs +3 -4037
  57. package/dist/providers/vercel.mjs +3 -4035
  58. package/dist/providers/vertex.cjs +10 -1072
  59. package/dist/providers/vertex.mjs +10 -1070
  60. package/dist/providers/xai.cjs +3 -301
  61. package/dist/providers/xai.mjs +3 -299
  62. package/dist/providers/zai.cjs +3 -243
  63. package/dist/providers/zai.mjs +3 -241
  64. package/package.json +1 -1
@@ -1,1489 +1,6 @@
1
- //#region src/providers/azure.ts
2
- const provider = {
3
- "id": "azure",
4
- "name": "Azure AI Foundry",
5
- "region": "US",
6
- "url": "https://ai.azure.com",
7
- "api_url": "https://models.inference.ai.azure.com",
8
- "docs_url": "https://learn.microsoft.com/azure/ai-services/openai/concepts/models",
9
- "pricing_url": "https://azure.microsoft.com/pricing/details/cognitive-services/openai-service",
10
- "icon": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" fill=\"currentColor\" fill-rule=\"evenodd\">\n <path d=\"M11.49 2H2v9.492h9.492V2h-.002z\"/>\n <path d=\"M22 2h-9.492v9.492H22V2z\"/>\n <path d=\"M11.49 12.508H2V22h9.492v-9.492h-.002z\"/>\n <path d=\"M22 12.508h-9.492V22H22v-9.492z\"/>\n</svg>",
11
- "models": [
12
- {
13
- "id": "codex-mini",
14
- "name": "codex-mini",
15
- "created_by": "openai",
16
- "source": "official",
17
- "last_updated": "2026-03-21",
18
- "family": "codex",
19
- "capabilities": { "streaming": true },
20
- "modalities": {
21
- "input": ["text"],
22
- "output": ["text"]
23
- }
24
- },
25
- {
26
- "id": "cohere-command-a",
27
- "name": "Cohere-command-a",
28
- "created_by": "cohere",
29
- "source": "official",
30
- "last_updated": "2026-03-21",
31
- "capabilities": {
32
- "streaming": true,
33
- "tool_call": true,
34
- "json_mode": true
35
- },
36
- "modalities": {
37
- "input": ["text"],
38
- "output": ["text"]
39
- }
40
- },
41
- {
42
- "id": "cohere-rerank-v4.0-fast",
43
- "name": "Cohere-rerank-v4.0-fast",
44
- "created_by": "cohere",
45
- "source": "official",
46
- "last_updated": "2026-03-21",
47
- "capabilities": {
48
- "streaming": true,
49
- "tool_call": true,
50
- "json_mode": true
51
- },
52
- "modalities": {
53
- "input": ["text"],
54
- "output": ["text"]
55
- },
56
- "model_type": "rerank"
57
- },
58
- {
59
- "id": "cohere-rerank-v4.0-pro",
60
- "name": "Cohere-rerank-v4.0-pro",
61
- "created_by": "cohere",
62
- "source": "official",
63
- "last_updated": "2026-03-21",
64
- "capabilities": {
65
- "streaming": true,
66
- "tool_call": true,
67
- "json_mode": true
68
- },
69
- "modalities": {
70
- "input": ["text"],
71
- "output": ["text"]
72
- },
73
- "model_type": "rerank"
74
- },
75
- {
76
- "id": "computer-use-preview",
77
- "name": "computer-use-preview",
78
- "created_by": "openai",
79
- "source": "official",
80
- "last_updated": "2026-03-21",
81
- "capabilities": {
82
- "streaming": true,
83
- "tool_call": true
84
- },
85
- "modalities": {
86
- "input": ["text"],
87
- "output": ["text"]
88
- }
89
- },
90
- {
91
- "id": "deepseek-r1-0528",
92
- "name": "DeepSeek-R1-0528",
93
- "created_by": "deepseek",
94
- "source": "official",
95
- "last_updated": "2026-03-21",
96
- "family": "deepseek-r1",
97
- "capabilities": {
98
- "streaming": true,
99
- "tool_call": true,
100
- "reasoning": true,
101
- "vision": true
102
- },
103
- "modalities": {
104
- "input": ["text"],
105
- "output": ["text"]
106
- },
107
- "model_type": "reasoning"
108
- },
109
- {
110
- "id": "deepseek-r1",
111
- "name": "DeepSeek-R1",
112
- "created_by": "deepseek",
113
- "source": "official",
114
- "last_updated": "2026-03-21",
115
- "family": "deepseek-r1",
116
- "capabilities": {
117
- "streaming": true,
118
- "tool_call": true,
119
- "reasoning": true,
120
- "vision": true
121
- },
122
- "modalities": {
123
- "input": ["text"],
124
- "output": ["text"]
125
- },
126
- "model_type": "reasoning"
127
- },
128
- {
129
- "id": "deepseek-v3-0324",
130
- "name": "DeepSeek-V3-0324",
131
- "created_by": "deepseek",
132
- "source": "official",
133
- "last_updated": "2026-03-21",
134
- "family": "deepseek",
135
- "capabilities": {
136
- "streaming": true,
137
- "tool_call": true,
138
- "vision": true,
139
- "json_mode": true
140
- },
141
- "modalities": {
142
- "input": ["text"],
143
- "output": ["text"]
144
- }
145
- },
146
- {
147
- "id": "deepseek-v3.1",
148
- "name": "DeepSeek-V3.1",
149
- "created_by": "deepseek",
150
- "source": "official",
151
- "last_updated": "2026-03-21",
152
- "family": "deepseek",
153
- "capabilities": {
154
- "streaming": true,
155
- "tool_call": true,
156
- "reasoning": true,
157
- "json_mode": true
158
- },
159
- "modalities": {
160
- "input": ["text"],
161
- "output": ["text"]
162
- }
163
- },
164
- {
165
- "id": "deepseek-v3.2-speciale",
166
- "name": "DeepSeek-V3.2-Speciale",
167
- "created_by": "deepseek",
168
- "source": "official",
169
- "last_updated": "2026-03-21",
170
- "family": "deepseek",
171
- "capabilities": {
172
- "streaming": true,
173
- "tool_call": true,
174
- "reasoning": true,
175
- "json_mode": true
176
- },
177
- "modalities": {
178
- "input": ["text"],
179
- "output": ["text"]
180
- }
181
- },
182
- {
183
- "id": "deepseek-v3.2",
184
- "name": "DeepSeek-V3.2",
185
- "created_by": "deepseek",
186
- "source": "official",
187
- "last_updated": "2026-03-21",
188
- "family": "deepseek",
189
- "capabilities": {
190
- "streaming": true,
191
- "tool_call": true,
192
- "reasoning": true,
193
- "json_mode": true
194
- },
195
- "modalities": {
196
- "input": ["text"],
197
- "output": ["text"]
198
- }
199
- },
200
- {
201
- "id": "embed-v-4-0",
202
- "name": "embed-v-4-0",
203
- "created_by": "cohere",
204
- "source": "official",
205
- "last_updated": "2026-03-21",
206
- "capabilities": {
207
- "streaming": true,
208
- "vision": true
209
- },
210
- "modalities": {
211
- "input": ["text", "image"],
212
- "output": ["text"]
213
- },
214
- "model_type": "embed"
215
- },
216
- {
217
- "id": "flux-1.1-pro",
218
- "name": "FLUX-1.1-pro",
219
- "created_by": "black-forest-labs",
220
- "source": "official",
221
- "last_updated": "2026-03-21",
222
- "capabilities": {
223
- "streaming": true,
224
- "tool_call": true,
225
- "vision": true
226
- },
227
- "modalities": {
228
- "input": ["text", "image"],
229
- "output": ["text"]
230
- },
231
- "model_type": "image"
232
- },
233
- {
234
- "id": "flux.1-kontext-pro",
235
- "name": "FLUX.1-Kontext-pro",
236
- "created_by": "black-forest-labs",
237
- "source": "official",
238
- "last_updated": "2026-03-21",
239
- "capabilities": {
240
- "streaming": true,
241
- "tool_call": true,
242
- "vision": true
243
- },
244
- "modalities": {
245
- "input": ["text", "image"],
246
- "output": ["text"]
247
- },
248
- "model_type": "image"
249
- },
250
- {
251
- "id": "flux.2-flex",
252
- "name": "FLUX.2-flex",
253
- "created_by": "black-forest-labs",
254
- "source": "official",
255
- "last_updated": "2026-03-21",
256
- "capabilities": {
257
- "streaming": true,
258
- "tool_call": true,
259
- "vision": true
260
- },
261
- "modalities": {
262
- "input": ["text", "image"],
263
- "output": ["text"]
264
- },
265
- "model_type": "image"
266
- },
267
- {
268
- "id": "flux.2-pro",
269
- "name": "FLUX.2-pro",
270
- "created_by": "black-forest-labs",
271
- "source": "official",
272
- "last_updated": "2026-03-21",
273
- "capabilities": {
274
- "streaming": true,
275
- "tool_call": true,
276
- "vision": true
277
- },
278
- "modalities": {
279
- "input": ["text", "image"],
280
- "output": ["text"]
281
- },
282
- "model_type": "image"
283
- },
284
- {
285
- "id": "gpt-4.1-mini",
286
- "name": "gpt-4.1-mini",
287
- "created_by": "openai",
288
- "source": "official",
289
- "last_updated": "2026-03-21",
290
- "family": "gpt-4.1",
291
- "capabilities": { "streaming": true },
292
- "modalities": {
293
- "input": ["text"],
294
- "output": ["text"]
295
- }
296
- },
297
- {
298
- "id": "gpt-4.1-nano",
299
- "name": "gpt-4.1-nano",
300
- "created_by": "openai",
301
- "source": "official",
302
- "last_updated": "2026-03-21",
303
- "family": "gpt-4.1",
304
- "capabilities": { "streaming": true },
305
- "modalities": {
306
- "input": ["text"],
307
- "output": ["text"]
308
- }
309
- },
310
- {
311
- "id": "gpt-4.1",
312
- "name": "GPT-4.1 series",
313
- "created_by": "openai",
314
- "source": "official",
315
- "last_updated": "2026-03-21",
316
- "family": "gpt-4.1",
317
- "capabilities": { "streaming": true },
318
- "modalities": {
319
- "input": ["text"],
320
- "output": ["text"]
321
- }
322
- },
323
- {
324
- "id": "gpt-4",
325
- "name": "gpt-4",
326
- "created_by": "openai",
327
- "source": "official",
328
- "last_updated": "2026-03-21",
329
- "family": "gpt-4",
330
- "knowledge_cutoff": "2023-12",
331
- "capabilities": {
332
- "streaming": true,
333
- "vision": true
334
- },
335
- "modalities": {
336
- "input": ["text"],
337
- "output": ["text"]
338
- }
339
- },
340
- {
341
- "id": "gpt-4o-audio-preview",
342
- "name": "gpt-4o-audio-preview",
343
- "created_by": "openai",
344
- "source": "official",
345
- "last_updated": "2026-03-21",
346
- "family": "gpt-4o",
347
- "knowledge_cutoff": "2023-09",
348
- "capabilities": { "streaming": true },
349
- "modalities": {
350
- "input": ["text"],
351
- "output": ["text"]
352
- }
353
- },
354
- {
355
- "id": "gpt-4o-mini-audio-preview",
356
- "name": "gpt-4o-mini-audio-preview",
357
- "created_by": "openai",
358
- "source": "official",
359
- "last_updated": "2026-03-21",
360
- "family": "gpt-4o",
361
- "knowledge_cutoff": "2023-09",
362
- "capabilities": { "streaming": true },
363
- "modalities": {
364
- "input": ["text"],
365
- "output": ["text"]
366
- }
367
- },
368
- {
369
- "id": "gpt-4o-mini-realtime-preview",
370
- "name": "gpt-4o-mini-realtime-preview",
371
- "created_by": "openai",
372
- "source": "official",
373
- "last_updated": "2026-03-21",
374
- "family": "gpt-4o",
375
- "knowledge_cutoff": "2023-10",
376
- "capabilities": { "streaming": true },
377
- "modalities": {
378
- "input": ["text"],
379
- "output": ["text"]
380
- }
381
- },
382
- {
383
- "id": "gpt-4o-mini-transcribe",
384
- "name": "gpt-4o-mini-transcribe",
385
- "created_by": "openai",
386
- "source": "official",
387
- "last_updated": "2026-03-21",
388
- "family": "gpt-4o",
389
- "capabilities": { "streaming": true },
390
- "modalities": {
391
- "input": ["text"],
392
- "output": ["text"]
393
- },
394
- "model_type": "transcription"
395
- },
396
- {
397
- "id": "gpt-4o-mini-tts",
398
- "name": "gpt-4o-mini-tts",
399
- "created_by": "openai",
400
- "source": "official",
401
- "last_updated": "2026-03-21",
402
- "family": "gpt-4o",
403
- "capabilities": { "streaming": true },
404
- "modalities": {
405
- "input": ["text"],
406
- "output": ["text"]
407
- },
408
- "model_type": "tts"
409
- },
410
- {
411
- "id": "gpt-4o-mini",
412
- "name": "gpt-4o-mini",
413
- "created_by": "openai",
414
- "source": "official",
415
- "last_updated": "2026-03-21",
416
- "family": "gpt-4o",
417
- "knowledge_cutoff": "2023-10",
418
- "capabilities": {
419
- "streaming": true,
420
- "tool_call": true,
421
- "vision": true,
422
- "json_mode": true
423
- },
424
- "modalities": {
425
- "input": ["text", "image"],
426
- "output": ["text"]
427
- }
428
- },
429
- {
430
- "id": "gpt-4o-realtime-preview",
431
- "name": "gpt-4o-realtime-preview",
432
- "created_by": "openai",
433
- "source": "official",
434
- "last_updated": "2026-03-21",
435
- "family": "gpt-4o",
436
- "knowledge_cutoff": "2023-10",
437
- "capabilities": { "streaming": true },
438
- "modalities": {
439
- "input": ["text"],
440
- "output": ["text"]
441
- }
442
- },
443
- {
444
- "id": "gpt-4o-transcribe-diarize",
445
- "name": "gpt-4o-transcribe-diarize",
446
- "created_by": "openai",
447
- "source": "official",
448
- "last_updated": "2026-03-21",
449
- "family": "gpt-4o",
450
- "capabilities": { "streaming": true },
451
- "modalities": {
452
- "input": ["text"],
453
- "output": ["text"]
454
- },
455
- "model_type": "transcription"
456
- },
457
- {
458
- "id": "gpt-4o-transcribe",
459
- "name": "gpt-4o-transcribe",
460
- "created_by": "openai",
461
- "source": "official",
462
- "last_updated": "2026-03-21",
463
- "family": "gpt-4o",
464
- "capabilities": { "streaming": true },
465
- "modalities": {
466
- "input": ["text"],
467
- "output": ["text"]
468
- },
469
- "model_type": "transcription"
470
- },
471
- {
472
- "id": "gpt-4o",
473
- "name": "GPT-4o, GPT-4o mini, and GPT-4 Turbo",
474
- "created_by": "openai",
475
- "source": "official",
476
- "last_updated": "2026-03-21",
477
- "family": "gpt-4o",
478
- "capabilities": {
479
- "streaming": true,
480
- "vision": true
481
- },
482
- "modalities": {
483
- "input": ["text", "image"],
484
- "output": ["text"]
485
- }
486
- },
487
- {
488
- "id": "gpt-5-chat",
489
- "name": "gpt-5-chat",
490
- "created_by": "openai",
491
- "source": "official",
492
- "last_updated": "2026-03-21",
493
- "family": "gpt-5",
494
- "capabilities": { "streaming": true },
495
- "modalities": {
496
- "input": ["text"],
497
- "output": ["text"]
498
- }
499
- },
500
- {
501
- "id": "gpt-5-codex",
502
- "name": "gpt-5-codex",
503
- "created_by": "openai",
504
- "source": "official",
505
- "last_updated": "2026-03-21",
506
- "family": "gpt-5",
507
- "capabilities": { "streaming": true },
508
- "modalities": {
509
- "input": ["text"],
510
- "output": ["text"]
511
- }
512
- },
513
- {
514
- "id": "gpt-5-mini",
515
- "name": "gpt-5-mini",
516
- "created_by": "openai",
517
- "source": "official",
518
- "last_updated": "2026-03-21",
519
- "family": "gpt-5",
520
- "capabilities": { "streaming": true },
521
- "modalities": {
522
- "input": ["text"],
523
- "output": ["text"]
524
- }
525
- },
526
- {
527
- "id": "gpt-5-nano",
528
- "name": "gpt-5-nano",
529
- "created_by": "openai",
530
- "source": "official",
531
- "last_updated": "2026-03-21",
532
- "family": "gpt-5",
533
- "capabilities": { "streaming": true },
534
- "modalities": {
535
- "input": ["text"],
536
- "output": ["text"]
537
- }
538
- },
539
- {
540
- "id": "gpt-5-pro",
541
- "name": "gpt-5-pro",
542
- "created_by": "openai",
543
- "source": "official",
544
- "last_updated": "2026-03-21",
545
- "family": "gpt-5",
546
- "capabilities": { "streaming": true },
547
- "modalities": {
548
- "input": ["text"],
549
- "output": ["text"]
550
- }
551
- },
552
- {
553
- "id": "gpt-5.1-chat",
554
- "name": "gpt-5.1-chat",
555
- "created_by": "openai",
556
- "source": "official",
557
- "last_updated": "2026-03-21",
558
- "family": "gpt-5.1",
559
- "capabilities": { "streaming": true },
560
- "modalities": {
561
- "input": ["text"],
562
- "output": ["text"]
563
- }
564
- },
565
- {
566
- "id": "gpt-5.1-codex-max",
567
- "name": "gpt-5.1-codex-max",
568
- "created_by": "openai",
569
- "source": "official",
570
- "last_updated": "2026-03-21",
571
- "family": "gpt-5.1",
572
- "capabilities": { "streaming": true },
573
- "modalities": {
574
- "input": ["text"],
575
- "output": ["text"]
576
- }
577
- },
578
- {
579
- "id": "gpt-5.1-codex-mini",
580
- "name": "gpt-5.1-codex-mini",
581
- "created_by": "openai",
582
- "source": "official",
583
- "last_updated": "2026-03-21",
584
- "family": "gpt-5.1",
585
- "capabilities": { "streaming": true },
586
- "modalities": {
587
- "input": ["text"],
588
- "output": ["text"]
589
- }
590
- },
591
- {
592
- "id": "gpt-5.1-codex",
593
- "name": "gpt-5.1-codex",
594
- "created_by": "openai",
595
- "source": "official",
596
- "last_updated": "2026-03-21",
597
- "family": "gpt-5.1",
598
- "capabilities": { "streaming": true },
599
- "modalities": {
600
- "input": ["text"],
601
- "output": ["text"]
602
- }
603
- },
604
- {
605
- "id": "gpt-5.1",
606
- "name": "GPT-5.1 series",
607
- "created_by": "openai",
608
- "source": "official",
609
- "last_updated": "2026-03-21",
610
- "family": "gpt-5.1",
611
- "capabilities": { "streaming": true },
612
- "modalities": {
613
- "input": ["text"],
614
- "output": ["text"]
615
- }
616
- },
617
- {
618
- "id": "gpt-5.2-chat",
619
- "name": "gpt-5.2-chat",
620
- "created_by": "openai",
621
- "source": "official",
622
- "last_updated": "2026-03-21",
623
- "family": "gpt-5.2",
624
- "capabilities": { "streaming": true },
625
- "modalities": {
626
- "input": ["text"],
627
- "output": ["text"]
628
- }
629
- },
630
- {
631
- "id": "gpt-5.2-codex",
632
- "name": "gpt-5.2-codex",
633
- "created_by": "openai",
634
- "source": "official",
635
- "last_updated": "2026-03-21",
636
- "family": "gpt-5.2",
637
- "capabilities": { "streaming": true },
638
- "modalities": {
639
- "input": ["text"],
640
- "output": ["text"]
641
- }
642
- },
643
- {
644
- "id": "gpt-5.2",
645
- "name": "GPT-5.2 series",
646
- "created_by": "openai",
647
- "source": "official",
648
- "last_updated": "2026-03-21",
649
- "family": "gpt-5.2",
650
- "capabilities": { "streaming": true },
651
- "modalities": {
652
- "input": ["text"],
653
- "output": ["text"]
654
- }
655
- },
656
- {
657
- "id": "gpt-5.3-codex",
658
- "name": "gpt-5.3-codex",
659
- "created_by": "openai",
660
- "source": "official",
661
- "last_updated": "2026-03-21",
662
- "family": "gpt-5.3",
663
- "capabilities": { "streaming": true },
664
- "modalities": {
665
- "input": ["text"],
666
- "output": ["text"]
667
- }
668
- },
669
- {
670
- "id": "gpt-5.3",
671
- "name": "GPT-5.3 series",
672
- "created_by": "openai",
673
- "source": "official",
674
- "last_updated": "2026-03-21",
675
- "family": "gpt-5.3",
676
- "capabilities": { "streaming": true },
677
- "modalities": {
678
- "input": ["text"],
679
- "output": ["text"]
680
- }
681
- },
682
- {
683
- "id": "gpt-5.4-mini",
684
- "name": "gpt-5.4-mini",
685
- "created_by": "openai",
686
- "source": "official",
687
- "last_updated": "2026-03-21",
688
- "family": "gpt-5.4",
689
- "capabilities": { "streaming": true },
690
- "modalities": {
691
- "input": ["text"],
692
- "output": ["text"]
693
- }
694
- },
695
- {
696
- "id": "gpt-5.4-nano",
697
- "name": "gpt-5.4-nano",
698
- "created_by": "openai",
699
- "source": "official",
700
- "last_updated": "2026-03-21",
701
- "family": "gpt-5.4",
702
- "knowledge_cutoff": "2025-08",
703
- "context_window": 4e5,
704
- "max_output_tokens": 128e3,
705
- "capabilities": {
706
- "streaming": true,
707
- "tool_call": true,
708
- "structured_output": true,
709
- "reasoning": true,
710
- "vision": true
711
- },
712
- "modalities": {
713
- "input": ["text", "image"],
714
- "output": ["text"]
715
- }
716
- },
717
- {
718
- "id": "gpt-5.4-pro",
719
- "name": "gpt-5.4-pro",
720
- "created_by": "openai",
721
- "source": "official",
722
- "last_updated": "2026-03-21",
723
- "family": "gpt-5.4",
724
- "capabilities": { "streaming": true },
725
- "modalities": {
726
- "input": ["text"],
727
- "output": ["text"]
728
- }
729
- },
730
- {
731
- "id": "gpt-5.4",
732
- "name": "GPT-5.4 series",
733
- "created_by": "openai",
734
- "source": "official",
735
- "last_updated": "2026-03-21",
736
- "family": "gpt-5.4",
737
- "capabilities": { "streaming": true },
738
- "modalities": {
739
- "input": ["text"],
740
- "output": ["text"]
741
- }
742
- },
743
- {
744
- "id": "gpt-5.4.nano",
745
- "name": "gpt-5.4.nano",
746
- "created_by": "openai",
747
- "source": "official",
748
- "last_updated": "2026-03-21",
749
- "family": "gpt-5.4",
750
- "capabilities": { "streaming": true },
751
- "modalities": {
752
- "input": ["text"],
753
- "output": ["text"]
754
- }
755
- },
756
- {
757
- "id": "gpt-5",
758
- "name": "GPT-5 series",
759
- "created_by": "openai",
760
- "source": "official",
761
- "last_updated": "2026-03-21",
762
- "family": "gpt-5",
763
- "capabilities": { "streaming": true },
764
- "modalities": {
765
- "input": ["text"],
766
- "output": ["text"]
767
- }
768
- },
769
- {
770
- "id": "gpt-audio-1.5",
771
- "name": "gpt-audio-1.5",
772
- "created_by": "openai",
773
- "source": "official",
774
- "last_updated": "2026-03-21",
775
- "family": "gpt-audio",
776
- "knowledge_cutoff": "2024-09",
777
- "capabilities": { "streaming": true },
778
- "modalities": {
779
- "input": ["text"],
780
- "output": ["text"]
781
- }
782
- },
783
- {
784
- "id": "gpt-audio",
785
- "name": "gpt-audio",
786
- "created_by": "openai",
787
- "source": "official",
788
- "last_updated": "2026-03-21",
789
- "family": "gpt-audio",
790
- "knowledge_cutoff": "2023-10",
791
- "capabilities": { "streaming": true },
792
- "modalities": {
793
- "input": ["text"],
794
- "output": ["text"]
795
- }
796
- },
797
- {
798
- "id": "gpt-image-1-mini",
799
- "name": "gpt-image-1-mini",
800
- "created_by": "openai",
801
- "source": "official",
802
- "last_updated": "2026-03-21",
803
- "family": "gpt-image-1",
804
- "capabilities": {
805
- "streaming": true,
806
- "vision": true
807
- },
808
- "modalities": {
809
- "input": ["text", "image"],
810
- "output": ["text"]
811
- },
812
- "model_type": "image"
813
- },
814
- {
815
- "id": "gpt-image-1.5",
816
- "name": "gpt-image-1.5",
817
- "created_by": "openai",
818
- "source": "official",
819
- "last_updated": "2026-03-21",
820
- "family": "gpt-image-1.5",
821
- "capabilities": {
822
- "streaming": true,
823
- "vision": true
824
- },
825
- "modalities": {
826
- "input": ["text", "image"],
827
- "output": ["text"]
828
- },
829
- "model_type": "image"
830
- },
831
- {
832
- "id": "gpt-image-1",
833
- "name": "gpt-image-1",
834
- "created_by": "openai",
835
- "source": "official",
836
- "last_updated": "2026-03-21",
837
- "family": "gpt-image-1",
838
- "capabilities": {
839
- "streaming": true,
840
- "vision": true
841
- },
842
- "modalities": {
843
- "input": ["text", "image"],
844
- "output": ["text"]
845
- },
846
- "model_type": "image"
847
- },
848
- {
849
- "id": "gpt-oss-120b",
850
- "name": "gpt-oss-120b",
851
- "created_by": "openai",
852
- "source": "official",
853
- "last_updated": "2026-03-21",
854
- "family": "gpt-oss",
855
- "capabilities": { "streaming": true },
856
- "modalities": {
857
- "input": ["text"],
858
- "output": ["text"]
859
- }
860
- },
861
- {
862
- "id": "gpt-oss-20b",
863
- "name": "gpt-oss-20b",
864
- "created_by": "openai",
865
- "source": "official",
866
- "last_updated": "2026-03-21",
867
- "family": "gpt-oss",
868
- "knowledge_cutoff": "2024-05-31",
869
- "context_window": 131072,
870
- "max_output_tokens": 131072,
871
- "capabilities": {
872
- "streaming": true,
873
- "tool_call": true,
874
- "structured_output": true,
875
- "reasoning": true
876
- },
877
- "modalities": {
878
- "input": ["text"],
879
- "output": ["text"]
880
- }
881
- },
882
- {
883
- "id": "gpt-oss",
884
- "name": "gpt-oss",
885
- "created_by": "openai",
886
- "source": "official",
887
- "last_updated": "2026-03-21",
888
- "family": "gpt-oss",
889
- "capabilities": {
890
- "streaming": true,
891
- "reasoning": true
892
- },
893
- "modalities": {
894
- "input": ["text"],
895
- "output": ["text"]
896
- }
897
- },
898
- {
899
- "id": "gpt-realtime-1.5",
900
- "name": "gpt-realtime-1.5",
901
- "created_by": "openai",
902
- "source": "official",
903
- "last_updated": "2026-03-21",
904
- "family": "gpt-realtime",
905
- "knowledge_cutoff": "2024-09",
906
- "capabilities": { "streaming": true },
907
- "modalities": {
908
- "input": ["text"],
909
- "output": ["text"]
910
- }
911
- },
912
- {
913
- "id": "gpt-realtime",
914
- "name": "gpt-realtime",
915
- "created_by": "openai",
916
- "source": "official",
917
- "last_updated": "2026-03-21",
918
- "family": "gpt-realtime",
919
- "knowledge_cutoff": "2023-10",
920
- "capabilities": { "streaming": true },
921
- "modalities": {
922
- "input": ["text"],
923
- "output": ["text"]
924
- }
925
- },
926
- {
927
- "id": "grok-3-mini",
928
- "name": "grok-3-mini",
929
- "created_by": "xai",
930
- "source": "official",
931
- "last_updated": "2026-03-21",
932
- "family": "grok-3",
933
- "capabilities": {
934
- "streaming": true,
935
- "tool_call": true
936
- },
937
- "modalities": {
938
- "input": ["text"],
939
- "output": ["text"]
940
- }
941
- },
942
- {
943
- "id": "grok-3",
944
- "name": "grok-3",
945
- "created_by": "xai",
946
- "source": "official",
947
- "last_updated": "2026-03-21",
948
- "family": "grok-3",
949
- "capabilities": {
950
- "streaming": true,
951
- "tool_call": true
952
- },
953
- "modalities": {
954
- "input": ["text"],
955
- "output": ["text"]
956
- }
957
- },
958
- {
959
- "id": "grok-4-fast-non-reasoning",
960
- "name": "grok-4-fast-non-reasoning",
961
- "created_by": "xai",
962
- "source": "official",
963
- "last_updated": "2026-03-21",
964
- "family": "grok-4",
965
- "capabilities": {
966
- "streaming": true,
967
- "tool_call": true,
968
- "reasoning": true,
969
- "vision": true
970
- },
971
- "modalities": {
972
- "input": ["text", "image"],
973
- "output": ["text"]
974
- }
975
- },
976
- {
977
- "id": "grok-4-fast-reasoning",
978
- "name": "grok-4-fast-reasoning",
979
- "created_by": "xai",
980
- "source": "official",
981
- "last_updated": "2026-03-21",
982
- "family": "grok-4",
983
- "capabilities": {
984
- "streaming": true,
985
- "tool_call": true,
986
- "reasoning": true,
987
- "vision": true
988
- },
989
- "modalities": {
990
- "input": ["text", "image"],
991
- "output": ["text"]
992
- }
993
- },
994
- {
995
- "id": "grok-4.1-fast-non-reasoning",
996
- "name": "grok-4.1-fast-non-reasoning",
997
- "created_by": "xai",
998
- "source": "official",
999
- "last_updated": "2026-03-21",
1000
- "family": "grok-4.1",
1001
- "capabilities": {
1002
- "streaming": true,
1003
- "tool_call": true,
1004
- "reasoning": true,
1005
- "vision": true
1006
- },
1007
- "modalities": {
1008
- "input": ["text", "image"],
1009
- "output": ["text"]
1010
- }
1011
- },
1012
- {
1013
- "id": "grok-4.1-fast-reasoning",
1014
- "name": "grok-4.1-fast-reasoning",
1015
- "created_by": "xai",
1016
- "source": "official",
1017
- "last_updated": "2026-03-21",
1018
- "family": "grok-4.1",
1019
- "capabilities": {
1020
- "streaming": true,
1021
- "tool_call": true,
1022
- "reasoning": true,
1023
- "vision": true
1024
- },
1025
- "modalities": {
1026
- "input": ["text", "image"],
1027
- "output": ["text"]
1028
- }
1029
- },
1030
- {
1031
- "id": "grok-4",
1032
- "name": "grok-4",
1033
- "created_by": "xai",
1034
- "source": "official",
1035
- "last_updated": "2026-03-21",
1036
- "family": "grok-4",
1037
- "capabilities": {
1038
- "streaming": true,
1039
- "tool_call": true
1040
- },
1041
- "modalities": {
1042
- "input": ["text"],
1043
- "output": ["text"]
1044
- }
1045
- },
1046
- {
1047
- "id": "grok-code-fast-1",
1048
- "name": "grok-code-fast-1",
1049
- "created_by": "xai",
1050
- "source": "official",
1051
- "last_updated": "2026-03-21",
1052
- "family": "grok-code",
1053
- "capabilities": {
1054
- "streaming": true,
1055
- "tool_call": true
1056
- },
1057
- "modalities": {
1058
- "input": ["text"],
1059
- "output": ["text"]
1060
- }
1061
- },
1062
- {
1063
- "id": "kimi-k2-thinking",
1064
- "name": "Kimi-K2-Thinking",
1065
- "created_by": "moonshot",
1066
- "source": "official",
1067
- "last_updated": "2026-03-21",
1068
- "capabilities": {
1069
- "streaming": true,
1070
- "tool_call": true,
1071
- "reasoning": true
1072
- },
1073
- "modalities": {
1074
- "input": ["text"],
1075
- "output": ["text"]
1076
- }
1077
- },
1078
- {
1079
- "id": "kimi-k2.5",
1080
- "name": "Kimi-K2.5",
1081
- "created_by": "moonshot",
1082
- "source": "official",
1083
- "last_updated": "2026-03-21",
1084
- "capabilities": {
1085
- "streaming": true,
1086
- "tool_call": true,
1087
- "reasoning": true,
1088
- "vision": true
1089
- },
1090
- "modalities": {
1091
- "input": ["text", "image"],
1092
- "output": ["text"]
1093
- }
1094
- },
1095
- {
1096
- "id": "llama-3.3-70b-instruct",
1097
- "name": "Llama-3.3-70B-Instruct",
1098
- "created_by": "meta",
1099
- "source": "official",
1100
- "last_updated": "2026-03-21",
1101
- "family": "llama-3.3",
1102
- "capabilities": { "streaming": true },
1103
- "modalities": {
1104
- "input": ["text"],
1105
- "output": ["text"]
1106
- }
1107
- },
1108
- {
1109
- "id": "llama-4-maverick-17b-128e-instruct-fp8",
1110
- "name": "Llama-4-Maverick-17B-128E-Instruct-FP8",
1111
- "created_by": "meta",
1112
- "source": "official",
1113
- "last_updated": "2026-03-21",
1114
- "family": "llama-4",
1115
- "capabilities": {
1116
- "streaming": true,
1117
- "tool_call": true,
1118
- "vision": true
1119
- },
1120
- "modalities": {
1121
- "input": ["text", "image"],
1122
- "output": ["text"]
1123
- }
1124
- },
1125
- {
1126
- "id": "mai-ds-r1",
1127
- "name": "MAI-DS-R1",
1128
- "created_by": "microsoft",
1129
- "source": "official",
1130
- "last_updated": "2026-03-21",
1131
- "capabilities": {
1132
- "streaming": true,
1133
- "tool_call": true,
1134
- "reasoning": true
1135
- },
1136
- "modalities": {
1137
- "input": ["text"],
1138
- "output": ["text"]
1139
- }
1140
- },
1141
- {
1142
- "id": "ministral-3b",
1143
- "name": "Ministral-3B",
1144
- "created_by": "mistral",
1145
- "source": "official",
1146
- "last_updated": "2026-03-21",
1147
- "family": "ministral",
1148
- "capabilities": { "streaming": true },
1149
- "modalities": {
1150
- "input": ["text"],
1151
- "output": ["text"]
1152
- }
1153
- },
1154
- {
1155
- "id": "mistral-document-ai-2505",
1156
- "name": "mistral-document-ai-2505",
1157
- "created_by": "mistral",
1158
- "source": "official",
1159
- "last_updated": "2026-03-21",
1160
- "alias": "mistral-document-ai",
1161
- "capabilities": {
1162
- "streaming": true,
1163
- "tool_call": true,
1164
- "vision": true,
1165
- "json_mode": true
1166
- },
1167
- "modalities": {
1168
- "input": ["text", "image"],
1169
- "output": ["text"]
1170
- }
1171
- },
1172
- {
1173
- "id": "mistral-document-ai-2512",
1174
- "name": "mistral-document-ai-2512",
1175
- "created_by": "mistral",
1176
- "source": "official",
1177
- "last_updated": "2026-03-21",
1178
- "alias": "mistral-document-ai",
1179
- "capabilities": {
1180
- "streaming": true,
1181
- "tool_call": true,
1182
- "vision": true,
1183
- "json_mode": true
1184
- },
1185
- "modalities": {
1186
- "input": ["text", "image"],
1187
- "output": ["text"]
1188
- }
1189
- },
1190
- {
1191
- "id": "mistral-document-ai",
1192
- "name": "mistral-document-ai",
1193
- "created_by": "mistral",
1194
- "source": "official",
1195
- "last_updated": "2026-03-21",
1196
- "capabilities": {
1197
- "streaming": true,
1198
- "tool_call": true,
1199
- "vision": true,
1200
- "json_mode": true
1201
- },
1202
- "modalities": {
1203
- "input": ["text", "image"],
1204
- "output": ["text"]
1205
- },
1206
- "snapshots": ["mistral-document-ai-2512", "mistral-document-ai-2505"]
1207
- },
1208
- {
1209
- "id": "mistral-large-3",
1210
- "name": "Mistral-Large-3",
1211
- "created_by": "mistral",
1212
- "source": "official",
1213
- "last_updated": "2026-03-21",
1214
- "family": "mistral-large",
1215
- "capabilities": {
1216
- "streaming": true,
1217
- "tool_call": true,
1218
- "vision": true,
1219
- "json_mode": true
1220
- },
1221
- "modalities": {
1222
- "input": ["text", "image"],
1223
- "output": ["text"]
1224
- }
1225
- },
1226
- {
1227
- "id": "o1-mini",
1228
- "name": "o1-mini",
1229
- "created_by": "openai",
1230
- "source": "official",
1231
- "last_updated": "2026-03-21",
1232
- "family": "o1",
1233
- "knowledge_cutoff": "2023-10",
1234
- "capabilities": { "streaming": true },
1235
- "modalities": {
1236
- "input": ["text"],
1237
- "output": ["text"]
1238
- },
1239
- "model_type": "reasoning"
1240
- },
1241
- {
1242
- "id": "o1-preview",
1243
- "name": "o1-preview",
1244
- "created_by": "openai",
1245
- "source": "official",
1246
- "last_updated": "2026-03-21",
1247
- "family": "o1",
1248
- "knowledge_cutoff": "2023-10",
1249
- "capabilities": { "streaming": true },
1250
- "modalities": {
1251
- "input": ["text"],
1252
- "output": ["text"]
1253
- },
1254
- "model_type": "reasoning"
1255
- },
1256
- {
1257
- "id": "o1",
1258
- "name": "o1",
1259
- "created_by": "openai",
1260
- "source": "official",
1261
- "last_updated": "2026-03-21",
1262
- "family": "o1",
1263
- "knowledge_cutoff": "2023-10",
1264
- "capabilities": {
1265
- "streaming": true,
1266
- "tool_call": true,
1267
- "structured_output": true,
1268
- "reasoning": true,
1269
- "vision": true
1270
- },
1271
- "modalities": {
1272
- "input": ["text", "image"],
1273
- "output": ["text"]
1274
- },
1275
- "model_type": "reasoning"
1276
- },
1277
- {
1278
- "id": "o3-mini",
1279
- "name": "o3-mini",
1280
- "created_by": "openai",
1281
- "source": "official",
1282
- "last_updated": "2026-03-21",
1283
- "family": "o3",
1284
- "knowledge_cutoff": "2023-10",
1285
- "capabilities": {
1286
- "streaming": true,
1287
- "tool_call": true,
1288
- "structured_output": true,
1289
- "reasoning": true
1290
- },
1291
- "modalities": {
1292
- "input": ["text"],
1293
- "output": ["text"]
1294
- },
1295
- "model_type": "reasoning"
1296
- },
1297
- {
1298
- "id": "o3-pro",
1299
- "name": "o3-pro",
1300
- "created_by": "openai",
1301
- "source": "official",
1302
- "last_updated": "2026-03-21",
1303
- "family": "o3",
1304
- "knowledge_cutoff": "2024-05-31",
1305
- "capabilities": {
1306
- "streaming": true,
1307
- "tool_call": true,
1308
- "structured_output": true,
1309
- "vision": true
1310
- },
1311
- "modalities": {
1312
- "input": ["text", "image"],
1313
- "output": ["text"]
1314
- },
1315
- "model_type": "reasoning"
1316
- },
1317
- {
1318
- "id": "o3",
1319
- "name": "o3",
1320
- "created_by": "openai",
1321
- "source": "official",
1322
- "last_updated": "2026-03-21",
1323
- "family": "o3",
1324
- "knowledge_cutoff": "2024-05-31",
1325
- "capabilities": {
1326
- "streaming": true,
1327
- "tool_call": true,
1328
- "structured_output": true,
1329
- "reasoning": true,
1330
- "vision": true
1331
- },
1332
- "modalities": {
1333
- "input": ["text", "image"],
1334
- "output": ["text"]
1335
- },
1336
- "model_type": "reasoning"
1337
- },
1338
- {
1339
- "id": "o4-mini",
1340
- "name": "o4-mini",
1341
- "created_by": "openai",
1342
- "source": "official",
1343
- "last_updated": "2026-03-21",
1344
- "family": "o4",
1345
- "knowledge_cutoff": "2024-05-31",
1346
- "capabilities": {
1347
- "streaming": true,
1348
- "tool_call": true,
1349
- "structured_output": true,
1350
- "reasoning": true,
1351
- "vision": true
1352
- },
1353
- "modalities": {
1354
- "input": ["text", "image"],
1355
- "output": ["text"]
1356
- },
1357
- "model_type": "reasoning"
1358
- },
1359
- {
1360
- "id": "qwen-32b",
1361
- "name": "Qwen-32B",
1362
- "created_by": "openai",
1363
- "source": "official",
1364
- "last_updated": "2026-03-21",
1365
- "family": "qwen",
1366
- "capabilities": { "streaming": true },
1367
- "modalities": {
1368
- "input": ["text"],
1369
- "output": ["text"]
1370
- }
1371
- },
1372
- {
1373
- "id": "sora-2",
1374
- "name": "sora-2",
1375
- "created_by": "openai",
1376
- "source": "official",
1377
- "last_updated": "2026-03-21",
1378
- "capabilities": { "streaming": true },
1379
- "modalities": {
1380
- "input": ["text"],
1381
- "output": ["text"]
1382
- },
1383
- "model_type": "video"
1384
- },
1385
- {
1386
- "id": "sora",
1387
- "name": "Sora",
1388
- "created_by": "openai",
1389
- "source": "official",
1390
- "last_updated": "2026-03-21",
1391
- "capabilities": { "streaming": true },
1392
- "modalities": {
1393
- "input": ["text"],
1394
- "output": ["text"]
1395
- },
1396
- "model_type": "video"
1397
- },
1398
- {
1399
- "id": "text-embedding-3-large",
1400
- "name": "text-embedding-3-large",
1401
- "created_by": "openai",
1402
- "source": "official",
1403
- "last_updated": "2026-03-21",
1404
- "knowledge_cutoff": "2021-09",
1405
- "max_output_tokens": 3072,
1406
- "capabilities": { "streaming": true },
1407
- "modalities": {
1408
- "input": ["text"],
1409
- "output": ["text"]
1410
- },
1411
- "model_type": "embed"
1412
- },
1413
- {
1414
- "id": "text-embedding-3-small",
1415
- "name": "text-embedding-3-small",
1416
- "created_by": "openai",
1417
- "source": "official",
1418
- "last_updated": "2026-03-21",
1419
- "knowledge_cutoff": "2021-09",
1420
- "max_output_tokens": 1536,
1421
- "capabilities": { "streaming": true },
1422
- "modalities": {
1423
- "input": ["text"],
1424
- "output": ["text"]
1425
- },
1426
- "model_type": "embed"
1427
- },
1428
- {
1429
- "id": "text-embedding-ada-002",
1430
- "name": "text-embedding-ada-002",
1431
- "created_by": "openai",
1432
- "source": "official",
1433
- "last_updated": "2026-03-21",
1434
- "knowledge_cutoff": "2021-09",
1435
- "max_output_tokens": 1536,
1436
- "capabilities": { "streaming": true },
1437
- "modalities": {
1438
- "input": ["text"],
1439
- "output": ["text"]
1440
- },
1441
- "model_type": "embed"
1442
- },
1443
- {
1444
- "id": "tts-hd",
1445
- "name": "tts-hd",
1446
- "created_by": "openai",
1447
- "source": "official",
1448
- "last_updated": "2026-03-21",
1449
- "capabilities": { "streaming": true },
1450
- "modalities": {
1451
- "input": ["text"],
1452
- "output": ["text"]
1453
- },
1454
- "model_type": "tts"
1455
- },
1456
- {
1457
- "id": "tts",
1458
- "name": "tts",
1459
- "created_by": "openai",
1460
- "source": "official",
1461
- "last_updated": "2026-03-21",
1462
- "capabilities": { "streaming": true },
1463
- "modalities": {
1464
- "input": ["text"],
1465
- "output": ["text"]
1466
- }
1467
- },
1468
- {
1469
- "id": "whisper",
1470
- "name": "whisper",
1471
- "created_by": "openai",
1472
- "source": "official",
1473
- "last_updated": "2026-03-21",
1474
- "capabilities": { "streaming": true },
1475
- "modalities": {
1476
- "input": ["text"],
1477
- "output": ["text"]
1478
- },
1479
- "family": "whisper",
1480
- "model_type": "transcription"
1481
- }
1482
- ]
1483
- };
1484
- const models = provider.models.map((m) => ({
1485
- ...m,
1486
- provider: provider.id
1487
- }));
1488
- //#endregion
1489
- export { models, provider };
1
+ const e={id:`azure`,name:`Azure AI Foundry`,region:`US`,url:`https://ai.azure.com`,api_url:`https://models.inference.ai.azure.com`,docs_url:`https://learn.microsoft.com/azure/ai-services/openai/concepts/models`,pricing_url:`https://azure.microsoft.com/pricing/details/cognitive-services/openai-service`,icon:`<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" fill-rule="evenodd">
2
+ <path d="M11.49 2H2v9.492h9.492V2h-.002z"/>
3
+ <path d="M22 2h-9.492v9.492H22V2z"/>
4
+ <path d="M11.49 12.508H2V22h9.492v-9.492h-.002z"/>
5
+ <path d="M22 12.508h-9.492V22H22v-9.492z"/>
6
+ </svg>`,models:[{id:`codex-mini`,name:`codex-mini`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`codex`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`cohere-command-a`,name:`Cohere-command-a`,created_by:`cohere`,source:`official`,last_updated:`2026-03-21`,capabilities:{streaming:!0,tool_call:!0,json_mode:!0},modalities:{input:[`text`],output:[`text`]}},{id:`cohere-rerank-v4.0-fast`,name:`Cohere-rerank-v4.0-fast`,created_by:`cohere`,source:`official`,last_updated:`2026-03-21`,capabilities:{streaming:!0,tool_call:!0,json_mode:!0},modalities:{input:[`text`],output:[`text`]},model_type:`rerank`},{id:`cohere-rerank-v4.0-pro`,name:`Cohere-rerank-v4.0-pro`,created_by:`cohere`,source:`official`,last_updated:`2026-03-21`,capabilities:{streaming:!0,tool_call:!0,json_mode:!0},modalities:{input:[`text`],output:[`text`]},model_type:`rerank`},{id:`computer-use-preview`,name:`computer-use-preview`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,capabilities:{streaming:!0,tool_call:!0},modalities:{input:[`text`],output:[`text`]}},{id:`deepseek-r1-0528`,name:`DeepSeek-R1-0528`,created_by:`deepseek`,source:`official`,last_updated:`2026-03-21`,family:`deepseek-r1`,capabilities:{streaming:!0,tool_call:!0,reasoning:!0,vision:!0},modalities:{input:[`text`],output:[`text`]},model_type:`reasoning`},{id:`deepseek-r1`,name:`DeepSeek-R1`,created_by:`deepseek`,source:`official`,last_updated:`2026-03-21`,family:`deepseek-r1`,capabilities:{streaming:!0,tool_call:!0,reasoning:!0,vision:!0},modalities:{input:[`text`],output:[`text`]},model_type:`reasoning`},{id:`deepseek-v3-0324`,name:`DeepSeek-V3-0324`,created_by:`deepseek`,source:`official`,last_updated:`2026-03-21`,family:`deepseek`,capabilities:{streaming:!0,tool_call:!0,vision:!0,json_mode:!0},modalities:{input:[`text`],output:[`text`]}},{id:`deepseek-v3.1`,name:`DeepSeek-V3.1`,created_by:`deepseek`,source:`official`,last_updated:`2026-03-21`,family:`deepseek`,capabilities:{streaming:!0,tool_call:!0,reasoning:!0,json_mode:!0},modalities:{input:[`text`],output:[`text`]}},{id:`deepseek-v3.2-speciale`,name:`DeepSeek-V3.2-Speciale`,created_by:`deepseek`,source:`official`,last_updated:`2026-03-21`,family:`deepseek`,capabilities:{streaming:!0,tool_call:!0,reasoning:!0,json_mode:!0},modalities:{input:[`text`],output:[`text`]}},{id:`deepseek-v3.2`,name:`DeepSeek-V3.2`,created_by:`deepseek`,source:`official`,last_updated:`2026-03-21`,family:`deepseek`,capabilities:{streaming:!0,tool_call:!0,reasoning:!0,json_mode:!0},modalities:{input:[`text`],output:[`text`]}},{id:`embed-v-4-0`,name:`embed-v-4-0`,created_by:`cohere`,source:`official`,last_updated:`2026-03-21`,capabilities:{streaming:!0,vision:!0},modalities:{input:[`text`,`image`],output:[`text`]},model_type:`embed`},{id:`flux-1.1-pro`,name:`FLUX-1.1-pro`,created_by:`black-forest-labs`,source:`official`,last_updated:`2026-03-21`,capabilities:{streaming:!0,tool_call:!0,vision:!0},modalities:{input:[`text`,`image`],output:[`text`]},model_type:`image`},{id:`flux.1-kontext-pro`,name:`FLUX.1-Kontext-pro`,created_by:`black-forest-labs`,source:`official`,last_updated:`2026-03-21`,capabilities:{streaming:!0,tool_call:!0,vision:!0},modalities:{input:[`text`,`image`],output:[`text`]},model_type:`image`},{id:`flux.2-flex`,name:`FLUX.2-flex`,created_by:`black-forest-labs`,source:`official`,last_updated:`2026-03-21`,capabilities:{streaming:!0,tool_call:!0,vision:!0},modalities:{input:[`text`,`image`],output:[`text`]},model_type:`image`},{id:`flux.2-pro`,name:`FLUX.2-pro`,created_by:`black-forest-labs`,source:`official`,last_updated:`2026-03-21`,capabilities:{streaming:!0,tool_call:!0,vision:!0},modalities:{input:[`text`,`image`],output:[`text`]},model_type:`image`},{id:`gpt-4.1-mini`,name:`gpt-4.1-mini`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-4.1`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-4.1-nano`,name:`gpt-4.1-nano`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-4.1`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-4.1`,name:`GPT-4.1 series`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-4.1`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-4`,name:`gpt-4`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-4`,knowledge_cutoff:`2023-12`,capabilities:{streaming:!0,vision:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-4o-audio-preview`,name:`gpt-4o-audio-preview`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-4o`,knowledge_cutoff:`2023-09`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-4o-mini-audio-preview`,name:`gpt-4o-mini-audio-preview`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-4o`,knowledge_cutoff:`2023-09`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-4o-mini-realtime-preview`,name:`gpt-4o-mini-realtime-preview`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-4o`,knowledge_cutoff:`2023-10`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-4o-mini-transcribe`,name:`gpt-4o-mini-transcribe`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-4o`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]},model_type:`transcription`},{id:`gpt-4o-mini-tts`,name:`gpt-4o-mini-tts`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-4o`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]},model_type:`tts`},{id:`gpt-4o-mini`,name:`gpt-4o-mini`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-4o`,knowledge_cutoff:`2023-10`,capabilities:{streaming:!0,tool_call:!0,vision:!0,json_mode:!0},modalities:{input:[`text`,`image`],output:[`text`]}},{id:`gpt-4o-realtime-preview`,name:`gpt-4o-realtime-preview`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-4o`,knowledge_cutoff:`2023-10`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-4o-transcribe-diarize`,name:`gpt-4o-transcribe-diarize`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-4o`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]},model_type:`transcription`},{id:`gpt-4o-transcribe`,name:`gpt-4o-transcribe`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-4o`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]},model_type:`transcription`},{id:`gpt-4o`,name:`GPT-4o, GPT-4o mini, and GPT-4 Turbo`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-4o`,capabilities:{streaming:!0,vision:!0},modalities:{input:[`text`,`image`],output:[`text`]}},{id:`gpt-5-chat`,name:`gpt-5-chat`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-5`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-5-codex`,name:`gpt-5-codex`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-5`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-5-mini`,name:`gpt-5-mini`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-5`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-5-nano`,name:`gpt-5-nano`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-5`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-5-pro`,name:`gpt-5-pro`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-5`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-5.1-chat`,name:`gpt-5.1-chat`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-5.1`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-5.1-codex-max`,name:`gpt-5.1-codex-max`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-5.1`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-5.1-codex-mini`,name:`gpt-5.1-codex-mini`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-5.1`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-5.1-codex`,name:`gpt-5.1-codex`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-5.1`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-5.1`,name:`GPT-5.1 series`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-5.1`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-5.2-chat`,name:`gpt-5.2-chat`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-5.2`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-5.2-codex`,name:`gpt-5.2-codex`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-5.2`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-5.2`,name:`GPT-5.2 series`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-5.2`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-5.3-codex`,name:`gpt-5.3-codex`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-5.3`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-5.3`,name:`GPT-5.3 series`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-5.3`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-5.4-mini`,name:`gpt-5.4-mini`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-5.4`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-5.4-nano`,name:`gpt-5.4-nano`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-5.4`,knowledge_cutoff:`2025-08`,context_window:4e5,max_output_tokens:128e3,capabilities:{streaming:!0,tool_call:!0,structured_output:!0,reasoning:!0,vision:!0},modalities:{input:[`text`,`image`],output:[`text`]}},{id:`gpt-5.4-pro`,name:`gpt-5.4-pro`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-5.4`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-5.4`,name:`GPT-5.4 series`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-5.4`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-5.4.nano`,name:`gpt-5.4.nano`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-5.4`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-5`,name:`GPT-5 series`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-5`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-audio-1.5`,name:`gpt-audio-1.5`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-audio`,knowledge_cutoff:`2024-09`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-audio`,name:`gpt-audio`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-audio`,knowledge_cutoff:`2023-10`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-image-1-mini`,name:`gpt-image-1-mini`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-image-1`,capabilities:{streaming:!0,vision:!0},modalities:{input:[`text`,`image`],output:[`text`]},model_type:`image`},{id:`gpt-image-1.5`,name:`gpt-image-1.5`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-image-1.5`,capabilities:{streaming:!0,vision:!0},modalities:{input:[`text`,`image`],output:[`text`]},model_type:`image`},{id:`gpt-image-1`,name:`gpt-image-1`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-image-1`,capabilities:{streaming:!0,vision:!0},modalities:{input:[`text`,`image`],output:[`text`]},model_type:`image`},{id:`gpt-oss-120b`,name:`gpt-oss-120b`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-oss`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-oss-20b`,name:`gpt-oss-20b`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-oss`,knowledge_cutoff:`2024-05-31`,context_window:131072,max_output_tokens:131072,capabilities:{streaming:!0,tool_call:!0,structured_output:!0,reasoning:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-oss`,name:`gpt-oss`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-oss`,capabilities:{streaming:!0,reasoning:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-realtime-1.5`,name:`gpt-realtime-1.5`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-realtime`,knowledge_cutoff:`2024-09`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`gpt-realtime`,name:`gpt-realtime`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-realtime`,knowledge_cutoff:`2023-10`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`grok-3-mini`,name:`grok-3-mini`,created_by:`xai`,source:`official`,last_updated:`2026-03-21`,family:`grok-3`,capabilities:{streaming:!0,tool_call:!0},modalities:{input:[`text`],output:[`text`]}},{id:`grok-3`,name:`grok-3`,created_by:`xai`,source:`official`,last_updated:`2026-03-21`,family:`grok-3`,capabilities:{streaming:!0,tool_call:!0},modalities:{input:[`text`],output:[`text`]}},{id:`grok-4-fast-non-reasoning`,name:`grok-4-fast-non-reasoning`,created_by:`xai`,source:`official`,last_updated:`2026-03-21`,family:`grok-4`,capabilities:{streaming:!0,tool_call:!0,reasoning:!0,vision:!0},modalities:{input:[`text`,`image`],output:[`text`]}},{id:`grok-4-fast-reasoning`,name:`grok-4-fast-reasoning`,created_by:`xai`,source:`official`,last_updated:`2026-03-21`,family:`grok-4`,capabilities:{streaming:!0,tool_call:!0,reasoning:!0,vision:!0},modalities:{input:[`text`,`image`],output:[`text`]}},{id:`grok-4.1-fast-non-reasoning`,name:`grok-4.1-fast-non-reasoning`,created_by:`xai`,source:`official`,last_updated:`2026-03-21`,family:`grok-4.1`,capabilities:{streaming:!0,tool_call:!0,reasoning:!0,vision:!0},modalities:{input:[`text`,`image`],output:[`text`]}},{id:`grok-4.1-fast-reasoning`,name:`grok-4.1-fast-reasoning`,created_by:`xai`,source:`official`,last_updated:`2026-03-21`,family:`grok-4.1`,capabilities:{streaming:!0,tool_call:!0,reasoning:!0,vision:!0},modalities:{input:[`text`,`image`],output:[`text`]}},{id:`grok-4`,name:`grok-4`,created_by:`xai`,source:`official`,last_updated:`2026-03-21`,family:`grok-4`,capabilities:{streaming:!0,tool_call:!0},modalities:{input:[`text`],output:[`text`]}},{id:`grok-code-fast-1`,name:`grok-code-fast-1`,created_by:`xai`,source:`official`,last_updated:`2026-03-21`,family:`grok-code`,capabilities:{streaming:!0,tool_call:!0},modalities:{input:[`text`],output:[`text`]}},{id:`kimi-k2-thinking`,name:`Kimi-K2-Thinking`,created_by:`moonshot`,source:`official`,last_updated:`2026-03-21`,capabilities:{streaming:!0,tool_call:!0,reasoning:!0},modalities:{input:[`text`],output:[`text`]}},{id:`kimi-k2.5`,name:`Kimi-K2.5`,created_by:`moonshot`,source:`official`,last_updated:`2026-03-21`,capabilities:{streaming:!0,tool_call:!0,reasoning:!0,vision:!0},modalities:{input:[`text`,`image`],output:[`text`]}},{id:`llama-3.3-70b-instruct`,name:`Llama-3.3-70B-Instruct`,created_by:`meta`,source:`official`,last_updated:`2026-03-21`,family:`llama-3.3`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`llama-4-maverick-17b-128e-instruct-fp8`,name:`Llama-4-Maverick-17B-128E-Instruct-FP8`,created_by:`meta`,source:`official`,last_updated:`2026-03-21`,family:`llama-4`,capabilities:{streaming:!0,tool_call:!0,vision:!0},modalities:{input:[`text`,`image`],output:[`text`]}},{id:`mai-ds-r1`,name:`MAI-DS-R1`,created_by:`microsoft`,source:`official`,last_updated:`2026-03-21`,capabilities:{streaming:!0,tool_call:!0,reasoning:!0},modalities:{input:[`text`],output:[`text`]}},{id:`ministral-3b`,name:`Ministral-3B`,created_by:`mistral`,source:`official`,last_updated:`2026-03-21`,family:`ministral`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`mistral-document-ai-2505`,name:`mistral-document-ai-2505`,created_by:`mistral`,source:`official`,last_updated:`2026-03-21`,alias:`mistral-document-ai`,capabilities:{streaming:!0,tool_call:!0,vision:!0,json_mode:!0},modalities:{input:[`text`,`image`],output:[`text`]}},{id:`mistral-document-ai-2512`,name:`mistral-document-ai-2512`,created_by:`mistral`,source:`official`,last_updated:`2026-03-21`,alias:`mistral-document-ai`,capabilities:{streaming:!0,tool_call:!0,vision:!0,json_mode:!0},modalities:{input:[`text`,`image`],output:[`text`]}},{id:`mistral-document-ai`,name:`mistral-document-ai`,created_by:`mistral`,source:`official`,last_updated:`2026-03-21`,capabilities:{streaming:!0,tool_call:!0,vision:!0,json_mode:!0},modalities:{input:[`text`,`image`],output:[`text`]},snapshots:[`mistral-document-ai-2512`,`mistral-document-ai-2505`]},{id:`mistral-large-3`,name:`Mistral-Large-3`,created_by:`mistral`,source:`official`,last_updated:`2026-03-21`,family:`mistral-large`,capabilities:{streaming:!0,tool_call:!0,vision:!0,json_mode:!0},modalities:{input:[`text`,`image`],output:[`text`]}},{id:`o1-mini`,name:`o1-mini`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`o1`,knowledge_cutoff:`2023-10`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]},model_type:`reasoning`},{id:`o1-preview`,name:`o1-preview`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`o1`,knowledge_cutoff:`2023-10`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]},model_type:`reasoning`},{id:`o1`,name:`o1`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`o1`,knowledge_cutoff:`2023-10`,capabilities:{streaming:!0,tool_call:!0,structured_output:!0,reasoning:!0,vision:!0},modalities:{input:[`text`,`image`],output:[`text`]},model_type:`reasoning`},{id:`o3-mini`,name:`o3-mini`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`o3`,knowledge_cutoff:`2023-10`,capabilities:{streaming:!0,tool_call:!0,structured_output:!0,reasoning:!0},modalities:{input:[`text`],output:[`text`]},model_type:`reasoning`},{id:`o3-pro`,name:`o3-pro`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`o3`,knowledge_cutoff:`2024-05-31`,capabilities:{streaming:!0,tool_call:!0,structured_output:!0,vision:!0},modalities:{input:[`text`,`image`],output:[`text`]},model_type:`reasoning`},{id:`o3`,name:`o3`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`o3`,knowledge_cutoff:`2024-05-31`,capabilities:{streaming:!0,tool_call:!0,structured_output:!0,reasoning:!0,vision:!0},modalities:{input:[`text`,`image`],output:[`text`]},model_type:`reasoning`},{id:`o4-mini`,name:`o4-mini`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`o4`,knowledge_cutoff:`2024-05-31`,capabilities:{streaming:!0,tool_call:!0,structured_output:!0,reasoning:!0,vision:!0},modalities:{input:[`text`,`image`],output:[`text`]},model_type:`reasoning`},{id:`qwen-32b`,name:`Qwen-32B`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`qwen`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`sora-2`,name:`sora-2`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]},model_type:`video`},{id:`sora`,name:`Sora`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]},model_type:`video`},{id:`text-embedding-3-large`,name:`text-embedding-3-large`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,knowledge_cutoff:`2021-09`,max_output_tokens:3072,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]},model_type:`embed`},{id:`text-embedding-3-small`,name:`text-embedding-3-small`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,knowledge_cutoff:`2021-09`,max_output_tokens:1536,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]},model_type:`embed`},{id:`text-embedding-ada-002`,name:`text-embedding-ada-002`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,knowledge_cutoff:`2021-09`,max_output_tokens:1536,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]},model_type:`embed`},{id:`tts-hd`,name:`tts-hd`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]},model_type:`tts`},{id:`tts`,name:`tts`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]}},{id:`whisper`,name:`whisper`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,capabilities:{streaming:!0},modalities:{input:[`text`],output:[`text`]},family:`whisper`,model_type:`transcription`}]},t=e.models.map(t=>({...t,provider:e.id}));export{t as models,e as provider};