@layer-ai/sdk 2.5.11 → 2.5.12

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: {
@@ -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: {
@@ -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: {
@@ -239,9 +194,6 @@ export declare const MODEL_REGISTRY: {
239
194
  readonly mmluPro: 0.89;
240
195
  readonly gpqa: 0.81;
241
196
  };
242
- readonly performance: {
243
- readonly intelligenceScore: 43;
244
- };
245
197
  readonly contextLength: 200000;
246
198
  readonly context: {
247
199
  readonly input: {
@@ -261,6 +213,39 @@ export declare const MODEL_REGISTRY: {
261
213
  readonly isAvailable: true;
262
214
  readonly lastUpdated: "2026-01-25";
263
215
  };
216
+ readonly 'claude-opus-4-6': {
217
+ readonly type: "chat";
218
+ readonly provider: "anthropic";
219
+ readonly displayName: "Claude Opus 4.6";
220
+ readonly description: "Most intelligent model for building agents and coding";
221
+ readonly pricing: {
222
+ readonly input: 5;
223
+ readonly output: 25;
224
+ };
225
+ readonly benchmarks: {
226
+ readonly intelligence: 93;
227
+ readonly mmluPro: 82;
228
+ readonly gpqa: 91.3;
229
+ };
230
+ readonly contextLength: 200000;
231
+ readonly context: {
232
+ readonly input: {
233
+ readonly text: true;
234
+ readonly audio: false;
235
+ readonly image: true;
236
+ readonly video: false;
237
+ };
238
+ readonly output: {
239
+ readonly text: true;
240
+ readonly audio: false;
241
+ readonly image: false;
242
+ readonly video: false;
243
+ };
244
+ };
245
+ readonly deprecated: false;
246
+ readonly isAvailable: true;
247
+ readonly lastUpdated: "2026-03-01";
248
+ };
264
249
  readonly 'claude-sonnet-4-20250514': {
265
250
  readonly type: "chat";
266
251
  readonly provider: "anthropic";
@@ -277,9 +262,6 @@ export declare const MODEL_REGISTRY: {
277
262
  readonly mmluPro: 0.84;
278
263
  readonly gpqa: 0.68;
279
264
  };
280
- readonly performance: {
281
- readonly intelligenceScore: 33;
282
- };
283
265
  readonly contextLength: 200000;
284
266
  readonly context: {
285
267
  readonly input: {
@@ -315,9 +297,6 @@ export declare const MODEL_REGISTRY: {
315
297
  readonly mmluPro: 0.86;
316
298
  readonly gpqa: 0.73;
317
299
  };
318
- readonly performance: {
319
- readonly intelligenceScore: 37.1;
320
- };
321
300
  readonly contextLength: 200000;
322
301
  readonly context: {
323
302
  readonly input: {
@@ -337,21 +316,59 @@ export declare const MODEL_REGISTRY: {
337
316
  readonly isAvailable: true;
338
317
  readonly lastUpdated: "2026-01-25";
339
318
  };
319
+ readonly 'claude-sonnet-4-6': {
320
+ readonly type: "chat";
321
+ readonly provider: "anthropic";
322
+ readonly displayName: "Claude Sonnet 4.6";
323
+ readonly description: "Optimal balance of intelligence, cost, and speed";
324
+ readonly pricing: {
325
+ readonly input: 3;
326
+ readonly output: 15;
327
+ };
328
+ readonly benchmarks: {
329
+ readonly intelligence: 93;
330
+ readonly mmluPro: 79.1;
331
+ readonly gpqa: 89.9;
332
+ };
333
+ readonly contextLength: 200000;
334
+ readonly context: {
335
+ readonly input: {
336
+ readonly text: true;
337
+ readonly audio: false;
338
+ readonly image: true;
339
+ readonly video: false;
340
+ };
341
+ readonly output: {
342
+ readonly text: true;
343
+ readonly audio: false;
344
+ readonly image: false;
345
+ readonly video: false;
346
+ };
347
+ };
348
+ readonly deprecated: false;
349
+ readonly isAvailable: true;
350
+ readonly lastUpdated: "2026-03-01";
351
+ };
352
+ readonly 'deep-research-pro-preview-12-2025': {
353
+ readonly type: "chat";
354
+ readonly provider: "google";
355
+ readonly displayName: "";
356
+ readonly deprecated: false;
357
+ readonly isAvailable: true;
358
+ readonly lastUpdated: "2026-03-01";
359
+ };
340
360
  readonly 'gemini-2.0-flash': {
341
361
  readonly type: "chat";
342
362
  readonly provider: "google";
343
363
  readonly displayName: "Gemini 2.0 Flash";
344
364
  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
365
  readonly pricing: {
346
- readonly input: 0.1;
347
- readonly output: 0.4;
366
+ readonly input: 0.15;
367
+ readonly output: 0.6;
348
368
  };
349
369
  readonly benchmarks: {
350
370
  readonly intelligence: 12.3;
351
371
  };
352
- readonly performance: {
353
- readonly intelligenceScore: 12.3;
354
- };
355
372
  readonly contextLength: 1048576;
356
373
  readonly context: {
357
374
  readonly input: {
@@ -385,9 +402,6 @@ export declare const MODEL_REGISTRY: {
385
402
  readonly mmluPro: 0.72;
386
403
  readonly gpqa: 0.54;
387
404
  };
388
- readonly performance: {
389
- readonly intelligenceScore: 14.7;
390
- };
391
405
  readonly contextLength: 1048576;
392
406
  readonly context: {
393
407
  readonly input: {
@@ -407,6 +421,14 @@ export declare const MODEL_REGISTRY: {
407
421
  readonly isAvailable: true;
408
422
  readonly lastUpdated: "2026-01-25";
409
423
  };
424
+ readonly 'gemini-2.5-computer-use-preview-10-2025': {
425
+ readonly type: "chat";
426
+ readonly provider: "google";
427
+ readonly displayName: "";
428
+ readonly deprecated: false;
429
+ readonly isAvailable: true;
430
+ readonly lastUpdated: "2026-03-01";
431
+ };
410
432
  readonly 'gemini-2.5-flash': {
411
433
  readonly type: "chat";
412
434
  readonly provider: "google";
@@ -423,9 +445,6 @@ export declare const MODEL_REGISTRY: {
423
445
  readonly mmluPro: 0.84;
424
446
  readonly gpqa: 0.77;
425
447
  };
426
- readonly performance: {
427
- readonly intelligenceScore: 25.5;
428
- };
429
448
  readonly contextLength: 1048576;
430
449
  readonly context: {
431
450
  readonly input: {
@@ -449,7 +468,7 @@ export declare const MODEL_REGISTRY: {
449
468
  readonly type: "chat";
450
469
  readonly provider: "google";
451
470
  readonly displayName: "Gemini 2.5 Flash-Lite";
452
- readonly description: "Our fastest flash model optimized for cost-efficiency and high throughput.";
471
+ readonly description: "Stable version of Gemini 2.5 Flash-Lite, most cost-effective option";
453
472
  readonly pricing: {
454
473
  readonly input: 0.1;
455
474
  readonly output: 0.4;
@@ -461,13 +480,9 @@ export declare const MODEL_REGISTRY: {
461
480
  readonly mmluPro: 0.76;
462
481
  readonly gpqa: 0.63;
463
482
  };
464
- readonly performance: {
465
- readonly intelligenceScore: 17.4;
466
- };
467
483
  readonly contextLength: 1048576;
468
484
  readonly context: {
469
485
  readonly input: {
470
- readonly pdf: true;
471
486
  readonly text: true;
472
487
  readonly audio: true;
473
488
  readonly image: true;
@@ -482,12 +497,21 @@ export declare const MODEL_REGISTRY: {
482
497
  };
483
498
  readonly deprecated: false;
484
499
  readonly isAvailable: true;
485
- readonly lastUpdated: "2026-01-25";
500
+ readonly lastUpdated: "2026-03-01";
501
+ };
502
+ readonly 'gemini-2.5-flash-native-audio-latest': {
503
+ readonly type: "audio";
504
+ readonly provider: "google";
505
+ readonly displayName: "";
506
+ readonly deprecated: false;
507
+ readonly isAvailable: true;
508
+ readonly lastUpdated: "2026-03-01";
486
509
  };
487
510
  readonly 'gemini-2.5-flash-preview-tts': {
488
511
  readonly type: "tts";
489
512
  readonly provider: "google";
490
- readonly displayName: "Gemini 2.5 Flash TTS";
513
+ readonly displayName: "Gemini 2.5 Flash Preview TTS";
514
+ readonly description: "Gemini 2.5 Flash Preview TTS";
491
515
  readonly pricing: {
492
516
  readonly input: 0.5;
493
517
  readonly output: 10;
@@ -509,7 +533,7 @@ export declare const MODEL_REGISTRY: {
509
533
  };
510
534
  readonly deprecated: false;
511
535
  readonly isAvailable: true;
512
- readonly lastUpdated: "2026-01-25";
536
+ readonly lastUpdated: "2026-03-01";
513
537
  };
514
538
  readonly 'gemini-2.5-pro': {
515
539
  readonly type: "chat";
@@ -526,9 +550,6 @@ export declare const MODEL_REGISTRY: {
526
550
  readonly mmluPro: 0.86;
527
551
  readonly gpqa: 0.84;
528
552
  };
529
- readonly performance: {
530
- readonly intelligenceScore: 30.3;
531
- };
532
553
  readonly contextLength: 1048576;
533
554
  readonly context: {
534
555
  readonly input: {
@@ -552,7 +573,8 @@ export declare const MODEL_REGISTRY: {
552
573
  readonly 'gemini-2.5-pro-preview-tts': {
553
574
  readonly type: "tts";
554
575
  readonly provider: "google";
555
- readonly displayName: "Gemini 2.5 Pro TTS";
576
+ readonly displayName: "Gemini 2.5 Pro Preview TTS";
577
+ readonly description: "Gemini 2.5 Pro Preview TTS";
556
578
  readonly pricing: {
557
579
  readonly input: 1;
558
580
  readonly output: 20;
@@ -574,13 +596,13 @@ export declare const MODEL_REGISTRY: {
574
596
  };
575
597
  readonly deprecated: false;
576
598
  readonly isAvailable: true;
577
- readonly lastUpdated: "2026-01-25";
599
+ readonly lastUpdated: "2026-03-01";
578
600
  };
579
601
  readonly 'gemini-3-flash-preview': {
580
602
  readonly type: "chat";
581
603
  readonly provider: "google";
582
604
  readonly displayName: "Gemini 3 Flash Preview";
583
- readonly description: "Our most balanced model built for speed, scale, and frontier intelligence.";
605
+ readonly description: "Gemini 3 Flash Preview with thinking capabilities";
584
606
  readonly pricing: {
585
607
  readonly input: 0.5;
586
608
  readonly output: 3;
@@ -592,13 +614,9 @@ export declare const MODEL_REGISTRY: {
592
614
  readonly mmluPro: 0.88;
593
615
  readonly gpqa: 0.81;
594
616
  };
595
- readonly performance: {
596
- readonly intelligenceScore: 35.1;
597
- };
598
617
  readonly contextLength: 1048576;
599
618
  readonly context: {
600
619
  readonly input: {
601
- readonly pdf: true;
602
620
  readonly text: true;
603
621
  readonly audio: true;
604
622
  readonly image: true;
@@ -613,31 +631,56 @@ export declare const MODEL_REGISTRY: {
613
631
  };
614
632
  readonly deprecated: false;
615
633
  readonly isAvailable: true;
616
- readonly lastUpdated: "2026-01-25";
634
+ readonly lastUpdated: "2026-03-01";
617
635
  };
618
636
  readonly 'gemini-3-pro-preview': {
619
637
  readonly type: "chat";
620
638
  readonly provider: "google";
621
639
  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.";
640
+ readonly description: "Gemini 3 Pro Preview with thinking capabilities";
623
641
  readonly pricing: {
624
642
  readonly input: 2;
625
643
  readonly output: 12;
626
644
  };
627
645
  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;
646
+ readonly intelligence: 95;
647
+ readonly mmluPro: 85;
648
+ readonly gpqa: 91.9;
649
+ };
650
+ readonly contextLength: 1048576;
651
+ readonly context: {
652
+ readonly input: {
653
+ readonly text: true;
654
+ readonly audio: true;
655
+ readonly image: true;
656
+ readonly video: true;
657
+ };
658
+ readonly output: {
659
+ readonly text: true;
660
+ readonly audio: false;
661
+ readonly image: true;
662
+ readonly video: false;
663
+ };
664
+ };
665
+ readonly deprecated: false;
666
+ readonly isAvailable: true;
667
+ readonly lastUpdated: "2026-03-01";
668
+ };
669
+ readonly 'gemini-3.1-pro-preview': {
670
+ readonly type: "chat";
671
+ readonly provider: "google";
672
+ readonly displayName: "Gemini 3.1 Pro Preview";
673
+ readonly description: "Gemini 3.1 Pro Preview with thinking capabilities";
674
+ readonly pricing: {
675
+ readonly input: 2;
676
+ readonly output: 12;
633
677
  };
634
- readonly performance: {
635
- readonly intelligenceScore: 41.1;
678
+ readonly benchmarks: {
679
+ readonly intelligence: 95;
636
680
  };
637
681
  readonly contextLength: 1048576;
638
682
  readonly context: {
639
683
  readonly input: {
640
- readonly pdf: true;
641
684
  readonly text: true;
642
685
  readonly audio: true;
643
686
  readonly image: true;
@@ -646,13 +689,13 @@ export declare const MODEL_REGISTRY: {
646
689
  readonly output: {
647
690
  readonly text: true;
648
691
  readonly audio: false;
649
- readonly image: false;
692
+ readonly image: true;
650
693
  readonly video: false;
651
694
  };
652
695
  };
653
696
  readonly deprecated: false;
654
697
  readonly isAvailable: true;
655
- readonly lastUpdated: "2026-01-25";
698
+ readonly lastUpdated: "2026-03-01";
656
699
  };
657
700
  readonly 'gemini-robotics-er-1.5-preview': {
658
701
  readonly type: "chat";
@@ -683,8 +726,8 @@ export declare const MODEL_REGISTRY: {
683
726
  readonly 'gemma-3-27b-it': {
684
727
  readonly type: "chat";
685
728
  readonly provider: "google";
686
- readonly displayName: "Gemma 3 27B IT";
687
- readonly description: "Large instruction-tuned Gemma model";
729
+ readonly displayName: "Gemma 3 27B";
730
+ readonly description: "Google Gemma 3 27B instruction-tuned model";
688
731
  readonly pricing: {
689
732
  readonly input: 0;
690
733
  readonly output: 0;
@@ -694,9 +737,7 @@ export declare const MODEL_REGISTRY: {
694
737
  readonly mmluPro: 0.48;
695
738
  readonly gpqa: 0.28;
696
739
  };
697
- readonly performance: {
698
- readonly intelligenceScore: 10.1;
699
- };
740
+ readonly contextLength: 131072;
700
741
  readonly context: {
701
742
  readonly input: {
702
743
  readonly text: true;
@@ -713,13 +754,13 @@ export declare const MODEL_REGISTRY: {
713
754
  };
714
755
  readonly deprecated: false;
715
756
  readonly isAvailable: true;
716
- readonly lastUpdated: "2026-01-25";
757
+ readonly lastUpdated: "2026-03-01";
717
758
  };
718
759
  readonly 'imagen-4.0-fast-generate-001': {
719
760
  readonly type: "image";
720
761
  readonly provider: "google";
721
762
  readonly displayName: "Imagen 4.0 Fast";
722
- readonly imagePricing: 0.02;
763
+ readonly unitPricing: 0.02;
723
764
  readonly context: {
724
765
  readonly input: {
725
766
  readonly text: true;
@@ -742,7 +783,7 @@ export declare const MODEL_REGISTRY: {
742
783
  readonly type: "image";
743
784
  readonly provider: "google";
744
785
  readonly displayName: "Imagen 4.0 Ultra";
745
- readonly imagePricing: 0.06;
786
+ readonly unitPricing: 0.06;
746
787
  readonly context: {
747
788
  readonly input: {
748
789
  readonly text: true;
@@ -762,7 +803,7 @@ export declare const MODEL_REGISTRY: {
762
803
  readonly lastUpdated: "2026-01-25";
763
804
  };
764
805
  readonly 'text-embedding-004': {
765
- readonly type: "embedding";
806
+ readonly type: "embeddings";
766
807
  readonly provider: "google";
767
808
  readonly displayName: "Text Embedding 004";
768
809
  readonly pricing: {
@@ -833,8 +874,12 @@ export declare const MODEL_REGISTRY: {
833
874
  readonly 'codestral-2412': {
834
875
  readonly type: "chat";
835
876
  readonly provider: "mistral";
836
- readonly displayName: "Codestral";
837
- readonly description: "Our cutting-edge language model for code completion released end of July 2025.";
877
+ readonly displayName: "Codestral (Dec 2024)";
878
+ readonly description: "Code generation model released December 2024";
879
+ readonly pricing: {
880
+ readonly input: 0.3;
881
+ readonly output: 0.9;
882
+ };
838
883
  readonly benchmarks: {
839
884
  readonly intelligence: 68.5;
840
885
  readonly coding: 53.5;
@@ -842,9 +887,7 @@ export declare const MODEL_REGISTRY: {
842
887
  readonly mmluPro: 0.87;
843
888
  readonly gpqa: 0.84;
844
889
  };
845
- readonly performance: {
846
- readonly intelligenceScore: 68.5;
847
- };
890
+ readonly contextLength: 256000;
848
891
  readonly context: {
849
892
  readonly input: {
850
893
  readonly text: true;
@@ -861,13 +904,18 @@ export declare const MODEL_REGISTRY: {
861
904
  };
862
905
  readonly deprecated: false;
863
906
  readonly isAvailable: true;
864
- readonly lastUpdated: "2026-01-25";
907
+ readonly lastUpdated: "2026-03-01";
865
908
  };
866
909
  readonly 'codestral-2508': {
867
910
  readonly type: "chat";
868
911
  readonly provider: "mistral";
869
- readonly displayName: "Codestral";
870
- readonly description: "Our cutting-edge language model for code completion released end of July 2025.";
912
+ readonly displayName: "Codestral (Aug 2025)";
913
+ readonly description: "Cutting-edge language model for coding released August 2025";
914
+ readonly pricing: {
915
+ readonly input: 0.3;
916
+ readonly output: 0.9;
917
+ };
918
+ readonly contextLength: 256000;
871
919
  readonly context: {
872
920
  readonly input: {
873
921
  readonly text: true;
@@ -884,10 +932,10 @@ export declare const MODEL_REGISTRY: {
884
932
  };
885
933
  readonly deprecated: false;
886
934
  readonly isAvailable: true;
887
- readonly lastUpdated: "2026-01-25";
935
+ readonly lastUpdated: "2026-03-01";
888
936
  };
889
937
  readonly 'codestral-embed-2505': {
890
- readonly type: "embedding";
938
+ readonly type: "embeddings";
891
939
  readonly provider: "mistral";
892
940
  readonly displayName: "Codestral Embed";
893
941
  readonly description: "Our state-of-the-art semantic for extracting representation of code extracts";
@@ -916,8 +964,12 @@ export declare const MODEL_REGISTRY: {
916
964
  readonly 'devstral-2512': {
917
965
  readonly type: "chat";
918
966
  readonly provider: "mistral";
919
- readonly displayName: "Devstral 2";
920
- readonly description: "Our frontier code agents model for solving software engineering tasks.";
967
+ readonly displayName: "Devstral 2 (Dec 2025)";
968
+ readonly description: "Latest Devstral code-agentic model";
969
+ readonly pricing: {
970
+ readonly input: 0.4;
971
+ readonly output: 2;
972
+ };
921
973
  readonly benchmarks: {
922
974
  readonly intelligence: 18.6;
923
975
  readonly coding: 15.9;
@@ -925,9 +977,7 @@ export declare const MODEL_REGISTRY: {
925
977
  readonly mmluPro: 0.71;
926
978
  readonly gpqa: 0.49;
927
979
  };
928
- readonly performance: {
929
- readonly intelligenceScore: 18.6;
930
- };
980
+ readonly contextLength: 262144;
931
981
  readonly context: {
932
982
  readonly input: {
933
983
  readonly text: true;
@@ -944,13 +994,17 @@ export declare const MODEL_REGISTRY: {
944
994
  };
945
995
  readonly deprecated: false;
946
996
  readonly isAvailable: true;
947
- readonly lastUpdated: "2026-01-25";
997
+ readonly lastUpdated: "2026-03-01";
948
998
  };
949
999
  readonly 'magistral-medium-2509': {
950
1000
  readonly type: "chat";
951
1001
  readonly provider: "mistral";
952
- readonly displayName: "Magistral Medium 1.2";
953
- readonly description: "Our frontier-class multimodal reasoning model.";
1002
+ readonly displayName: "Magistral Medium";
1003
+ readonly description: "Frontier-class reasoning model released September 2025";
1004
+ readonly pricing: {
1005
+ readonly input: 2;
1006
+ readonly output: 6;
1007
+ };
954
1008
  readonly benchmarks: {
955
1009
  readonly intelligence: 18.7;
956
1010
  readonly coding: 16;
@@ -958,9 +1012,7 @@ export declare const MODEL_REGISTRY: {
958
1012
  readonly mmluPro: 0.75;
959
1013
  readonly gpqa: 0.68;
960
1014
  };
961
- readonly performance: {
962
- readonly intelligenceScore: 18.7;
963
- };
1015
+ readonly contextLength: 131072;
964
1016
  readonly context: {
965
1017
  readonly input: {
966
1018
  readonly text: true;
@@ -977,13 +1029,17 @@ export declare const MODEL_REGISTRY: {
977
1029
  };
978
1030
  readonly deprecated: false;
979
1031
  readonly isAvailable: true;
980
- readonly lastUpdated: "2026-01-25";
1032
+ readonly lastUpdated: "2026-03-01";
981
1033
  };
982
1034
  readonly 'magistral-small-2509': {
983
1035
  readonly type: "chat";
984
1036
  readonly provider: "mistral";
985
- readonly displayName: "Magistral Small 1.2";
986
- readonly description: "Our small multimodal reasoning model.";
1037
+ readonly displayName: "Magistral Small";
1038
+ readonly description: "Efficient reasoning model released September 2025";
1039
+ readonly pricing: {
1040
+ readonly input: 0.5;
1041
+ readonly output: 1.5;
1042
+ };
987
1043
  readonly benchmarks: {
988
1044
  readonly intelligence: 16.8;
989
1045
  readonly coding: 11.1;
@@ -991,9 +1047,7 @@ export declare const MODEL_REGISTRY: {
991
1047
  readonly mmluPro: 0.75;
992
1048
  readonly gpqa: 0.64;
993
1049
  };
994
- readonly performance: {
995
- readonly intelligenceScore: 16.8;
996
- };
1050
+ readonly contextLength: 131072;
997
1051
  readonly context: {
998
1052
  readonly input: {
999
1053
  readonly text: true;
@@ -1010,13 +1064,17 @@ export declare const MODEL_REGISTRY: {
1010
1064
  };
1011
1065
  readonly deprecated: false;
1012
1066
  readonly isAvailable: true;
1013
- readonly lastUpdated: "2026-01-25";
1067
+ readonly lastUpdated: "2026-03-01";
1014
1068
  };
1015
1069
  readonly 'ministral-14b-2512': {
1016
1070
  readonly type: "chat";
1017
1071
  readonly provider: "mistral";
1018
- readonly displayName: "Ministral 3 14B";
1019
- readonly description: "A powerful model offering best-in-class text and vision capabilities.";
1072
+ readonly displayName: "Ministral 14B";
1073
+ readonly description: "Ministral 3 (Tinystral) 14B Instruct";
1074
+ readonly pricing: {
1075
+ readonly input: 0.2;
1076
+ readonly output: 0.2;
1077
+ };
1020
1078
  readonly benchmarks: {
1021
1079
  readonly intelligence: 16;
1022
1080
  readonly coding: 10.9;
@@ -1024,9 +1082,7 @@ export declare const MODEL_REGISTRY: {
1024
1082
  readonly mmluPro: 0.69;
1025
1083
  readonly gpqa: 0.57;
1026
1084
  };
1027
- readonly performance: {
1028
- readonly intelligenceScore: 16;
1029
- };
1085
+ readonly contextLength: 262144;
1030
1086
  readonly context: {
1031
1087
  readonly input: {
1032
1088
  readonly text: true;
@@ -1043,13 +1099,17 @@ export declare const MODEL_REGISTRY: {
1043
1099
  };
1044
1100
  readonly deprecated: false;
1045
1101
  readonly isAvailable: true;
1046
- readonly lastUpdated: "2026-01-25";
1102
+ readonly lastUpdated: "2026-03-01";
1047
1103
  };
1048
1104
  readonly 'ministral-3b-2512': {
1049
1105
  readonly type: "chat";
1050
1106
  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.";
1107
+ readonly displayName: "Ministral 3B";
1108
+ readonly description: "Ministral 3 (Tinystral) 3B Instruct";
1109
+ readonly pricing: {
1110
+ readonly input: 0.1;
1111
+ readonly output: 0.1;
1112
+ };
1053
1113
  readonly benchmarks: {
1054
1114
  readonly intelligence: 11.2;
1055
1115
  readonly coding: 4.8;
@@ -1057,9 +1117,7 @@ export declare const MODEL_REGISTRY: {
1057
1117
  readonly mmluPro: 0.52;
1058
1118
  readonly gpqa: 0.36;
1059
1119
  };
1060
- readonly performance: {
1061
- readonly intelligenceScore: 11.2;
1062
- };
1120
+ readonly contextLength: 131072;
1063
1121
  readonly context: {
1064
1122
  readonly input: {
1065
1123
  readonly text: true;
@@ -1076,13 +1134,17 @@ export declare const MODEL_REGISTRY: {
1076
1134
  };
1077
1135
  readonly deprecated: false;
1078
1136
  readonly isAvailable: true;
1079
- readonly lastUpdated: "2026-01-25";
1137
+ readonly lastUpdated: "2026-03-01";
1080
1138
  };
1081
1139
  readonly 'ministral-8b-2512': {
1082
1140
  readonly type: "chat";
1083
1141
  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.";
1142
+ readonly displayName: "Ministral 8B";
1143
+ readonly description: "Ministral 3 (Tinystral) 8B Instruct";
1144
+ readonly pricing: {
1145
+ readonly input: 0.15;
1146
+ readonly output: 0.15;
1147
+ };
1086
1148
  readonly benchmarks: {
1087
1149
  readonly intelligence: 14.6;
1088
1150
  readonly coding: 10;
@@ -1090,9 +1152,7 @@ export declare const MODEL_REGISTRY: {
1090
1152
  readonly mmluPro: 0.64;
1091
1153
  readonly gpqa: 0.47;
1092
1154
  };
1093
- readonly performance: {
1094
- readonly intelligenceScore: 14.6;
1095
- };
1155
+ readonly contextLength: 262144;
1096
1156
  readonly context: {
1097
1157
  readonly input: {
1098
1158
  readonly text: true;
@@ -1109,10 +1169,10 @@ export declare const MODEL_REGISTRY: {
1109
1169
  };
1110
1170
  readonly deprecated: false;
1111
1171
  readonly isAvailable: true;
1112
- readonly lastUpdated: "2026-01-25";
1172
+ readonly lastUpdated: "2026-03-01";
1113
1173
  };
1114
1174
  readonly 'mistral-embed': {
1115
- readonly type: "embedding";
1175
+ readonly type: "embeddings";
1116
1176
  readonly provider: "mistral";
1117
1177
  readonly displayName: "Mistral Embed";
1118
1178
  readonly description: "Our state-of-the-art semantic for extracting representation of code extracts";
@@ -1138,11 +1198,76 @@ export declare const MODEL_REGISTRY: {
1138
1198
  readonly isAvailable: true;
1139
1199
  readonly lastUpdated: "2026-01-25";
1140
1200
  };
1201
+ readonly 'mistral-large-2512': {
1202
+ readonly type: "chat";
1203
+ readonly provider: "mistral";
1204
+ readonly displayName: "Mistral Large 3 (Dec 2025)";
1205
+ readonly description: "Latest Mistral Large model released December 2025";
1206
+ readonly pricing: {
1207
+ readonly input: 0.5;
1208
+ readonly output: 1.5;
1209
+ };
1210
+ readonly benchmarks: {
1211
+ readonly intelligence: 2.6;
1212
+ readonly mmluPro: 0.39;
1213
+ readonly gpqa: 0.29;
1214
+ };
1215
+ readonly contextLength: 262144;
1216
+ readonly context: {
1217
+ readonly input: {
1218
+ readonly text: true;
1219
+ readonly audio: false;
1220
+ readonly image: true;
1221
+ readonly video: false;
1222
+ };
1223
+ readonly output: {
1224
+ readonly text: true;
1225
+ readonly audio: false;
1226
+ readonly image: false;
1227
+ readonly video: false;
1228
+ };
1229
+ };
1230
+ readonly deprecated: false;
1231
+ readonly isAvailable: true;
1232
+ readonly lastUpdated: "2026-03-01";
1233
+ };
1234
+ readonly 'mistral-medium-2505': {
1235
+ readonly type: "chat";
1236
+ readonly provider: "mistral";
1237
+ readonly displayName: "Mistral Medium 3";
1238
+ readonly description: "Frontier-class multimodal model released May 2025";
1239
+ readonly pricing: {
1240
+ readonly input: 0.4;
1241
+ readonly output: 2;
1242
+ };
1243
+ readonly contextLength: 131072;
1244
+ readonly context: {
1245
+ readonly input: {
1246
+ readonly text: true;
1247
+ readonly audio: false;
1248
+ readonly image: true;
1249
+ readonly video: false;
1250
+ };
1251
+ readonly output: {
1252
+ readonly text: true;
1253
+ readonly audio: false;
1254
+ readonly image: false;
1255
+ readonly video: false;
1256
+ };
1257
+ };
1258
+ readonly deprecated: false;
1259
+ readonly isAvailable: true;
1260
+ readonly lastUpdated: "2026-03-01";
1261
+ };
1141
1262
  readonly 'mistral-medium-2508': {
1142
1263
  readonly type: "chat";
1143
1264
  readonly provider: "mistral";
1144
1265
  readonly displayName: "Mistral Medium 3.1";
1145
- readonly description: "Our frontier-class multimodal model released August 2025.";
1266
+ readonly description: "Update on Mistral Medium 3 with improved capabilities";
1267
+ readonly pricing: {
1268
+ readonly input: 0.4;
1269
+ readonly output: 2;
1270
+ };
1146
1271
  readonly benchmarks: {
1147
1272
  readonly intelligence: 17.6;
1148
1273
  readonly coding: 13.6;
@@ -1150,9 +1275,7 @@ export declare const MODEL_REGISTRY: {
1150
1275
  readonly mmluPro: 0.76;
1151
1276
  readonly gpqa: 0.58;
1152
1277
  };
1153
- readonly performance: {
1154
- readonly intelligenceScore: 17.6;
1155
- };
1278
+ readonly contextLength: 131072;
1156
1279
  readonly context: {
1157
1280
  readonly input: {
1158
1281
  readonly text: true;
@@ -1169,13 +1292,33 @@ export declare const MODEL_REGISTRY: {
1169
1292
  };
1170
1293
  readonly deprecated: false;
1171
1294
  readonly isAvailable: true;
1172
- readonly lastUpdated: "2026-01-25";
1295
+ readonly lastUpdated: "2026-03-01";
1296
+ };
1297
+ readonly 'mistral-moderation-latest': {
1298
+ readonly type: "moderation";
1299
+ readonly provider: "mistral";
1300
+ readonly displayName: "";
1301
+ readonly deprecated: false;
1302
+ readonly isAvailable: true;
1303
+ readonly lastUpdated: "2026-03-01";
1304
+ };
1305
+ readonly 'mistral-ocr-latest': {
1306
+ readonly type: "ocr";
1307
+ readonly provider: "mistral";
1308
+ readonly displayName: "";
1309
+ readonly deprecated: false;
1310
+ readonly isAvailable: true;
1311
+ readonly lastUpdated: "2026-03-01";
1173
1312
  };
1174
1313
  readonly 'mistral-small-2501': {
1175
1314
  readonly type: "chat";
1176
1315
  readonly provider: "mistral";
1177
- readonly displayName: "Mistral Small 3.2";
1178
- readonly description: "An update to our previous small model, released June 2025.";
1316
+ readonly displayName: "Mistral Small 3";
1317
+ readonly description: "Enterprise-grade small model released January 2025";
1318
+ readonly pricing: {
1319
+ readonly input: 0.05;
1320
+ readonly output: 0.08;
1321
+ };
1179
1322
  readonly benchmarks: {
1180
1323
  readonly intelligence: 14;
1181
1324
  readonly coding: 13.9;
@@ -1183,9 +1326,7 @@ export declare const MODEL_REGISTRY: {
1183
1326
  readonly mmluPro: 0.66;
1184
1327
  readonly gpqa: 0.45;
1185
1328
  };
1186
- readonly performance: {
1187
- readonly intelligenceScore: 14;
1188
- };
1329
+ readonly contextLength: 131072;
1189
1330
  readonly context: {
1190
1331
  readonly input: {
1191
1332
  readonly text: true;
@@ -1202,13 +1343,17 @@ export declare const MODEL_REGISTRY: {
1202
1343
  };
1203
1344
  readonly deprecated: false;
1204
1345
  readonly isAvailable: true;
1205
- readonly lastUpdated: "2026-01-25";
1346
+ readonly lastUpdated: "2026-03-01";
1206
1347
  };
1207
1348
  readonly 'mistral-small-2506': {
1208
1349
  readonly type: "chat";
1209
1350
  readonly provider: "mistral";
1210
1351
  readonly displayName: "Mistral Small 3.2";
1211
- readonly description: "An update to our previous small model, released June 2025.";
1352
+ readonly description: "Latest enterprise-grade small model released June 2025";
1353
+ readonly pricing: {
1354
+ readonly input: 0.06;
1355
+ readonly output: 0.18;
1356
+ };
1212
1357
  readonly benchmarks: {
1213
1358
  readonly intelligence: 24.9;
1214
1359
  readonly coding: 18.3;
@@ -1216,14 +1361,12 @@ export declare const MODEL_REGISTRY: {
1216
1361
  readonly mmluPro: 0.66;
1217
1362
  readonly gpqa: 0.45;
1218
1363
  };
1219
- readonly performance: {
1220
- readonly intelligenceScore: 24.9;
1221
- };
1364
+ readonly contextLength: 131072;
1222
1365
  readonly context: {
1223
1366
  readonly input: {
1224
1367
  readonly text: true;
1225
1368
  readonly audio: false;
1226
- readonly image: false;
1369
+ readonly image: true;
1227
1370
  readonly video: false;
1228
1371
  };
1229
1372
  readonly output: {
@@ -1235,13 +1378,18 @@ export declare const MODEL_REGISTRY: {
1235
1378
  };
1236
1379
  readonly deprecated: false;
1237
1380
  readonly isAvailable: true;
1238
- readonly lastUpdated: "2026-01-25";
1381
+ readonly lastUpdated: "2026-03-01";
1239
1382
  };
1240
1383
  readonly 'mistral-tiny-2407': {
1241
1384
  readonly type: "chat";
1242
1385
  readonly provider: "mistral";
1243
- readonly displayName: "Mistral Tiny";
1244
- readonly description: "Legacy small model from July 2024.";
1386
+ readonly displayName: "Mistral Tiny (Nemo)";
1387
+ readonly description: "Alias for Mistral Nemo";
1388
+ readonly pricing: {
1389
+ readonly input: 0.02;
1390
+ readonly output: 0.04;
1391
+ };
1392
+ readonly contextLength: 131072;
1245
1393
  readonly context: {
1246
1394
  readonly input: {
1247
1395
  readonly text: true;
@@ -1258,21 +1406,23 @@ export declare const MODEL_REGISTRY: {
1258
1406
  };
1259
1407
  readonly deprecated: false;
1260
1408
  readonly isAvailable: true;
1261
- readonly lastUpdated: "2026-01-25";
1409
+ readonly lastUpdated: "2026-03-01";
1262
1410
  };
1263
1411
  readonly 'open-mistral-nemo-2407': {
1264
1412
  readonly type: "chat";
1265
1413
  readonly provider: "mistral";
1266
- readonly displayName: "Mistral Nemo 12B";
1267
- readonly description: "Our best multilingual open source model released July 2024.";
1414
+ readonly displayName: "Mistral Nemo";
1415
+ readonly description: "Best multilingual open source model released July 2024";
1416
+ readonly pricing: {
1417
+ readonly input: 0.02;
1418
+ readonly output: 0.04;
1419
+ };
1268
1420
  readonly benchmarks: {
1269
1421
  readonly intelligence: 7.4;
1270
1422
  readonly mmluPro: 0.25;
1271
1423
  readonly gpqa: 0.18;
1272
1424
  };
1273
- readonly performance: {
1274
- readonly intelligenceScore: 7.4;
1275
- };
1425
+ readonly contextLength: 131072;
1276
1426
  readonly context: {
1277
1427
  readonly input: {
1278
1428
  readonly text: true;
@@ -1289,13 +1439,18 @@ export declare const MODEL_REGISTRY: {
1289
1439
  };
1290
1440
  readonly deprecated: false;
1291
1441
  readonly isAvailable: true;
1292
- readonly lastUpdated: "2026-01-25";
1442
+ readonly lastUpdated: "2026-03-01";
1293
1443
  };
1294
1444
  readonly 'pixtral-12b-2409': {
1295
1445
  readonly type: "chat";
1296
1446
  readonly provider: "mistral";
1297
1447
  readonly displayName: "Pixtral 12B";
1298
- readonly description: "Multimodal model with vision capabilities.";
1448
+ readonly description: "Multimodal model with vision capabilities";
1449
+ readonly pricing: {
1450
+ readonly input: 0.15;
1451
+ readonly output: 0.15;
1452
+ };
1453
+ readonly contextLength: 131072;
1299
1454
  readonly context: {
1300
1455
  readonly input: {
1301
1456
  readonly text: true;
@@ -1312,22 +1467,24 @@ export declare const MODEL_REGISTRY: {
1312
1467
  };
1313
1468
  readonly deprecated: false;
1314
1469
  readonly isAvailable: true;
1315
- readonly lastUpdated: "2026-01-25";
1470
+ readonly lastUpdated: "2026-03-01";
1316
1471
  };
1317
1472
  readonly 'pixtral-large-2411': {
1318
1473
  readonly type: "chat";
1319
1474
  readonly provider: "mistral";
1320
1475
  readonly displayName: "Pixtral Large";
1321
- readonly description: "Our first frontier-class multimodal model released November 2024.";
1476
+ readonly description: "Large multimodal model with vision capabilities";
1477
+ readonly pricing: {
1478
+ readonly input: 2;
1479
+ readonly output: 6;
1480
+ };
1322
1481
  readonly benchmarks: {
1323
1482
  readonly intelligence: 14;
1324
1483
  readonly math: 2.3;
1325
1484
  readonly mmluPro: 0.7;
1326
1485
  readonly gpqa: 0.51;
1327
1486
  };
1328
- readonly performance: {
1329
- readonly intelligenceScore: 14;
1330
- };
1487
+ readonly contextLength: 131072;
1331
1488
  readonly context: {
1332
1489
  readonly input: {
1333
1490
  readonly text: true;
@@ -1344,7 +1501,7 @@ export declare const MODEL_REGISTRY: {
1344
1501
  };
1345
1502
  readonly deprecated: false;
1346
1503
  readonly isAvailable: true;
1347
- readonly lastUpdated: "2026-01-25";
1504
+ readonly lastUpdated: "2026-03-01";
1348
1505
  };
1349
1506
  readonly 'voxtral-mini-latest': {
1350
1507
  readonly type: "chat";
@@ -1373,11 +1530,24 @@ export declare const MODEL_REGISTRY: {
1373
1530
  readonly isAvailable: true;
1374
1531
  readonly lastUpdated: "2026-01-25";
1375
1532
  };
1533
+ readonly 'voxtral-mini-transcribe-2507': {
1534
+ readonly type: "stt";
1535
+ readonly provider: "mistral";
1536
+ readonly displayName: "";
1537
+ readonly deprecated: false;
1538
+ readonly isAvailable: true;
1539
+ readonly lastUpdated: "2026-03-01";
1540
+ };
1376
1541
  readonly 'voxtral-small-2507': {
1377
- readonly type: "chat";
1542
+ readonly type: "audio";
1378
1543
  readonly provider: "mistral";
1379
1544
  readonly displayName: "Voxtral Small";
1380
- readonly description: "Our first model with audio input capabilities for instruct use cases.";
1545
+ readonly description: "Small audio understanding model released July 2025";
1546
+ readonly pricing: {
1547
+ readonly input: 0.1;
1548
+ readonly output: 0.3;
1549
+ };
1550
+ readonly contextLength: 32768;
1381
1551
  readonly context: {
1382
1552
  readonly input: {
1383
1553
  readonly text: true;
@@ -1394,14 +1564,14 @@ export declare const MODEL_REGISTRY: {
1394
1564
  };
1395
1565
  readonly deprecated: false;
1396
1566
  readonly isAvailable: true;
1397
- readonly lastUpdated: "2026-01-25";
1567
+ readonly lastUpdated: "2026-03-01";
1398
1568
  };
1399
1569
  readonly 'dall-e-3': {
1400
1570
  readonly type: "image";
1401
1571
  readonly provider: "openai";
1402
1572
  readonly displayName: "DALL·E 3";
1403
1573
  readonly description: "Previous generation image generation model";
1404
- readonly imagePricing: {
1574
+ readonly unitPricing: {
1405
1575
  readonly 'hd-1024x1024': 0.08;
1406
1576
  readonly 'hd-1024x1792': 0.12;
1407
1577
  readonly 'hd-1792x1024': 0.12;
@@ -1496,9 +1666,6 @@ export declare const MODEL_REGISTRY: {
1496
1666
  readonly intelligence: 12.8;
1497
1667
  readonly coding: 13.1;
1498
1668
  };
1499
- readonly performance: {
1500
- readonly intelligenceScore: 12.8;
1501
- };
1502
1669
  readonly contextLength: 128000;
1503
1670
  readonly context: {
1504
1671
  readonly input: {
@@ -1524,8 +1691,8 @@ export declare const MODEL_REGISTRY: {
1524
1691
  readonly displayName: "GPT-4.1";
1525
1692
  readonly description: "Smartest non-reasoning model";
1526
1693
  readonly pricing: {
1527
- readonly input: 2;
1528
- readonly output: 8;
1694
+ readonly input: 3;
1695
+ readonly output: 12;
1529
1696
  };
1530
1697
  readonly benchmarks: {
1531
1698
  readonly intelligence: 22.4;
@@ -1534,9 +1701,6 @@ export declare const MODEL_REGISTRY: {
1534
1701
  readonly mmluPro: 0.78;
1535
1702
  readonly gpqa: 0.66;
1536
1703
  };
1537
- readonly performance: {
1538
- readonly intelligenceScore: 22.4;
1539
- };
1540
1704
  readonly contextLength: 128000;
1541
1705
  readonly context: {
1542
1706
  readonly input: {
@@ -1562,8 +1726,8 @@ export declare const MODEL_REGISTRY: {
1562
1726
  readonly displayName: "GPT-4.1 nano";
1563
1727
  readonly description: "Fastest, most cost-efficient version of GPT-4.1";
1564
1728
  readonly pricing: {
1565
- readonly input: 0.1;
1566
- readonly output: 0.4;
1729
+ readonly input: 0.2;
1730
+ readonly output: 0.8;
1567
1731
  };
1568
1732
  readonly benchmarks: {
1569
1733
  readonly intelligence: 12.9;
@@ -1572,9 +1736,6 @@ export declare const MODEL_REGISTRY: {
1572
1736
  readonly mmluPro: 0.66;
1573
1737
  readonly gpqa: 0.51;
1574
1738
  };
1575
- readonly performance: {
1576
- readonly intelligenceScore: 12.9;
1577
- };
1578
1739
  readonly contextLength: 128000;
1579
1740
  readonly context: {
1580
1741
  readonly input: {
@@ -1609,9 +1770,6 @@ export declare const MODEL_REGISTRY: {
1609
1770
  readonly mmluPro: 0.8;
1610
1771
  readonly gpqa: 0.66;
1611
1772
  };
1612
- readonly performance: {
1613
- readonly intelligenceScore: 18.6;
1614
- };
1615
1773
  readonly contextLength: 128000;
1616
1774
  readonly context: {
1617
1775
  readonly input: {
@@ -1742,10 +1900,10 @@ export declare const MODEL_REGISTRY: {
1742
1900
  readonly lastUpdated: "2026-01-25";
1743
1901
  };
1744
1902
  readonly 'gpt-4o-mini-transcribe': {
1745
- readonly type: "audio";
1903
+ readonly type: "stt";
1746
1904
  readonly provider: "openai";
1747
- readonly displayName: "GPT-4o mini Transcribe";
1748
- readonly description: "Speech-to-text model powered by GPT-4o mini";
1905
+ readonly displayName: "GPT-4o Mini Transcribe";
1906
+ readonly description: "Compact speech-to-text model";
1749
1907
  readonly pricing: {
1750
1908
  readonly input: 1.25;
1751
1909
  readonly output: 5;
@@ -1766,7 +1924,7 @@ export declare const MODEL_REGISTRY: {
1766
1924
  };
1767
1925
  readonly deprecated: false;
1768
1926
  readonly isAvailable: true;
1769
- readonly lastUpdated: "2026-01-25";
1927
+ readonly lastUpdated: "2026-03-01";
1770
1928
  };
1771
1929
  readonly 'gpt-4o-mini-transcribe-2025-12-15': {
1772
1930
  readonly type: "audio";
@@ -1932,10 +2090,10 @@ export declare const MODEL_REGISTRY: {
1932
2090
  readonly lastUpdated: "2026-01-25";
1933
2091
  };
1934
2092
  readonly 'gpt-4o-transcribe': {
1935
- readonly type: "audio";
2093
+ readonly type: "stt";
1936
2094
  readonly provider: "openai";
1937
2095
  readonly displayName: "GPT-4o Transcribe";
1938
- readonly description: "Speech-to-text model powered by GPT-4o";
2096
+ readonly description: "Speech-to-text transcription model";
1939
2097
  readonly pricing: {
1940
2098
  readonly input: 2.5;
1941
2099
  readonly output: 10;
@@ -1956,7 +2114,7 @@ export declare const MODEL_REGISTRY: {
1956
2114
  };
1957
2115
  readonly deprecated: false;
1958
2116
  readonly isAvailable: true;
1959
- readonly lastUpdated: "2026-01-25";
2117
+ readonly lastUpdated: "2026-03-01";
1960
2118
  };
1961
2119
  readonly 'gpt-4o-transcribe-diarize': {
1962
2120
  readonly type: "audio";
@@ -1985,6 +2143,23 @@ export declare const MODEL_REGISTRY: {
1985
2143
  readonly isAvailable: true;
1986
2144
  readonly lastUpdated: "2026-01-25";
1987
2145
  };
2146
+ readonly 'gpt-5': {
2147
+ readonly type: "chat";
2148
+ readonly provider: "openai";
2149
+ readonly displayName: "GPT-5";
2150
+ readonly description: "GPT-5 model";
2151
+ readonly deprecated: false;
2152
+ readonly isAvailable: true;
2153
+ readonly lastUpdated: "2026-03-01";
2154
+ };
2155
+ readonly 'gpt-5-codex': {
2156
+ readonly type: "chat";
2157
+ readonly provider: "openai";
2158
+ readonly displayName: "";
2159
+ readonly deprecated: false;
2160
+ readonly isAvailable: true;
2161
+ readonly lastUpdated: "2026-03-01";
2162
+ };
1988
2163
  readonly 'gpt-5-mini-2025-08-07': {
1989
2164
  readonly type: "chat";
1990
2165
  readonly provider: "openai";
@@ -1997,9 +2172,6 @@ export declare const MODEL_REGISTRY: {
1997
2172
  readonly benchmarks: {
1998
2173
  readonly intelligence: 11.9;
1999
2174
  };
2000
- readonly performance: {
2001
- readonly intelligenceScore: 11.9;
2002
- };
2003
2175
  readonly contextLength: 128000;
2004
2176
  readonly context: {
2005
2177
  readonly input: {
@@ -2019,11 +2191,20 @@ export declare const MODEL_REGISTRY: {
2019
2191
  readonly isAvailable: true;
2020
2192
  readonly lastUpdated: "2026-01-25";
2021
2193
  };
2194
+ readonly 'gpt-5-nano': {
2195
+ readonly type: "chat";
2196
+ readonly provider: "openai";
2197
+ readonly displayName: "GPT-5 Nano";
2198
+ readonly description: "Smallest and fastest GPT-5 model";
2199
+ readonly deprecated: false;
2200
+ readonly isAvailable: true;
2201
+ readonly lastUpdated: "2026-03-01";
2202
+ };
2022
2203
  readonly 'gpt-5-nano-2025-08-07': {
2023
2204
  readonly type: "chat";
2024
2205
  readonly provider: "openai";
2025
- readonly displayName: "GPT-5 nano";
2026
- readonly description: "Fastest, most cost-efficient version of GPT-5";
2206
+ readonly displayName: "GPT-5 Nano";
2207
+ readonly description: "Smallest and fastest GPT-5 model";
2027
2208
  readonly pricing: {
2028
2209
  readonly input: 0.05;
2029
2210
  readonly output: 0.4;
@@ -2035,9 +2216,6 @@ export declare const MODEL_REGISTRY: {
2035
2216
  readonly mmluPro: 0.77;
2036
2217
  readonly gpqa: 0.67;
2037
2218
  };
2038
- readonly performance: {
2039
- readonly intelligenceScore: 25.7;
2040
- };
2041
2219
  readonly contextLength: 128000;
2042
2220
  readonly context: {
2043
2221
  readonly input: {
@@ -2055,13 +2233,30 @@ export declare const MODEL_REGISTRY: {
2055
2233
  };
2056
2234
  readonly deprecated: false;
2057
2235
  readonly isAvailable: true;
2058
- readonly lastUpdated: "2026-01-25";
2236
+ readonly lastUpdated: "2026-03-01";
2237
+ };
2238
+ readonly 'gpt-5-pro': {
2239
+ readonly type: "chat";
2240
+ readonly provider: "openai";
2241
+ readonly displayName: "GPT-5 Pro";
2242
+ readonly description: "Premium GPT-5 model for complex tasks";
2243
+ readonly deprecated: false;
2244
+ readonly isAvailable: true;
2245
+ readonly lastUpdated: "2026-03-01";
2246
+ };
2247
+ readonly 'gpt-5-pro-2025-10-06': {
2248
+ readonly type: "chat";
2249
+ readonly provider: "openai";
2250
+ readonly displayName: "";
2251
+ readonly deprecated: false;
2252
+ readonly isAvailable: true;
2253
+ readonly lastUpdated: "2026-03-01";
2059
2254
  };
2060
2255
  readonly 'gpt-5-search-api-2025-10-14': {
2061
2256
  readonly type: "chat";
2062
2257
  readonly provider: "openai";
2063
- readonly displayName: "GPT-5 Search API";
2064
- readonly description: "GPT-5 model optimized for web search capabilities";
2258
+ readonly displayName: "GPT-5 Search API (Oct 2025)";
2259
+ readonly description: "GPT-5 with search capabilities";
2065
2260
  readonly pricing: {
2066
2261
  readonly input: 1.25;
2067
2262
  readonly output: 10;
@@ -2073,9 +2268,6 @@ export declare const MODEL_REGISTRY: {
2073
2268
  readonly mmluPro: 0.87;
2074
2269
  readonly gpqa: 0.84;
2075
2270
  };
2076
- readonly performance: {
2077
- readonly intelligenceScore: 68.5;
2078
- };
2079
2271
  readonly contextLength: 128000;
2080
2272
  readonly context: {
2081
2273
  readonly input: {
@@ -2093,13 +2285,22 @@ export declare const MODEL_REGISTRY: {
2093
2285
  };
2094
2286
  readonly deprecated: false;
2095
2287
  readonly isAvailable: true;
2096
- readonly lastUpdated: "2026-01-25";
2288
+ readonly lastUpdated: "2026-03-01";
2097
2289
  };
2098
- readonly 'gpt-5.1-2025-11-13': {
2290
+ readonly 'gpt-5.1': {
2099
2291
  readonly type: "chat";
2100
2292
  readonly provider: "openai";
2101
2293
  readonly displayName: "GPT-5.1";
2102
- readonly description: "The best model for coding and agentic tasks with configurable reasoning effort";
2294
+ readonly description: "GPT-5.1 model";
2295
+ readonly deprecated: false;
2296
+ readonly isAvailable: true;
2297
+ readonly lastUpdated: "2026-03-01";
2298
+ };
2299
+ readonly 'gpt-5.1-2025-11-13': {
2300
+ readonly type: "chat";
2301
+ readonly provider: "openai";
2302
+ readonly displayName: "GPT-5.1 (Nov 2025)";
2303
+ readonly description: "GPT-5.1 model released November 2025";
2103
2304
  readonly pricing: {
2104
2305
  readonly input: 1.25;
2105
2306
  readonly output: 10;
@@ -2111,9 +2312,6 @@ export declare const MODEL_REGISTRY: {
2111
2312
  readonly mmluPro: 0.8;
2112
2313
  readonly gpqa: 0.64;
2113
2314
  };
2114
- readonly performance: {
2115
- readonly intelligenceScore: 27.4;
2116
- };
2117
2315
  readonly contextLength: 128000;
2118
2316
  readonly context: {
2119
2317
  readonly input: {
@@ -2131,7 +2329,44 @@ export declare const MODEL_REGISTRY: {
2131
2329
  };
2132
2330
  readonly deprecated: false;
2133
2331
  readonly isAvailable: true;
2134
- readonly lastUpdated: "2026-01-25";
2332
+ readonly lastUpdated: "2026-03-01";
2333
+ };
2334
+ readonly 'gpt-5.1-codex': {
2335
+ readonly type: "chat";
2336
+ readonly provider: "openai";
2337
+ readonly displayName: "";
2338
+ readonly deprecated: false;
2339
+ readonly isAvailable: true;
2340
+ readonly lastUpdated: "2026-03-01";
2341
+ };
2342
+ readonly 'gpt-5.1-codex-max': {
2343
+ readonly type: "chat";
2344
+ readonly provider: "openai";
2345
+ readonly displayName: "";
2346
+ readonly deprecated: false;
2347
+ readonly isAvailable: true;
2348
+ readonly lastUpdated: "2026-03-01";
2349
+ };
2350
+ readonly 'gpt-5.1-codex-mini': {
2351
+ readonly type: "chat";
2352
+ readonly provider: "openai";
2353
+ readonly displayName: "";
2354
+ readonly deprecated: false;
2355
+ readonly isAvailable: true;
2356
+ readonly lastUpdated: "2026-03-01";
2357
+ };
2358
+ readonly 'gpt-5.2': {
2359
+ readonly type: "chat";
2360
+ readonly provider: "openai";
2361
+ readonly displayName: "GPT-5.2";
2362
+ readonly description: "Latest GPT-5.2 model";
2363
+ readonly pricing: {
2364
+ readonly input: 1.75;
2365
+ readonly output: 14;
2366
+ };
2367
+ readonly deprecated: false;
2368
+ readonly isAvailable: true;
2369
+ readonly lastUpdated: "2026-03-01";
2135
2370
  };
2136
2371
  readonly 'gpt-5.2-2025-12-11': {
2137
2372
  readonly type: "chat";
@@ -2143,14 +2378,7 @@ export declare const MODEL_REGISTRY: {
2143
2378
  readonly output: 14;
2144
2379
  };
2145
2380
  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;
2381
+ readonly gpqa: 93.2;
2154
2382
  };
2155
2383
  readonly contextLength: 200000;
2156
2384
  readonly context: {
@@ -2169,13 +2397,50 @@ export declare const MODEL_REGISTRY: {
2169
2397
  };
2170
2398
  readonly deprecated: false;
2171
2399
  readonly isAvailable: true;
2172
- readonly lastUpdated: "2026-01-25";
2400
+ readonly lastUpdated: "2026-03-01";
2401
+ };
2402
+ readonly 'gpt-5.2-pro': {
2403
+ readonly type: "chat";
2404
+ readonly provider: "openai";
2405
+ readonly displayName: "GPT-5.2 Pro";
2406
+ readonly description: "Premium GPT-5.2 model for complex tasks";
2407
+ readonly pricing: {
2408
+ readonly input: 21;
2409
+ readonly output: 168;
2410
+ };
2411
+ readonly deprecated: false;
2412
+ readonly isAvailable: true;
2413
+ readonly lastUpdated: "2026-03-01";
2414
+ };
2415
+ readonly 'gpt-5.2-pro-2025-12-11': {
2416
+ readonly type: "chat";
2417
+ readonly provider: "openai";
2418
+ readonly displayName: "";
2419
+ readonly pricing: {
2420
+ readonly input: 21;
2421
+ readonly output: 168;
2422
+ };
2423
+ readonly deprecated: false;
2424
+ readonly isAvailable: true;
2425
+ readonly lastUpdated: "2026-03-01";
2426
+ };
2427
+ readonly 'gpt-5.3-codex': {
2428
+ readonly type: "chat";
2429
+ readonly provider: "openai";
2430
+ readonly displayName: "GPT-5.3 Codex";
2431
+ readonly description: "Latest GPT-5.3 code generation model";
2432
+ readonly benchmarks: {
2433
+ readonly intelligence: 95;
2434
+ };
2435
+ readonly deprecated: false;
2436
+ readonly isAvailable: true;
2437
+ readonly lastUpdated: "2026-03-01";
2173
2438
  };
2174
2439
  readonly 'gpt-audio-mini-2025-10-06': {
2175
2440
  readonly type: "audio";
2176
2441
  readonly provider: "openai";
2177
- readonly displayName: "GPT Audio Mini";
2178
- readonly description: "A cost-efficient version of GPT Audio";
2442
+ readonly displayName: "GPT Audio Mini (Oct 2025)";
2443
+ readonly description: "Compact audio processing model";
2179
2444
  readonly pricing: {
2180
2445
  readonly input: 0.6;
2181
2446
  readonly output: 2.4;
@@ -2197,13 +2462,13 @@ export declare const MODEL_REGISTRY: {
2197
2462
  };
2198
2463
  readonly deprecated: false;
2199
2464
  readonly isAvailable: true;
2200
- readonly lastUpdated: "2026-01-25";
2465
+ readonly lastUpdated: "2026-03-01";
2201
2466
  };
2202
2467
  readonly 'gpt-audio-mini-2025-12-15': {
2203
2468
  readonly type: "audio";
2204
2469
  readonly provider: "openai";
2205
- readonly displayName: "gpt-audio-mini";
2206
- readonly description: "A cost-efficient version of GPT Audio";
2470
+ readonly displayName: "GPT Audio Mini (Dec 2025)";
2471
+ readonly description: "Compact audio processing model released December 2025";
2207
2472
  readonly pricing: {
2208
2473
  readonly input: 0.6;
2209
2474
  readonly output: 2.4;
@@ -2225,13 +2490,40 @@ export declare const MODEL_REGISTRY: {
2225
2490
  };
2226
2491
  readonly deprecated: false;
2227
2492
  readonly isAvailable: true;
2228
- readonly lastUpdated: "2026-01-25";
2493
+ readonly lastUpdated: "2026-03-01";
2494
+ };
2495
+ readonly 'gpt-image-1.5': {
2496
+ readonly type: "image";
2497
+ readonly provider: "openai";
2498
+ readonly displayName: "GPT Image 1.5";
2499
+ readonly description: "State-of-the-art image generation model";
2500
+ readonly pricing: {
2501
+ readonly input: 5;
2502
+ readonly output: 10;
2503
+ };
2504
+ readonly context: {
2505
+ readonly input: {
2506
+ readonly text: true;
2507
+ readonly audio: false;
2508
+ readonly image: false;
2509
+ readonly video: false;
2510
+ };
2511
+ readonly output: {
2512
+ readonly text: false;
2513
+ readonly audio: false;
2514
+ readonly image: true;
2515
+ readonly video: false;
2516
+ };
2517
+ };
2518
+ readonly deprecated: false;
2519
+ readonly isAvailable: true;
2520
+ readonly lastUpdated: "2026-03-01";
2229
2521
  };
2230
2522
  readonly 'gpt-realtime-2025-08-28': {
2231
- readonly type: "audio";
2523
+ readonly type: "chat";
2232
2524
  readonly provider: "openai";
2233
- readonly displayName: "GPT Realtime";
2234
- readonly description: "Model capable of realtime text and audio inputs and outputs";
2525
+ readonly displayName: "GPT Realtime (Aug 2025)";
2526
+ readonly description: "Realtime streaming model";
2235
2527
  readonly pricing: {
2236
2528
  readonly input: 4;
2237
2529
  readonly output: 16;
@@ -2253,13 +2545,13 @@ export declare const MODEL_REGISTRY: {
2253
2545
  };
2254
2546
  readonly deprecated: false;
2255
2547
  readonly isAvailable: true;
2256
- readonly lastUpdated: "2026-01-25";
2548
+ readonly lastUpdated: "2026-03-01";
2257
2549
  };
2258
2550
  readonly 'gpt-realtime-mini-2025-12-15': {
2259
- readonly type: "audio";
2551
+ readonly type: "chat";
2260
2552
  readonly provider: "openai";
2261
- readonly displayName: "GPT Realtime Mini";
2262
- readonly description: "A cost-efficient version of GPT Realtime";
2553
+ readonly displayName: "GPT Realtime Mini (Dec 2025)";
2554
+ readonly description: "Compact realtime streaming model";
2263
2555
  readonly pricing: {
2264
2556
  readonly input: 0.6;
2265
2557
  readonly output: 2.4;
@@ -2281,10 +2573,32 @@ export declare const MODEL_REGISTRY: {
2281
2573
  };
2282
2574
  readonly deprecated: false;
2283
2575
  readonly isAvailable: true;
2284
- readonly lastUpdated: "2026-01-25";
2576
+ readonly lastUpdated: "2026-03-01";
2577
+ };
2578
+ readonly o3: {
2579
+ readonly type: "chat";
2580
+ readonly provider: "openai";
2581
+ readonly displayName: "o3";
2582
+ readonly description: "Advanced reasoning model";
2583
+ readonly deprecated: false;
2584
+ readonly isAvailable: true;
2585
+ readonly lastUpdated: "2026-03-01";
2586
+ };
2587
+ readonly 'o4-mini': {
2588
+ readonly type: "chat";
2589
+ readonly provider: "openai";
2590
+ readonly displayName: "o4-mini";
2591
+ readonly description: "Compact reasoning model";
2592
+ readonly pricing: {
2593
+ readonly input: 4;
2594
+ readonly output: 16;
2595
+ };
2596
+ readonly deprecated: false;
2597
+ readonly isAvailable: true;
2598
+ readonly lastUpdated: "2026-03-01";
2285
2599
  };
2286
2600
  readonly 'text-embedding-3-large': {
2287
- readonly type: "embedding";
2601
+ readonly type: "embeddings";
2288
2602
  readonly provider: "openai";
2289
2603
  readonly displayName: "text-embedding-3-large";
2290
2604
  readonly description: "Most capable embedding model";
@@ -2311,7 +2625,7 @@ export declare const MODEL_REGISTRY: {
2311
2625
  readonly lastUpdated: "2026-01-25";
2312
2626
  };
2313
2627
  readonly 'text-embedding-3-small': {
2314
- readonly type: "embedding";
2628
+ readonly type: "embeddings";
2315
2629
  readonly provider: "openai";
2316
2630
  readonly displayName: "text-embedding-3-small";
2317
2631
  readonly description: "Small embedding model";
@@ -2338,7 +2652,7 @@ export declare const MODEL_REGISTRY: {
2338
2652
  readonly lastUpdated: "2026-01-25";
2339
2653
  };
2340
2654
  readonly 'text-embedding-ada-002': {
2341
- readonly type: "embedding";
2655
+ readonly type: "embeddings";
2342
2656
  readonly provider: "openai";
2343
2657
  readonly displayName: "text-embedding-ada-002";
2344
2658
  readonly description: "Older embedding model";