@layer-ai/sdk 2.5.11 → 2.5.13

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.
@@ -1,15 +1,17 @@
1
1
  export declare const SUPPORTED_PROVIDERS: readonly ["openai", "anthropic", "google", "mistral"];
2
2
  export type SupportedProvider = typeof SUPPORTED_PROVIDERS[number];
3
- export type ModelType = 'chat' | 'image' | 'video' | 'audio' | 'tts' | 'stt' | 'embeddings' | 'document' | 'responses' | 'language-completion';
3
+ export type ModelType = 'chat' | 'image' | 'video' | 'audio' | 'tts' | 'stt' | 'embeddings' | 'ocr' | 'moderation' | 'responses' | 'language-completion';
4
4
  interface BaseModelEntry {
5
5
  type: ModelType;
6
6
  provider: string;
7
7
  displayName: string;
8
8
  description?: string;
9
+ subtype?: string;
9
10
  pricing?: {
10
11
  input?: number;
11
12
  output?: number;
12
13
  };
14
+ unitPricing?: Record<string, any>;
13
15
  deprecated?: boolean;
14
16
  deprecationDate?: string;
15
17
  shutdownDate?: string;
@@ -20,7 +22,6 @@ interface BaseModelEntry {
20
22
  export interface ChatModelEntry extends BaseModelEntry {
21
23
  type: 'chat' | 'responses' | 'language-completion';
22
24
  contextLength?: number;
23
- maxTokens?: number;
24
25
  benchmarks?: {
25
26
  intelligence?: number;
26
27
  coding?: number;
@@ -29,9 +30,8 @@ export interface ChatModelEntry extends BaseModelEntry {
29
30
  gpqa?: number;
30
31
  };
31
32
  performance?: {
32
- outputTokenPerSecond?: number;
33
- timeTofirstToken?: number;
34
- intelligenceScore?: number;
33
+ outputTokensPerSecond?: number;
34
+ timeToFirstToken?: number;
35
35
  };
36
36
  context?: {
37
37
  window?: number;
@@ -51,7 +51,6 @@ export interface ChatModelEntry extends BaseModelEntry {
51
51
  }
52
52
  export interface ImageModelEntry extends BaseModelEntry {
53
53
  type: 'image';
54
- imagePricing?: number | Record<string, number>;
55
54
  }
56
55
  export interface VideoModelEntry extends BaseModelEntry {
57
56
  type: 'video';
@@ -69,49 +68,14 @@ export interface EmbeddingsModelEntry extends BaseModelEntry {
69
68
  type: 'embeddings';
70
69
  contextLength?: number;
71
70
  }
72
- export interface DocumentModelEntry extends BaseModelEntry {
73
- type: 'document';
71
+ export interface OCRModelEntry extends BaseModelEntry {
72
+ type: 'ocr';
74
73
  }
75
- export type ModelEntry = ChatModelEntry | ImageModelEntry | VideoModelEntry | AudioModelEntry | TTSModelEntry | STTModelEntry | EmbeddingsModelEntry | DocumentModelEntry;
74
+ export interface ModerationModelEntry extends BaseModelEntry {
75
+ type: 'moderation';
76
+ }
77
+ export type ModelEntry = ChatModelEntry | ImageModelEntry | VideoModelEntry | AudioModelEntry | TTSModelEntry | STTModelEntry | EmbeddingsModelEntry | OCRModelEntry | ModerationModelEntry;
76
78
  export declare const MODEL_REGISTRY: {
77
- readonly 'claude-3-7-sonnet-20250219': {
78
- readonly type: "chat";
79
- readonly provider: "anthropic";
80
- readonly displayName: "Claude Sonnet 3.7";
81
- readonly description: "Legacy model - recommend migrating to Claude 4.5";
82
- readonly pricing: {
83
- readonly input: 3;
84
- readonly output: 15;
85
- };
86
- readonly benchmarks: {
87
- readonly intelligence: 34.6;
88
- readonly coding: 27.6;
89
- readonly math: 56.3;
90
- readonly mmluPro: 0.84;
91
- readonly gpqa: 0.77;
92
- };
93
- readonly performance: {
94
- readonly intelligenceScore: 34.6;
95
- };
96
- readonly contextLength: 200000;
97
- readonly context: {
98
- readonly input: {
99
- readonly text: true;
100
- readonly audio: false;
101
- readonly image: true;
102
- readonly video: false;
103
- };
104
- readonly output: {
105
- readonly text: true;
106
- readonly audio: false;
107
- readonly image: false;
108
- readonly video: false;
109
- };
110
- };
111
- readonly deprecated: false;
112
- readonly isAvailable: true;
113
- readonly lastUpdated: "2026-01-25";
114
- };
115
79
  readonly 'claude-3-haiku-20240307': {
116
80
  readonly type: "chat";
117
81
  readonly provider: "anthropic";
@@ -127,9 +91,6 @@ export declare const MODEL_REGISTRY: {
127
91
  readonly mmluPro: 0.43;
128
92
  readonly gpqa: 0.33;
129
93
  };
130
- readonly performance: {
131
- readonly intelligenceScore: 1;
132
- };
133
94
  readonly contextLength: 200000;
134
95
  readonly context: {
135
96
  readonly input: {
@@ -147,7 +108,7 @@ export declare const MODEL_REGISTRY: {
147
108
  };
148
109
  readonly deprecated: false;
149
110
  readonly isAvailable: true;
150
- readonly lastUpdated: "2026-01-25";
111
+ readonly lastUpdated: "2026-03-01";
151
112
  };
152
113
  readonly 'claude-haiku-4-5-20251001': {
153
114
  readonly type: "chat";
@@ -164,9 +125,6 @@ export declare const MODEL_REGISTRY: {
164
125
  readonly mmluPro: 0.43;
165
126
  readonly gpqa: 0.33;
166
127
  };
167
- readonly performance: {
168
- readonly intelligenceScore: 7.4;
169
- };
170
128
  readonly contextLength: 200000;
171
129
  readonly context: {
172
130
  readonly input: {
@@ -184,7 +142,7 @@ export declare const MODEL_REGISTRY: {
184
142
  };
185
143
  readonly deprecated: false;
186
144
  readonly isAvailable: true;
187
- readonly lastUpdated: "2026-01-25";
145
+ readonly lastUpdated: "2026-03-01";
188
146
  };
189
147
  readonly 'claude-opus-4-1-20250805': {
190
148
  readonly type: "chat";
@@ -201,9 +159,6 @@ export declare const MODEL_REGISTRY: {
201
159
  readonly mmluPro: 0.5;
202
160
  readonly gpqa: 0.32;
203
161
  };
204
- readonly performance: {
205
- readonly intelligenceScore: 9.3;
206
- };
207
162
  readonly contextLength: 200000;
208
163
  readonly context: {
209
164
  readonly input: {
@@ -221,7 +176,30 @@ export declare const MODEL_REGISTRY: {
221
176
  };
222
177
  readonly deprecated: false;
223
178
  readonly isAvailable: true;
224
- readonly lastUpdated: "2026-01-25";
179
+ readonly lastUpdated: "2026-03-01";
180
+ };
181
+ readonly 'claude-opus-4-20250514': {
182
+ readonly type: "chat";
183
+ readonly provider: "anthropic";
184
+ readonly displayName: "Claude Opus 4";
185
+ readonly description: "Original Claude Opus 4 model";
186
+ readonly pricing: {
187
+ readonly input: 15;
188
+ readonly output: 75;
189
+ };
190
+ readonly contextLength: 200000;
191
+ readonly context: {
192
+ readonly input: {
193
+ readonly text: true;
194
+ readonly image: true;
195
+ };
196
+ readonly output: {
197
+ readonly text: true;
198
+ };
199
+ };
200
+ readonly deprecated: false;
201
+ readonly isAvailable: true;
202
+ readonly lastUpdated: "2026-03-01";
225
203
  };
226
204
  readonly 'claude-opus-4-5-20251101': {
227
205
  readonly type: "chat";
@@ -239,8 +217,38 @@ export declare const MODEL_REGISTRY: {
239
217
  readonly mmluPro: 0.89;
240
218
  readonly gpqa: 0.81;
241
219
  };
242
- readonly performance: {
243
- readonly intelligenceScore: 43;
220
+ readonly contextLength: 200000;
221
+ readonly context: {
222
+ readonly input: {
223
+ readonly text: true;
224
+ readonly audio: false;
225
+ readonly image: true;
226
+ readonly video: false;
227
+ };
228
+ readonly output: {
229
+ readonly text: true;
230
+ readonly audio: false;
231
+ readonly image: false;
232
+ readonly video: false;
233
+ };
234
+ };
235
+ readonly deprecated: false;
236
+ readonly isAvailable: true;
237
+ readonly lastUpdated: "2026-03-01";
238
+ };
239
+ readonly 'claude-opus-4-6': {
240
+ readonly type: "chat";
241
+ readonly provider: "anthropic";
242
+ readonly displayName: "Claude Opus 4.6";
243
+ readonly description: "Most intelligent model for building agents and coding";
244
+ readonly pricing: {
245
+ readonly input: 5;
246
+ readonly output: 25;
247
+ };
248
+ readonly benchmarks: {
249
+ readonly intelligence: 93;
250
+ readonly mmluPro: 82;
251
+ readonly gpqa: 91.3;
244
252
  };
245
253
  readonly contextLength: 200000;
246
254
  readonly context: {
@@ -259,7 +267,7 @@ export declare const MODEL_REGISTRY: {
259
267
  };
260
268
  readonly deprecated: false;
261
269
  readonly isAvailable: true;
262
- readonly lastUpdated: "2026-01-25";
270
+ readonly lastUpdated: "2026-03-01";
263
271
  };
264
272
  readonly 'claude-sonnet-4-20250514': {
265
273
  readonly type: "chat";
@@ -277,9 +285,6 @@ export declare const MODEL_REGISTRY: {
277
285
  readonly mmluPro: 0.84;
278
286
  readonly gpqa: 0.68;
279
287
  };
280
- readonly performance: {
281
- readonly intelligenceScore: 33;
282
- };
283
288
  readonly contextLength: 200000;
284
289
  readonly context: {
285
290
  readonly input: {
@@ -297,7 +302,7 @@ export declare const MODEL_REGISTRY: {
297
302
  };
298
303
  readonly deprecated: false;
299
304
  readonly isAvailable: true;
300
- readonly lastUpdated: "2026-01-25";
305
+ readonly lastUpdated: "2026-03-01";
301
306
  };
302
307
  readonly 'claude-sonnet-4-5-20250929': {
303
308
  readonly type: "chat";
@@ -315,8 +320,38 @@ export declare const MODEL_REGISTRY: {
315
320
  readonly mmluPro: 0.86;
316
321
  readonly gpqa: 0.73;
317
322
  };
318
- readonly performance: {
319
- readonly intelligenceScore: 37.1;
323
+ readonly contextLength: 200000;
324
+ readonly context: {
325
+ readonly input: {
326
+ readonly text: true;
327
+ readonly audio: false;
328
+ readonly image: true;
329
+ readonly video: false;
330
+ };
331
+ readonly output: {
332
+ readonly text: true;
333
+ readonly audio: false;
334
+ readonly image: false;
335
+ readonly video: false;
336
+ };
337
+ };
338
+ readonly deprecated: false;
339
+ readonly isAvailable: true;
340
+ readonly lastUpdated: "2026-03-01";
341
+ };
342
+ readonly 'claude-sonnet-4-6': {
343
+ readonly type: "chat";
344
+ readonly provider: "anthropic";
345
+ readonly displayName: "Claude Sonnet 4.6";
346
+ readonly description: "Optimal balance of intelligence, cost, and speed";
347
+ readonly pricing: {
348
+ readonly input: 3;
349
+ readonly output: 15;
350
+ };
351
+ readonly benchmarks: {
352
+ readonly intelligence: 93;
353
+ readonly mmluPro: 79.1;
354
+ readonly gpqa: 89.9;
320
355
  };
321
356
  readonly contextLength: 200000;
322
357
  readonly context: {
@@ -335,7 +370,15 @@ export declare const MODEL_REGISTRY: {
335
370
  };
336
371
  readonly deprecated: false;
337
372
  readonly isAvailable: true;
338
- readonly lastUpdated: "2026-01-25";
373
+ readonly lastUpdated: "2026-03-01";
374
+ };
375
+ readonly 'deep-research-pro-preview-12-2025': {
376
+ readonly type: "chat";
377
+ readonly provider: "google";
378
+ readonly displayName: "";
379
+ readonly deprecated: false;
380
+ readonly isAvailable: true;
381
+ readonly lastUpdated: "2026-03-01";
339
382
  };
340
383
  readonly 'gemini-2.0-flash': {
341
384
  readonly type: "chat";
@@ -343,15 +386,12 @@ export declare const MODEL_REGISTRY: {
343
386
  readonly displayName: "Gemini 2.0 Flash";
344
387
  readonly description: "Gemini 2.0 Flash delivers next-gen features and improved capabilities, including superior speed, native tool use, and a 1M token context window.";
345
388
  readonly pricing: {
346
- readonly input: 0.1;
347
- readonly output: 0.4;
389
+ readonly input: 0.15;
390
+ readonly output: 0.6;
348
391
  };
349
392
  readonly benchmarks: {
350
393
  readonly intelligence: 12.3;
351
394
  };
352
- readonly performance: {
353
- readonly intelligenceScore: 12.3;
354
- };
355
395
  readonly contextLength: 1048576;
356
396
  readonly context: {
357
397
  readonly input: {
@@ -369,7 +409,52 @@ export declare const MODEL_REGISTRY: {
369
409
  };
370
410
  readonly deprecated: false;
371
411
  readonly isAvailable: true;
372
- readonly lastUpdated: "2026-01-25";
412
+ readonly lastUpdated: "2026-03-01";
413
+ };
414
+ readonly 'gemini-2.0-flash-001': {
415
+ readonly type: "chat";
416
+ readonly provider: "google";
417
+ readonly displayName: "Gemini 2.0 Flash 001";
418
+ readonly description: "Stable version of Gemini 2.0 Flash, fast and versatile multimodal model";
419
+ readonly contextLength: 1048576;
420
+ readonly context: {
421
+ readonly input: {
422
+ readonly text: true;
423
+ readonly audio: true;
424
+ readonly image: true;
425
+ readonly video: true;
426
+ };
427
+ readonly output: {
428
+ readonly text: true;
429
+ };
430
+ };
431
+ readonly deprecated: false;
432
+ readonly isAvailable: true;
433
+ readonly lastUpdated: "2026-03-01";
434
+ };
435
+ readonly 'gemini-2.0-flash-exp-image-generation': {
436
+ readonly type: "image";
437
+ readonly provider: "google";
438
+ readonly displayName: "Gemini 2.0 Flash Image Generation (Experimental)";
439
+ readonly description: "Experimental Gemini 2.0 Flash with image generation capabilities";
440
+ readonly contextLength: 1048576;
441
+ readonly context: {
442
+ readonly input: {
443
+ readonly text: true;
444
+ readonly audio: true;
445
+ readonly image: true;
446
+ readonly video: true;
447
+ };
448
+ readonly output: {
449
+ readonly text: true;
450
+ readonly audio: false;
451
+ readonly image: true;
452
+ readonly video: false;
453
+ };
454
+ };
455
+ readonly deprecated: false;
456
+ readonly isAvailable: true;
457
+ readonly lastUpdated: "2026-03-01";
373
458
  };
374
459
  readonly 'gemini-2.0-flash-lite': {
375
460
  readonly type: "chat";
@@ -385,9 +470,6 @@ export declare const MODEL_REGISTRY: {
385
470
  readonly mmluPro: 0.72;
386
471
  readonly gpqa: 0.54;
387
472
  };
388
- readonly performance: {
389
- readonly intelligenceScore: 14.7;
390
- };
391
473
  readonly contextLength: 1048576;
392
474
  readonly context: {
393
475
  readonly input: {
@@ -405,13 +487,32 @@ export declare const MODEL_REGISTRY: {
405
487
  };
406
488
  readonly deprecated: false;
407
489
  readonly isAvailable: true;
408
- readonly lastUpdated: "2026-01-25";
490
+ readonly lastUpdated: "2026-03-01";
491
+ };
492
+ readonly 'gemini-2.0-flash-lite-001': {
493
+ readonly type: "chat";
494
+ readonly provider: "google";
495
+ readonly displayName: "Gemini 2.0 Flash-Lite 001";
496
+ readonly description: "Stable version of Gemini 2.0 Flash-Lite";
497
+ readonly contextLength: 1048576;
498
+ readonly deprecated: false;
499
+ readonly isAvailable: true;
500
+ readonly lastUpdated: "2026-03-01";
501
+ };
502
+ readonly 'gemini-2.5-computer-use-preview-10-2025': {
503
+ readonly type: "chat";
504
+ readonly provider: "google";
505
+ readonly displayName: "";
506
+ readonly deprecated: false;
507
+ readonly isAvailable: true;
508
+ readonly lastUpdated: "2026-03-01";
409
509
  };
410
510
  readonly 'gemini-2.5-flash': {
411
511
  readonly type: "chat";
412
512
  readonly provider: "google";
413
513
  readonly displayName: "Gemini 2.5 Flash";
414
- readonly description: "Our best model in terms of price-performance, offering well-rounded capabilities. 2.5 Flash is best for large scale processing, low-latency, high volume tasks that require thinking, and agentic use cases.";
514
+ readonly subtype: "reasoning";
515
+ readonly description: "Stable version of Gemini 2.5 Flash with thinking capabilities";
415
516
  readonly pricing: {
416
517
  readonly input: 0.3;
417
518
  readonly output: 2.5;
@@ -423,9 +524,6 @@ export declare const MODEL_REGISTRY: {
423
524
  readonly mmluPro: 0.84;
424
525
  readonly gpqa: 0.77;
425
526
  };
426
- readonly performance: {
427
- readonly intelligenceScore: 25.5;
428
- };
429
527
  readonly contextLength: 1048576;
430
528
  readonly context: {
431
529
  readonly input: {
@@ -443,13 +541,42 @@ export declare const MODEL_REGISTRY: {
443
541
  };
444
542
  readonly deprecated: false;
445
543
  readonly isAvailable: true;
446
- readonly lastUpdated: "2026-01-25";
544
+ readonly lastUpdated: "2026-03-01";
545
+ };
546
+ readonly 'gemini-2.5-flash-image': {
547
+ readonly type: "image";
548
+ readonly provider: "google";
549
+ readonly displayName: "Gemini 2.5 Flash Image";
550
+ readonly description: "Gemini 2.5 Flash with image generation capabilities";
551
+ readonly pricing: {
552
+ readonly input: 0.3;
553
+ readonly output: 30;
554
+ };
555
+ readonly contextLength: 32768;
556
+ readonly context: {
557
+ readonly input: {
558
+ readonly text: true;
559
+ readonly audio: false;
560
+ readonly image: true;
561
+ readonly video: false;
562
+ };
563
+ readonly output: {
564
+ readonly text: true;
565
+ readonly audio: false;
566
+ readonly image: true;
567
+ readonly video: false;
568
+ };
569
+ };
570
+ readonly deprecated: false;
571
+ readonly isAvailable: true;
572
+ readonly lastUpdated: "2026-03-01";
447
573
  };
448
574
  readonly 'gemini-2.5-flash-lite': {
449
575
  readonly type: "chat";
450
576
  readonly provider: "google";
451
577
  readonly displayName: "Gemini 2.5 Flash-Lite";
452
- readonly description: "Our fastest flash model optimized for cost-efficiency and high throughput.";
578
+ readonly subtype: "reasoning";
579
+ readonly description: "Stable version of Gemini 2.5 Flash-Lite with thinking capabilities";
453
580
  readonly pricing: {
454
581
  readonly input: 0.1;
455
582
  readonly output: 0.4;
@@ -461,13 +588,9 @@ export declare const MODEL_REGISTRY: {
461
588
  readonly mmluPro: 0.76;
462
589
  readonly gpqa: 0.63;
463
590
  };
464
- readonly performance: {
465
- readonly intelligenceScore: 17.4;
466
- };
467
591
  readonly contextLength: 1048576;
468
592
  readonly context: {
469
593
  readonly input: {
470
- readonly pdf: true;
471
594
  readonly text: true;
472
595
  readonly audio: true;
473
596
  readonly image: true;
@@ -482,57 +605,20 @@ export declare const MODEL_REGISTRY: {
482
605
  };
483
606
  readonly deprecated: false;
484
607
  readonly isAvailable: true;
485
- readonly lastUpdated: "2026-01-25";
486
- };
487
- readonly 'gemini-2.5-flash-preview-tts': {
488
- readonly type: "tts";
489
- readonly provider: "google";
490
- readonly displayName: "Gemini 2.5 Flash TTS";
491
- readonly pricing: {
492
- readonly input: 0.5;
493
- readonly output: 10;
494
- };
495
- readonly contextLength: 8192;
496
- readonly context: {
497
- readonly input: {
498
- readonly text: true;
499
- readonly audio: false;
500
- readonly image: false;
501
- readonly video: false;
502
- };
503
- readonly output: {
504
- readonly text: false;
505
- readonly audio: true;
506
- readonly image: false;
507
- readonly video: false;
508
- };
509
- };
510
- readonly deprecated: false;
511
- readonly isAvailable: true;
512
- readonly lastUpdated: "2026-01-25";
608
+ readonly lastUpdated: "2026-03-01";
513
609
  };
514
- readonly 'gemini-2.5-pro': {
610
+ readonly 'gemini-2.5-flash-lite-preview-09-2025': {
515
611
  readonly type: "chat";
516
612
  readonly provider: "google";
517
- readonly displayName: "Gemini 2.5 Pro";
518
- readonly description: "Our state-of-the-art thinking model, capable of reasoning over complex problems in code, math, and STEM, as well as analyzing large datasets, codebases, and documents using long context.";
519
- readonly pricing: {
520
- readonly input: 1.25;
521
- readonly output: 10;
522
- };
523
- readonly benchmarks: {
524
- readonly intelligence: 30.3;
525
- readonly coding: 46.7;
526
- readonly mmluPro: 0.86;
527
- readonly gpqa: 0.84;
528
- };
613
+ readonly displayName: "Gemini 2.5 Flash-Lite Preview (Sep 2025)";
614
+ readonly subtype: "reasoning";
615
+ readonly description: "Preview release of Gemini 2.5 Flash-Lite, September 2025";
529
616
  readonly performance: {
530
- readonly intelligenceScore: 30.3;
617
+ readonly outputTokensPerSecond: 496;
531
618
  };
532
619
  readonly contextLength: 1048576;
533
620
  readonly context: {
534
621
  readonly input: {
535
- readonly pdf: true;
536
622
  readonly text: true;
537
623
  readonly audio: true;
538
624
  readonly image: true;
@@ -547,26 +633,31 @@ export declare const MODEL_REGISTRY: {
547
633
  };
548
634
  readonly deprecated: false;
549
635
  readonly isAvailable: true;
550
- readonly lastUpdated: "2026-01-25";
636
+ readonly lastUpdated: "2026-03-01";
551
637
  };
552
- readonly 'gemini-2.5-pro-preview-tts': {
553
- readonly type: "tts";
638
+ readonly 'gemini-2.5-flash-native-audio-latest': {
639
+ readonly type: "audio";
554
640
  readonly provider: "google";
555
- readonly displayName: "Gemini 2.5 Pro TTS";
556
- readonly pricing: {
557
- readonly input: 1;
558
- readonly output: 20;
559
- };
560
- readonly contextLength: 8192;
641
+ readonly displayName: "";
642
+ readonly deprecated: false;
643
+ readonly isAvailable: true;
644
+ readonly lastUpdated: "2026-03-01";
645
+ };
646
+ readonly 'gemini-2.5-flash-native-audio-preview-09-2025': {
647
+ readonly type: "audio";
648
+ readonly provider: "google";
649
+ readonly displayName: "Gemini 2.5 Flash Native Audio Preview (Sep 2025)";
650
+ readonly description: "Gemini 2.5 Flash native audio preview, September 2025";
651
+ readonly contextLength: 131072;
561
652
  readonly context: {
562
653
  readonly input: {
563
654
  readonly text: true;
564
- readonly audio: false;
655
+ readonly audio: true;
565
656
  readonly image: false;
566
657
  readonly video: false;
567
658
  };
568
659
  readonly output: {
569
- readonly text: false;
660
+ readonly text: true;
570
661
  readonly audio: true;
571
662
  readonly image: false;
572
663
  readonly video: false;
@@ -574,65 +665,75 @@ export declare const MODEL_REGISTRY: {
574
665
  };
575
666
  readonly deprecated: false;
576
667
  readonly isAvailable: true;
577
- readonly lastUpdated: "2026-01-25";
668
+ readonly lastUpdated: "2026-03-01";
578
669
  };
579
- readonly 'gemini-3-flash-preview': {
580
- readonly type: "chat";
670
+ readonly 'gemini-2.5-flash-native-audio-preview-12-2025': {
671
+ readonly type: "audio";
581
672
  readonly provider: "google";
582
- readonly displayName: "Gemini 3 Flash Preview";
583
- readonly description: "Our most balanced model built for speed, scale, and frontier intelligence.";
584
- readonly pricing: {
585
- readonly input: 0.5;
586
- readonly output: 3;
587
- };
588
- readonly benchmarks: {
589
- readonly intelligence: 35.1;
590
- readonly coding: 37.8;
591
- readonly math: 55.7;
592
- readonly mmluPro: 0.88;
593
- readonly gpqa: 0.81;
594
- };
595
- readonly performance: {
596
- readonly intelligenceScore: 35.1;
597
- };
598
- readonly contextLength: 1048576;
673
+ readonly displayName: "Gemini 2.5 Flash Native Audio Preview (Dec 2025)";
674
+ readonly description: "Gemini 2.5 Flash native audio preview, December 2025";
675
+ readonly contextLength: 131072;
599
676
  readonly context: {
600
677
  readonly input: {
601
- readonly pdf: true;
602
678
  readonly text: true;
603
679
  readonly audio: true;
604
- readonly image: true;
605
- readonly video: true;
680
+ readonly image: false;
681
+ readonly video: false;
606
682
  };
607
683
  readonly output: {
684
+ readonly text: true;
685
+ readonly audio: true;
686
+ readonly image: false;
687
+ readonly video: false;
688
+ };
689
+ };
690
+ readonly deprecated: false;
691
+ readonly isAvailable: true;
692
+ readonly lastUpdated: "2026-03-01";
693
+ };
694
+ readonly 'gemini-2.5-flash-preview-tts': {
695
+ readonly type: "tts";
696
+ readonly provider: "google";
697
+ readonly displayName: "Gemini 2.5 Flash Preview TTS";
698
+ readonly description: "Gemini 2.5 Flash Preview TTS";
699
+ readonly pricing: {
700
+ readonly input: 0.5;
701
+ readonly output: 10;
702
+ };
703
+ readonly contextLength: 8192;
704
+ readonly context: {
705
+ readonly input: {
608
706
  readonly text: true;
609
707
  readonly audio: false;
610
708
  readonly image: false;
611
709
  readonly video: false;
612
710
  };
711
+ readonly output: {
712
+ readonly text: false;
713
+ readonly audio: true;
714
+ readonly image: false;
715
+ readonly video: false;
716
+ };
613
717
  };
614
718
  readonly deprecated: false;
615
719
  readonly isAvailable: true;
616
- readonly lastUpdated: "2026-01-25";
720
+ readonly lastUpdated: "2026-03-01";
617
721
  };
618
- readonly 'gemini-3-pro-preview': {
722
+ readonly 'gemini-2.5-pro': {
619
723
  readonly type: "chat";
620
724
  readonly provider: "google";
621
- readonly displayName: "Gemini 3 Pro Preview";
622
- readonly description: "The best model in the world for multimodal understanding, and our most powerful agentic and vibe-coding model yet, delivering richer visuals and deeper interactivity, all built on a foundation of state-of-the-art reasoning.";
725
+ readonly displayName: "Gemini 2.5 Pro";
726
+ readonly subtype: "reasoning";
727
+ readonly description: "Stable release of Gemini 2.5 Pro with thinking capabilities";
623
728
  readonly pricing: {
624
- readonly input: 2;
625
- readonly output: 12;
729
+ readonly input: 1.25;
730
+ readonly output: 10;
626
731
  };
627
732
  readonly benchmarks: {
628
- readonly intelligence: 41.1;
629
- readonly coding: 39.4;
630
- readonly math: 86.7;
631
- readonly mmluPro: 0.9;
632
- readonly gpqa: 0.89;
633
- };
634
- readonly performance: {
635
- readonly intelligenceScore: 41.1;
733
+ readonly intelligence: 30.3;
734
+ readonly coding: 46.7;
735
+ readonly mmluPro: 0.86;
736
+ readonly gpqa: 0.84;
636
737
  };
637
738
  readonly contextLength: 1048576;
638
739
  readonly context: {
@@ -652,16 +753,18 @@ export declare const MODEL_REGISTRY: {
652
753
  };
653
754
  readonly deprecated: false;
654
755
  readonly isAvailable: true;
655
- readonly lastUpdated: "2026-01-25";
756
+ readonly lastUpdated: "2026-03-01";
656
757
  };
657
- readonly 'gemini-robotics-er-1.5-preview': {
658
- readonly type: "chat";
758
+ readonly 'gemini-2.5-pro-preview-tts': {
759
+ readonly type: "tts";
659
760
  readonly provider: "google";
660
- readonly displayName: "Gemini Robotics ER 1.5 Preview";
761
+ readonly displayName: "Gemini 2.5 Pro Preview TTS";
762
+ readonly description: "Gemini 2.5 Pro Preview TTS";
661
763
  readonly pricing: {
662
- readonly input: 0.3;
663
- readonly output: 2.5;
764
+ readonly input: 1;
765
+ readonly output: 20;
664
766
  };
767
+ readonly contextLength: 8192;
665
768
  readonly context: {
666
769
  readonly input: {
667
770
  readonly text: true;
@@ -670,39 +773,40 @@ export declare const MODEL_REGISTRY: {
670
773
  readonly video: false;
671
774
  };
672
775
  readonly output: {
673
- readonly text: true;
674
- readonly audio: false;
776
+ readonly text: false;
777
+ readonly audio: true;
675
778
  readonly image: false;
676
779
  readonly video: false;
677
780
  };
678
781
  };
679
782
  readonly deprecated: false;
680
783
  readonly isAvailable: true;
681
- readonly lastUpdated: "2026-01-25";
784
+ readonly lastUpdated: "2026-03-01";
682
785
  };
683
- readonly 'gemma-3-27b-it': {
786
+ readonly 'gemini-3-flash-preview': {
684
787
  readonly type: "chat";
685
788
  readonly provider: "google";
686
- readonly displayName: "Gemma 3 27B IT";
687
- readonly description: "Large instruction-tuned Gemma model";
789
+ readonly displayName: "Gemini 3 Flash Preview";
790
+ readonly subtype: "reasoning";
791
+ readonly description: "Gemini 3 Flash Preview with thinking capabilities";
688
792
  readonly pricing: {
689
- readonly input: 0;
690
- readonly output: 0;
793
+ readonly input: 0.5;
794
+ readonly output: 3;
691
795
  };
692
796
  readonly benchmarks: {
693
- readonly intelligence: 10.1;
694
- readonly mmluPro: 0.48;
695
- readonly gpqa: 0.28;
696
- };
697
- readonly performance: {
698
- readonly intelligenceScore: 10.1;
797
+ readonly intelligence: 35.1;
798
+ readonly coding: 37.8;
799
+ readonly math: 55.7;
800
+ readonly mmluPro: 0.88;
801
+ readonly gpqa: 0.81;
699
802
  };
803
+ readonly contextLength: 1048576;
700
804
  readonly context: {
701
805
  readonly input: {
702
806
  readonly text: true;
703
- readonly audio: false;
704
- readonly image: false;
705
- readonly video: false;
807
+ readonly audio: true;
808
+ readonly image: true;
809
+ readonly video: true;
706
810
  };
707
811
  readonly output: {
708
812
  readonly text: true;
@@ -713,22 +817,32 @@ export declare const MODEL_REGISTRY: {
713
817
  };
714
818
  readonly deprecated: false;
715
819
  readonly isAvailable: true;
716
- readonly lastUpdated: "2026-01-25";
820
+ readonly lastUpdated: "2026-03-01";
717
821
  };
718
- readonly 'imagen-4.0-fast-generate-001': {
822
+ readonly 'gemini-3-pro-image-preview': {
719
823
  readonly type: "image";
720
824
  readonly provider: "google";
721
- readonly displayName: "Imagen 4.0 Fast";
722
- readonly imagePricing: 0.02;
825
+ readonly displayName: "Gemini 3 Pro Image Preview";
826
+ readonly description: "Gemini 3 Pro with image generation capabilities";
827
+ readonly pricing: {
828
+ readonly input: 2;
829
+ readonly output: 12;
830
+ };
831
+ readonly unitPricing: {
832
+ readonly 'output-4k': 240;
833
+ readonly 'input-image': 1.1;
834
+ readonly 'output-1k-2k': 134;
835
+ };
836
+ readonly contextLength: 131072;
723
837
  readonly context: {
724
838
  readonly input: {
725
839
  readonly text: true;
726
840
  readonly audio: false;
727
- readonly image: false;
841
+ readonly image: true;
728
842
  readonly video: false;
729
843
  };
730
844
  readonly output: {
731
- readonly text: false;
845
+ readonly text: true;
732
846
  readonly audio: false;
733
847
  readonly image: true;
734
848
  readonly video: false;
@@ -736,22 +850,33 @@ export declare const MODEL_REGISTRY: {
736
850
  };
737
851
  readonly deprecated: false;
738
852
  readonly isAvailable: true;
739
- readonly lastUpdated: "2026-01-25";
853
+ readonly lastUpdated: "2026-03-01";
740
854
  };
741
- readonly 'imagen-4.0-ultra-generate-001': {
742
- readonly type: "image";
855
+ readonly 'gemini-3-pro-preview': {
856
+ readonly type: "chat";
743
857
  readonly provider: "google";
744
- readonly displayName: "Imagen 4.0 Ultra";
745
- readonly imagePricing: 0.06;
858
+ readonly displayName: "Gemini 3 Pro Preview";
859
+ readonly subtype: "reasoning";
860
+ readonly description: "Gemini 3 Pro Preview with thinking capabilities";
861
+ readonly pricing: {
862
+ readonly input: 2;
863
+ readonly output: 12;
864
+ };
865
+ readonly benchmarks: {
866
+ readonly intelligence: 95;
867
+ readonly mmluPro: 85;
868
+ readonly gpqa: 91.9;
869
+ };
870
+ readonly contextLength: 1048576;
746
871
  readonly context: {
747
872
  readonly input: {
748
873
  readonly text: true;
749
- readonly audio: false;
750
- readonly image: false;
751
- readonly video: false;
874
+ readonly audio: true;
875
+ readonly image: true;
876
+ readonly video: true;
752
877
  };
753
878
  readonly output: {
754
- readonly text: false;
879
+ readonly text: true;
755
880
  readonly audio: false;
756
881
  readonly image: true;
757
882
  readonly video: false;
@@ -759,92 +884,103 @@ export declare const MODEL_REGISTRY: {
759
884
  };
760
885
  readonly deprecated: false;
761
886
  readonly isAvailable: true;
762
- readonly lastUpdated: "2026-01-25";
887
+ readonly lastUpdated: "2026-03-01";
763
888
  };
764
- readonly 'text-embedding-004': {
765
- readonly type: "embedding";
889
+ readonly 'gemini-3.1-flash-image-preview': {
890
+ readonly type: "image";
766
891
  readonly provider: "google";
767
- readonly displayName: "Text Embedding 004";
892
+ readonly displayName: "Gemini 3.1 Flash Image Preview";
893
+ readonly description: "Gemini 3.1 Flash with image generation capabilities";
768
894
  readonly pricing: {
769
- readonly input: 0.15;
895
+ readonly input: 0.5;
896
+ readonly output: 3;
770
897
  };
898
+ readonly contextLength: 65536;
771
899
  readonly context: {
772
900
  readonly input: {
773
901
  readonly text: true;
774
902
  readonly audio: false;
775
- readonly image: false;
903
+ readonly image: true;
776
904
  readonly video: false;
777
905
  };
778
906
  readonly output: {
779
- readonly text: false;
907
+ readonly text: true;
780
908
  readonly audio: false;
781
- readonly image: false;
909
+ readonly image: true;
782
910
  readonly video: false;
783
911
  };
784
912
  };
785
913
  readonly deprecated: false;
786
914
  readonly isAvailable: true;
787
- readonly lastUpdated: "2026-01-25";
915
+ readonly lastUpdated: "2026-03-01";
788
916
  };
789
- readonly 'veo-3.1-fast-generate-preview': {
790
- readonly type: "video";
917
+ readonly 'gemini-3.1-pro-preview': {
918
+ readonly type: "chat";
791
919
  readonly provider: "google";
792
- readonly displayName: "Veo 3.1 Fast";
920
+ readonly displayName: "Gemini 3.1 Pro Preview";
921
+ readonly subtype: "reasoning";
922
+ readonly description: "Gemini 3.1 Pro Preview with thinking capabilities";
923
+ readonly pricing: {
924
+ readonly input: 2;
925
+ readonly output: 12;
926
+ };
927
+ readonly benchmarks: {
928
+ readonly intelligence: 95;
929
+ };
930
+ readonly contextLength: 1048576;
793
931
  readonly context: {
794
932
  readonly input: {
795
933
  readonly text: true;
796
- readonly audio: false;
797
- readonly image: false;
798
- readonly video: false;
934
+ readonly audio: true;
935
+ readonly image: true;
936
+ readonly video: true;
799
937
  };
800
938
  readonly output: {
801
- readonly text: false;
939
+ readonly text: true;
802
940
  readonly audio: false;
803
- readonly image: false;
804
- readonly video: true;
941
+ readonly image: true;
942
+ readonly video: false;
805
943
  };
806
944
  };
807
945
  readonly deprecated: false;
808
946
  readonly isAvailable: true;
809
- readonly lastUpdated: "2026-01-25";
947
+ readonly lastUpdated: "2026-03-01";
810
948
  };
811
- readonly 'veo-3.1-generate-preview': {
812
- readonly type: "video";
949
+ readonly 'gemini-3.1-pro-preview-customtools': {
950
+ readonly type: "chat";
813
951
  readonly provider: "google";
814
- readonly displayName: "Veo 3.1";
952
+ readonly displayName: "Gemini 3.1 Pro Preview Custom Tools";
953
+ readonly subtype: "reasoning";
954
+ readonly description: "Gemini 3.1 Pro Preview optimized for custom tool usage";
955
+ readonly pricing: {
956
+ readonly input: 2;
957
+ readonly output: 12;
958
+ };
959
+ readonly contextLength: 1048576;
815
960
  readonly context: {
816
961
  readonly input: {
817
962
  readonly text: true;
818
- readonly audio: false;
819
- readonly image: false;
820
- readonly video: false;
963
+ readonly audio: true;
964
+ readonly image: true;
965
+ readonly video: true;
821
966
  };
822
967
  readonly output: {
823
- readonly text: false;
968
+ readonly text: true;
824
969
  readonly audio: false;
825
- readonly image: false;
826
- readonly video: true;
970
+ readonly image: true;
971
+ readonly video: false;
827
972
  };
828
973
  };
829
974
  readonly deprecated: false;
830
975
  readonly isAvailable: true;
831
- readonly lastUpdated: "2026-01-25";
976
+ readonly lastUpdated: "2026-03-01";
832
977
  };
833
- readonly 'codestral-2412': {
834
- readonly type: "chat";
835
- readonly provider: "mistral";
836
- readonly displayName: "Codestral";
837
- readonly description: "Our cutting-edge language model for code completion released end of July 2025.";
838
- readonly benchmarks: {
839
- readonly intelligence: 68.5;
840
- readonly coding: 53.5;
841
- readonly math: 98.7;
842
- readonly mmluPro: 0.87;
843
- readonly gpqa: 0.84;
844
- };
845
- readonly performance: {
846
- readonly intelligenceScore: 68.5;
847
- };
978
+ readonly 'gemini-embedding-001': {
979
+ readonly type: "embeddings";
980
+ readonly provider: "google";
981
+ readonly displayName: "Gemini Embedding 001";
982
+ readonly description: "Google embedding model for distributed text representations";
983
+ readonly contextLength: 2048;
848
984
  readonly context: {
849
985
  readonly input: {
850
986
  readonly text: true;
@@ -853,7 +989,7 @@ export declare const MODEL_REGISTRY: {
853
989
  readonly video: false;
854
990
  };
855
991
  readonly output: {
856
- readonly text: true;
992
+ readonly text: false;
857
993
  readonly audio: false;
858
994
  readonly image: false;
859
995
  readonly video: false;
@@ -861,13 +997,16 @@ export declare const MODEL_REGISTRY: {
861
997
  };
862
998
  readonly deprecated: false;
863
999
  readonly isAvailable: true;
864
- readonly lastUpdated: "2026-01-25";
1000
+ readonly lastUpdated: "2026-03-01";
865
1001
  };
866
- readonly 'codestral-2508': {
1002
+ readonly 'gemini-robotics-er-1.5-preview': {
867
1003
  readonly type: "chat";
868
- readonly provider: "mistral";
869
- readonly displayName: "Codestral";
870
- readonly description: "Our cutting-edge language model for code completion released end of July 2025.";
1004
+ readonly provider: "google";
1005
+ readonly displayName: "Gemini Robotics ER 1.5 Preview";
1006
+ readonly pricing: {
1007
+ readonly input: 0.3;
1008
+ readonly output: 2.5;
1009
+ };
871
1010
  readonly context: {
872
1011
  readonly input: {
873
1012
  readonly text: true;
@@ -884,17 +1023,25 @@ export declare const MODEL_REGISTRY: {
884
1023
  };
885
1024
  readonly deprecated: false;
886
1025
  readonly isAvailable: true;
887
- readonly lastUpdated: "2026-01-25";
1026
+ readonly lastUpdated: "2026-03-01";
888
1027
  };
889
- readonly 'codestral-embed-2505': {
890
- readonly type: "embedding";
891
- readonly provider: "mistral";
892
- readonly displayName: "Codestral Embed";
893
- readonly description: "Our state-of-the-art semantic for extracting representation of code extracts";
1028
+ readonly 'gemma-3-12b-it': {
1029
+ readonly type: "chat";
1030
+ readonly provider: "google";
1031
+ readonly displayName: "Gemma 3 12B";
1032
+ readonly description: "Google Gemma 3 12B instruction-tuned model";
894
1033
  readonly pricing: {
895
- readonly input: 0.15;
1034
+ readonly input: 0;
896
1035
  readonly output: 0;
897
1036
  };
1037
+ readonly benchmarks: {
1038
+ readonly intelligence: 20.4;
1039
+ readonly coding: 10.6;
1040
+ readonly math: 18.3;
1041
+ readonly mmluPro: 0.6;
1042
+ readonly gpqa: 0.35;
1043
+ };
1044
+ readonly contextLength: 32768;
898
1045
  readonly context: {
899
1046
  readonly input: {
900
1047
  readonly text: true;
@@ -911,23 +1058,23 @@ export declare const MODEL_REGISTRY: {
911
1058
  };
912
1059
  readonly deprecated: false;
913
1060
  readonly isAvailable: true;
914
- readonly lastUpdated: "2026-01-25";
1061
+ readonly lastUpdated: "2026-03-01";
915
1062
  };
916
- readonly 'devstral-2512': {
1063
+ readonly 'gemma-3-1b-it': {
917
1064
  readonly type: "chat";
918
- readonly provider: "mistral";
919
- readonly displayName: "Devstral 2";
920
- readonly description: "Our frontier code agents model for solving software engineering tasks.";
921
- readonly benchmarks: {
922
- readonly intelligence: 18.6;
923
- readonly coding: 15.9;
924
- readonly math: 4.7;
925
- readonly mmluPro: 0.71;
926
- readonly gpqa: 0.49;
1065
+ readonly provider: "google";
1066
+ readonly displayName: "Gemma 3 1B";
1067
+ readonly description: "Google Gemma 3 1B instruction-tuned model";
1068
+ readonly pricing: {
1069
+ readonly input: 0;
1070
+ readonly output: 0;
927
1071
  };
928
- readonly performance: {
929
- readonly intelligenceScore: 18.6;
1072
+ readonly benchmarks: {
1073
+ readonly intelligence: 12.5;
1074
+ readonly mmluPro: 0.48;
1075
+ readonly gpqa: 0.28;
930
1076
  };
1077
+ readonly contextLength: 32768;
931
1078
  readonly context: {
932
1079
  readonly input: {
933
1080
  readonly text: true;
@@ -944,28 +1091,28 @@ export declare const MODEL_REGISTRY: {
944
1091
  };
945
1092
  readonly deprecated: false;
946
1093
  readonly isAvailable: true;
947
- readonly lastUpdated: "2026-01-25";
1094
+ readonly lastUpdated: "2026-03-01";
948
1095
  };
949
- readonly 'magistral-medium-2509': {
1096
+ readonly 'gemma-3-27b-it': {
950
1097
  readonly type: "chat";
951
- readonly provider: "mistral";
952
- readonly displayName: "Magistral Medium 1.2";
953
- readonly description: "Our frontier-class multimodal reasoning model.";
954
- readonly benchmarks: {
955
- readonly intelligence: 18.7;
956
- readonly coding: 16;
957
- readonly math: 40.3;
958
- readonly mmluPro: 0.75;
959
- readonly gpqa: 0.68;
1098
+ readonly provider: "google";
1099
+ readonly displayName: "Gemma 3 27B";
1100
+ readonly description: "Google Gemma 3 27B instruction-tuned model";
1101
+ readonly pricing: {
1102
+ readonly input: 0;
1103
+ readonly output: 0;
960
1104
  };
961
- readonly performance: {
962
- readonly intelligenceScore: 18.7;
1105
+ readonly benchmarks: {
1106
+ readonly intelligence: 10.1;
1107
+ readonly mmluPro: 0.48;
1108
+ readonly gpqa: 0.28;
963
1109
  };
1110
+ readonly contextLength: 131072;
964
1111
  readonly context: {
965
1112
  readonly input: {
966
1113
  readonly text: true;
967
1114
  readonly audio: false;
968
- readonly image: true;
1115
+ readonly image: false;
969
1116
  readonly video: false;
970
1117
  };
971
1118
  readonly output: {
@@ -977,28 +1124,30 @@ export declare const MODEL_REGISTRY: {
977
1124
  };
978
1125
  readonly deprecated: false;
979
1126
  readonly isAvailable: true;
980
- readonly lastUpdated: "2026-01-25";
1127
+ readonly lastUpdated: "2026-03-01";
981
1128
  };
982
- readonly 'magistral-small-2509': {
1129
+ readonly 'gemma-3-4b-it': {
983
1130
  readonly type: "chat";
984
- readonly provider: "mistral";
985
- readonly displayName: "Magistral Small 1.2";
986
- readonly description: "Our small multimodal reasoning model.";
987
- readonly benchmarks: {
988
- readonly intelligence: 16.8;
989
- readonly coding: 11.1;
990
- readonly math: 41.3;
991
- readonly mmluPro: 0.75;
992
- readonly gpqa: 0.64;
1131
+ readonly provider: "google";
1132
+ readonly displayName: "Gemma 3 4B";
1133
+ readonly description: "Google Gemma 3 4B instruction-tuned model";
1134
+ readonly pricing: {
1135
+ readonly input: 0;
1136
+ readonly output: 0;
993
1137
  };
994
- readonly performance: {
995
- readonly intelligenceScore: 16.8;
1138
+ readonly benchmarks: {
1139
+ readonly intelligence: 15.5;
1140
+ readonly coding: 8.3;
1141
+ readonly math: 14.3;
1142
+ readonly mmluPro: 0.49;
1143
+ readonly gpqa: 0.3;
996
1144
  };
1145
+ readonly contextLength: 32768;
997
1146
  readonly context: {
998
1147
  readonly input: {
999
1148
  readonly text: true;
1000
1149
  readonly audio: false;
1001
- readonly image: true;
1150
+ readonly image: false;
1002
1151
  readonly video: false;
1003
1152
  };
1004
1153
  readonly output: {
@@ -1010,116 +1159,104 @@ export declare const MODEL_REGISTRY: {
1010
1159
  };
1011
1160
  readonly deprecated: false;
1012
1161
  readonly isAvailable: true;
1013
- readonly lastUpdated: "2026-01-25";
1162
+ readonly lastUpdated: "2026-03-01";
1014
1163
  };
1015
- readonly 'ministral-14b-2512': {
1164
+ readonly 'gemma-3n-e2b-it': {
1016
1165
  readonly type: "chat";
1017
- readonly provider: "mistral";
1018
- readonly displayName: "Ministral 3 14B";
1019
- readonly description: "A powerful model offering best-in-class text and vision capabilities.";
1020
- readonly benchmarks: {
1021
- readonly intelligence: 16;
1022
- readonly coding: 10.9;
1023
- readonly math: 30;
1024
- readonly mmluPro: 0.69;
1025
- readonly gpqa: 0.57;
1026
- };
1027
- readonly performance: {
1028
- readonly intelligenceScore: 16;
1029
- };
1166
+ readonly provider: "google";
1167
+ readonly displayName: "Gemma 3n E2B";
1168
+ readonly description: "Google Gemma 3n E2B instruction-tuned model";
1169
+ readonly contextLength: 8192;
1170
+ readonly deprecated: false;
1171
+ readonly isAvailable: true;
1172
+ readonly lastUpdated: "2026-03-01";
1173
+ };
1174
+ readonly 'gemma-3n-e4b-it': {
1175
+ readonly type: "chat";
1176
+ readonly provider: "google";
1177
+ readonly displayName: "Gemma 3n E4B";
1178
+ readonly description: "Google Gemma 3n E4B instruction-tuned model";
1179
+ readonly contextLength: 8192;
1180
+ readonly deprecated: false;
1181
+ readonly isAvailable: true;
1182
+ readonly lastUpdated: "2026-03-01";
1183
+ };
1184
+ readonly 'imagen-4.0-fast-generate-001': {
1185
+ readonly type: "image";
1186
+ readonly provider: "google";
1187
+ readonly displayName: "Imagen 4.0 Fast";
1188
+ readonly unitPricing: 0.02;
1030
1189
  readonly context: {
1031
1190
  readonly input: {
1032
1191
  readonly text: true;
1033
1192
  readonly audio: false;
1034
- readonly image: true;
1193
+ readonly image: false;
1035
1194
  readonly video: false;
1036
1195
  };
1037
1196
  readonly output: {
1038
- readonly text: true;
1197
+ readonly text: false;
1039
1198
  readonly audio: false;
1040
- readonly image: false;
1199
+ readonly image: true;
1041
1200
  readonly video: false;
1042
1201
  };
1043
1202
  };
1044
1203
  readonly deprecated: false;
1045
1204
  readonly isAvailable: true;
1046
- readonly lastUpdated: "2026-01-25";
1205
+ readonly lastUpdated: "2026-03-01";
1047
1206
  };
1048
- readonly 'ministral-3b-2512': {
1049
- readonly type: "chat";
1050
- readonly provider: "mistral";
1051
- readonly displayName: "Ministral 3 3B";
1052
- readonly description: "A tiny and efficient model offering best-in-class text and vision capabilities.";
1053
- readonly benchmarks: {
1054
- readonly intelligence: 11.2;
1055
- readonly coding: 4.8;
1056
- readonly math: 22;
1057
- readonly mmluPro: 0.52;
1058
- readonly gpqa: 0.36;
1059
- };
1060
- readonly performance: {
1061
- readonly intelligenceScore: 11.2;
1062
- };
1207
+ readonly 'imagen-4.0-generate-001': {
1208
+ readonly type: "image";
1209
+ readonly provider: "google";
1210
+ readonly displayName: "Imagen 4";
1211
+ readonly description: "Google Imagen 4.0 image generation model";
1212
+ readonly unitPricing: 0.04;
1063
1213
  readonly context: {
1064
1214
  readonly input: {
1065
1215
  readonly text: true;
1066
1216
  readonly audio: false;
1067
- readonly image: true;
1217
+ readonly image: false;
1068
1218
  readonly video: false;
1069
1219
  };
1070
1220
  readonly output: {
1071
- readonly text: true;
1221
+ readonly text: false;
1072
1222
  readonly audio: false;
1073
- readonly image: false;
1223
+ readonly image: true;
1074
1224
  readonly video: false;
1075
1225
  };
1076
1226
  };
1077
1227
  readonly deprecated: false;
1078
1228
  readonly isAvailable: true;
1079
- readonly lastUpdated: "2026-01-25";
1229
+ readonly lastUpdated: "2026-03-01";
1080
1230
  };
1081
- readonly 'ministral-8b-2512': {
1082
- readonly type: "chat";
1083
- readonly provider: "mistral";
1084
- readonly displayName: "Ministral 3 8B";
1085
- readonly description: "A powerful and efficient model offering best-in-class text and vision capabilities.";
1086
- readonly benchmarks: {
1087
- readonly intelligence: 14.6;
1088
- readonly coding: 10;
1089
- readonly math: 31.7;
1090
- readonly mmluPro: 0.64;
1091
- readonly gpqa: 0.47;
1092
- };
1093
- readonly performance: {
1094
- readonly intelligenceScore: 14.6;
1095
- };
1231
+ readonly 'imagen-4.0-ultra-generate-001': {
1232
+ readonly type: "image";
1233
+ readonly provider: "google";
1234
+ readonly displayName: "Imagen 4.0 Ultra";
1235
+ readonly unitPricing: 0.06;
1096
1236
  readonly context: {
1097
1237
  readonly input: {
1098
1238
  readonly text: true;
1099
1239
  readonly audio: false;
1100
- readonly image: true;
1240
+ readonly image: false;
1101
1241
  readonly video: false;
1102
1242
  };
1103
1243
  readonly output: {
1104
- readonly text: true;
1244
+ readonly text: false;
1105
1245
  readonly audio: false;
1106
- readonly image: false;
1246
+ readonly image: true;
1107
1247
  readonly video: false;
1108
1248
  };
1109
1249
  };
1110
1250
  readonly deprecated: false;
1111
1251
  readonly isAvailable: true;
1112
- readonly lastUpdated: "2026-01-25";
1252
+ readonly lastUpdated: "2026-03-01";
1113
1253
  };
1114
- readonly 'mistral-embed': {
1115
- readonly type: "embedding";
1116
- readonly provider: "mistral";
1117
- readonly displayName: "Mistral Embed";
1118
- readonly description: "Our state-of-the-art semantic for extracting representation of code extracts";
1119
- readonly pricing: {
1120
- readonly input: 0.1;
1121
- readonly output: 0;
1122
- };
1254
+ readonly 'veo-2.0-generate-001': {
1255
+ readonly type: "video";
1256
+ readonly provider: "google";
1257
+ readonly displayName: "Veo 2";
1258
+ readonly description: "Google Veo 2 video generation model";
1259
+ readonly unitPricing: 0.35;
1123
1260
  readonly context: {
1124
1261
  readonly input: {
1125
1262
  readonly text: true;
@@ -1128,64 +1265,46 @@ export declare const MODEL_REGISTRY: {
1128
1265
  readonly video: false;
1129
1266
  };
1130
1267
  readonly output: {
1131
- readonly text: true;
1268
+ readonly text: false;
1132
1269
  readonly audio: false;
1133
1270
  readonly image: false;
1134
- readonly video: false;
1271
+ readonly video: true;
1135
1272
  };
1136
1273
  };
1137
1274
  readonly deprecated: false;
1138
1275
  readonly isAvailable: true;
1139
- readonly lastUpdated: "2026-01-25";
1276
+ readonly lastUpdated: "2026-03-01";
1140
1277
  };
1141
- readonly 'mistral-medium-2508': {
1142
- readonly type: "chat";
1143
- readonly provider: "mistral";
1144
- readonly displayName: "Mistral Medium 3.1";
1145
- readonly description: "Our frontier-class multimodal model released August 2025.";
1146
- readonly benchmarks: {
1147
- readonly intelligence: 17.6;
1148
- readonly coding: 13.6;
1149
- readonly math: 30.3;
1150
- readonly mmluPro: 0.76;
1151
- readonly gpqa: 0.58;
1152
- };
1153
- readonly performance: {
1154
- readonly intelligenceScore: 17.6;
1155
- };
1278
+ readonly 'veo-3.0-fast-generate-001': {
1279
+ readonly type: "video";
1280
+ readonly provider: "google";
1281
+ readonly displayName: "Veo 3 Fast";
1282
+ readonly description: "Google Veo 3 fast video generation model";
1283
+ readonly unitPricing: 0.15;
1156
1284
  readonly context: {
1157
1285
  readonly input: {
1158
1286
  readonly text: true;
1159
1287
  readonly audio: false;
1160
- readonly image: true;
1288
+ readonly image: false;
1161
1289
  readonly video: false;
1162
1290
  };
1163
1291
  readonly output: {
1164
- readonly text: true;
1292
+ readonly text: false;
1165
1293
  readonly audio: false;
1166
1294
  readonly image: false;
1167
- readonly video: false;
1295
+ readonly video: true;
1168
1296
  };
1169
1297
  };
1170
1298
  readonly deprecated: false;
1171
1299
  readonly isAvailable: true;
1172
- readonly lastUpdated: "2026-01-25";
1300
+ readonly lastUpdated: "2026-03-01";
1173
1301
  };
1174
- readonly 'mistral-small-2501': {
1175
- readonly type: "chat";
1176
- readonly provider: "mistral";
1177
- readonly displayName: "Mistral Small 3.2";
1178
- readonly description: "An update to our previous small model, released June 2025.";
1179
- readonly benchmarks: {
1180
- readonly intelligence: 14;
1181
- readonly coding: 13.9;
1182
- readonly math: 3.7;
1183
- readonly mmluPro: 0.66;
1184
- readonly gpqa: 0.45;
1185
- };
1186
- readonly performance: {
1187
- readonly intelligenceScore: 14;
1188
- };
1302
+ readonly 'veo-3.0-generate-001': {
1303
+ readonly type: "video";
1304
+ readonly provider: "google";
1305
+ readonly displayName: "Veo 3";
1306
+ readonly description: "Google Veo 3 video generation model";
1307
+ readonly unitPricing: 0.4;
1189
1308
  readonly context: {
1190
1309
  readonly input: {
1191
1310
  readonly text: true;
@@ -1194,31 +1313,20 @@ export declare const MODEL_REGISTRY: {
1194
1313
  readonly video: false;
1195
1314
  };
1196
1315
  readonly output: {
1197
- readonly text: true;
1316
+ readonly text: false;
1198
1317
  readonly audio: false;
1199
1318
  readonly image: false;
1200
- readonly video: false;
1319
+ readonly video: true;
1201
1320
  };
1202
1321
  };
1203
1322
  readonly deprecated: false;
1204
1323
  readonly isAvailable: true;
1205
- readonly lastUpdated: "2026-01-25";
1324
+ readonly lastUpdated: "2026-03-01";
1206
1325
  };
1207
- readonly 'mistral-small-2506': {
1208
- readonly type: "chat";
1209
- readonly provider: "mistral";
1210
- readonly displayName: "Mistral Small 3.2";
1211
- readonly description: "An update to our previous small model, released June 2025.";
1212
- readonly benchmarks: {
1213
- readonly intelligence: 24.9;
1214
- readonly coding: 18.3;
1215
- readonly math: 3.7;
1216
- readonly mmluPro: 0.66;
1217
- readonly gpqa: 0.45;
1218
- };
1219
- readonly performance: {
1220
- readonly intelligenceScore: 24.9;
1221
- };
1326
+ readonly 'veo-3.1-fast-generate-preview': {
1327
+ readonly type: "video";
1328
+ readonly provider: "google";
1329
+ readonly displayName: "Veo 3.1 Fast";
1222
1330
  readonly context: {
1223
1331
  readonly input: {
1224
1332
  readonly text: true;
@@ -1227,21 +1335,20 @@ export declare const MODEL_REGISTRY: {
1227
1335
  readonly video: false;
1228
1336
  };
1229
1337
  readonly output: {
1230
- readonly text: true;
1338
+ readonly text: false;
1231
1339
  readonly audio: false;
1232
1340
  readonly image: false;
1233
- readonly video: false;
1341
+ readonly video: true;
1234
1342
  };
1235
1343
  };
1236
1344
  readonly deprecated: false;
1237
1345
  readonly isAvailable: true;
1238
- readonly lastUpdated: "2026-01-25";
1346
+ readonly lastUpdated: "2026-03-01";
1239
1347
  };
1240
- readonly 'mistral-tiny-2407': {
1241
- readonly type: "chat";
1242
- readonly provider: "mistral";
1243
- readonly displayName: "Mistral Tiny";
1244
- readonly description: "Legacy small model from July 2024.";
1348
+ readonly 'veo-3.1-generate-preview': {
1349
+ readonly type: "video";
1350
+ readonly provider: "google";
1351
+ readonly displayName: "Veo 3.1";
1245
1352
  readonly context: {
1246
1353
  readonly input: {
1247
1354
  readonly text: true;
@@ -1250,29 +1357,34 @@ export declare const MODEL_REGISTRY: {
1250
1357
  readonly video: false;
1251
1358
  };
1252
1359
  readonly output: {
1253
- readonly text: true;
1360
+ readonly text: false;
1254
1361
  readonly audio: false;
1255
1362
  readonly image: false;
1256
- readonly video: false;
1363
+ readonly video: true;
1257
1364
  };
1258
1365
  };
1259
1366
  readonly deprecated: false;
1260
1367
  readonly isAvailable: true;
1261
- readonly lastUpdated: "2026-01-25";
1368
+ readonly lastUpdated: "2026-03-01";
1262
1369
  };
1263
- readonly 'open-mistral-nemo-2407': {
1370
+ readonly 'codestral-2412': {
1264
1371
  readonly type: "chat";
1265
1372
  readonly provider: "mistral";
1266
- readonly displayName: "Mistral Nemo 12B";
1267
- readonly description: "Our best multilingual open source model released July 2024.";
1268
- readonly benchmarks: {
1269
- readonly intelligence: 7.4;
1270
- readonly mmluPro: 0.25;
1271
- readonly gpqa: 0.18;
1373
+ readonly displayName: "Codestral (Dec 2024)";
1374
+ readonly subtype: "code";
1375
+ readonly description: "Code generation model released December 2024";
1376
+ readonly pricing: {
1377
+ readonly input: 0.3;
1378
+ readonly output: 0.9;
1272
1379
  };
1273
- readonly performance: {
1274
- readonly intelligenceScore: 7.4;
1380
+ readonly benchmarks: {
1381
+ readonly intelligence: 68.5;
1382
+ readonly coding: 53.5;
1383
+ readonly math: 98.7;
1384
+ readonly mmluPro: 0.87;
1385
+ readonly gpqa: 0.84;
1275
1386
  };
1387
+ readonly contextLength: 256000;
1276
1388
  readonly context: {
1277
1389
  readonly input: {
1278
1390
  readonly text: true;
@@ -1289,18 +1401,24 @@ export declare const MODEL_REGISTRY: {
1289
1401
  };
1290
1402
  readonly deprecated: false;
1291
1403
  readonly isAvailable: true;
1292
- readonly lastUpdated: "2026-01-25";
1404
+ readonly lastUpdated: "2026-03-01";
1293
1405
  };
1294
- readonly 'pixtral-12b-2409': {
1406
+ readonly 'codestral-2508': {
1295
1407
  readonly type: "chat";
1296
1408
  readonly provider: "mistral";
1297
- readonly displayName: "Pixtral 12B";
1298
- readonly description: "Multimodal model with vision capabilities.";
1409
+ readonly displayName: "Codestral (Aug 2025)";
1410
+ readonly subtype: "code";
1411
+ readonly description: "Cutting-edge language model for coding released August 2025";
1412
+ readonly pricing: {
1413
+ readonly input: 0.3;
1414
+ readonly output: 0.9;
1415
+ };
1416
+ readonly contextLength: 256000;
1299
1417
  readonly context: {
1300
1418
  readonly input: {
1301
1419
  readonly text: true;
1302
1420
  readonly audio: false;
1303
- readonly image: true;
1421
+ readonly image: false;
1304
1422
  readonly video: false;
1305
1423
  };
1306
1424
  readonly output: {
@@ -1312,27 +1430,22 @@ export declare const MODEL_REGISTRY: {
1312
1430
  };
1313
1431
  readonly deprecated: false;
1314
1432
  readonly isAvailable: true;
1315
- readonly lastUpdated: "2026-01-25";
1433
+ readonly lastUpdated: "2026-03-01";
1316
1434
  };
1317
- readonly 'pixtral-large-2411': {
1318
- readonly type: "chat";
1435
+ readonly 'codestral-embed-2505': {
1436
+ readonly type: "embeddings";
1319
1437
  readonly provider: "mistral";
1320
- readonly displayName: "Pixtral Large";
1321
- readonly description: "Our first frontier-class multimodal model released November 2024.";
1322
- readonly benchmarks: {
1323
- readonly intelligence: 14;
1324
- readonly math: 2.3;
1325
- readonly mmluPro: 0.7;
1326
- readonly gpqa: 0.51;
1327
- };
1328
- readonly performance: {
1329
- readonly intelligenceScore: 14;
1438
+ readonly displayName: "Codestral Embed";
1439
+ readonly description: "Our state-of-the-art semantic for extracting representation of code extracts";
1440
+ readonly pricing: {
1441
+ readonly input: 0.15;
1442
+ readonly output: 0;
1330
1443
  };
1331
1444
  readonly context: {
1332
1445
  readonly input: {
1333
1446
  readonly text: true;
1334
1447
  readonly audio: false;
1335
- readonly image: true;
1448
+ readonly image: false;
1336
1449
  readonly video: false;
1337
1450
  };
1338
1451
  readonly output: {
@@ -1344,21 +1457,30 @@ export declare const MODEL_REGISTRY: {
1344
1457
  };
1345
1458
  readonly deprecated: false;
1346
1459
  readonly isAvailable: true;
1347
- readonly lastUpdated: "2026-01-25";
1460
+ readonly lastUpdated: "2026-03-01";
1348
1461
  };
1349
- readonly 'voxtral-mini-latest': {
1462
+ readonly 'devstral-2512': {
1350
1463
  readonly type: "chat";
1351
1464
  readonly provider: "mistral";
1352
- readonly displayName: "Voxtral Mini";
1353
- readonly description: "A mini version of our first audio input model.";
1465
+ readonly displayName: "Devstral 2 (Dec 2025)";
1466
+ readonly subtype: "code";
1467
+ readonly description: "Latest Devstral code-agentic model";
1354
1468
  readonly pricing: {
1355
- readonly input: 0.04;
1356
- readonly output: 0.04;
1469
+ readonly input: 0.4;
1470
+ readonly output: 2;
1471
+ };
1472
+ readonly benchmarks: {
1473
+ readonly intelligence: 18.6;
1474
+ readonly coding: 15.9;
1475
+ readonly math: 4.7;
1476
+ readonly mmluPro: 0.71;
1477
+ readonly gpqa: 0.49;
1357
1478
  };
1479
+ readonly contextLength: 262144;
1358
1480
  readonly context: {
1359
1481
  readonly input: {
1360
1482
  readonly text: true;
1361
- readonly audio: true;
1483
+ readonly audio: false;
1362
1484
  readonly image: false;
1363
1485
  readonly video: false;
1364
1486
  };
@@ -1371,17 +1493,23 @@ export declare const MODEL_REGISTRY: {
1371
1493
  };
1372
1494
  readonly deprecated: false;
1373
1495
  readonly isAvailable: true;
1374
- readonly lastUpdated: "2026-01-25";
1496
+ readonly lastUpdated: "2026-03-01";
1375
1497
  };
1376
- readonly 'voxtral-small-2507': {
1498
+ readonly 'devstral-medium-2507': {
1377
1499
  readonly type: "chat";
1378
1500
  readonly provider: "mistral";
1379
- readonly displayName: "Voxtral Small";
1380
- readonly description: "Our first model with audio input capabilities for instruct use cases.";
1501
+ readonly displayName: "Devstral Medium (2507)";
1502
+ readonly subtype: "code";
1503
+ readonly description: "Medium code-agentic model";
1504
+ readonly pricing: {
1505
+ readonly input: 0.4;
1506
+ readonly output: 2;
1507
+ };
1508
+ readonly contextLength: 131072;
1381
1509
  readonly context: {
1382
1510
  readonly input: {
1383
1511
  readonly text: true;
1384
- readonly audio: true;
1512
+ readonly audio: false;
1385
1513
  readonly image: false;
1386
1514
  readonly video: false;
1387
1515
  };
@@ -1394,21 +1522,19 @@ export declare const MODEL_REGISTRY: {
1394
1522
  };
1395
1523
  readonly deprecated: false;
1396
1524
  readonly isAvailable: true;
1397
- readonly lastUpdated: "2026-01-25";
1525
+ readonly lastUpdated: "2026-03-01";
1398
1526
  };
1399
- readonly 'dall-e-3': {
1400
- readonly type: "image";
1401
- readonly provider: "openai";
1402
- readonly displayName: "DALL·E 3";
1403
- readonly description: "Previous generation image generation model";
1404
- readonly imagePricing: {
1405
- readonly 'hd-1024x1024': 0.08;
1406
- readonly 'hd-1024x1792': 0.12;
1407
- readonly 'hd-1792x1024': 0.12;
1408
- readonly 'standard-1024x1024': 0.04;
1409
- readonly 'standard-1024x1792': 0.08;
1410
- readonly 'standard-1792x1024': 0.08;
1527
+ readonly 'devstral-small-2507': {
1528
+ readonly type: "chat";
1529
+ readonly provider: "mistral";
1530
+ readonly displayName: "Devstral Small (2507)";
1531
+ readonly subtype: "code";
1532
+ readonly description: "Small open-source code-agentic model";
1533
+ readonly pricing: {
1534
+ readonly input: 0.1;
1535
+ readonly output: 0.3;
1411
1536
  };
1537
+ readonly contextLength: 131072;
1412
1538
  readonly context: {
1413
1539
  readonly input: {
1414
1540
  readonly text: true;
@@ -1417,26 +1543,46 @@ export declare const MODEL_REGISTRY: {
1417
1543
  readonly video: false;
1418
1544
  };
1419
1545
  readonly output: {
1420
- readonly text: false;
1546
+ readonly text: true;
1421
1547
  readonly audio: false;
1422
- readonly image: true;
1548
+ readonly image: false;
1423
1549
  readonly video: false;
1424
1550
  };
1425
1551
  };
1426
1552
  readonly deprecated: false;
1427
1553
  readonly isAvailable: true;
1428
- readonly lastUpdated: "2026-01-25";
1554
+ readonly lastUpdated: "2026-03-01";
1429
1555
  };
1430
- readonly 'gpt-3.5-turbo': {
1556
+ readonly 'labs-devstral-small-2512': {
1431
1557
  readonly type: "chat";
1432
- readonly provider: "openai";
1433
- readonly displayName: "GPT-3.5 Turbo";
1434
- readonly description: "Legacy GPT model for cheaper chat and non-chat tasks";
1558
+ readonly provider: "mistral";
1559
+ readonly displayName: "Labs Devstral Small (2512)";
1560
+ readonly subtype: "code";
1561
+ readonly description: "Labs version of Devstral Small with vision support";
1562
+ readonly contextLength: 262144;
1563
+ readonly context: {
1564
+ readonly input: {
1565
+ readonly text: true;
1566
+ readonly image: true;
1567
+ };
1568
+ readonly output: {
1569
+ readonly text: true;
1570
+ };
1571
+ };
1572
+ readonly deprecated: false;
1573
+ readonly isAvailable: true;
1574
+ readonly lastUpdated: "2026-03-01";
1575
+ };
1576
+ readonly 'labs-mistral-small-creative': {
1577
+ readonly type: "chat";
1578
+ readonly provider: "mistral";
1579
+ readonly displayName: "Labs Mistral Small Creative";
1580
+ readonly description: "Creative writing optimized Mistral Small model";
1435
1581
  readonly pricing: {
1436
- readonly input: 0.5;
1437
- readonly output: 1.5;
1582
+ readonly input: 0.1;
1583
+ readonly output: 0.3;
1438
1584
  };
1439
- readonly contextLength: 16385;
1585
+ readonly contextLength: 32768;
1440
1586
  readonly context: {
1441
1587
  readonly input: {
1442
1588
  readonly text: true;
@@ -1453,23 +1599,31 @@ export declare const MODEL_REGISTRY: {
1453
1599
  };
1454
1600
  readonly deprecated: false;
1455
1601
  readonly isAvailable: true;
1456
- readonly lastUpdated: "2026-01-25";
1602
+ readonly lastUpdated: "2026-03-01";
1457
1603
  };
1458
- readonly 'gpt-3.5-turbo-16k': {
1604
+ readonly 'magistral-medium-2509': {
1459
1605
  readonly type: "chat";
1460
- readonly provider: "openai";
1461
- readonly displayName: "GPT-3.5 Turbo";
1462
- readonly description: "Legacy GPT model for cheaper chat and non-chat tasks";
1606
+ readonly provider: "mistral";
1607
+ readonly displayName: "Magistral Medium";
1608
+ readonly subtype: "reasoning";
1609
+ readonly description: "Frontier-class reasoning model released September 2025";
1463
1610
  readonly pricing: {
1464
- readonly input: 3;
1465
- readonly output: 4;
1611
+ readonly input: 2;
1612
+ readonly output: 6;
1466
1613
  };
1467
- readonly contextLength: 16384;
1614
+ readonly benchmarks: {
1615
+ readonly intelligence: 18.7;
1616
+ readonly coding: 16;
1617
+ readonly math: 40.3;
1618
+ readonly mmluPro: 0.75;
1619
+ readonly gpqa: 0.68;
1620
+ };
1621
+ readonly contextLength: 131072;
1468
1622
  readonly context: {
1469
1623
  readonly input: {
1470
1624
  readonly text: true;
1471
1625
  readonly audio: false;
1472
- readonly image: false;
1626
+ readonly image: true;
1473
1627
  readonly video: false;
1474
1628
  };
1475
1629
  readonly output: {
@@ -1481,25 +1635,26 @@ export declare const MODEL_REGISTRY: {
1481
1635
  };
1482
1636
  readonly deprecated: false;
1483
1637
  readonly isAvailable: true;
1484
- readonly lastUpdated: "2026-01-25";
1638
+ readonly lastUpdated: "2026-03-01";
1485
1639
  };
1486
- readonly 'gpt-4-turbo': {
1640
+ readonly 'magistral-small-2509': {
1487
1641
  readonly type: "chat";
1488
- readonly provider: "openai";
1489
- readonly displayName: "GPT-4 Turbo";
1490
- readonly description: "An older high-intelligence GPT model";
1642
+ readonly provider: "mistral";
1643
+ readonly displayName: "Magistral Small";
1644
+ readonly subtype: "reasoning";
1645
+ readonly description: "Efficient reasoning model released September 2025";
1491
1646
  readonly pricing: {
1492
- readonly input: 10;
1493
- readonly output: 30;
1647
+ readonly input: 0.5;
1648
+ readonly output: 1.5;
1494
1649
  };
1495
1650
  readonly benchmarks: {
1496
- readonly intelligence: 12.8;
1497
- readonly coding: 13.1;
1498
- };
1499
- readonly performance: {
1500
- readonly intelligenceScore: 12.8;
1651
+ readonly intelligence: 16.8;
1652
+ readonly coding: 11.1;
1653
+ readonly math: 41.3;
1654
+ readonly mmluPro: 0.75;
1655
+ readonly gpqa: 0.64;
1501
1656
  };
1502
- readonly contextLength: 128000;
1657
+ readonly contextLength: 131072;
1503
1658
  readonly context: {
1504
1659
  readonly input: {
1505
1660
  readonly text: true;
@@ -1516,28 +1671,25 @@ export declare const MODEL_REGISTRY: {
1516
1671
  };
1517
1672
  readonly deprecated: false;
1518
1673
  readonly isAvailable: true;
1519
- readonly lastUpdated: "2026-01-25";
1674
+ readonly lastUpdated: "2026-03-01";
1520
1675
  };
1521
- readonly 'gpt-4.1': {
1676
+ readonly 'ministral-14b-2512': {
1522
1677
  readonly type: "chat";
1523
- readonly provider: "openai";
1524
- readonly displayName: "GPT-4.1";
1525
- readonly description: "Smartest non-reasoning model";
1678
+ readonly provider: "mistral";
1679
+ readonly displayName: "Ministral 14B";
1680
+ readonly description: "Ministral 3 (Tinystral) 14B Instruct";
1526
1681
  readonly pricing: {
1527
- readonly input: 2;
1528
- readonly output: 8;
1682
+ readonly input: 0.2;
1683
+ readonly output: 0.2;
1529
1684
  };
1530
1685
  readonly benchmarks: {
1531
- readonly intelligence: 22.4;
1532
- readonly coding: 18.5;
1533
- readonly math: 46.3;
1534
- readonly mmluPro: 0.78;
1535
- readonly gpqa: 0.66;
1536
- };
1537
- readonly performance: {
1538
- readonly intelligenceScore: 22.4;
1686
+ readonly intelligence: 16;
1687
+ readonly coding: 10.9;
1688
+ readonly math: 30;
1689
+ readonly mmluPro: 0.69;
1690
+ readonly gpqa: 0.57;
1539
1691
  };
1540
- readonly contextLength: 128000;
1692
+ readonly contextLength: 262144;
1541
1693
  readonly context: {
1542
1694
  readonly input: {
1543
1695
  readonly text: true;
@@ -1554,28 +1706,25 @@ export declare const MODEL_REGISTRY: {
1554
1706
  };
1555
1707
  readonly deprecated: false;
1556
1708
  readonly isAvailable: true;
1557
- readonly lastUpdated: "2026-01-25";
1709
+ readonly lastUpdated: "2026-03-01";
1558
1710
  };
1559
- readonly 'gpt-4.1-nano-2025-04-14': {
1711
+ readonly 'ministral-3b-2512': {
1560
1712
  readonly type: "chat";
1561
- readonly provider: "openai";
1562
- readonly displayName: "GPT-4.1 nano";
1563
- readonly description: "Fastest, most cost-efficient version of GPT-4.1";
1713
+ readonly provider: "mistral";
1714
+ readonly displayName: "Ministral 3B";
1715
+ readonly description: "Ministral 3 (Tinystral) 3B Instruct";
1564
1716
  readonly pricing: {
1565
1717
  readonly input: 0.1;
1566
- readonly output: 0.4;
1718
+ readonly output: 0.1;
1567
1719
  };
1568
1720
  readonly benchmarks: {
1569
- readonly intelligence: 12.9;
1570
- readonly coding: 11.2;
1571
- readonly math: 24;
1572
- readonly mmluPro: 0.66;
1573
- readonly gpqa: 0.51;
1574
- };
1575
- readonly performance: {
1576
- readonly intelligenceScore: 12.9;
1721
+ readonly intelligence: 11.2;
1722
+ readonly coding: 4.8;
1723
+ readonly math: 22;
1724
+ readonly mmluPro: 0.52;
1725
+ readonly gpqa: 0.36;
1577
1726
  };
1578
- readonly contextLength: 128000;
1727
+ readonly contextLength: 131072;
1579
1728
  readonly context: {
1580
1729
  readonly input: {
1581
1730
  readonly text: true;
@@ -1592,27 +1741,25 @@ export declare const MODEL_REGISTRY: {
1592
1741
  };
1593
1742
  readonly deprecated: false;
1594
1743
  readonly isAvailable: true;
1595
- readonly lastUpdated: "2026-01-25";
1744
+ readonly lastUpdated: "2026-03-01";
1596
1745
  };
1597
- readonly 'gpt-4o': {
1746
+ readonly 'ministral-8b-2512': {
1598
1747
  readonly type: "chat";
1599
- readonly provider: "openai";
1600
- readonly displayName: "GPT-4o";
1601
- readonly description: "Fast, intelligent, flexible GPT model";
1748
+ readonly provider: "mistral";
1749
+ readonly displayName: "Ministral 8B";
1750
+ readonly description: "Ministral 3 (Tinystral) 8B Instruct";
1602
1751
  readonly pricing: {
1603
- readonly input: 2.5;
1604
- readonly output: 10;
1752
+ readonly input: 0.15;
1753
+ readonly output: 0.15;
1605
1754
  };
1606
1755
  readonly benchmarks: {
1607
- readonly intelligence: 18.6;
1608
- readonly math: 25.7;
1609
- readonly mmluPro: 0.8;
1610
- readonly gpqa: 0.66;
1611
- };
1612
- readonly performance: {
1613
- readonly intelligenceScore: 18.6;
1756
+ readonly intelligence: 14.6;
1757
+ readonly coding: 10;
1758
+ readonly math: 31.7;
1759
+ readonly mmluPro: 0.64;
1760
+ readonly gpqa: 0.47;
1614
1761
  };
1615
- readonly contextLength: 128000;
1762
+ readonly contextLength: 262144;
1616
1763
  readonly context: {
1617
1764
  readonly input: {
1618
1765
  readonly text: true;
@@ -1629,105 +1776,105 @@ export declare const MODEL_REGISTRY: {
1629
1776
  };
1630
1777
  readonly deprecated: false;
1631
1778
  readonly isAvailable: true;
1632
- readonly lastUpdated: "2026-01-25";
1779
+ readonly lastUpdated: "2026-03-01";
1633
1780
  };
1634
- readonly 'gpt-4o-audio-preview': {
1635
- readonly type: "audio";
1636
- readonly provider: "openai";
1637
- readonly displayName: "GPT-4o Audio";
1638
- readonly description: "GPT-4o models capable of audio inputs and outputs";
1781
+ readonly 'mistral-embed': {
1782
+ readonly type: "embeddings";
1783
+ readonly provider: "mistral";
1784
+ readonly displayName: "Mistral Embed";
1785
+ readonly description: "Our state-of-the-art semantic for extracting representation of code extracts";
1639
1786
  readonly pricing: {
1640
- readonly input: 2.5;
1641
- readonly output: 10;
1787
+ readonly input: 0.1;
1788
+ readonly output: 0;
1642
1789
  };
1643
1790
  readonly context: {
1644
1791
  readonly input: {
1645
1792
  readonly text: true;
1646
- readonly audio: true;
1793
+ readonly audio: false;
1647
1794
  readonly image: false;
1648
1795
  readonly video: false;
1649
1796
  };
1650
1797
  readonly output: {
1651
1798
  readonly text: true;
1652
- readonly audio: true;
1799
+ readonly audio: false;
1653
1800
  readonly image: false;
1654
1801
  readonly video: false;
1655
1802
  };
1656
1803
  };
1657
1804
  readonly deprecated: false;
1658
1805
  readonly isAvailable: true;
1659
- readonly lastUpdated: "2026-01-25";
1806
+ readonly lastUpdated: "2026-03-01";
1660
1807
  };
1661
- readonly 'gpt-4o-mini-audio-preview': {
1662
- readonly type: "audio";
1663
- readonly provider: "openai";
1664
- readonly displayName: "GPT-4o mini Audio";
1665
- readonly description: "Smaller model capable of audio inputs and outputs";
1808
+ readonly 'mistral-large-2411': {
1809
+ readonly type: "chat";
1810
+ readonly provider: "mistral";
1811
+ readonly displayName: "Mistral Large (2411)";
1812
+ readonly description: "Top-tier reasoning model for high-complexity tasks, November 2024";
1666
1813
  readonly pricing: {
1667
- readonly input: 0.15;
1668
- readonly output: 0.6;
1814
+ readonly input: 2;
1815
+ readonly output: 6;
1669
1816
  };
1670
- readonly contextLength: 128000;
1817
+ readonly contextLength: 131072;
1671
1818
  readonly context: {
1672
1819
  readonly input: {
1673
1820
  readonly text: true;
1674
- readonly audio: true;
1675
- readonly image: false;
1676
- readonly video: false;
1677
1821
  };
1678
1822
  readonly output: {
1679
1823
  readonly text: true;
1680
- readonly audio: true;
1681
- readonly image: false;
1682
- readonly video: false;
1683
1824
  };
1684
1825
  };
1685
1826
  readonly deprecated: false;
1686
1827
  readonly isAvailable: true;
1687
- readonly lastUpdated: "2026-01-25";
1828
+ readonly lastUpdated: "2026-03-01";
1688
1829
  };
1689
- readonly 'gpt-4o-mini-realtime-preview': {
1690
- readonly type: "audio";
1691
- readonly provider: "openai";
1692
- readonly displayName: "GPT-4o mini Realtime";
1693
- readonly description: "Smaller realtime model for text and audio inputs and outputs";
1830
+ readonly 'mistral-large-2512': {
1831
+ readonly type: "chat";
1832
+ readonly provider: "mistral";
1833
+ readonly displayName: "Mistral Large 3 (Dec 2025)";
1834
+ readonly description: "Latest Mistral Large model released December 2025";
1694
1835
  readonly pricing: {
1695
- readonly input: 0.6;
1696
- readonly output: 2.4;
1836
+ readonly input: 0.5;
1837
+ readonly output: 1.5;
1697
1838
  };
1698
- readonly contextLength: 128000;
1839
+ readonly benchmarks: {
1840
+ readonly intelligence: 2.6;
1841
+ readonly mmluPro: 0.39;
1842
+ readonly gpqa: 0.29;
1843
+ };
1844
+ readonly contextLength: 262144;
1699
1845
  readonly context: {
1700
1846
  readonly input: {
1701
1847
  readonly text: true;
1702
- readonly audio: true;
1703
- readonly image: false;
1848
+ readonly audio: false;
1849
+ readonly image: true;
1704
1850
  readonly video: false;
1705
1851
  };
1706
1852
  readonly output: {
1707
1853
  readonly text: true;
1708
- readonly audio: true;
1854
+ readonly audio: false;
1709
1855
  readonly image: false;
1710
1856
  readonly video: false;
1711
1857
  };
1712
1858
  };
1713
1859
  readonly deprecated: false;
1714
1860
  readonly isAvailable: true;
1715
- readonly lastUpdated: "2026-01-25";
1861
+ readonly lastUpdated: "2026-03-01";
1716
1862
  };
1717
- readonly 'gpt-4o-mini-search-preview': {
1863
+ readonly 'mistral-medium-2505': {
1718
1864
  readonly type: "chat";
1719
- readonly provider: "openai";
1720
- readonly displayName: "GPT-4o mini Search Preview";
1721
- readonly description: "Fast, affordable small model for web search";
1865
+ readonly provider: "mistral";
1866
+ readonly displayName: "Mistral Medium 3";
1867
+ readonly description: "Frontier-class multimodal model released May 2025";
1722
1868
  readonly pricing: {
1723
- readonly input: 0.15;
1724
- readonly output: 0.6;
1869
+ readonly input: 0.4;
1870
+ readonly output: 2;
1725
1871
  };
1872
+ readonly contextLength: 131072;
1726
1873
  readonly context: {
1727
1874
  readonly input: {
1728
1875
  readonly text: true;
1729
1876
  readonly audio: false;
1730
- readonly image: false;
1877
+ readonly image: true;
1731
1878
  readonly video: false;
1732
1879
  };
1733
1880
  readonly output: {
@@ -1739,22 +1886,30 @@ export declare const MODEL_REGISTRY: {
1739
1886
  };
1740
1887
  readonly deprecated: false;
1741
1888
  readonly isAvailable: true;
1742
- readonly lastUpdated: "2026-01-25";
1889
+ readonly lastUpdated: "2026-03-01";
1743
1890
  };
1744
- readonly 'gpt-4o-mini-transcribe': {
1745
- readonly type: "audio";
1746
- readonly provider: "openai";
1747
- readonly displayName: "GPT-4o mini Transcribe";
1748
- readonly description: "Speech-to-text model powered by GPT-4o mini";
1891
+ readonly 'mistral-medium-2508': {
1892
+ readonly type: "chat";
1893
+ readonly provider: "mistral";
1894
+ readonly displayName: "Mistral Medium 3.1";
1895
+ readonly description: "Update on Mistral Medium 3 with improved capabilities";
1749
1896
  readonly pricing: {
1750
- readonly input: 1.25;
1751
- readonly output: 5;
1897
+ readonly input: 0.4;
1898
+ readonly output: 2;
1899
+ };
1900
+ readonly benchmarks: {
1901
+ readonly intelligence: 17.6;
1902
+ readonly coding: 13.6;
1903
+ readonly math: 30.3;
1904
+ readonly mmluPro: 0.76;
1905
+ readonly gpqa: 0.58;
1752
1906
  };
1907
+ readonly contextLength: 131072;
1753
1908
  readonly context: {
1754
1909
  readonly input: {
1755
- readonly text: false;
1756
- readonly audio: true;
1757
- readonly image: false;
1910
+ readonly text: true;
1911
+ readonly audio: false;
1912
+ readonly image: true;
1758
1913
  readonly video: false;
1759
1914
  };
1760
1915
  readonly output: {
@@ -1766,22 +1921,27 @@ export declare const MODEL_REGISTRY: {
1766
1921
  };
1767
1922
  readonly deprecated: false;
1768
1923
  readonly isAvailable: true;
1769
- readonly lastUpdated: "2026-01-25";
1924
+ readonly lastUpdated: "2026-03-01";
1770
1925
  };
1771
- readonly 'gpt-4o-mini-transcribe-2025-12-15': {
1772
- readonly type: "audio";
1773
- readonly provider: "openai";
1774
- readonly displayName: "GPT-4o mini Transcribe";
1775
- readonly description: "Speech-to-text model powered by GPT-4o mini";
1776
- readonly pricing: {
1777
- readonly input: 1.25;
1778
- readonly output: 5;
1779
- };
1926
+ readonly 'mistral-moderation-latest': {
1927
+ readonly type: "moderation";
1928
+ readonly provider: "mistral";
1929
+ readonly displayName: "";
1930
+ readonly deprecated: false;
1931
+ readonly isAvailable: true;
1932
+ readonly lastUpdated: "2026-03-01";
1933
+ };
1934
+ readonly 'mistral-ocr-2503': {
1935
+ readonly type: "ocr";
1936
+ readonly provider: "mistral";
1937
+ readonly displayName: "Mistral OCR (2503)";
1938
+ readonly description: "Mistral OCR model, March 2025 version (deprecated)";
1939
+ readonly contextLength: 16384;
1780
1940
  readonly context: {
1781
1941
  readonly input: {
1782
- readonly text: false;
1783
- readonly audio: true;
1784
- readonly image: false;
1942
+ readonly text: true;
1943
+ readonly audio: false;
1944
+ readonly image: true;
1785
1945
  readonly video: false;
1786
1946
  };
1787
1947
  readonly output: {
@@ -1791,44 +1951,83 @@ export declare const MODEL_REGISTRY: {
1791
1951
  readonly video: false;
1792
1952
  };
1793
1953
  };
1794
- readonly deprecated: false;
1954
+ readonly deprecated: true;
1795
1955
  readonly isAvailable: true;
1796
- readonly lastUpdated: "2026-01-25";
1956
+ readonly lastUpdated: "2026-03-01";
1797
1957
  };
1798
- readonly 'gpt-4o-mini-tts': {
1799
- readonly type: "tts";
1800
- readonly provider: "openai";
1801
- readonly displayName: "GPT-4o mini TTS";
1802
- readonly description: "Text-to-speech model powered by GPT-4o mini";
1803
- readonly pricing: {
1804
- readonly input: 0.6;
1805
- };
1958
+ readonly 'mistral-ocr-2505': {
1959
+ readonly type: "ocr";
1960
+ readonly provider: "mistral";
1961
+ readonly displayName: "Mistral OCR (2505)";
1962
+ readonly description: "Mistral OCR model, May 2025 version";
1963
+ readonly contextLength: 16384;
1806
1964
  readonly context: {
1807
1965
  readonly input: {
1808
1966
  readonly text: true;
1809
1967
  readonly audio: false;
1810
- readonly image: false;
1968
+ readonly image: true;
1811
1969
  readonly video: false;
1812
1970
  };
1813
1971
  readonly output: {
1814
- readonly text: false;
1815
- readonly audio: true;
1972
+ readonly text: true;
1973
+ readonly audio: false;
1816
1974
  readonly image: false;
1817
1975
  readonly video: false;
1818
1976
  };
1819
1977
  };
1820
1978
  readonly deprecated: false;
1821
1979
  readonly isAvailable: true;
1822
- readonly lastUpdated: "2026-01-25";
1980
+ readonly lastUpdated: "2026-03-01";
1823
1981
  };
1824
- readonly 'gpt-4o-mini-tts-2025-03-20': {
1825
- readonly type: "tts";
1826
- readonly provider: "openai";
1827
- readonly displayName: "GPT-4o mini TTS";
1828
- readonly description: "Text-to-speech model powered by GPT-4o mini";
1982
+ readonly 'mistral-ocr-2512': {
1983
+ readonly type: "ocr";
1984
+ readonly provider: "mistral";
1985
+ readonly displayName: "Mistral OCR (2512)";
1986
+ readonly description: "Mistral OCR model, December 2025 version";
1987
+ readonly contextLength: 16384;
1988
+ readonly context: {
1989
+ readonly input: {
1990
+ readonly text: true;
1991
+ readonly audio: false;
1992
+ readonly image: true;
1993
+ readonly video: false;
1994
+ };
1995
+ readonly output: {
1996
+ readonly text: true;
1997
+ readonly audio: false;
1998
+ readonly image: false;
1999
+ readonly video: false;
2000
+ };
2001
+ };
2002
+ readonly deprecated: false;
2003
+ readonly isAvailable: true;
2004
+ readonly lastUpdated: "2026-03-01";
2005
+ };
2006
+ readonly 'mistral-ocr-latest': {
2007
+ readonly type: "ocr";
2008
+ readonly provider: "mistral";
2009
+ readonly displayName: "";
2010
+ readonly deprecated: false;
2011
+ readonly isAvailable: true;
2012
+ readonly lastUpdated: "2026-03-01";
2013
+ };
2014
+ readonly 'mistral-small-2501': {
2015
+ readonly type: "chat";
2016
+ readonly provider: "mistral";
2017
+ readonly displayName: "Mistral Small 3";
2018
+ readonly description: "Enterprise-grade small model released January 2025";
1829
2019
  readonly pricing: {
1830
- readonly input: 0.6;
2020
+ readonly input: 0.05;
2021
+ readonly output: 0.08;
2022
+ };
2023
+ readonly benchmarks: {
2024
+ readonly intelligence: 14;
2025
+ readonly coding: 13.9;
2026
+ readonly math: 3.7;
2027
+ readonly mmluPro: 0.66;
2028
+ readonly gpqa: 0.45;
1831
2029
  };
2030
+ readonly contextLength: 131072;
1832
2031
  readonly context: {
1833
2032
  readonly input: {
1834
2033
  readonly text: true;
@@ -1837,82 +2036,94 @@ export declare const MODEL_REGISTRY: {
1837
2036
  readonly video: false;
1838
2037
  };
1839
2038
  readonly output: {
1840
- readonly text: false;
1841
- readonly audio: true;
2039
+ readonly text: true;
2040
+ readonly audio: false;
1842
2041
  readonly image: false;
1843
2042
  readonly video: false;
1844
2043
  };
1845
2044
  };
1846
2045
  readonly deprecated: false;
1847
2046
  readonly isAvailable: true;
1848
- readonly lastUpdated: "2026-01-25";
2047
+ readonly lastUpdated: "2026-03-01";
1849
2048
  };
1850
- readonly 'gpt-4o-realtime-preview': {
1851
- readonly type: "audio";
1852
- readonly provider: "openai";
1853
- readonly displayName: "GPT-4o Realtime";
1854
- readonly description: "Model capable of realtime text and audio inputs and outputs";
2049
+ readonly 'mistral-small-2506': {
2050
+ readonly type: "chat";
2051
+ readonly provider: "mistral";
2052
+ readonly displayName: "Mistral Small 3.2";
2053
+ readonly description: "Latest enterprise-grade small model released June 2025";
1855
2054
  readonly pricing: {
1856
- readonly input: 5;
1857
- readonly output: 20;
2055
+ readonly input: 0.06;
2056
+ readonly output: 0.18;
1858
2057
  };
1859
- readonly contextLength: 128000;
2058
+ readonly benchmarks: {
2059
+ readonly intelligence: 24.9;
2060
+ readonly coding: 18.3;
2061
+ readonly math: 3.7;
2062
+ readonly mmluPro: 0.66;
2063
+ readonly gpqa: 0.45;
2064
+ };
2065
+ readonly contextLength: 131072;
1860
2066
  readonly context: {
1861
2067
  readonly input: {
1862
2068
  readonly text: true;
1863
- readonly audio: true;
1864
- readonly image: false;
2069
+ readonly audio: false;
2070
+ readonly image: true;
1865
2071
  readonly video: false;
1866
2072
  };
1867
2073
  readonly output: {
1868
2074
  readonly text: true;
1869
- readonly audio: true;
2075
+ readonly audio: false;
1870
2076
  readonly image: false;
1871
2077
  readonly video: false;
1872
2078
  };
1873
2079
  };
1874
2080
  readonly deprecated: false;
1875
2081
  readonly isAvailable: true;
1876
- readonly lastUpdated: "2026-01-25";
2082
+ readonly lastUpdated: "2026-03-01";
1877
2083
  };
1878
- readonly 'gpt-4o-realtime-preview-2025-06-03': {
1879
- readonly type: "audio";
1880
- readonly provider: "openai";
1881
- readonly displayName: "GPT-4o Realtime";
1882
- readonly description: "Model capable of realtime text and audio inputs and outputs";
2084
+ readonly 'mistral-tiny-2407': {
2085
+ readonly type: "chat";
2086
+ readonly provider: "mistral";
2087
+ readonly displayName: "Mistral Tiny (Nemo)";
2088
+ readonly description: "Alias for Mistral Nemo";
1883
2089
  readonly pricing: {
1884
- readonly input: 5;
1885
- readonly output: 20;
2090
+ readonly input: 0.02;
2091
+ readonly output: 0.04;
1886
2092
  };
1887
- readonly contextLength: 128000;
2093
+ readonly contextLength: 131072;
1888
2094
  readonly context: {
1889
2095
  readonly input: {
1890
2096
  readonly text: true;
1891
- readonly audio: true;
2097
+ readonly audio: false;
1892
2098
  readonly image: false;
1893
2099
  readonly video: false;
1894
2100
  };
1895
2101
  readonly output: {
1896
2102
  readonly text: true;
1897
- readonly audio: true;
2103
+ readonly audio: false;
1898
2104
  readonly image: false;
1899
2105
  readonly video: false;
1900
2106
  };
1901
2107
  };
1902
2108
  readonly deprecated: false;
1903
2109
  readonly isAvailable: true;
1904
- readonly lastUpdated: "2026-01-25";
2110
+ readonly lastUpdated: "2026-03-01";
1905
2111
  };
1906
- readonly 'gpt-4o-search-preview': {
2112
+ readonly 'open-mistral-nemo-2407': {
1907
2113
  readonly type: "chat";
1908
- readonly provider: "openai";
1909
- readonly displayName: "GPT-4o Search Preview";
1910
- readonly description: "GPT model for web search in Chat Completions";
2114
+ readonly provider: "mistral";
2115
+ readonly displayName: "Mistral Nemo";
2116
+ readonly description: "Best multilingual open source model released July 2024";
1911
2117
  readonly pricing: {
1912
- readonly input: 2.5;
1913
- readonly output: 10;
2118
+ readonly input: 0.02;
2119
+ readonly output: 0.04;
1914
2120
  };
1915
- readonly contextLength: 128000;
2121
+ readonly benchmarks: {
2122
+ readonly intelligence: 7.4;
2123
+ readonly mmluPro: 0.25;
2124
+ readonly gpqa: 0.18;
2125
+ };
2126
+ readonly contextLength: 131072;
1916
2127
  readonly context: {
1917
2128
  readonly input: {
1918
2129
  readonly text: true;
@@ -1929,17 +2140,100 @@ export declare const MODEL_REGISTRY: {
1929
2140
  };
1930
2141
  readonly deprecated: false;
1931
2142
  readonly isAvailable: true;
1932
- readonly lastUpdated: "2026-01-25";
2143
+ readonly lastUpdated: "2026-03-01";
1933
2144
  };
1934
- readonly 'gpt-4o-transcribe': {
1935
- readonly type: "audio";
1936
- readonly provider: "openai";
1937
- readonly displayName: "GPT-4o Transcribe";
1938
- readonly description: "Speech-to-text model powered by GPT-4o";
2145
+ readonly 'pixtral-12b-2409': {
2146
+ readonly type: "chat";
2147
+ readonly provider: "mistral";
2148
+ readonly displayName: "Pixtral 12B";
2149
+ readonly description: "Multimodal model with vision capabilities";
1939
2150
  readonly pricing: {
1940
- readonly input: 2.5;
1941
- readonly output: 10;
2151
+ readonly input: 0.15;
2152
+ readonly output: 0.15;
2153
+ };
2154
+ readonly contextLength: 131072;
2155
+ readonly context: {
2156
+ readonly input: {
2157
+ readonly text: true;
2158
+ readonly audio: false;
2159
+ readonly image: true;
2160
+ readonly video: false;
2161
+ };
2162
+ readonly output: {
2163
+ readonly text: true;
2164
+ readonly audio: false;
2165
+ readonly image: false;
2166
+ readonly video: false;
2167
+ };
2168
+ };
2169
+ readonly deprecated: false;
2170
+ readonly isAvailable: true;
2171
+ readonly lastUpdated: "2026-03-01";
2172
+ };
2173
+ readonly 'pixtral-large-2411': {
2174
+ readonly type: "chat";
2175
+ readonly provider: "mistral";
2176
+ readonly displayName: "Pixtral Large";
2177
+ readonly description: "Large multimodal model with vision capabilities";
2178
+ readonly pricing: {
2179
+ readonly input: 2;
2180
+ readonly output: 6;
2181
+ };
2182
+ readonly benchmarks: {
2183
+ readonly intelligence: 14;
2184
+ readonly math: 2.3;
2185
+ readonly mmluPro: 0.7;
2186
+ readonly gpqa: 0.51;
2187
+ };
2188
+ readonly contextLength: 131072;
2189
+ readonly context: {
2190
+ readonly input: {
2191
+ readonly text: true;
2192
+ readonly audio: false;
2193
+ readonly image: true;
2194
+ readonly video: false;
2195
+ };
2196
+ readonly output: {
2197
+ readonly text: true;
2198
+ readonly audio: false;
2199
+ readonly image: false;
2200
+ readonly video: false;
2201
+ };
2202
+ };
2203
+ readonly deprecated: false;
2204
+ readonly isAvailable: true;
2205
+ readonly lastUpdated: "2026-03-01";
2206
+ };
2207
+ readonly 'voxtral-mini-2507': {
2208
+ readonly type: "stt";
2209
+ readonly provider: "mistral";
2210
+ readonly displayName: "Voxtral Mini (2507)";
2211
+ readonly description: "Voxtral Mini transcription model, July 2025 version";
2212
+ readonly contextLength: 16384;
2213
+ readonly context: {
2214
+ readonly input: {
2215
+ readonly text: true;
2216
+ readonly audio: true;
2217
+ readonly image: false;
2218
+ readonly video: false;
2219
+ };
2220
+ readonly output: {
2221
+ readonly text: true;
2222
+ readonly audio: false;
2223
+ readonly image: false;
2224
+ readonly video: false;
2225
+ };
1942
2226
  };
2227
+ readonly deprecated: false;
2228
+ readonly isAvailable: true;
2229
+ readonly lastUpdated: "2026-03-01";
2230
+ };
2231
+ readonly 'voxtral-mini-2602': {
2232
+ readonly type: "stt";
2233
+ readonly provider: "mistral";
2234
+ readonly displayName: "Voxtral Mini (2602)";
2235
+ readonly description: "Voxtral Mini transcription model, February 2026 version";
2236
+ readonly contextLength: 16384;
1943
2237
  readonly context: {
1944
2238
  readonly input: {
1945
2239
  readonly text: false;
@@ -1956,20 +2250,56 @@ export declare const MODEL_REGISTRY: {
1956
2250
  };
1957
2251
  readonly deprecated: false;
1958
2252
  readonly isAvailable: true;
1959
- readonly lastUpdated: "2026-01-25";
2253
+ readonly lastUpdated: "2026-03-01";
1960
2254
  };
1961
- readonly 'gpt-4o-transcribe-diarize': {
2255
+ readonly 'voxtral-mini-latest': {
2256
+ readonly type: "chat";
2257
+ readonly provider: "mistral";
2258
+ readonly displayName: "Voxtral Mini";
2259
+ readonly description: "A mini version of our first audio input model.";
2260
+ readonly pricing: {
2261
+ readonly input: 0.04;
2262
+ readonly output: 0.04;
2263
+ };
2264
+ readonly context: {
2265
+ readonly input: {
2266
+ readonly text: true;
2267
+ readonly audio: true;
2268
+ readonly image: false;
2269
+ readonly video: false;
2270
+ };
2271
+ readonly output: {
2272
+ readonly text: true;
2273
+ readonly audio: false;
2274
+ readonly image: false;
2275
+ readonly video: false;
2276
+ };
2277
+ };
2278
+ readonly deprecated: false;
2279
+ readonly isAvailable: true;
2280
+ readonly lastUpdated: "2026-03-01";
2281
+ };
2282
+ readonly 'voxtral-mini-transcribe-2507': {
2283
+ readonly type: "stt";
2284
+ readonly provider: "mistral";
2285
+ readonly displayName: "";
2286
+ readonly deprecated: false;
2287
+ readonly isAvailable: true;
2288
+ readonly lastUpdated: "2026-03-01";
2289
+ };
2290
+ readonly 'voxtral-small-2507': {
1962
2291
  readonly type: "audio";
1963
- readonly provider: "openai";
1964
- readonly displayName: "GPT-4o Transcribe Diarize";
1965
- readonly description: "Transcription model that identifies who's speaking when";
2292
+ readonly provider: "mistral";
2293
+ readonly displayName: "Voxtral Small";
2294
+ readonly description: "Small audio understanding model released July 2025";
1966
2295
  readonly pricing: {
1967
- readonly input: 2.5;
1968
- readonly output: 10;
2296
+ readonly input: 0.1;
2297
+ readonly output: 0.3;
1969
2298
  };
2299
+ readonly contextLength: 32768;
1970
2300
  readonly context: {
1971
2301
  readonly input: {
1972
- readonly text: false;
2302
+ readonly text: true;
1973
2303
  readonly audio: true;
1974
2304
  readonly image: false;
1975
2305
  readonly video: false;
@@ -1983,100 +2313,1509 @@ export declare const MODEL_REGISTRY: {
1983
2313
  };
1984
2314
  readonly deprecated: false;
1985
2315
  readonly isAvailable: true;
1986
- readonly lastUpdated: "2026-01-25";
2316
+ readonly lastUpdated: "2026-03-01";
1987
2317
  };
1988
- readonly 'gpt-5-mini-2025-08-07': {
2318
+ readonly 'babbage-002': {
1989
2319
  readonly type: "chat";
1990
2320
  readonly provider: "openai";
1991
- readonly displayName: "GPT-5 mini";
1992
- readonly description: "A faster, cost-efficient version of GPT-5 for well-defined tasks";
2321
+ readonly displayName: "Babbage 002";
2322
+ readonly description: "Legacy GPT-3 Babbage model";
2323
+ readonly deprecated: false;
2324
+ readonly isAvailable: true;
2325
+ readonly lastUpdated: "2026-03-01";
2326
+ };
2327
+ readonly 'chatgpt-image-latest': {
2328
+ readonly type: "image";
2329
+ readonly provider: "openai";
2330
+ readonly displayName: "ChatGPT Image Latest";
2331
+ readonly description: "Latest ChatGPT image generation model";
2332
+ readonly deprecated: false;
2333
+ readonly isAvailable: true;
2334
+ readonly lastUpdated: "2026-03-01";
2335
+ };
2336
+ readonly 'dall-e-2': {
2337
+ readonly type: "image";
2338
+ readonly provider: "openai";
2339
+ readonly displayName: "DALL-E 2";
2340
+ readonly description: "OpenAI DALL-E 2 image generation";
1993
2341
  readonly pricing: {
1994
- readonly input: 0.25;
1995
- readonly output: 2;
2342
+ readonly input: 0;
2343
+ readonly output: 0;
1996
2344
  };
1997
- readonly benchmarks: {
1998
- readonly intelligence: 11.9;
2345
+ readonly context: {
2346
+ readonly input: {
2347
+ readonly text: true;
2348
+ readonly audio: false;
2349
+ readonly image: false;
2350
+ readonly video: false;
2351
+ };
2352
+ readonly output: {
2353
+ readonly text: false;
2354
+ readonly audio: false;
2355
+ readonly image: true;
2356
+ readonly video: false;
2357
+ };
1999
2358
  };
2000
- readonly performance: {
2001
- readonly intelligenceScore: 11.9;
2359
+ readonly deprecated: false;
2360
+ readonly isAvailable: true;
2361
+ readonly lastUpdated: "2026-03-01";
2362
+ };
2363
+ readonly 'dall-e-3': {
2364
+ readonly type: "image";
2365
+ readonly provider: "openai";
2366
+ readonly displayName: "DALL·E 3";
2367
+ readonly description: "Previous generation image generation model";
2368
+ readonly unitPricing: {
2369
+ readonly 'hd-1024x1024': 0.08;
2370
+ readonly 'hd-1024x1792': 0.12;
2371
+ readonly 'hd-1792x1024': 0.12;
2372
+ readonly 'standard-1024x1024': 0.04;
2373
+ readonly 'standard-1024x1792': 0.08;
2374
+ readonly 'standard-1792x1024': 0.08;
2375
+ };
2376
+ readonly context: {
2377
+ readonly input: {
2378
+ readonly text: true;
2379
+ readonly audio: false;
2380
+ readonly image: false;
2381
+ readonly video: false;
2382
+ };
2383
+ readonly output: {
2384
+ readonly text: false;
2385
+ readonly audio: false;
2386
+ readonly image: true;
2387
+ readonly video: false;
2388
+ };
2389
+ };
2390
+ readonly deprecated: false;
2391
+ readonly isAvailable: true;
2392
+ readonly lastUpdated: "2026-03-01";
2393
+ };
2394
+ readonly 'davinci-002': {
2395
+ readonly type: "chat";
2396
+ readonly provider: "openai";
2397
+ readonly displayName: "Davinci 002";
2398
+ readonly description: "Legacy GPT-3 Davinci model";
2399
+ readonly deprecated: false;
2400
+ readonly isAvailable: true;
2401
+ readonly lastUpdated: "2026-03-01";
2402
+ };
2403
+ readonly 'gpt-3.5-turbo': {
2404
+ readonly type: "chat";
2405
+ readonly provider: "openai";
2406
+ readonly displayName: "GPT-3.5 Turbo";
2407
+ readonly description: "Legacy GPT model for cheaper chat and non-chat tasks";
2408
+ readonly pricing: {
2409
+ readonly input: 0.5;
2410
+ readonly output: 1.5;
2411
+ };
2412
+ readonly contextLength: 16385;
2413
+ readonly context: {
2414
+ readonly input: {
2415
+ readonly text: true;
2416
+ readonly audio: false;
2417
+ readonly image: false;
2418
+ readonly video: false;
2419
+ };
2420
+ readonly output: {
2421
+ readonly text: true;
2422
+ readonly audio: false;
2423
+ readonly image: false;
2424
+ readonly video: false;
2425
+ };
2426
+ };
2427
+ readonly deprecated: false;
2428
+ readonly isAvailable: true;
2429
+ readonly lastUpdated: "2026-03-01";
2430
+ };
2431
+ readonly 'gpt-3.5-turbo-0125': {
2432
+ readonly type: "chat";
2433
+ readonly provider: "openai";
2434
+ readonly displayName: "GPT-3.5 Turbo (0125)";
2435
+ readonly description: "GPT-3.5 Turbo January 2024 snapshot";
2436
+ readonly contextLength: 16385;
2437
+ readonly deprecated: false;
2438
+ readonly isAvailable: true;
2439
+ readonly lastUpdated: "2026-03-01";
2440
+ };
2441
+ readonly 'gpt-3.5-turbo-1106': {
2442
+ readonly type: "chat";
2443
+ readonly provider: "openai";
2444
+ readonly displayName: "GPT-3.5 Turbo (1106)";
2445
+ readonly description: "GPT-3.5 Turbo November 2023 snapshot";
2446
+ readonly contextLength: 16385;
2447
+ readonly deprecated: false;
2448
+ readonly isAvailable: true;
2449
+ readonly lastUpdated: "2026-03-01";
2450
+ };
2451
+ readonly 'gpt-3.5-turbo-16k': {
2452
+ readonly type: "chat";
2453
+ readonly provider: "openai";
2454
+ readonly displayName: "GPT-3.5 Turbo";
2455
+ readonly description: "Legacy GPT model for cheaper chat and non-chat tasks";
2456
+ readonly pricing: {
2457
+ readonly input: 3;
2458
+ readonly output: 4;
2459
+ };
2460
+ readonly contextLength: 16384;
2461
+ readonly context: {
2462
+ readonly input: {
2463
+ readonly text: true;
2464
+ readonly audio: false;
2465
+ readonly image: false;
2466
+ readonly video: false;
2467
+ };
2468
+ readonly output: {
2469
+ readonly text: true;
2470
+ readonly audio: false;
2471
+ readonly image: false;
2472
+ readonly video: false;
2473
+ };
2474
+ };
2475
+ readonly deprecated: false;
2476
+ readonly isAvailable: true;
2477
+ readonly lastUpdated: "2026-03-01";
2478
+ };
2479
+ readonly 'gpt-3.5-turbo-instruct': {
2480
+ readonly type: "chat";
2481
+ readonly provider: "openai";
2482
+ readonly displayName: "GPT-3.5 Turbo Instruct";
2483
+ readonly description: "GPT-3.5 Turbo instruct-tuned model";
2484
+ readonly contextLength: 4096;
2485
+ readonly deprecated: false;
2486
+ readonly isAvailable: true;
2487
+ readonly lastUpdated: "2026-03-01";
2488
+ };
2489
+ readonly 'gpt-3.5-turbo-instruct-0914': {
2490
+ readonly type: "chat";
2491
+ readonly provider: "openai";
2492
+ readonly displayName: "GPT-3.5 Turbo Instruct (0914)";
2493
+ readonly description: "GPT-3.5 Turbo instruct September 2023 snapshot";
2494
+ readonly contextLength: 4096;
2495
+ readonly deprecated: false;
2496
+ readonly isAvailable: true;
2497
+ readonly lastUpdated: "2026-03-01";
2498
+ };
2499
+ readonly 'gpt-4': {
2500
+ readonly type: "chat";
2501
+ readonly provider: "openai";
2502
+ readonly displayName: "GPT-4";
2503
+ readonly description: "Original GPT-4 model";
2504
+ readonly contextLength: 8192;
2505
+ readonly deprecated: false;
2506
+ readonly isAvailable: true;
2507
+ readonly lastUpdated: "2026-03-01";
2508
+ };
2509
+ readonly 'gpt-4-0125-preview': {
2510
+ readonly type: "chat";
2511
+ readonly provider: "openai";
2512
+ readonly displayName: "GPT-4 Turbo Preview (0125)";
2513
+ readonly description: "GPT-4 Turbo preview, January 2024";
2514
+ readonly contextLength: 128000;
2515
+ readonly deprecated: false;
2516
+ readonly isAvailable: true;
2517
+ readonly lastUpdated: "2026-03-01";
2518
+ };
2519
+ readonly 'gpt-4-0613': {
2520
+ readonly type: "chat";
2521
+ readonly provider: "openai";
2522
+ readonly displayName: "GPT-4 (0613)";
2523
+ readonly description: "GPT-4 June 2023 snapshot";
2524
+ readonly contextLength: 8192;
2525
+ readonly deprecated: false;
2526
+ readonly isAvailable: true;
2527
+ readonly lastUpdated: "2026-03-01";
2528
+ };
2529
+ readonly 'gpt-4-1106-preview': {
2530
+ readonly type: "chat";
2531
+ readonly provider: "openai";
2532
+ readonly displayName: "GPT-4 Turbo Preview (1106)";
2533
+ readonly description: "GPT-4 Turbo preview, November 2023";
2534
+ readonly contextLength: 128000;
2535
+ readonly deprecated: false;
2536
+ readonly isAvailable: true;
2537
+ readonly lastUpdated: "2026-03-01";
2538
+ };
2539
+ readonly 'gpt-4-turbo': {
2540
+ readonly type: "chat";
2541
+ readonly provider: "openai";
2542
+ readonly displayName: "GPT-4 Turbo";
2543
+ readonly description: "An older high-intelligence GPT model";
2544
+ readonly pricing: {
2545
+ readonly input: 10;
2546
+ readonly output: 30;
2547
+ };
2548
+ readonly benchmarks: {
2549
+ readonly intelligence: 12.8;
2550
+ readonly coding: 13.1;
2551
+ };
2552
+ readonly contextLength: 128000;
2553
+ readonly context: {
2554
+ readonly input: {
2555
+ readonly text: true;
2556
+ readonly audio: false;
2557
+ readonly image: true;
2558
+ readonly video: false;
2559
+ };
2560
+ readonly output: {
2561
+ readonly text: true;
2562
+ readonly audio: false;
2563
+ readonly image: false;
2564
+ readonly video: false;
2565
+ };
2566
+ };
2567
+ readonly deprecated: false;
2568
+ readonly isAvailable: true;
2569
+ readonly lastUpdated: "2026-03-01";
2570
+ };
2571
+ readonly 'gpt-4-turbo-2024-04-09': {
2572
+ readonly type: "chat";
2573
+ readonly provider: "openai";
2574
+ readonly displayName: "GPT-4 Turbo (2024-04-09)";
2575
+ readonly description: "GPT-4 Turbo with Vision, April 2024 snapshot";
2576
+ readonly contextLength: 128000;
2577
+ readonly deprecated: false;
2578
+ readonly isAvailable: true;
2579
+ readonly lastUpdated: "2026-03-01";
2580
+ };
2581
+ readonly 'gpt-4-turbo-preview': {
2582
+ readonly type: "chat";
2583
+ readonly provider: "openai";
2584
+ readonly displayName: "GPT-4 Turbo Preview";
2585
+ readonly description: "GPT-4 Turbo preview alias";
2586
+ readonly contextLength: 128000;
2587
+ readonly deprecated: false;
2588
+ readonly isAvailable: true;
2589
+ readonly lastUpdated: "2026-03-01";
2590
+ };
2591
+ readonly 'gpt-4.1': {
2592
+ readonly type: "chat";
2593
+ readonly provider: "openai";
2594
+ readonly displayName: "GPT-4.1";
2595
+ readonly description: "Smartest non-reasoning model";
2596
+ readonly pricing: {
2597
+ readonly input: 3;
2598
+ readonly output: 12;
2599
+ };
2600
+ readonly benchmarks: {
2601
+ readonly intelligence: 22.4;
2602
+ readonly coding: 18.5;
2603
+ readonly math: 46.3;
2604
+ readonly mmluPro: 0.78;
2605
+ readonly gpqa: 0.66;
2606
+ };
2607
+ readonly contextLength: 128000;
2608
+ readonly context: {
2609
+ readonly input: {
2610
+ readonly text: true;
2611
+ readonly audio: false;
2612
+ readonly image: true;
2613
+ readonly video: false;
2614
+ };
2615
+ readonly output: {
2616
+ readonly text: true;
2617
+ readonly audio: false;
2618
+ readonly image: false;
2619
+ readonly video: false;
2620
+ };
2621
+ };
2622
+ readonly deprecated: false;
2623
+ readonly isAvailable: true;
2624
+ readonly lastUpdated: "2026-03-01";
2625
+ };
2626
+ readonly 'gpt-4.1-2025-04-14': {
2627
+ readonly type: "chat";
2628
+ readonly provider: "openai";
2629
+ readonly displayName: "GPT-4.1 (2025-04-14)";
2630
+ readonly description: "GPT-4.1 April 2025 snapshot";
2631
+ readonly pricing: {
2632
+ readonly input: 3;
2633
+ readonly output: 12;
2634
+ };
2635
+ readonly contextLength: 1047576;
2636
+ readonly deprecated: false;
2637
+ readonly isAvailable: true;
2638
+ readonly lastUpdated: "2026-03-01";
2639
+ };
2640
+ readonly 'gpt-4.1-mini': {
2641
+ readonly type: "chat";
2642
+ readonly provider: "openai";
2643
+ readonly displayName: "GPT-4.1 Mini";
2644
+ readonly description: "Smaller, faster GPT-4.1 variant";
2645
+ readonly pricing: {
2646
+ readonly input: 0.8;
2647
+ readonly output: 3.2;
2648
+ };
2649
+ readonly benchmarks: {
2650
+ readonly intelligence: 42.5;
2651
+ readonly coding: 31.9;
2652
+ readonly math: 46.3;
2653
+ readonly mmluPro: 0.78;
2654
+ readonly gpqa: 0.66;
2655
+ };
2656
+ readonly contextLength: 1047576;
2657
+ readonly context: {
2658
+ readonly input: {
2659
+ readonly text: true;
2660
+ readonly audio: false;
2661
+ readonly image: true;
2662
+ readonly video: false;
2663
+ };
2664
+ readonly output: {
2665
+ readonly text: true;
2666
+ readonly audio: false;
2667
+ readonly image: false;
2668
+ readonly video: false;
2669
+ };
2670
+ };
2671
+ readonly deprecated: false;
2672
+ readonly isAvailable: true;
2673
+ readonly lastUpdated: "2026-03-01";
2674
+ };
2675
+ readonly 'gpt-4.1-mini-2025-04-14': {
2676
+ readonly type: "chat";
2677
+ readonly provider: "openai";
2678
+ readonly displayName: "GPT-4.1 Mini (2025-04-14)";
2679
+ readonly description: "GPT-4.1 Mini April 2025 snapshot";
2680
+ readonly pricing: {
2681
+ readonly input: 0.8;
2682
+ readonly output: 3.2;
2683
+ };
2684
+ readonly contextLength: 1047576;
2685
+ readonly deprecated: false;
2686
+ readonly isAvailable: true;
2687
+ readonly lastUpdated: "2026-03-01";
2688
+ };
2689
+ readonly 'gpt-4.1-nano': {
2690
+ readonly type: "chat";
2691
+ readonly provider: "openai";
2692
+ readonly displayName: "GPT-4.1 Nano";
2693
+ readonly description: "Smallest, fastest GPT-4.1 variant";
2694
+ readonly pricing: {
2695
+ readonly input: 0.2;
2696
+ readonly output: 0.8;
2697
+ };
2698
+ readonly contextLength: 1047576;
2699
+ readonly deprecated: false;
2700
+ readonly isAvailable: true;
2701
+ readonly lastUpdated: "2026-03-01";
2702
+ };
2703
+ readonly 'gpt-4.1-nano-2025-04-14': {
2704
+ readonly type: "chat";
2705
+ readonly provider: "openai";
2706
+ readonly displayName: "GPT-4.1 nano";
2707
+ readonly description: "Fastest, most cost-efficient version of GPT-4.1";
2708
+ readonly pricing: {
2709
+ readonly input: 0.2;
2710
+ readonly output: 0.8;
2711
+ };
2712
+ readonly benchmarks: {
2713
+ readonly intelligence: 12.9;
2714
+ readonly coding: 11.2;
2715
+ readonly math: 24;
2716
+ readonly mmluPro: 0.66;
2717
+ readonly gpqa: 0.51;
2718
+ };
2719
+ readonly contextLength: 128000;
2720
+ readonly context: {
2721
+ readonly input: {
2722
+ readonly text: true;
2723
+ readonly audio: false;
2724
+ readonly image: true;
2725
+ readonly video: false;
2726
+ };
2727
+ readonly output: {
2728
+ readonly text: true;
2729
+ readonly audio: false;
2730
+ readonly image: false;
2731
+ readonly video: false;
2732
+ };
2733
+ };
2734
+ readonly deprecated: false;
2735
+ readonly isAvailable: true;
2736
+ readonly lastUpdated: "2026-03-01";
2737
+ };
2738
+ readonly 'gpt-4o': {
2739
+ readonly type: "chat";
2740
+ readonly provider: "openai";
2741
+ readonly displayName: "GPT-4o";
2742
+ readonly description: "Fast, intelligent, flexible GPT model";
2743
+ readonly pricing: {
2744
+ readonly input: 2.5;
2745
+ readonly output: 10;
2746
+ };
2747
+ readonly benchmarks: {
2748
+ readonly intelligence: 18.6;
2749
+ readonly math: 25.7;
2750
+ readonly mmluPro: 0.8;
2751
+ readonly gpqa: 0.66;
2752
+ };
2753
+ readonly contextLength: 128000;
2754
+ readonly context: {
2755
+ readonly input: {
2756
+ readonly text: true;
2757
+ readonly audio: false;
2758
+ readonly image: true;
2759
+ readonly video: false;
2760
+ };
2761
+ readonly output: {
2762
+ readonly text: true;
2763
+ readonly audio: false;
2764
+ readonly image: false;
2765
+ readonly video: false;
2766
+ };
2767
+ };
2768
+ readonly deprecated: false;
2769
+ readonly isAvailable: true;
2770
+ readonly lastUpdated: "2026-03-01";
2771
+ };
2772
+ readonly 'gpt-4o-2024-05-13': {
2773
+ readonly type: "chat";
2774
+ readonly provider: "openai";
2775
+ readonly displayName: "GPT-4o (2024-05-13)";
2776
+ readonly description: "GPT-4o May 2024 snapshot";
2777
+ readonly contextLength: 128000;
2778
+ readonly deprecated: false;
2779
+ readonly isAvailable: true;
2780
+ readonly lastUpdated: "2026-03-01";
2781
+ };
2782
+ readonly 'gpt-4o-2024-08-06': {
2783
+ readonly type: "chat";
2784
+ readonly provider: "openai";
2785
+ readonly displayName: "GPT-4o (2024-08-06)";
2786
+ readonly description: "GPT-4o August 2024 snapshot with structured outputs";
2787
+ readonly contextLength: 128000;
2788
+ readonly deprecated: false;
2789
+ readonly isAvailable: true;
2790
+ readonly lastUpdated: "2026-03-01";
2791
+ };
2792
+ readonly 'gpt-4o-2024-11-20': {
2793
+ readonly type: "chat";
2794
+ readonly provider: "openai";
2795
+ readonly displayName: "GPT-4o (2024-11-20)";
2796
+ readonly description: "GPT-4o November 2024 snapshot";
2797
+ readonly contextLength: 128000;
2798
+ readonly deprecated: false;
2799
+ readonly isAvailable: true;
2800
+ readonly lastUpdated: "2026-03-01";
2801
+ };
2802
+ readonly 'gpt-4o-audio-preview': {
2803
+ readonly type: "audio";
2804
+ readonly provider: "openai";
2805
+ readonly displayName: "GPT-4o Audio";
2806
+ readonly description: "GPT-4o models capable of audio inputs and outputs";
2807
+ readonly pricing: {
2808
+ readonly input: 2.5;
2809
+ readonly output: 10;
2810
+ };
2811
+ readonly context: {
2812
+ readonly input: {
2813
+ readonly text: true;
2814
+ readonly audio: true;
2815
+ readonly image: false;
2816
+ readonly video: false;
2817
+ };
2818
+ readonly output: {
2819
+ readonly text: true;
2820
+ readonly audio: true;
2821
+ readonly image: false;
2822
+ readonly video: false;
2823
+ };
2824
+ };
2825
+ readonly deprecated: false;
2826
+ readonly isAvailable: true;
2827
+ readonly lastUpdated: "2026-03-01";
2828
+ };
2829
+ readonly 'gpt-4o-audio-preview-2024-12-17': {
2830
+ readonly type: "audio";
2831
+ readonly provider: "openai";
2832
+ readonly displayName: "GPT-4o Audio Preview (2024-12-17)";
2833
+ readonly description: "GPT-4o audio preview, December 2024 snapshot";
2834
+ readonly deprecated: false;
2835
+ readonly isAvailable: true;
2836
+ readonly lastUpdated: "2026-03-01";
2837
+ };
2838
+ readonly 'gpt-4o-audio-preview-2025-06-03': {
2839
+ readonly type: "audio";
2840
+ readonly provider: "openai";
2841
+ readonly displayName: "GPT-4o Audio Preview (2025-06-03)";
2842
+ readonly description: "GPT-4o audio preview, June 2025 snapshot";
2843
+ readonly deprecated: false;
2844
+ readonly isAvailable: true;
2845
+ readonly lastUpdated: "2026-03-01";
2846
+ };
2847
+ readonly 'gpt-4o-mini': {
2848
+ readonly type: "chat";
2849
+ readonly provider: "openai";
2850
+ readonly displayName: "GPT-4o Mini";
2851
+ readonly description: "Small, fast, affordable GPT-4o variant";
2852
+ readonly pricing: {
2853
+ readonly input: 0.15;
2854
+ readonly output: 0.6;
2855
+ };
2856
+ readonly benchmarks: {
2857
+ readonly intelligence: 18.9;
2858
+ };
2859
+ readonly contextLength: 128000;
2860
+ readonly context: {
2861
+ readonly input: {
2862
+ readonly text: true;
2863
+ readonly audio: false;
2864
+ readonly image: true;
2865
+ readonly video: false;
2866
+ };
2867
+ readonly output: {
2868
+ readonly text: true;
2869
+ readonly audio: false;
2870
+ readonly image: false;
2871
+ readonly video: false;
2872
+ };
2873
+ };
2874
+ readonly deprecated: false;
2875
+ readonly isAvailable: true;
2876
+ readonly lastUpdated: "2026-03-01";
2877
+ };
2878
+ readonly 'gpt-4o-mini-2024-07-18': {
2879
+ readonly type: "chat";
2880
+ readonly provider: "openai";
2881
+ readonly displayName: "GPT-4o Mini (2024-07-18)";
2882
+ readonly description: "GPT-4o Mini July 2024 snapshot";
2883
+ readonly contextLength: 128000;
2884
+ readonly deprecated: false;
2885
+ readonly isAvailable: true;
2886
+ readonly lastUpdated: "2026-03-01";
2887
+ };
2888
+ readonly 'gpt-4o-mini-audio-preview': {
2889
+ readonly type: "audio";
2890
+ readonly provider: "openai";
2891
+ readonly displayName: "GPT-4o mini Audio";
2892
+ readonly description: "Smaller model capable of audio inputs and outputs";
2893
+ readonly pricing: {
2894
+ readonly input: 0.15;
2895
+ readonly output: 0.6;
2896
+ };
2897
+ readonly contextLength: 128000;
2898
+ readonly context: {
2899
+ readonly input: {
2900
+ readonly text: true;
2901
+ readonly audio: true;
2902
+ readonly image: false;
2903
+ readonly video: false;
2904
+ };
2905
+ readonly output: {
2906
+ readonly text: true;
2907
+ readonly audio: true;
2908
+ readonly image: false;
2909
+ readonly video: false;
2910
+ };
2911
+ };
2912
+ readonly deprecated: false;
2913
+ readonly isAvailable: true;
2914
+ readonly lastUpdated: "2026-03-01";
2915
+ };
2916
+ readonly 'gpt-4o-mini-audio-preview-2024-12-17': {
2917
+ readonly type: "audio";
2918
+ readonly provider: "openai";
2919
+ readonly displayName: "GPT-4o Mini Audio Preview (2024-12-17)";
2920
+ readonly description: "GPT-4o Mini audio preview, December 2024 snapshot";
2921
+ readonly deprecated: false;
2922
+ readonly isAvailable: true;
2923
+ readonly lastUpdated: "2026-03-01";
2924
+ };
2925
+ readonly 'gpt-4o-mini-realtime-preview': {
2926
+ readonly type: "audio";
2927
+ readonly provider: "openai";
2928
+ readonly displayName: "GPT-4o mini Realtime";
2929
+ readonly subtype: "realtime";
2930
+ readonly description: "Smaller realtime model for text and audio inputs and outputs";
2931
+ readonly pricing: {
2932
+ readonly input: 0.6;
2933
+ readonly output: 2.4;
2934
+ };
2935
+ readonly contextLength: 128000;
2936
+ readonly context: {
2937
+ readonly input: {
2938
+ readonly text: true;
2939
+ readonly audio: true;
2940
+ readonly image: false;
2941
+ readonly video: false;
2942
+ };
2943
+ readonly output: {
2944
+ readonly text: true;
2945
+ readonly audio: true;
2946
+ readonly image: false;
2947
+ readonly video: false;
2948
+ };
2949
+ };
2950
+ readonly deprecated: false;
2951
+ readonly isAvailable: true;
2952
+ readonly lastUpdated: "2026-03-01";
2953
+ };
2954
+ readonly 'gpt-4o-mini-realtime-preview-2024-12-17': {
2955
+ readonly type: "audio";
2956
+ readonly provider: "openai";
2957
+ readonly displayName: "GPT-4o Mini Realtime Preview (2024-12-17)";
2958
+ readonly subtype: "realtime";
2959
+ readonly description: "GPT-4o Mini realtime preview, December 2024 snapshot";
2960
+ readonly deprecated: false;
2961
+ readonly isAvailable: true;
2962
+ readonly lastUpdated: "2026-03-01";
2963
+ };
2964
+ readonly 'gpt-4o-mini-search-preview': {
2965
+ readonly type: "chat";
2966
+ readonly provider: "openai";
2967
+ readonly displayName: "GPT-4o mini Search Preview";
2968
+ readonly description: "Fast, affordable small model for web search";
2969
+ readonly pricing: {
2970
+ readonly input: 0.15;
2971
+ readonly output: 0.6;
2972
+ };
2973
+ readonly context: {
2974
+ readonly input: {
2975
+ readonly text: true;
2976
+ readonly audio: false;
2977
+ readonly image: false;
2978
+ readonly video: false;
2979
+ };
2980
+ readonly output: {
2981
+ readonly text: true;
2982
+ readonly audio: false;
2983
+ readonly image: false;
2984
+ readonly video: false;
2985
+ };
2986
+ };
2987
+ readonly deprecated: false;
2988
+ readonly isAvailable: true;
2989
+ readonly lastUpdated: "2026-03-01";
2990
+ };
2991
+ readonly 'gpt-4o-mini-search-preview-2025-03-11': {
2992
+ readonly type: "chat";
2993
+ readonly provider: "openai";
2994
+ readonly displayName: "GPT-4o Mini Search Preview (2025-03-11)";
2995
+ readonly description: "GPT-4o Mini with search, March 2025 snapshot";
2996
+ readonly contextLength: 128000;
2997
+ readonly deprecated: false;
2998
+ readonly isAvailable: true;
2999
+ readonly lastUpdated: "2026-03-01";
3000
+ };
3001
+ readonly 'gpt-4o-mini-transcribe': {
3002
+ readonly type: "stt";
3003
+ readonly provider: "openai";
3004
+ readonly displayName: "GPT-4o Mini Transcribe";
3005
+ readonly description: "Compact speech-to-text model";
3006
+ readonly pricing: {
3007
+ readonly input: 1.25;
3008
+ readonly output: 5;
3009
+ };
3010
+ readonly context: {
3011
+ readonly input: {
3012
+ readonly text: false;
3013
+ readonly audio: true;
3014
+ readonly image: false;
3015
+ readonly video: false;
3016
+ };
3017
+ readonly output: {
3018
+ readonly text: true;
3019
+ readonly audio: false;
3020
+ readonly image: false;
3021
+ readonly video: false;
3022
+ };
3023
+ };
3024
+ readonly deprecated: false;
3025
+ readonly isAvailable: true;
3026
+ readonly lastUpdated: "2026-03-01";
3027
+ };
3028
+ readonly 'gpt-4o-mini-transcribe-2025-03-20': {
3029
+ readonly type: "stt";
3030
+ readonly provider: "openai";
3031
+ readonly displayName: "GPT-4o Mini Transcribe (2025-03-20)";
3032
+ readonly description: "GPT-4o Mini transcription, March 2025 snapshot";
3033
+ readonly deprecated: false;
3034
+ readonly isAvailable: true;
3035
+ readonly lastUpdated: "2026-03-01";
3036
+ };
3037
+ readonly 'gpt-4o-mini-transcribe-2025-12-15': {
3038
+ readonly type: "audio";
3039
+ readonly provider: "openai";
3040
+ readonly displayName: "GPT-4o mini Transcribe";
3041
+ readonly description: "Speech-to-text model powered by GPT-4o mini";
3042
+ readonly pricing: {
3043
+ readonly input: 1.25;
3044
+ readonly output: 5;
3045
+ };
3046
+ readonly context: {
3047
+ readonly input: {
3048
+ readonly text: false;
3049
+ readonly audio: true;
3050
+ readonly image: false;
3051
+ readonly video: false;
3052
+ };
3053
+ readonly output: {
3054
+ readonly text: true;
3055
+ readonly audio: false;
3056
+ readonly image: false;
3057
+ readonly video: false;
3058
+ };
3059
+ };
3060
+ readonly deprecated: false;
3061
+ readonly isAvailable: true;
3062
+ readonly lastUpdated: "2026-03-01";
3063
+ };
3064
+ readonly 'gpt-4o-mini-tts': {
3065
+ readonly type: "tts";
3066
+ readonly provider: "openai";
3067
+ readonly displayName: "GPT-4o mini TTS";
3068
+ readonly description: "Text-to-speech model powered by GPT-4o mini";
3069
+ readonly pricing: {
3070
+ readonly input: 0.6;
3071
+ };
3072
+ readonly context: {
3073
+ readonly input: {
3074
+ readonly text: true;
3075
+ readonly audio: false;
3076
+ readonly image: false;
3077
+ readonly video: false;
3078
+ };
3079
+ readonly output: {
3080
+ readonly text: false;
3081
+ readonly audio: true;
3082
+ readonly image: false;
3083
+ readonly video: false;
3084
+ };
3085
+ };
3086
+ readonly deprecated: false;
3087
+ readonly isAvailable: true;
3088
+ readonly lastUpdated: "2026-03-01";
3089
+ };
3090
+ readonly 'gpt-4o-mini-tts-2025-03-20': {
3091
+ readonly type: "tts";
3092
+ readonly provider: "openai";
3093
+ readonly displayName: "GPT-4o mini TTS";
3094
+ readonly description: "Text-to-speech model powered by GPT-4o mini";
3095
+ readonly pricing: {
3096
+ readonly input: 0.6;
3097
+ };
3098
+ readonly context: {
3099
+ readonly input: {
3100
+ readonly text: true;
3101
+ readonly audio: false;
3102
+ readonly image: false;
3103
+ readonly video: false;
3104
+ };
3105
+ readonly output: {
3106
+ readonly text: false;
3107
+ readonly audio: true;
3108
+ readonly image: false;
3109
+ readonly video: false;
3110
+ };
3111
+ };
3112
+ readonly deprecated: false;
3113
+ readonly isAvailable: true;
3114
+ readonly lastUpdated: "2026-03-01";
3115
+ };
3116
+ readonly 'gpt-4o-mini-tts-2025-12-15': {
3117
+ readonly type: "tts";
3118
+ readonly provider: "openai";
3119
+ readonly displayName: "GPT-4o Mini TTS (2025-12-15)";
3120
+ readonly description: "GPT-4o Mini text-to-speech, December 2025 snapshot";
3121
+ readonly deprecated: false;
3122
+ readonly isAvailable: true;
3123
+ readonly lastUpdated: "2026-03-01";
3124
+ };
3125
+ readonly 'gpt-4o-realtime-preview': {
3126
+ readonly type: "audio";
3127
+ readonly provider: "openai";
3128
+ readonly displayName: "GPT-4o Realtime";
3129
+ readonly subtype: "realtime";
3130
+ readonly description: "Model capable of realtime text and audio inputs and outputs";
3131
+ readonly pricing: {
3132
+ readonly input: 5;
3133
+ readonly output: 20;
3134
+ };
3135
+ readonly contextLength: 128000;
3136
+ readonly context: {
3137
+ readonly input: {
3138
+ readonly text: true;
3139
+ readonly audio: true;
3140
+ readonly image: false;
3141
+ readonly video: false;
3142
+ };
3143
+ readonly output: {
3144
+ readonly text: true;
3145
+ readonly audio: true;
3146
+ readonly image: false;
3147
+ readonly video: false;
3148
+ };
3149
+ };
3150
+ readonly deprecated: false;
3151
+ readonly isAvailable: true;
3152
+ readonly lastUpdated: "2026-03-01";
3153
+ };
3154
+ readonly 'gpt-4o-realtime-preview-2024-12-17': {
3155
+ readonly type: "audio";
3156
+ readonly provider: "openai";
3157
+ readonly displayName: "GPT-4o Realtime Preview (2024-12-17)";
3158
+ readonly subtype: "realtime";
3159
+ readonly description: "GPT-4o realtime preview, December 2024 snapshot";
3160
+ readonly deprecated: false;
3161
+ readonly isAvailable: true;
3162
+ readonly lastUpdated: "2026-03-01";
3163
+ };
3164
+ readonly 'gpt-4o-realtime-preview-2025-06-03': {
3165
+ readonly type: "audio";
3166
+ readonly provider: "openai";
3167
+ readonly displayName: "GPT-4o Realtime";
3168
+ readonly subtype: "realtime";
3169
+ readonly description: "Model capable of realtime text and audio inputs and outputs";
3170
+ readonly pricing: {
3171
+ readonly input: 5;
3172
+ readonly output: 20;
3173
+ };
3174
+ readonly contextLength: 128000;
3175
+ readonly context: {
3176
+ readonly input: {
3177
+ readonly text: true;
3178
+ readonly audio: true;
3179
+ readonly image: false;
3180
+ readonly video: false;
3181
+ };
3182
+ readonly output: {
3183
+ readonly text: true;
3184
+ readonly audio: true;
3185
+ readonly image: false;
3186
+ readonly video: false;
3187
+ };
3188
+ };
3189
+ readonly deprecated: false;
3190
+ readonly isAvailable: true;
3191
+ readonly lastUpdated: "2026-03-01";
3192
+ };
3193
+ readonly 'gpt-4o-search-preview': {
3194
+ readonly type: "chat";
3195
+ readonly provider: "openai";
3196
+ readonly displayName: "GPT-4o Search Preview";
3197
+ readonly description: "GPT model for web search in Chat Completions";
3198
+ readonly pricing: {
3199
+ readonly input: 2.5;
3200
+ readonly output: 10;
3201
+ };
3202
+ readonly contextLength: 128000;
3203
+ readonly context: {
3204
+ readonly input: {
3205
+ readonly text: true;
3206
+ readonly audio: false;
3207
+ readonly image: false;
3208
+ readonly video: false;
3209
+ };
3210
+ readonly output: {
3211
+ readonly text: true;
3212
+ readonly audio: false;
3213
+ readonly image: false;
3214
+ readonly video: false;
3215
+ };
3216
+ };
3217
+ readonly deprecated: false;
3218
+ readonly isAvailable: true;
3219
+ readonly lastUpdated: "2026-03-01";
3220
+ };
3221
+ readonly 'gpt-4o-search-preview-2025-03-11': {
3222
+ readonly type: "chat";
3223
+ readonly provider: "openai";
3224
+ readonly displayName: "GPT-4o Search Preview (2025-03-11)";
3225
+ readonly description: "GPT-4o with search, March 2025 snapshot";
3226
+ readonly contextLength: 128000;
3227
+ readonly deprecated: false;
3228
+ readonly isAvailable: true;
3229
+ readonly lastUpdated: "2026-03-01";
3230
+ };
3231
+ readonly 'gpt-4o-transcribe': {
3232
+ readonly type: "stt";
3233
+ readonly provider: "openai";
3234
+ readonly displayName: "GPT-4o Transcribe";
3235
+ readonly description: "Speech-to-text transcription model";
3236
+ readonly pricing: {
3237
+ readonly input: 2.5;
3238
+ readonly output: 10;
3239
+ };
3240
+ readonly context: {
3241
+ readonly input: {
3242
+ readonly text: false;
3243
+ readonly audio: true;
3244
+ readonly image: false;
3245
+ readonly video: false;
3246
+ };
3247
+ readonly output: {
3248
+ readonly text: true;
3249
+ readonly audio: false;
3250
+ readonly image: false;
3251
+ readonly video: false;
3252
+ };
3253
+ };
3254
+ readonly deprecated: false;
3255
+ readonly isAvailable: true;
3256
+ readonly lastUpdated: "2026-03-01";
3257
+ };
3258
+ readonly 'gpt-4o-transcribe-diarize': {
3259
+ readonly type: "audio";
3260
+ readonly provider: "openai";
3261
+ readonly displayName: "GPT-4o Transcribe Diarize";
3262
+ readonly description: "Transcription model that identifies who's speaking when";
3263
+ readonly pricing: {
3264
+ readonly input: 2.5;
3265
+ readonly output: 10;
3266
+ };
3267
+ readonly context: {
3268
+ readonly input: {
3269
+ readonly text: false;
3270
+ readonly audio: true;
3271
+ readonly image: false;
3272
+ readonly video: false;
3273
+ };
3274
+ readonly output: {
3275
+ readonly text: true;
3276
+ readonly audio: false;
3277
+ readonly image: false;
3278
+ readonly video: false;
3279
+ };
3280
+ };
3281
+ readonly deprecated: false;
3282
+ readonly isAvailable: true;
3283
+ readonly lastUpdated: "2026-03-01";
3284
+ };
3285
+ readonly 'gpt-5': {
3286
+ readonly type: "chat";
3287
+ readonly provider: "openai";
3288
+ readonly displayName: "GPT-5";
3289
+ readonly description: "GPT-5 model";
3290
+ readonly pricing: {
3291
+ readonly input: 1.25;
3292
+ readonly output: 10;
3293
+ };
3294
+ readonly contextLength: 400000;
3295
+ readonly deprecated: false;
3296
+ readonly isAvailable: true;
3297
+ readonly lastUpdated: "2026-03-01";
3298
+ };
3299
+ readonly 'gpt-5-2025-08-07': {
3300
+ readonly type: "chat";
3301
+ readonly provider: "openai";
3302
+ readonly displayName: "GPT-5 (2025-08-07)";
3303
+ readonly description: "GPT-5 August 2025 snapshot";
3304
+ readonly pricing: {
3305
+ readonly input: 1.25;
3306
+ readonly output: 10;
3307
+ };
3308
+ readonly contextLength: 400000;
3309
+ readonly deprecated: false;
3310
+ readonly isAvailable: true;
3311
+ readonly lastUpdated: "2026-03-01";
3312
+ };
3313
+ readonly 'gpt-5-chat-latest': {
3314
+ readonly type: "chat";
3315
+ readonly provider: "openai";
3316
+ readonly displayName: "GPT-5 Chat Latest";
3317
+ readonly description: "Latest GPT-5 chat model alias";
3318
+ readonly pricing: {
3319
+ readonly input: 1.25;
3320
+ readonly output: 10;
3321
+ };
3322
+ readonly contextLength: 400000;
3323
+ readonly deprecated: false;
3324
+ readonly isAvailable: true;
3325
+ readonly lastUpdated: "2026-03-01";
3326
+ };
3327
+ readonly 'gpt-5-codex': {
3328
+ readonly type: "chat";
3329
+ readonly provider: "openai";
3330
+ readonly displayName: "";
3331
+ readonly subtype: "code";
3332
+ readonly deprecated: false;
3333
+ readonly isAvailable: true;
3334
+ readonly lastUpdated: "2026-03-01";
3335
+ };
3336
+ readonly 'gpt-5-mini': {
3337
+ readonly type: "chat";
3338
+ readonly provider: "openai";
3339
+ readonly displayName: "GPT-5 Mini";
3340
+ readonly description: "Smaller, faster GPT-5 variant";
3341
+ readonly pricing: {
3342
+ readonly input: 0.25;
3343
+ readonly output: 2;
3344
+ };
3345
+ readonly contextLength: 400000;
3346
+ readonly deprecated: false;
3347
+ readonly isAvailable: true;
3348
+ readonly lastUpdated: "2026-03-01";
3349
+ };
3350
+ readonly 'gpt-5-mini-2025-08-07': {
3351
+ readonly type: "chat";
3352
+ readonly provider: "openai";
3353
+ readonly displayName: "GPT-5 mini";
3354
+ readonly description: "A faster, cost-efficient version of GPT-5 for well-defined tasks";
3355
+ readonly pricing: {
3356
+ readonly input: 0.25;
3357
+ readonly output: 2;
3358
+ };
3359
+ readonly benchmarks: {
3360
+ readonly intelligence: 11.9;
3361
+ };
3362
+ readonly contextLength: 400000;
3363
+ readonly context: {
3364
+ readonly input: {
3365
+ readonly text: true;
3366
+ readonly audio: false;
3367
+ readonly image: true;
3368
+ readonly video: false;
3369
+ };
3370
+ readonly output: {
3371
+ readonly text: true;
3372
+ readonly audio: false;
3373
+ readonly image: false;
3374
+ readonly video: false;
3375
+ };
3376
+ };
3377
+ readonly deprecated: false;
3378
+ readonly isAvailable: true;
3379
+ readonly lastUpdated: "2026-03-01";
3380
+ };
3381
+ readonly 'gpt-5-nano': {
3382
+ readonly type: "chat";
3383
+ readonly provider: "openai";
3384
+ readonly displayName: "GPT-5 Nano";
3385
+ readonly description: "Smallest and fastest GPT-5 model";
3386
+ readonly pricing: {
3387
+ readonly input: 0.05;
3388
+ readonly output: 0.4;
3389
+ };
3390
+ readonly contextLength: 400000;
3391
+ readonly deprecated: false;
3392
+ readonly isAvailable: true;
3393
+ readonly lastUpdated: "2026-03-01";
3394
+ };
3395
+ readonly 'gpt-5-nano-2025-08-07': {
3396
+ readonly type: "chat";
3397
+ readonly provider: "openai";
3398
+ readonly displayName: "GPT-5 Nano";
3399
+ readonly description: "Smallest and fastest GPT-5 model";
3400
+ readonly pricing: {
3401
+ readonly input: 0.05;
3402
+ readonly output: 0.4;
3403
+ };
3404
+ readonly benchmarks: {
3405
+ readonly intelligence: 25.7;
3406
+ readonly coding: 22.9;
3407
+ readonly math: 78.3;
3408
+ readonly mmluPro: 0.77;
3409
+ readonly gpqa: 0.67;
3410
+ };
3411
+ readonly contextLength: 400000;
3412
+ readonly context: {
3413
+ readonly input: {
3414
+ readonly text: true;
3415
+ readonly audio: false;
3416
+ readonly image: true;
3417
+ readonly video: false;
3418
+ };
3419
+ readonly output: {
3420
+ readonly text: true;
3421
+ readonly audio: false;
3422
+ readonly image: false;
3423
+ readonly video: false;
3424
+ };
3425
+ };
3426
+ readonly deprecated: false;
3427
+ readonly isAvailable: true;
3428
+ readonly lastUpdated: "2026-03-01";
3429
+ };
3430
+ readonly 'gpt-5-pro': {
3431
+ readonly type: "chat";
3432
+ readonly provider: "openai";
3433
+ readonly displayName: "GPT-5 Pro";
3434
+ readonly description: "Premium GPT-5 model for complex tasks";
3435
+ readonly pricing: {
3436
+ readonly input: 15;
3437
+ readonly output: 120;
3438
+ };
3439
+ readonly contextLength: 400000;
3440
+ readonly deprecated: false;
3441
+ readonly isAvailable: true;
3442
+ readonly lastUpdated: "2026-03-01";
3443
+ };
3444
+ readonly 'gpt-5-pro-2025-10-06': {
3445
+ readonly type: "chat";
3446
+ readonly provider: "openai";
3447
+ readonly displayName: "";
3448
+ readonly pricing: {
3449
+ readonly input: 15;
3450
+ readonly output: 120;
3451
+ };
3452
+ readonly contextLength: 400000;
3453
+ readonly deprecated: false;
3454
+ readonly isAvailable: true;
3455
+ readonly lastUpdated: "2026-03-01";
3456
+ };
3457
+ readonly 'gpt-5-search-api': {
3458
+ readonly type: "chat";
3459
+ readonly provider: "openai";
3460
+ readonly displayName: "GPT-5 Search API";
3461
+ readonly description: "GPT-5 with web search capabilities";
3462
+ readonly deprecated: false;
3463
+ readonly isAvailable: true;
3464
+ readonly lastUpdated: "2026-03-01";
3465
+ };
3466
+ readonly 'gpt-5-search-api-2025-10-14': {
3467
+ readonly type: "chat";
3468
+ readonly provider: "openai";
3469
+ readonly displayName: "GPT-5 Search API (Oct 2025)";
3470
+ readonly description: "GPT-5 with search capabilities";
3471
+ readonly pricing: {
3472
+ readonly input: 1.25;
3473
+ readonly output: 10;
3474
+ };
3475
+ readonly benchmarks: {
3476
+ readonly intelligence: 68.5;
3477
+ readonly coding: 53.5;
3478
+ readonly math: 98.7;
3479
+ readonly mmluPro: 0.87;
3480
+ readonly gpqa: 0.84;
3481
+ };
3482
+ readonly contextLength: 128000;
3483
+ readonly context: {
3484
+ readonly input: {
3485
+ readonly text: true;
3486
+ readonly audio: false;
3487
+ readonly image: false;
3488
+ readonly video: false;
3489
+ };
3490
+ readonly output: {
3491
+ readonly text: true;
3492
+ readonly audio: false;
3493
+ readonly image: false;
3494
+ readonly video: false;
3495
+ };
3496
+ };
3497
+ readonly deprecated: false;
3498
+ readonly isAvailable: true;
3499
+ readonly lastUpdated: "2026-03-01";
3500
+ };
3501
+ readonly 'gpt-5.1': {
3502
+ readonly type: "chat";
3503
+ readonly provider: "openai";
3504
+ readonly displayName: "GPT-5.1";
3505
+ readonly description: "GPT-5.1 model";
3506
+ readonly pricing: {
3507
+ readonly input: 1.25;
3508
+ readonly output: 10;
3509
+ };
3510
+ readonly contextLength: 400000;
3511
+ readonly deprecated: false;
3512
+ readonly isAvailable: true;
3513
+ readonly lastUpdated: "2026-03-01";
3514
+ };
3515
+ readonly 'gpt-5.1-2025-11-13': {
3516
+ readonly type: "chat";
3517
+ readonly provider: "openai";
3518
+ readonly displayName: "GPT-5.1 (Nov 2025)";
3519
+ readonly description: "GPT-5.1 model released November 2025";
3520
+ readonly pricing: {
3521
+ readonly input: 1.25;
3522
+ readonly output: 10;
3523
+ };
3524
+ readonly benchmarks: {
3525
+ readonly intelligence: 27.4;
3526
+ readonly coding: 27.3;
3527
+ readonly math: 38;
3528
+ readonly mmluPro: 0.8;
3529
+ readonly gpqa: 0.64;
3530
+ };
3531
+ readonly contextLength: 400000;
3532
+ readonly context: {
3533
+ readonly input: {
3534
+ readonly text: true;
3535
+ readonly audio: false;
3536
+ readonly image: true;
3537
+ readonly video: false;
3538
+ };
3539
+ readonly output: {
3540
+ readonly text: true;
3541
+ readonly audio: false;
3542
+ readonly image: false;
3543
+ readonly video: false;
3544
+ };
3545
+ };
3546
+ readonly deprecated: false;
3547
+ readonly isAvailable: true;
3548
+ readonly lastUpdated: "2026-03-01";
3549
+ };
3550
+ readonly 'gpt-5.1-chat-latest': {
3551
+ readonly type: "chat";
3552
+ readonly provider: "openai";
3553
+ readonly displayName: "GPT-5.1 Chat Latest";
3554
+ readonly description: "Latest GPT-5.1 chat model alias";
3555
+ readonly pricing: {
3556
+ readonly input: 1.25;
3557
+ readonly output: 10;
3558
+ };
3559
+ readonly contextLength: 400000;
3560
+ readonly deprecated: false;
3561
+ readonly isAvailable: true;
3562
+ readonly lastUpdated: "2026-03-01";
3563
+ };
3564
+ readonly 'gpt-5.1-codex': {
3565
+ readonly type: "chat";
3566
+ readonly provider: "openai";
3567
+ readonly displayName: "";
3568
+ readonly subtype: "code";
3569
+ readonly deprecated: false;
3570
+ readonly isAvailable: true;
3571
+ readonly lastUpdated: "2026-03-01";
3572
+ };
3573
+ readonly 'gpt-5.1-codex-max': {
3574
+ readonly type: "chat";
3575
+ readonly provider: "openai";
3576
+ readonly displayName: "";
3577
+ readonly subtype: "code";
3578
+ readonly deprecated: false;
3579
+ readonly isAvailable: true;
3580
+ readonly lastUpdated: "2026-03-01";
3581
+ };
3582
+ readonly 'gpt-5.1-codex-mini': {
3583
+ readonly type: "chat";
3584
+ readonly provider: "openai";
3585
+ readonly displayName: "";
3586
+ readonly subtype: "code";
3587
+ readonly deprecated: false;
3588
+ readonly isAvailable: true;
3589
+ readonly lastUpdated: "2026-03-01";
3590
+ };
3591
+ readonly 'gpt-5.2': {
3592
+ readonly type: "chat";
3593
+ readonly provider: "openai";
3594
+ readonly displayName: "GPT-5.2";
3595
+ readonly description: "Latest GPT-5.2 model";
3596
+ readonly pricing: {
3597
+ readonly input: 1.75;
3598
+ readonly output: 14;
3599
+ };
3600
+ readonly contextLength: 400000;
3601
+ readonly deprecated: false;
3602
+ readonly isAvailable: true;
3603
+ readonly lastUpdated: "2026-03-01";
3604
+ };
3605
+ readonly 'gpt-5.2-2025-12-11': {
3606
+ readonly type: "chat";
3607
+ readonly provider: "openai";
3608
+ readonly displayName: "GPT-5.2";
3609
+ readonly description: "The best model for coding and agentic tasks across industries";
3610
+ readonly pricing: {
3611
+ readonly input: 1.75;
3612
+ readonly output: 14;
3613
+ };
3614
+ readonly benchmarks: {
3615
+ readonly gpqa: 93.2;
3616
+ };
3617
+ readonly contextLength: 400000;
3618
+ readonly context: {
3619
+ readonly input: {
3620
+ readonly text: true;
3621
+ readonly audio: false;
3622
+ readonly image: true;
3623
+ readonly video: false;
3624
+ };
3625
+ readonly output: {
3626
+ readonly text: true;
3627
+ readonly audio: false;
3628
+ readonly image: false;
3629
+ readonly video: false;
3630
+ };
3631
+ };
3632
+ readonly deprecated: false;
3633
+ readonly isAvailable: true;
3634
+ readonly lastUpdated: "2026-03-01";
3635
+ };
3636
+ readonly 'gpt-5.2-chat-latest': {
3637
+ readonly type: "chat";
3638
+ readonly provider: "openai";
3639
+ readonly displayName: "GPT-5.2 Chat Latest";
3640
+ readonly description: "Latest GPT-5.2 chat model alias";
3641
+ readonly pricing: {
3642
+ readonly input: 1.75;
3643
+ readonly output: 14;
3644
+ };
3645
+ readonly contextLength: 400000;
3646
+ readonly deprecated: false;
3647
+ readonly isAvailable: true;
3648
+ readonly lastUpdated: "2026-03-01";
3649
+ };
3650
+ readonly 'gpt-5.2-codex': {
3651
+ readonly type: "chat";
3652
+ readonly provider: "openai";
3653
+ readonly displayName: "GPT-5.2 Codex";
3654
+ readonly subtype: "code";
3655
+ readonly description: "GPT-5.2 optimized for code generation via Codex API";
3656
+ readonly deprecated: false;
3657
+ readonly isAvailable: true;
3658
+ readonly lastUpdated: "2026-03-01";
3659
+ };
3660
+ readonly 'gpt-5.2-pro': {
3661
+ readonly type: "chat";
3662
+ readonly provider: "openai";
3663
+ readonly displayName: "GPT-5.2 Pro";
3664
+ readonly description: "Premium GPT-5.2 model for complex tasks";
3665
+ readonly pricing: {
3666
+ readonly input: 21;
3667
+ readonly output: 168;
3668
+ };
3669
+ readonly contextLength: 400000;
3670
+ readonly deprecated: false;
3671
+ readonly isAvailable: true;
3672
+ readonly lastUpdated: "2026-03-01";
3673
+ };
3674
+ readonly 'gpt-5.2-pro-2025-12-11': {
3675
+ readonly type: "chat";
3676
+ readonly provider: "openai";
3677
+ readonly displayName: "";
3678
+ readonly pricing: {
3679
+ readonly input: 21;
3680
+ readonly output: 168;
3681
+ };
3682
+ readonly contextLength: 400000;
3683
+ readonly deprecated: false;
3684
+ readonly isAvailable: true;
3685
+ readonly lastUpdated: "2026-03-01";
3686
+ };
3687
+ readonly 'gpt-5.3-codex': {
3688
+ readonly type: "chat";
3689
+ readonly provider: "openai";
3690
+ readonly displayName: "GPT-5.3 Codex";
3691
+ readonly subtype: "code";
3692
+ readonly description: "Latest GPT-5.3 code generation model";
3693
+ readonly benchmarks: {
3694
+ readonly intelligence: 95;
3695
+ };
3696
+ readonly deprecated: false;
3697
+ readonly isAvailable: true;
3698
+ readonly lastUpdated: "2026-03-01";
3699
+ };
3700
+ readonly 'gpt-audio': {
3701
+ readonly type: "audio";
3702
+ readonly provider: "openai";
3703
+ readonly displayName: "GPT Audio";
3704
+ readonly description: "OpenAI audio model";
3705
+ readonly deprecated: false;
3706
+ readonly isAvailable: true;
3707
+ readonly lastUpdated: "2026-03-01";
3708
+ };
3709
+ readonly 'gpt-audio-1.5': {
3710
+ readonly type: "audio";
3711
+ readonly provider: "openai";
3712
+ readonly displayName: "GPT Audio 1.5";
3713
+ readonly description: "Latest OpenAI audio model";
3714
+ readonly deprecated: false;
3715
+ readonly isAvailable: true;
3716
+ readonly lastUpdated: "2026-03-01";
3717
+ };
3718
+ readonly 'gpt-audio-2025-08-28': {
3719
+ readonly type: "audio";
3720
+ readonly provider: "openai";
3721
+ readonly displayName: "GPT Audio (2025-08-28)";
3722
+ readonly description: "GPT Audio August 2025 snapshot";
3723
+ readonly deprecated: false;
3724
+ readonly isAvailable: true;
3725
+ readonly lastUpdated: "2026-03-01";
3726
+ };
3727
+ readonly 'gpt-audio-mini': {
3728
+ readonly type: "audio";
3729
+ readonly provider: "openai";
3730
+ readonly displayName: "GPT Audio Mini";
3731
+ readonly description: "Smaller GPT Audio model";
3732
+ readonly deprecated: false;
3733
+ readonly isAvailable: true;
3734
+ readonly lastUpdated: "2026-03-01";
3735
+ };
3736
+ readonly 'gpt-audio-mini-2025-10-06': {
3737
+ readonly type: "audio";
3738
+ readonly provider: "openai";
3739
+ readonly displayName: "GPT Audio Mini (Oct 2025)";
3740
+ readonly description: "Compact audio processing model";
3741
+ readonly pricing: {
3742
+ readonly input: 0.6;
3743
+ readonly output: 2.4;
2002
3744
  };
2003
3745
  readonly contextLength: 128000;
2004
3746
  readonly context: {
2005
3747
  readonly input: {
2006
3748
  readonly text: true;
2007
- readonly audio: false;
2008
- readonly image: true;
3749
+ readonly audio: true;
3750
+ readonly image: false;
2009
3751
  readonly video: false;
2010
3752
  };
2011
3753
  readonly output: {
2012
3754
  readonly text: true;
2013
- readonly audio: false;
3755
+ readonly audio: true;
2014
3756
  readonly image: false;
2015
3757
  readonly video: false;
2016
3758
  };
2017
3759
  };
2018
3760
  readonly deprecated: false;
2019
3761
  readonly isAvailable: true;
2020
- readonly lastUpdated: "2026-01-25";
3762
+ readonly lastUpdated: "2026-03-01";
2021
3763
  };
2022
- readonly 'gpt-5-nano-2025-08-07': {
2023
- readonly type: "chat";
3764
+ readonly 'gpt-audio-mini-2025-12-15': {
3765
+ readonly type: "audio";
2024
3766
  readonly provider: "openai";
2025
- readonly displayName: "GPT-5 nano";
2026
- readonly description: "Fastest, most cost-efficient version of GPT-5";
3767
+ readonly displayName: "GPT Audio Mini (Dec 2025)";
3768
+ readonly description: "Compact audio processing model released December 2025";
2027
3769
  readonly pricing: {
2028
- readonly input: 0.05;
2029
- readonly output: 0.4;
2030
- };
2031
- readonly benchmarks: {
2032
- readonly intelligence: 25.7;
2033
- readonly coding: 22.9;
2034
- readonly math: 78.3;
2035
- readonly mmluPro: 0.77;
2036
- readonly gpqa: 0.67;
2037
- };
2038
- readonly performance: {
2039
- readonly intelligenceScore: 25.7;
3770
+ readonly input: 0.6;
3771
+ readonly output: 2.4;
2040
3772
  };
2041
3773
  readonly contextLength: 128000;
2042
3774
  readonly context: {
2043
3775
  readonly input: {
2044
3776
  readonly text: true;
2045
- readonly audio: false;
2046
- readonly image: true;
3777
+ readonly audio: true;
3778
+ readonly image: false;
2047
3779
  readonly video: false;
2048
3780
  };
2049
3781
  readonly output: {
2050
3782
  readonly text: true;
2051
- readonly audio: false;
3783
+ readonly audio: true;
2052
3784
  readonly image: false;
2053
3785
  readonly video: false;
2054
3786
  };
2055
3787
  };
2056
3788
  readonly deprecated: false;
2057
3789
  readonly isAvailable: true;
2058
- readonly lastUpdated: "2026-01-25";
3790
+ readonly lastUpdated: "2026-03-01";
2059
3791
  };
2060
- readonly 'gpt-5-search-api-2025-10-14': {
2061
- readonly type: "chat";
3792
+ readonly 'gpt-image-1': {
3793
+ readonly type: "image";
2062
3794
  readonly provider: "openai";
2063
- readonly displayName: "GPT-5 Search API";
2064
- readonly description: "GPT-5 model optimized for web search capabilities";
3795
+ readonly displayName: "GPT Image 1";
3796
+ readonly description: "OpenAI image generation model";
3797
+ readonly deprecated: false;
3798
+ readonly isAvailable: true;
3799
+ readonly lastUpdated: "2026-03-01";
3800
+ };
3801
+ readonly 'gpt-image-1-mini': {
3802
+ readonly type: "image";
3803
+ readonly provider: "openai";
3804
+ readonly displayName: "GPT Image 1 Mini";
3805
+ readonly description: "Smaller OpenAI image generation model";
3806
+ readonly deprecated: false;
3807
+ readonly isAvailable: true;
3808
+ readonly lastUpdated: "2026-03-01";
3809
+ };
3810
+ readonly 'gpt-image-1.5': {
3811
+ readonly type: "image";
3812
+ readonly provider: "openai";
3813
+ readonly displayName: "GPT Image 1.5";
3814
+ readonly description: "State-of-the-art image generation model";
2065
3815
  readonly pricing: {
2066
- readonly input: 1.25;
3816
+ readonly input: 5;
2067
3817
  readonly output: 10;
2068
3818
  };
2069
- readonly benchmarks: {
2070
- readonly intelligence: 68.5;
2071
- readonly coding: 53.5;
2072
- readonly math: 98.7;
2073
- readonly mmluPro: 0.87;
2074
- readonly gpqa: 0.84;
2075
- };
2076
- readonly performance: {
2077
- readonly intelligenceScore: 68.5;
2078
- };
2079
- readonly contextLength: 128000;
2080
3819
  readonly context: {
2081
3820
  readonly input: {
2082
3821
  readonly text: true;
@@ -2085,97 +3824,89 @@ export declare const MODEL_REGISTRY: {
2085
3824
  readonly video: false;
2086
3825
  };
2087
3826
  readonly output: {
2088
- readonly text: true;
3827
+ readonly text: false;
2089
3828
  readonly audio: false;
2090
- readonly image: false;
3829
+ readonly image: true;
2091
3830
  readonly video: false;
2092
3831
  };
2093
3832
  };
2094
3833
  readonly deprecated: false;
2095
3834
  readonly isAvailable: true;
2096
- readonly lastUpdated: "2026-01-25";
3835
+ readonly lastUpdated: "2026-03-01";
2097
3836
  };
2098
- readonly 'gpt-5.1-2025-11-13': {
3837
+ readonly 'gpt-realtime': {
2099
3838
  readonly type: "chat";
2100
3839
  readonly provider: "openai";
2101
- readonly displayName: "GPT-5.1";
2102
- readonly description: "The best model for coding and agentic tasks with configurable reasoning effort";
3840
+ readonly displayName: "GPT Realtime";
3841
+ readonly subtype: "realtime";
3842
+ readonly description: "OpenAI realtime streaming model";
2103
3843
  readonly pricing: {
2104
- readonly input: 1.25;
2105
- readonly output: 10;
2106
- };
2107
- readonly benchmarks: {
2108
- readonly intelligence: 27.4;
2109
- readonly coding: 27.3;
2110
- readonly math: 38;
2111
- readonly mmluPro: 0.8;
2112
- readonly gpqa: 0.64;
3844
+ readonly input: 4;
3845
+ readonly output: 16;
2113
3846
  };
2114
- readonly performance: {
2115
- readonly intelligenceScore: 27.4;
3847
+ readonly deprecated: false;
3848
+ readonly isAvailable: true;
3849
+ readonly lastUpdated: "2026-03-01";
3850
+ };
3851
+ readonly 'gpt-realtime-1.5': {
3852
+ readonly type: "chat";
3853
+ readonly provider: "openai";
3854
+ readonly displayName: "GPT Realtime 1.5";
3855
+ readonly subtype: "realtime";
3856
+ readonly description: "Latest OpenAI realtime model";
3857
+ readonly deprecated: false;
3858
+ readonly isAvailable: true;
3859
+ readonly lastUpdated: "2026-03-01";
3860
+ };
3861
+ readonly 'gpt-realtime-2025-08-28': {
3862
+ readonly type: "chat";
3863
+ readonly provider: "openai";
3864
+ readonly displayName: "GPT Realtime (Aug 2025)";
3865
+ readonly subtype: "realtime";
3866
+ readonly description: "Realtime streaming model";
3867
+ readonly pricing: {
3868
+ readonly input: 4;
3869
+ readonly output: 16;
2116
3870
  };
2117
3871
  readonly contextLength: 128000;
2118
3872
  readonly context: {
2119
3873
  readonly input: {
2120
3874
  readonly text: true;
2121
- readonly audio: false;
2122
- readonly image: true;
3875
+ readonly audio: true;
3876
+ readonly image: false;
2123
3877
  readonly video: false;
2124
3878
  };
2125
3879
  readonly output: {
2126
3880
  readonly text: true;
2127
- readonly audio: false;
3881
+ readonly audio: true;
2128
3882
  readonly image: false;
2129
3883
  readonly video: false;
2130
3884
  };
2131
3885
  };
2132
3886
  readonly deprecated: false;
2133
3887
  readonly isAvailable: true;
2134
- readonly lastUpdated: "2026-01-25";
3888
+ readonly lastUpdated: "2026-03-01";
2135
3889
  };
2136
- readonly 'gpt-5.2-2025-12-11': {
3890
+ readonly 'gpt-realtime-mini': {
2137
3891
  readonly type: "chat";
2138
3892
  readonly provider: "openai";
2139
- readonly displayName: "GPT-5.2";
2140
- readonly description: "The best model for coding and agentic tasks across industries";
3893
+ readonly displayName: "GPT Realtime Mini";
3894
+ readonly subtype: "realtime";
3895
+ readonly description: "Smaller OpenAI realtime streaming model";
2141
3896
  readonly pricing: {
2142
- readonly input: 1.75;
2143
- readonly output: 14;
2144
- };
2145
- readonly benchmarks: {
2146
- readonly intelligence: 44.5;
2147
- readonly coding: 38.9;
2148
- readonly math: 98.7;
2149
- readonly mmluPro: 0.87;
2150
- readonly gpqa: 0.84;
2151
- };
2152
- readonly performance: {
2153
- readonly intelligenceScore: 44.5;
2154
- };
2155
- readonly contextLength: 200000;
2156
- readonly context: {
2157
- readonly input: {
2158
- readonly text: true;
2159
- readonly audio: false;
2160
- readonly image: true;
2161
- readonly video: false;
2162
- };
2163
- readonly output: {
2164
- readonly text: true;
2165
- readonly audio: false;
2166
- readonly image: false;
2167
- readonly video: false;
2168
- };
3897
+ readonly input: 0.6;
3898
+ readonly output: 2.4;
2169
3899
  };
2170
3900
  readonly deprecated: false;
2171
3901
  readonly isAvailable: true;
2172
- readonly lastUpdated: "2026-01-25";
3902
+ readonly lastUpdated: "2026-03-01";
2173
3903
  };
2174
- readonly 'gpt-audio-mini-2025-10-06': {
2175
- readonly type: "audio";
3904
+ readonly 'gpt-realtime-mini-2025-10-06': {
3905
+ readonly type: "chat";
2176
3906
  readonly provider: "openai";
2177
- readonly displayName: "GPT Audio Mini";
2178
- readonly description: "A cost-efficient version of GPT Audio";
3907
+ readonly displayName: "GPT Realtime Mini (2025-10-06)";
3908
+ readonly subtype: "realtime";
3909
+ readonly description: "GPT Realtime Mini October 2025 snapshot";
2179
3910
  readonly pricing: {
2180
3911
  readonly input: 0.6;
2181
3912
  readonly output: 2.4;
@@ -2197,13 +3928,14 @@ export declare const MODEL_REGISTRY: {
2197
3928
  };
2198
3929
  readonly deprecated: false;
2199
3930
  readonly isAvailable: true;
2200
- readonly lastUpdated: "2026-01-25";
3931
+ readonly lastUpdated: "2026-03-01";
2201
3932
  };
2202
- readonly 'gpt-audio-mini-2025-12-15': {
2203
- readonly type: "audio";
3933
+ readonly 'gpt-realtime-mini-2025-12-15': {
3934
+ readonly type: "chat";
2204
3935
  readonly provider: "openai";
2205
- readonly displayName: "gpt-audio-mini";
2206
- readonly description: "A cost-efficient version of GPT Audio";
3936
+ readonly displayName: "GPT Realtime Mini (Dec 2025)";
3937
+ readonly subtype: "realtime";
3938
+ readonly description: "Compact realtime streaming model";
2207
3939
  readonly pricing: {
2208
3940
  readonly input: 0.6;
2209
3941
  readonly output: 2.4;
@@ -2225,66 +3957,174 @@ export declare const MODEL_REGISTRY: {
2225
3957
  };
2226
3958
  readonly deprecated: false;
2227
3959
  readonly isAvailable: true;
2228
- readonly lastUpdated: "2026-01-25";
3960
+ readonly lastUpdated: "2026-03-01";
2229
3961
  };
2230
- readonly 'gpt-realtime-2025-08-28': {
2231
- readonly type: "audio";
3962
+ readonly o1: {
3963
+ readonly type: "chat";
2232
3964
  readonly provider: "openai";
2233
- readonly displayName: "GPT Realtime";
2234
- readonly description: "Model capable of realtime text and audio inputs and outputs";
3965
+ readonly displayName: "o1";
3966
+ readonly subtype: "reasoning";
3967
+ readonly description: "OpenAI reasoning model";
3968
+ readonly deprecated: false;
3969
+ readonly isAvailable: true;
3970
+ readonly lastUpdated: "2026-03-01";
3971
+ };
3972
+ readonly 'o1-2024-12-17': {
3973
+ readonly type: "chat";
3974
+ readonly provider: "openai";
3975
+ readonly displayName: "o1 (2024-12-17)";
3976
+ readonly subtype: "reasoning";
3977
+ readonly description: "OpenAI o1 reasoning model, December 2024 snapshot";
3978
+ readonly deprecated: false;
3979
+ readonly isAvailable: true;
3980
+ readonly lastUpdated: "2026-03-01";
3981
+ };
3982
+ readonly 'o1-pro': {
3983
+ readonly type: "chat";
3984
+ readonly provider: "openai";
3985
+ readonly displayName: "o1 Pro";
3986
+ readonly subtype: "reasoning";
3987
+ readonly description: "OpenAI o1 Pro reasoning model with enhanced compute";
3988
+ readonly deprecated: false;
3989
+ readonly isAvailable: true;
3990
+ readonly lastUpdated: "2026-03-01";
3991
+ };
3992
+ readonly 'o1-pro-2025-03-19': {
3993
+ readonly type: "chat";
3994
+ readonly provider: "openai";
3995
+ readonly displayName: "o1 Pro (2025-03-19)";
3996
+ readonly subtype: "reasoning";
3997
+ readonly description: "OpenAI o1 Pro reasoning model, March 2025 snapshot";
3998
+ readonly deprecated: false;
3999
+ readonly isAvailable: true;
4000
+ readonly lastUpdated: "2026-03-01";
4001
+ };
4002
+ readonly o3: {
4003
+ readonly type: "chat";
4004
+ readonly provider: "openai";
4005
+ readonly displayName: "o3";
4006
+ readonly subtype: "reasoning";
4007
+ readonly description: "Advanced reasoning model";
4008
+ readonly deprecated: false;
4009
+ readonly isAvailable: true;
4010
+ readonly lastUpdated: "2026-03-01";
4011
+ };
4012
+ readonly 'o3-2025-04-16': {
4013
+ readonly type: "chat";
4014
+ readonly provider: "openai";
4015
+ readonly displayName: "o3 (2025-04-16)";
4016
+ readonly subtype: "reasoning";
4017
+ readonly description: "OpenAI o3 reasoning model, April 2025 snapshot";
4018
+ readonly deprecated: false;
4019
+ readonly isAvailable: true;
4020
+ readonly lastUpdated: "2026-03-01";
4021
+ };
4022
+ readonly 'o3-mini': {
4023
+ readonly type: "chat";
4024
+ readonly provider: "openai";
4025
+ readonly displayName: "o3 Mini";
4026
+ readonly subtype: "reasoning";
4027
+ readonly description: "OpenAI o3 mini reasoning model";
4028
+ readonly deprecated: false;
4029
+ readonly isAvailable: true;
4030
+ readonly lastUpdated: "2026-03-01";
4031
+ };
4032
+ readonly 'o3-mini-2025-01-31': {
4033
+ readonly type: "chat";
4034
+ readonly provider: "openai";
4035
+ readonly displayName: "o3 Mini (2025-01-31)";
4036
+ readonly subtype: "reasoning";
4037
+ readonly description: "OpenAI o3 mini reasoning model, January 2025 snapshot";
4038
+ readonly deprecated: false;
4039
+ readonly isAvailable: true;
4040
+ readonly lastUpdated: "2026-03-01";
4041
+ };
4042
+ readonly 'o4-mini': {
4043
+ readonly type: "chat";
4044
+ readonly provider: "openai";
4045
+ readonly displayName: "o4-mini";
4046
+ readonly subtype: "reasoning";
4047
+ readonly description: "Compact reasoning model";
2235
4048
  readonly pricing: {
2236
4049
  readonly input: 4;
2237
4050
  readonly output: 16;
2238
4051
  };
2239
- readonly contextLength: 128000;
2240
- readonly context: {
2241
- readonly input: {
2242
- readonly text: true;
2243
- readonly audio: true;
2244
- readonly image: false;
2245
- readonly video: false;
2246
- };
2247
- readonly output: {
2248
- readonly text: true;
2249
- readonly audio: true;
2250
- readonly image: false;
2251
- readonly video: false;
2252
- };
2253
- };
2254
4052
  readonly deprecated: false;
2255
4053
  readonly isAvailable: true;
2256
- readonly lastUpdated: "2026-01-25";
4054
+ readonly lastUpdated: "2026-03-01";
2257
4055
  };
2258
- readonly 'gpt-realtime-mini-2025-12-15': {
2259
- readonly type: "audio";
4056
+ readonly 'o4-mini-2025-04-16': {
4057
+ readonly type: "chat";
2260
4058
  readonly provider: "openai";
2261
- readonly displayName: "GPT Realtime Mini";
2262
- readonly description: "A cost-efficient version of GPT Realtime";
4059
+ readonly displayName: "o4 Mini (2025-04-16)";
4060
+ readonly subtype: "reasoning";
4061
+ readonly description: "OpenAI o4 mini reasoning model, April 2025 snapshot";
2263
4062
  readonly pricing: {
2264
- readonly input: 0.6;
2265
- readonly output: 2.4;
2266
- };
2267
- readonly contextLength: 128000;
2268
- readonly context: {
2269
- readonly input: {
2270
- readonly text: true;
2271
- readonly audio: true;
2272
- readonly image: false;
2273
- readonly video: false;
2274
- };
2275
- readonly output: {
2276
- readonly text: true;
2277
- readonly audio: true;
2278
- readonly image: false;
2279
- readonly video: false;
2280
- };
4063
+ readonly input: 4;
4064
+ readonly output: 16;
2281
4065
  };
2282
4066
  readonly deprecated: false;
2283
4067
  readonly isAvailable: true;
2284
- readonly lastUpdated: "2026-01-25";
4068
+ readonly lastUpdated: "2026-03-01";
4069
+ };
4070
+ readonly 'o4-mini-deep-research': {
4071
+ readonly type: "chat";
4072
+ readonly provider: "openai";
4073
+ readonly displayName: "o4 Mini Deep Research";
4074
+ readonly subtype: "reasoning";
4075
+ readonly description: "OpenAI o4 mini optimized for deep research tasks";
4076
+ readonly deprecated: false;
4077
+ readonly isAvailable: true;
4078
+ readonly lastUpdated: "2026-03-01";
4079
+ };
4080
+ readonly 'o4-mini-deep-research-2025-06-26': {
4081
+ readonly type: "chat";
4082
+ readonly provider: "openai";
4083
+ readonly displayName: "o4 Mini Deep Research (2025-06-26)";
4084
+ readonly subtype: "reasoning";
4085
+ readonly description: "OpenAI o4 mini deep research, June 2025 snapshot";
4086
+ readonly deprecated: false;
4087
+ readonly isAvailable: true;
4088
+ readonly lastUpdated: "2026-03-01";
4089
+ };
4090
+ readonly 'omni-moderation-2024-09-26': {
4091
+ readonly type: "moderation";
4092
+ readonly provider: "openai";
4093
+ readonly displayName: "Omni Moderation (2024-09-26)";
4094
+ readonly description: "OpenAI multimodal moderation, September 2024 snapshot";
4095
+ readonly deprecated: false;
4096
+ readonly isAvailable: true;
4097
+ readonly lastUpdated: "2026-03-01";
4098
+ };
4099
+ readonly 'omni-moderation-latest': {
4100
+ readonly type: "moderation";
4101
+ readonly provider: "openai";
4102
+ readonly displayName: "Omni Moderation Latest";
4103
+ readonly description: "OpenAI multimodal content moderation";
4104
+ readonly deprecated: false;
4105
+ readonly isAvailable: true;
4106
+ readonly lastUpdated: "2026-03-01";
4107
+ };
4108
+ readonly 'sora-2': {
4109
+ readonly type: "video";
4110
+ readonly provider: "openai";
4111
+ readonly displayName: "Sora 2";
4112
+ readonly description: "OpenAI video generation model";
4113
+ readonly deprecated: false;
4114
+ readonly isAvailable: true;
4115
+ readonly lastUpdated: "2026-03-01";
4116
+ };
4117
+ readonly 'sora-2-pro': {
4118
+ readonly type: "video";
4119
+ readonly provider: "openai";
4120
+ readonly displayName: "Sora 2 Pro";
4121
+ readonly description: "OpenAI premium video generation model";
4122
+ readonly deprecated: false;
4123
+ readonly isAvailable: true;
4124
+ readonly lastUpdated: "2026-03-01";
2285
4125
  };
2286
4126
  readonly 'text-embedding-3-large': {
2287
- readonly type: "embedding";
4127
+ readonly type: "embeddings";
2288
4128
  readonly provider: "openai";
2289
4129
  readonly displayName: "text-embedding-3-large";
2290
4130
  readonly description: "Most capable embedding model";
@@ -2308,10 +4148,10 @@ export declare const MODEL_REGISTRY: {
2308
4148
  };
2309
4149
  readonly deprecated: false;
2310
4150
  readonly isAvailable: true;
2311
- readonly lastUpdated: "2026-01-25";
4151
+ readonly lastUpdated: "2026-03-01";
2312
4152
  };
2313
4153
  readonly 'text-embedding-3-small': {
2314
- readonly type: "embedding";
4154
+ readonly type: "embeddings";
2315
4155
  readonly provider: "openai";
2316
4156
  readonly displayName: "text-embedding-3-small";
2317
4157
  readonly description: "Small embedding model";
@@ -2335,10 +4175,10 @@ export declare const MODEL_REGISTRY: {
2335
4175
  };
2336
4176
  readonly deprecated: false;
2337
4177
  readonly isAvailable: true;
2338
- readonly lastUpdated: "2026-01-25";
4178
+ readonly lastUpdated: "2026-03-01";
2339
4179
  };
2340
4180
  readonly 'text-embedding-ada-002': {
2341
- readonly type: "embedding";
4181
+ readonly type: "embeddings";
2342
4182
  readonly provider: "openai";
2343
4183
  readonly displayName: "text-embedding-ada-002";
2344
4184
  readonly description: "Older embedding model";
@@ -2362,7 +4202,7 @@ export declare const MODEL_REGISTRY: {
2362
4202
  };
2363
4203
  readonly deprecated: false;
2364
4204
  readonly isAvailable: true;
2365
- readonly lastUpdated: "2026-01-25";
4205
+ readonly lastUpdated: "2026-03-01";
2366
4206
  };
2367
4207
  readonly 'tts-1': {
2368
4208
  readonly type: "tts";
@@ -2385,7 +4225,16 @@ export declare const MODEL_REGISTRY: {
2385
4225
  };
2386
4226
  readonly deprecated: false;
2387
4227
  readonly isAvailable: true;
2388
- readonly lastUpdated: "2026-01-25";
4228
+ readonly lastUpdated: "2026-03-01";
4229
+ };
4230
+ readonly 'tts-1-1106': {
4231
+ readonly type: "tts";
4232
+ readonly provider: "openai";
4233
+ readonly displayName: "TTS-1 (1106)";
4234
+ readonly description: "Text-to-speech model, November 2023 snapshot";
4235
+ readonly deprecated: false;
4236
+ readonly isAvailable: true;
4237
+ readonly lastUpdated: "2026-03-01";
2389
4238
  };
2390
4239
  readonly 'tts-1-hd': {
2391
4240
  readonly type: "tts";
@@ -2408,7 +4257,16 @@ export declare const MODEL_REGISTRY: {
2408
4257
  };
2409
4258
  readonly deprecated: false;
2410
4259
  readonly isAvailable: true;
2411
- readonly lastUpdated: "2026-01-25";
4260
+ readonly lastUpdated: "2026-03-01";
4261
+ };
4262
+ readonly 'tts-1-hd-1106': {
4263
+ readonly type: "tts";
4264
+ readonly provider: "openai";
4265
+ readonly displayName: "TTS-1 HD (1106)";
4266
+ readonly description: "High-definition text-to-speech, November 2023 snapshot";
4267
+ readonly deprecated: false;
4268
+ readonly isAvailable: true;
4269
+ readonly lastUpdated: "2026-03-01";
2412
4270
  };
2413
4271
  readonly 'whisper-1': {
2414
4272
  readonly type: "audio";
@@ -2431,7 +4289,7 @@ export declare const MODEL_REGISTRY: {
2431
4289
  };
2432
4290
  readonly deprecated: false;
2433
4291
  readonly isAvailable: true;
2434
- readonly lastUpdated: "2026-01-25";
4292
+ readonly lastUpdated: "2026-03-01";
2435
4293
  };
2436
4294
  };
2437
4295
  export type ModelId = keyof typeof MODEL_REGISTRY;