@agi-cli/sdk 0.1.100 → 0.1.102

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.
@@ -5,7 +5,7 @@ import type {
5
5
  ProviderCatalogEntry,
6
6
  } from '../../types/src/index.ts';
7
7
 
8
- export const catalog: Record<ProviderId, ProviderCatalogEntry> = {
8
+ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
9
9
  openai: {
10
10
  id: 'openai',
11
11
  models: [
@@ -430,6 +430,130 @@ export const catalog: Record<ProviderId, ProviderCatalogEntry> = {
430
430
  output: 128000,
431
431
  },
432
432
  },
433
+ {
434
+ id: 'gpt-5-pro',
435
+ label: 'GPT-5 Pro',
436
+ modalities: {
437
+ input: ['text', 'image'],
438
+ output: ['text'],
439
+ },
440
+ toolCall: true,
441
+ reasoning: true,
442
+ attachment: true,
443
+ temperature: false,
444
+ knowledge: '2024-09-30',
445
+ releaseDate: '2025-10-06',
446
+ lastUpdated: '2025-10-06',
447
+ openWeights: false,
448
+ cost: {
449
+ input: 15,
450
+ output: 120,
451
+ },
452
+ limit: {
453
+ context: 400000,
454
+ output: 272000,
455
+ },
456
+ },
457
+ {
458
+ id: 'gpt-5.1',
459
+ label: 'GPT-5.1',
460
+ modalities: {
461
+ input: ['text', 'image'],
462
+ output: ['text'],
463
+ },
464
+ toolCall: true,
465
+ reasoning: true,
466
+ attachment: true,
467
+ temperature: false,
468
+ knowledge: '2024-09-30',
469
+ releaseDate: '2025-11-13',
470
+ lastUpdated: '2025-11-13',
471
+ openWeights: false,
472
+ cost: {
473
+ input: 1.25,
474
+ output: 10,
475
+ cacheRead: 0.13,
476
+ },
477
+ limit: {
478
+ context: 400000,
479
+ output: 128000,
480
+ },
481
+ },
482
+ {
483
+ id: 'gpt-5.1-chat-latest',
484
+ label: 'GPT-5.1 Chat',
485
+ modalities: {
486
+ input: ['text', 'image'],
487
+ output: ['text'],
488
+ },
489
+ toolCall: true,
490
+ reasoning: true,
491
+ attachment: true,
492
+ temperature: false,
493
+ knowledge: '2024-09-30',
494
+ releaseDate: '2025-11-13',
495
+ lastUpdated: '2025-11-13',
496
+ openWeights: false,
497
+ cost: {
498
+ input: 1.25,
499
+ output: 10,
500
+ cacheRead: 0.125,
501
+ },
502
+ limit: {
503
+ context: 128000,
504
+ output: 16384,
505
+ },
506
+ },
507
+ {
508
+ id: 'gpt-5.1-codex',
509
+ label: 'GPT-5.1 Codex',
510
+ modalities: {
511
+ input: ['text', 'image'],
512
+ output: ['text', 'image'],
513
+ },
514
+ toolCall: true,
515
+ reasoning: true,
516
+ attachment: true,
517
+ temperature: false,
518
+ knowledge: '2024-09-30',
519
+ releaseDate: '2025-11-13',
520
+ lastUpdated: '2025-11-13',
521
+ openWeights: false,
522
+ cost: {
523
+ input: 1.25,
524
+ output: 10,
525
+ cacheRead: 0.125,
526
+ },
527
+ limit: {
528
+ context: 400000,
529
+ output: 128000,
530
+ },
531
+ },
532
+ {
533
+ id: 'gpt-5.1-codex-mini',
534
+ label: 'GPT-5.1 Codex mini',
535
+ modalities: {
536
+ input: ['text', 'image'],
537
+ output: ['text', 'image'],
538
+ },
539
+ toolCall: true,
540
+ reasoning: true,
541
+ attachment: true,
542
+ temperature: false,
543
+ knowledge: '2024-09-30',
544
+ releaseDate: '2025-11-13',
545
+ lastUpdated: '2025-11-13',
546
+ openWeights: false,
547
+ cost: {
548
+ input: 0.25,
549
+ output: 2,
550
+ cacheRead: 0.025,
551
+ },
552
+ limit: {
553
+ context: 400000,
554
+ output: 128000,
555
+ },
556
+ },
433
557
  {
434
558
  id: 'o1',
435
559
  label: 'o1',
@@ -678,6 +802,78 @@ export const catalog: Record<ProviderId, ProviderCatalogEntry> = {
678
802
  output: 100000,
679
803
  },
680
804
  },
805
+ {
806
+ id: 'text-embedding-3-large',
807
+ label: 'text-embedding-3-large',
808
+ modalities: {
809
+ input: ['text'],
810
+ output: ['text'],
811
+ },
812
+ toolCall: false,
813
+ reasoning: false,
814
+ attachment: false,
815
+ temperature: false,
816
+ knowledge: '2024-01',
817
+ releaseDate: '2024-01-25',
818
+ lastUpdated: '2024-01-25',
819
+ openWeights: false,
820
+ cost: {
821
+ input: 0.13,
822
+ output: 0,
823
+ },
824
+ limit: {
825
+ context: 8191,
826
+ output: 3072,
827
+ },
828
+ },
829
+ {
830
+ id: 'text-embedding-3-small',
831
+ label: 'text-embedding-3-small',
832
+ modalities: {
833
+ input: ['text'],
834
+ output: ['text'],
835
+ },
836
+ toolCall: false,
837
+ reasoning: false,
838
+ attachment: false,
839
+ temperature: false,
840
+ knowledge: '2024-01',
841
+ releaseDate: '2024-01-25',
842
+ lastUpdated: '2024-01-25',
843
+ openWeights: false,
844
+ cost: {
845
+ input: 0.02,
846
+ output: 0,
847
+ },
848
+ limit: {
849
+ context: 8191,
850
+ output: 1536,
851
+ },
852
+ },
853
+ {
854
+ id: 'text-embedding-ada-002',
855
+ label: 'text-embedding-ada-002',
856
+ modalities: {
857
+ input: ['text'],
858
+ output: ['text'],
859
+ },
860
+ toolCall: false,
861
+ reasoning: false,
862
+ attachment: false,
863
+ temperature: false,
864
+ knowledge: '2022-12',
865
+ releaseDate: '2022-12-15',
866
+ lastUpdated: '2022-12-15',
867
+ openWeights: false,
868
+ cost: {
869
+ input: 0.1,
870
+ output: 0,
871
+ },
872
+ limit: {
873
+ context: 8192,
874
+ output: 1536,
875
+ },
876
+ },
681
877
  ],
682
878
  label: 'OpenAI',
683
879
  env: ['OPENAI_API_KEY'],
@@ -712,6 +908,31 @@ export const catalog: Record<ProviderId, ProviderCatalogEntry> = {
712
908
  output: 8192,
713
909
  },
714
910
  },
911
+ {
912
+ id: 'claude-3-5-haiku-latest',
913
+ label: 'Claude Haiku 3.5 (latest)',
914
+ modalities: {
915
+ input: ['text', 'image'],
916
+ output: ['text'],
917
+ },
918
+ toolCall: true,
919
+ reasoning: false,
920
+ attachment: true,
921
+ temperature: true,
922
+ knowledge: '2024-07-31',
923
+ releaseDate: '2024-10-22',
924
+ lastUpdated: '2024-10-22',
925
+ openWeights: false,
926
+ cost: {
927
+ input: 0.8,
928
+ output: 4,
929
+ cacheRead: 0.08,
930
+ },
931
+ limit: {
932
+ context: 200000,
933
+ output: 8192,
934
+ },
935
+ },
715
936
  {
716
937
  id: 'claude-3-5-sonnet-20240620',
717
938
  label: 'Claude Sonnet 3.5',
@@ -787,6 +1008,31 @@ export const catalog: Record<ProviderId, ProviderCatalogEntry> = {
787
1008
  output: 64000,
788
1009
  },
789
1010
  },
1011
+ {
1012
+ id: 'claude-3-7-sonnet-latest',
1013
+ label: 'Claude Sonnet 3.7 (latest)',
1014
+ modalities: {
1015
+ input: ['text', 'image'],
1016
+ output: ['text'],
1017
+ },
1018
+ toolCall: true,
1019
+ reasoning: true,
1020
+ attachment: true,
1021
+ temperature: true,
1022
+ knowledge: '2024-10-31',
1023
+ releaseDate: '2025-02-19',
1024
+ lastUpdated: '2025-02-19',
1025
+ openWeights: false,
1026
+ cost: {
1027
+ input: 3,
1028
+ output: 15,
1029
+ cacheRead: 0.3,
1030
+ },
1031
+ limit: {
1032
+ context: 200000,
1033
+ output: 64000,
1034
+ },
1035
+ },
790
1036
  {
791
1037
  id: 'claude-3-haiku-20240307',
792
1038
  label: 'Claude Haiku 3',
@@ -862,6 +1108,31 @@ export const catalog: Record<ProviderId, ProviderCatalogEntry> = {
862
1108
  output: 4096,
863
1109
  },
864
1110
  },
1111
+ {
1112
+ id: 'claude-haiku-4-5',
1113
+ label: 'Claude Haiku 4.5 (latest)',
1114
+ modalities: {
1115
+ input: ['text', 'image'],
1116
+ output: ['text'],
1117
+ },
1118
+ toolCall: true,
1119
+ reasoning: true,
1120
+ attachment: true,
1121
+ temperature: true,
1122
+ knowledge: '2025-02-31',
1123
+ releaseDate: '2025-10-15',
1124
+ lastUpdated: '2025-10-15',
1125
+ openWeights: false,
1126
+ cost: {
1127
+ input: 1,
1128
+ output: 5,
1129
+ cacheRead: 0.1,
1130
+ },
1131
+ limit: {
1132
+ context: 200000,
1133
+ output: 64000,
1134
+ },
1135
+ },
865
1136
  {
866
1137
  id: 'claude-haiku-4-5-20251001',
867
1138
  label: 'Claude Haiku 4.5',
@@ -887,6 +1158,56 @@ export const catalog: Record<ProviderId, ProviderCatalogEntry> = {
887
1158
  output: 64000,
888
1159
  },
889
1160
  },
1161
+ {
1162
+ id: 'claude-opus-4-0',
1163
+ label: 'Claude Opus 4 (latest)',
1164
+ modalities: {
1165
+ input: ['text', 'image'],
1166
+ output: ['text'],
1167
+ },
1168
+ toolCall: true,
1169
+ reasoning: true,
1170
+ attachment: true,
1171
+ temperature: true,
1172
+ knowledge: '2025-03-31',
1173
+ releaseDate: '2025-05-22',
1174
+ lastUpdated: '2025-05-22',
1175
+ openWeights: false,
1176
+ cost: {
1177
+ input: 15,
1178
+ output: 75,
1179
+ cacheRead: 1.5,
1180
+ },
1181
+ limit: {
1182
+ context: 200000,
1183
+ output: 32000,
1184
+ },
1185
+ },
1186
+ {
1187
+ id: 'claude-opus-4-1',
1188
+ label: 'Claude Opus 4.1 (latest)',
1189
+ modalities: {
1190
+ input: ['text', 'image'],
1191
+ output: ['text'],
1192
+ },
1193
+ toolCall: true,
1194
+ reasoning: true,
1195
+ attachment: true,
1196
+ temperature: true,
1197
+ knowledge: '2025-03-31',
1198
+ releaseDate: '2025-08-05',
1199
+ lastUpdated: '2025-08-05',
1200
+ openWeights: false,
1201
+ cost: {
1202
+ input: 15,
1203
+ output: 75,
1204
+ cacheRead: 1.5,
1205
+ },
1206
+ limit: {
1207
+ context: 200000,
1208
+ output: 32000,
1209
+ },
1210
+ },
890
1211
  {
891
1212
  id: 'claude-opus-4-1-20250805',
892
1213
  label: 'Claude Opus 4.1',
@@ -937,6 +1258,31 @@ export const catalog: Record<ProviderId, ProviderCatalogEntry> = {
937
1258
  output: 32000,
938
1259
  },
939
1260
  },
1261
+ {
1262
+ id: 'claude-sonnet-4-0',
1263
+ label: 'Claude Sonnet 4 (latest)',
1264
+ modalities: {
1265
+ input: ['text', 'image'],
1266
+ output: ['text'],
1267
+ },
1268
+ toolCall: true,
1269
+ reasoning: true,
1270
+ attachment: true,
1271
+ temperature: true,
1272
+ knowledge: '2025-03-31',
1273
+ releaseDate: '2025-05-22',
1274
+ lastUpdated: '2025-05-22',
1275
+ openWeights: false,
1276
+ cost: {
1277
+ input: 3,
1278
+ output: 15,
1279
+ cacheRead: 0.3,
1280
+ },
1281
+ limit: {
1282
+ context: 200000,
1283
+ output: 64000,
1284
+ },
1285
+ },
940
1286
  {
941
1287
  id: 'claude-sonnet-4-20250514',
942
1288
  label: 'Claude Sonnet 4',
@@ -962,6 +1308,31 @@ export const catalog: Record<ProviderId, ProviderCatalogEntry> = {
962
1308
  output: 64000,
963
1309
  },
964
1310
  },
1311
+ {
1312
+ id: 'claude-sonnet-4-5',
1313
+ label: 'Claude Sonnet 4.5 (latest)',
1314
+ modalities: {
1315
+ input: ['text', 'image'],
1316
+ output: ['text'],
1317
+ },
1318
+ toolCall: true,
1319
+ reasoning: true,
1320
+ attachment: true,
1321
+ temperature: true,
1322
+ knowledge: '2025-07-31',
1323
+ releaseDate: '2025-09-29',
1324
+ lastUpdated: '2025-09-29',
1325
+ openWeights: false,
1326
+ cost: {
1327
+ input: 3,
1328
+ output: 15,
1329
+ cacheRead: 0.3,
1330
+ },
1331
+ limit: {
1332
+ context: 200000,
1333
+ output: 64000,
1334
+ },
1335
+ },
965
1336
  {
966
1337
  id: 'claude-sonnet-4-5-20250929',
967
1338
  label: 'Claude Sonnet 4.5',
@@ -1468,6 +1839,55 @@ export const catalog: Record<ProviderId, ProviderCatalogEntry> = {
1468
1839
  output: 16000,
1469
1840
  },
1470
1841
  },
1842
+ {
1843
+ id: 'gemini-3-pro-preview',
1844
+ label: 'Gemini 3 Pro Preview',
1845
+ modalities: {
1846
+ input: ['text', 'image', 'video', 'audio', 'pdf'],
1847
+ output: ['text'],
1848
+ },
1849
+ toolCall: true,
1850
+ reasoning: true,
1851
+ attachment: true,
1852
+ temperature: true,
1853
+ knowledge: '2025-01',
1854
+ releaseDate: '2025-11-18',
1855
+ lastUpdated: '2025-11-18',
1856
+ openWeights: false,
1857
+ cost: {
1858
+ input: 2,
1859
+ output: 12,
1860
+ cacheRead: 0.2,
1861
+ },
1862
+ limit: {
1863
+ context: 1000000,
1864
+ output: 64000,
1865
+ },
1866
+ },
1867
+ {
1868
+ id: 'gemini-embedding-001',
1869
+ label: 'Gemini Embedding 001',
1870
+ modalities: {
1871
+ input: ['text'],
1872
+ output: ['text'],
1873
+ },
1874
+ toolCall: false,
1875
+ reasoning: false,
1876
+ attachment: false,
1877
+ temperature: false,
1878
+ knowledge: '2025-05',
1879
+ releaseDate: '2025-05-20',
1880
+ lastUpdated: '2025-05-20',
1881
+ openWeights: false,
1882
+ cost: {
1883
+ input: 0.15,
1884
+ output: 0,
1885
+ },
1886
+ limit: {
1887
+ context: 2048,
1888
+ output: 3072,
1889
+ },
1890
+ },
1471
1891
  {
1472
1892
  id: 'gemini-flash-latest',
1473
1893
  label: 'Gemini Flash Latest',
@@ -1626,7 +2046,7 @@ export const catalog: Record<ProviderId, ProviderCatalogEntry> = {
1626
2046
  },
1627
2047
  },
1628
2048
  {
1629
- id: 'anthropic/claude-4.5-haiku',
2049
+ id: 'anthropic/claude-haiku-4.5',
1630
2050
  label: 'Claude Haiku 4.5',
1631
2051
  modalities: {
1632
2052
  input: ['text', 'image'],
@@ -2014,6 +2434,30 @@ export const catalog: Record<ProviderId, ProviderCatalogEntry> = {
2014
2434
  output: 65536,
2015
2435
  },
2016
2436
  },
2437
+ {
2438
+ id: 'deepseek/deepseek-v3.1-terminus:exacto',
2439
+ label: 'DeepSeek V3.1 Terminus (exacto)',
2440
+ modalities: {
2441
+ input: ['text'],
2442
+ output: ['text'],
2443
+ },
2444
+ toolCall: true,
2445
+ reasoning: true,
2446
+ attachment: false,
2447
+ temperature: true,
2448
+ knowledge: '2025-07',
2449
+ releaseDate: '2025-09-22',
2450
+ lastUpdated: '2025-09-22',
2451
+ openWeights: true,
2452
+ cost: {
2453
+ input: 0.27,
2454
+ output: 1,
2455
+ },
2456
+ limit: {
2457
+ context: 131072,
2458
+ output: 65536,
2459
+ },
2460
+ },
2017
2461
  {
2018
2462
  id: 'featherless/qwerky-72b',
2019
2463
  label: 'Qwerky 72B',
@@ -2382,6 +2826,30 @@ export const catalog: Record<ProviderId, ProviderCatalogEntry> = {
2382
2826
  output: 8192,
2383
2827
  },
2384
2828
  },
2829
+ {
2830
+ id: 'kwaipilot/kat-coder-pro:free',
2831
+ label: 'Kat Coder Pro (free)',
2832
+ modalities: {
2833
+ input: ['text'],
2834
+ output: ['text'],
2835
+ },
2836
+ toolCall: true,
2837
+ reasoning: false,
2838
+ attachment: false,
2839
+ temperature: true,
2840
+ knowledge: '2025-11',
2841
+ releaseDate: '2025-11-10',
2842
+ lastUpdated: '2025-11-10',
2843
+ openWeights: false,
2844
+ cost: {
2845
+ input: 0,
2846
+ output: 0,
2847
+ },
2848
+ limit: {
2849
+ context: 256000,
2850
+ output: 65536,
2851
+ },
2852
+ },
2385
2853
  {
2386
2854
  id: 'meta-llama/llama-3.2-11b-vision-instruct',
2387
2855
  label: 'Llama 3.2 11B Vision Instruct',
@@ -2450,13 +2918,83 @@ export const catalog: Record<ProviderId, ProviderCatalogEntry> = {
2450
2918
  output: 0,
2451
2919
  },
2452
2920
  limit: {
2453
- context: 64000,
2454
- output: 64000,
2921
+ context: 64000,
2922
+ output: 64000,
2923
+ },
2924
+ },
2925
+ {
2926
+ id: 'microsoft/mai-ds-r1:free',
2927
+ label: 'MAI DS R1 (free)',
2928
+ modalities: {
2929
+ input: ['text'],
2930
+ output: ['text'],
2931
+ },
2932
+ toolCall: true,
2933
+ reasoning: true,
2934
+ attachment: false,
2935
+ temperature: true,
2936
+ knowledge: '2025-04',
2937
+ releaseDate: '2025-04-21',
2938
+ lastUpdated: '2025-04-21',
2939
+ openWeights: true,
2940
+ cost: {
2941
+ input: 0,
2942
+ output: 0,
2943
+ },
2944
+ limit: {
2945
+ context: 163840,
2946
+ output: 163840,
2947
+ },
2948
+ },
2949
+ {
2950
+ id: 'minimax/minimax-01',
2951
+ label: 'MiniMax-01',
2952
+ modalities: {
2953
+ input: ['text', 'image'],
2954
+ output: ['text'],
2955
+ },
2956
+ toolCall: true,
2957
+ reasoning: true,
2958
+ attachment: true,
2959
+ temperature: true,
2960
+ releaseDate: '2025-01-15',
2961
+ lastUpdated: '2025-01-15',
2962
+ openWeights: true,
2963
+ cost: {
2964
+ input: 0.2,
2965
+ output: 1.1,
2966
+ },
2967
+ limit: {
2968
+ context: 1000000,
2969
+ output: 1000000,
2970
+ },
2971
+ },
2972
+ {
2973
+ id: 'minimax/minimax-m1',
2974
+ label: 'MiniMax M1',
2975
+ modalities: {
2976
+ input: ['text'],
2977
+ output: ['text'],
2978
+ },
2979
+ toolCall: true,
2980
+ reasoning: true,
2981
+ attachment: false,
2982
+ temperature: true,
2983
+ releaseDate: '2025-06-17',
2984
+ lastUpdated: '2025-06-17',
2985
+ openWeights: true,
2986
+ cost: {
2987
+ input: 0.4,
2988
+ output: 2.2,
2989
+ },
2990
+ limit: {
2991
+ context: 1000000,
2992
+ output: 40000,
2455
2993
  },
2456
2994
  },
2457
2995
  {
2458
- id: 'microsoft/mai-ds-r1:free',
2459
- label: 'MAI DS R1 (free)',
2996
+ id: 'minimax/minimax-m2',
2997
+ label: 'MiniMax M2',
2460
2998
  modalities: {
2461
2999
  input: ['text'],
2462
3000
  output: ['text'],
@@ -2465,17 +3003,17 @@ export const catalog: Record<ProviderId, ProviderCatalogEntry> = {
2465
3003
  reasoning: true,
2466
3004
  attachment: false,
2467
3005
  temperature: true,
2468
- knowledge: '2025-04',
2469
- releaseDate: '2025-04-21',
2470
- lastUpdated: '2025-04-21',
3006
+ releaseDate: '2025-10-23',
3007
+ lastUpdated: '2025-10-23',
2471
3008
  openWeights: true,
2472
3009
  cost: {
2473
- input: 0,
2474
- output: 0,
3010
+ input: 0.28,
3011
+ output: 1.15,
3012
+ cacheRead: 0.28,
2475
3013
  },
2476
3014
  limit: {
2477
- context: 163840,
2478
- output: 163840,
3015
+ context: 196600,
3016
+ output: 118000,
2479
3017
  },
2480
3018
  },
2481
3019
  {
@@ -2838,6 +3376,55 @@ export const catalog: Record<ProviderId, ProviderCatalogEntry> = {
2838
3376
  output: 16384,
2839
3377
  },
2840
3378
  },
3379
+ {
3380
+ id: 'moonshotai/kimi-k2-0905:exacto',
3381
+ label: 'Kimi K2 Instruct 0905 (exacto)',
3382
+ modalities: {
3383
+ input: ['text'],
3384
+ output: ['text'],
3385
+ },
3386
+ toolCall: true,
3387
+ reasoning: false,
3388
+ attachment: false,
3389
+ temperature: true,
3390
+ knowledge: '2024-10',
3391
+ releaseDate: '2025-09-05',
3392
+ lastUpdated: '2025-09-05',
3393
+ openWeights: true,
3394
+ cost: {
3395
+ input: 0.6,
3396
+ output: 2.5,
3397
+ },
3398
+ limit: {
3399
+ context: 262144,
3400
+ output: 16384,
3401
+ },
3402
+ },
3403
+ {
3404
+ id: 'moonshotai/kimi-k2-thinking',
3405
+ label: 'Kimi K2 Thinking',
3406
+ modalities: {
3407
+ input: ['text'],
3408
+ output: ['text'],
3409
+ },
3410
+ toolCall: true,
3411
+ reasoning: true,
3412
+ attachment: false,
3413
+ temperature: true,
3414
+ knowledge: '2024-08',
3415
+ releaseDate: '2025-11-06',
3416
+ lastUpdated: '2025-11-06',
3417
+ openWeights: true,
3418
+ cost: {
3419
+ input: 0.6,
3420
+ output: 2.5,
3421
+ cacheRead: 0.15,
3422
+ },
3423
+ limit: {
3424
+ context: 262144,
3425
+ output: 262144,
3426
+ },
3427
+ },
2841
3428
  {
2842
3429
  id: 'moonshotai/kimi-k2:free',
2843
3430
  label: 'Kimi K2 (free)',
@@ -2934,6 +3521,30 @@ export const catalog: Record<ProviderId, ProviderCatalogEntry> = {
2934
3521
  output: 131072,
2935
3522
  },
2936
3523
  },
3524
+ {
3525
+ id: 'nvidia/nemotron-nano-9b-v2',
3526
+ label: 'nvidia-nemotron-nano-9b-v2',
3527
+ modalities: {
3528
+ input: ['text'],
3529
+ output: ['text'],
3530
+ },
3531
+ toolCall: true,
3532
+ reasoning: true,
3533
+ attachment: false,
3534
+ temperature: true,
3535
+ knowledge: '2024-09',
3536
+ releaseDate: '2025-08-18',
3537
+ lastUpdated: '2025-08-18',
3538
+ openWeights: true,
3539
+ cost: {
3540
+ input: 0.04,
3541
+ output: 0.16,
3542
+ },
3543
+ limit: {
3544
+ context: 131072,
3545
+ output: 131072,
3546
+ },
3547
+ },
2937
3548
  {
2938
3549
  id: 'openai/gpt-4.1',
2939
3550
  label: 'GPT-4.1',
@@ -3155,6 +3766,130 @@ export const catalog: Record<ProviderId, ProviderCatalogEntry> = {
3155
3766
  output: 128000,
3156
3767
  },
3157
3768
  },
3769
+ {
3770
+ id: 'openai/gpt-5-pro',
3771
+ label: 'GPT-5 Pro',
3772
+ modalities: {
3773
+ input: ['text', 'image'],
3774
+ output: ['text'],
3775
+ },
3776
+ toolCall: true,
3777
+ reasoning: true,
3778
+ attachment: true,
3779
+ temperature: false,
3780
+ knowledge: '2024-09-30',
3781
+ releaseDate: '2025-10-06',
3782
+ lastUpdated: '2025-10-06',
3783
+ openWeights: false,
3784
+ cost: {
3785
+ input: 15,
3786
+ output: 120,
3787
+ },
3788
+ limit: {
3789
+ context: 400000,
3790
+ output: 272000,
3791
+ },
3792
+ },
3793
+ {
3794
+ id: 'openai/gpt-5.1',
3795
+ label: 'GPT-5.1',
3796
+ modalities: {
3797
+ input: ['text', 'image'],
3798
+ output: ['text'],
3799
+ },
3800
+ toolCall: true,
3801
+ reasoning: true,
3802
+ attachment: true,
3803
+ temperature: true,
3804
+ knowledge: '2024-09-30',
3805
+ releaseDate: '2025-11-13',
3806
+ lastUpdated: '2025-11-13',
3807
+ openWeights: false,
3808
+ cost: {
3809
+ input: 1.25,
3810
+ output: 10,
3811
+ cacheRead: 0.125,
3812
+ },
3813
+ limit: {
3814
+ context: 400000,
3815
+ output: 128000,
3816
+ },
3817
+ },
3818
+ {
3819
+ id: 'openai/gpt-5.1-chat',
3820
+ label: 'GPT-5.1 Chat',
3821
+ modalities: {
3822
+ input: ['text', 'image'],
3823
+ output: ['text'],
3824
+ },
3825
+ toolCall: true,
3826
+ reasoning: true,
3827
+ attachment: true,
3828
+ temperature: true,
3829
+ knowledge: '2024-09-30',
3830
+ releaseDate: '2025-11-13',
3831
+ lastUpdated: '2025-11-13',
3832
+ openWeights: false,
3833
+ cost: {
3834
+ input: 1.25,
3835
+ output: 10,
3836
+ cacheRead: 0.125,
3837
+ },
3838
+ limit: {
3839
+ context: 128000,
3840
+ output: 16384,
3841
+ },
3842
+ },
3843
+ {
3844
+ id: 'openai/gpt-5.1-codex',
3845
+ label: 'GPT-5.1-Codex',
3846
+ modalities: {
3847
+ input: ['text', 'image'],
3848
+ output: ['text'],
3849
+ },
3850
+ toolCall: true,
3851
+ reasoning: true,
3852
+ attachment: true,
3853
+ temperature: true,
3854
+ knowledge: '2024-09-30',
3855
+ releaseDate: '2025-11-13',
3856
+ lastUpdated: '2025-11-13',
3857
+ openWeights: false,
3858
+ cost: {
3859
+ input: 1.25,
3860
+ output: 10,
3861
+ cacheRead: 0.125,
3862
+ },
3863
+ limit: {
3864
+ context: 400000,
3865
+ output: 128000,
3866
+ },
3867
+ },
3868
+ {
3869
+ id: 'openai/gpt-5.1-codex-mini',
3870
+ label: 'GPT-5.1-Codex-Mini',
3871
+ modalities: {
3872
+ input: ['text', 'image'],
3873
+ output: ['text'],
3874
+ },
3875
+ toolCall: true,
3876
+ reasoning: true,
3877
+ attachment: true,
3878
+ temperature: true,
3879
+ knowledge: '2024-09-30',
3880
+ releaseDate: '2025-11-13',
3881
+ lastUpdated: '2025-11-13',
3882
+ openWeights: false,
3883
+ cost: {
3884
+ input: 0.25,
3885
+ output: 2,
3886
+ cacheRead: 0.025,
3887
+ },
3888
+ limit: {
3889
+ context: 400000,
3890
+ output: 100000,
3891
+ },
3892
+ },
3158
3893
  {
3159
3894
  id: 'openai/gpt-oss-120b',
3160
3895
  label: 'GPT OSS 120B',
@@ -3178,6 +3913,29 @@ export const catalog: Record<ProviderId, ProviderCatalogEntry> = {
3178
3913
  output: 32768,
3179
3914
  },
3180
3915
  },
3916
+ {
3917
+ id: 'openai/gpt-oss-120b:exacto',
3918
+ label: 'GPT OSS 120B (exacto)',
3919
+ modalities: {
3920
+ input: ['text'],
3921
+ output: ['text'],
3922
+ },
3923
+ toolCall: true,
3924
+ reasoning: true,
3925
+ attachment: false,
3926
+ temperature: true,
3927
+ releaseDate: '2025-08-05',
3928
+ lastUpdated: '2025-08-05',
3929
+ openWeights: true,
3930
+ cost: {
3931
+ input: 0.05,
3932
+ output: 0.24,
3933
+ },
3934
+ limit: {
3935
+ context: 131072,
3936
+ output: 32768,
3937
+ },
3938
+ },
3181
3939
  {
3182
3940
  id: 'openai/gpt-oss-20b',
3183
3941
  label: 'GPT OSS 20B',
@@ -3282,20 +4040,92 @@ export const catalog: Record<ProviderId, ProviderCatalogEntry> = {
3282
4040
  output: ['text'],
3283
4041
  },
3284
4042
  toolCall: true,
3285
- reasoning: false,
4043
+ reasoning: false,
4044
+ attachment: true,
4045
+ temperature: false,
4046
+ knowledge: '2025-07',
4047
+ releaseDate: '2025-08-01',
4048
+ lastUpdated: '2025-08-01',
4049
+ openWeights: false,
4050
+ cost: {
4051
+ input: 0,
4052
+ output: 0,
4053
+ },
4054
+ limit: {
4055
+ context: 256000,
4056
+ output: 128000,
4057
+ },
4058
+ },
4059
+ {
4060
+ id: 'openrouter/polaris-alpha',
4061
+ label: 'Polaris Alpha',
4062
+ modalities: {
4063
+ input: ['text', 'image'],
4064
+ output: ['text'],
4065
+ },
4066
+ toolCall: true,
4067
+ reasoning: false,
4068
+ attachment: true,
4069
+ temperature: false,
4070
+ knowledge: '2025-07',
4071
+ releaseDate: '2025-07-30',
4072
+ lastUpdated: '2025-07-30',
4073
+ openWeights: false,
4074
+ cost: {
4075
+ input: 0,
4076
+ output: 0,
4077
+ },
4078
+ limit: {
4079
+ context: 256000,
4080
+ output: 128000,
4081
+ },
4082
+ },
4083
+ {
4084
+ id: 'openrouter/sherlock-dash-alpha',
4085
+ label: 'Sherlock Dash Alpha',
4086
+ modalities: {
4087
+ input: ['text', 'image'],
4088
+ output: ['text'],
4089
+ },
4090
+ toolCall: true,
4091
+ reasoning: false,
4092
+ attachment: true,
4093
+ temperature: false,
4094
+ knowledge: '2025-11',
4095
+ releaseDate: '2025-11-15',
4096
+ lastUpdated: '2025-11-15',
4097
+ openWeights: false,
4098
+ cost: {
4099
+ input: 0,
4100
+ output: 0,
4101
+ },
4102
+ limit: {
4103
+ context: 1840000,
4104
+ output: 64000,
4105
+ },
4106
+ },
4107
+ {
4108
+ id: 'openrouter/sherlock-think-alpha',
4109
+ label: 'Sherlock Think Alpha',
4110
+ modalities: {
4111
+ input: ['text', 'image'],
4112
+ output: ['text'],
4113
+ },
4114
+ toolCall: true,
4115
+ reasoning: true,
3286
4116
  attachment: true,
3287
4117
  temperature: false,
3288
- knowledge: '2025-07',
3289
- releaseDate: '2025-08-01',
3290
- lastUpdated: '2025-08-01',
4118
+ knowledge: '2025-11',
4119
+ releaseDate: '2025-11-15',
4120
+ lastUpdated: '2025-11-15',
3291
4121
  openWeights: false,
3292
4122
  cost: {
3293
4123
  input: 0,
3294
4124
  output: 0,
3295
4125
  },
3296
4126
  limit: {
3297
- context: 256000,
3298
- output: 128000,
4127
+ context: 1840000,
4128
+ output: 64000,
3299
4129
  },
3300
4130
  },
3301
4131
  {
@@ -3704,6 +4534,30 @@ export const catalog: Record<ProviderId, ProviderCatalogEntry> = {
3704
4534
  output: 66536,
3705
4535
  },
3706
4536
  },
4537
+ {
4538
+ id: 'qwen/qwen3-coder:exacto',
4539
+ label: 'Qwen3 Coder (exacto)',
4540
+ modalities: {
4541
+ input: ['text'],
4542
+ output: ['text'],
4543
+ },
4544
+ toolCall: true,
4545
+ reasoning: false,
4546
+ attachment: false,
4547
+ temperature: true,
4548
+ knowledge: '2025-04',
4549
+ releaseDate: '2025-07-23',
4550
+ lastUpdated: '2025-07-23',
4551
+ openWeights: true,
4552
+ cost: {
4553
+ input: 0.38,
4554
+ output: 1.53,
4555
+ },
4556
+ limit: {
4557
+ context: 131072,
4558
+ output: 32768,
4559
+ },
4560
+ },
3707
4561
  {
3708
4562
  id: 'qwen/qwen3-coder:free',
3709
4563
  label: 'Qwen3 Coder 480B A35B Instruct (free)',
@@ -4069,31 +4923,6 @@ export const catalog: Record<ProviderId, ProviderCatalogEntry> = {
4069
4923
  output: 30000,
4070
4924
  },
4071
4925
  },
4072
- {
4073
- id: 'x-ai/grok-4-fast:free',
4074
- label: 'Grok 4 Fast (free)',
4075
- modalities: {
4076
- input: ['text', 'image'],
4077
- output: ['text'],
4078
- },
4079
- toolCall: true,
4080
- reasoning: true,
4081
- attachment: false,
4082
- temperature: true,
4083
- knowledge: '2024-11',
4084
- releaseDate: '2025-08-19',
4085
- lastUpdated: '2025-08-19',
4086
- openWeights: false,
4087
- cost: {
4088
- input: 0,
4089
- output: 0,
4090
- cacheRead: 0,
4091
- },
4092
- limit: {
4093
- context: 2000000,
4094
- output: 2000000,
4095
- },
4096
- },
4097
4926
  {
4098
4927
  id: 'x-ai/grok-code-fast-1',
4099
4928
  label: 'Grok Code Fast 1',
@@ -4240,6 +5069,31 @@ export const catalog: Record<ProviderId, ProviderCatalogEntry> = {
4240
5069
  output: 128000,
4241
5070
  },
4242
5071
  },
5072
+ {
5073
+ id: 'z-ai/glm-4.6:exacto',
5074
+ label: 'GLM 4.6 (exacto)',
5075
+ modalities: {
5076
+ input: ['text'],
5077
+ output: ['text'],
5078
+ },
5079
+ toolCall: true,
5080
+ reasoning: true,
5081
+ attachment: false,
5082
+ temperature: true,
5083
+ knowledge: '2025-09',
5084
+ releaseDate: '2025-09-30',
5085
+ lastUpdated: '2025-09-30',
5086
+ openWeights: true,
5087
+ cost: {
5088
+ input: 0.6,
5089
+ output: 1.9,
5090
+ cacheRead: 0.11,
5091
+ },
5092
+ limit: {
5093
+ context: 200000,
5094
+ output: 128000,
5095
+ },
5096
+ },
4243
5097
  ],
4244
5098
  label: 'OpenRouter',
4245
5099
  env: ['OPENROUTER_API_KEY'],
@@ -4251,8 +5105,36 @@ export const catalog: Record<ProviderId, ProviderCatalogEntry> = {
4251
5105
  id: 'opencode',
4252
5106
  models: [
4253
5107
  {
4254
- id: 'an-g8x',
4255
- label: 'Code G8X (alpha)',
5108
+ id: 'alpha-doubao-seed-code',
5109
+ label: 'Doubao Seed Code (alpha)',
5110
+ modalities: {
5111
+ input: ['text', 'image', 'video'],
5112
+ output: ['text'],
5113
+ },
5114
+ toolCall: true,
5115
+ reasoning: true,
5116
+ attachment: false,
5117
+ temperature: true,
5118
+ knowledge: '2024-10',
5119
+ releaseDate: '2025-11-11',
5120
+ lastUpdated: '2025-11-11',
5121
+ openWeights: true,
5122
+ cost: {
5123
+ input: 0,
5124
+ output: 0,
5125
+ cacheRead: 0,
5126
+ },
5127
+ limit: {
5128
+ context: 256000,
5129
+ output: 32000,
5130
+ },
5131
+ provider: {
5132
+ npm: '@ai-sdk/openai',
5133
+ },
5134
+ },
5135
+ {
5136
+ id: 'alpha-gd4',
5137
+ label: 'Code GD4 (alpha)',
4256
5138
  modalities: {
4257
5139
  input: ['text'],
4258
5140
  output: ['text'],
@@ -4262,12 +5144,89 @@ export const catalog: Record<ProviderId, ProviderCatalogEntry> = {
4262
5144
  attachment: false,
4263
5145
  temperature: true,
4264
5146
  knowledge: '2025-01',
4265
- releaseDate: '2025-07-30',
4266
- lastUpdated: '2025-07-30',
5147
+ releaseDate: '2025-01-01',
5148
+ lastUpdated: '2025-01-01',
4267
5149
  openWeights: true,
4268
5150
  cost: {
4269
5151
  input: 0.5,
4270
5152
  output: 2,
5153
+ cacheRead: 0.15,
5154
+ },
5155
+ limit: {
5156
+ context: 200000,
5157
+ output: 128000,
5158
+ },
5159
+ },
5160
+ {
5161
+ id: 'alpha-kimi-k2-thinking',
5162
+ label: 'Kimi K2 Thinking (alpha)',
5163
+ modalities: {
5164
+ input: ['text'],
5165
+ output: ['text'],
5166
+ },
5167
+ toolCall: true,
5168
+ reasoning: true,
5169
+ attachment: false,
5170
+ temperature: true,
5171
+ knowledge: '2024-10',
5172
+ releaseDate: '2025-09-05',
5173
+ lastUpdated: '2025-09-05',
5174
+ openWeights: true,
5175
+ cost: {
5176
+ input: 0.6,
5177
+ output: 2.5,
5178
+ },
5179
+ limit: {
5180
+ context: 262144,
5181
+ output: 262144,
5182
+ },
5183
+ },
5184
+ {
5185
+ id: 'alpha-minimax-m2',
5186
+ label: 'MiniMax M2 (alpha)',
5187
+ modalities: {
5188
+ input: ['text'],
5189
+ output: ['text'],
5190
+ },
5191
+ toolCall: true,
5192
+ reasoning: true,
5193
+ attachment: false,
5194
+ temperature: true,
5195
+ knowledge: '2024-10',
5196
+ releaseDate: '2025-10-27',
5197
+ lastUpdated: '2025-10-27',
5198
+ openWeights: true,
5199
+ cost: {
5200
+ input: 0.3,
5201
+ output: 1.2,
5202
+ },
5203
+ limit: {
5204
+ context: 204800,
5205
+ output: 131072,
5206
+ },
5207
+ provider: {
5208
+ npm: '@ai-sdk/anthropic',
5209
+ },
5210
+ },
5211
+ {
5212
+ id: 'big-pickle',
5213
+ label: 'Big Pickle',
5214
+ modalities: {
5215
+ input: ['text'],
5216
+ output: ['text'],
5217
+ },
5218
+ toolCall: true,
5219
+ reasoning: true,
5220
+ attachment: false,
5221
+ temperature: true,
5222
+ knowledge: '2025-01',
5223
+ releaseDate: '2025-10-17',
5224
+ lastUpdated: '2025-10-17',
5225
+ openWeights: false,
5226
+ cost: {
5227
+ input: 0,
5228
+ output: 0,
5229
+ cacheRead: 0,
4271
5230
  },
4272
5231
  limit: {
4273
5232
  context: 200000,
@@ -4319,7 +5278,7 @@ export const catalog: Record<ProviderId, ProviderCatalogEntry> = {
4319
5278
  openWeights: false,
4320
5279
  cost: {
4321
5280
  input: 1,
4322
- output: 1.25,
5281
+ output: 5,
4323
5282
  cacheRead: 0.1,
4324
5283
  },
4325
5284
  limit: {
@@ -4415,18 +5374,19 @@ export const catalog: Record<ProviderId, ProviderCatalogEntry> = {
4415
5374
  },
4416
5375
  },
4417
5376
  {
4418
- id: 'code-supernova',
4419
- label: 'Code Supernova 1M',
5377
+ id: 'gemini-3-pro',
5378
+ label: 'Gemini 3 Pro',
4420
5379
  modalities: {
4421
- input: ['text', 'image'],
5380
+ input: ['text', 'image', 'video', 'audio', 'pdf'],
4422
5381
  output: ['text'],
4423
5382
  },
4424
5383
  toolCall: true,
4425
5384
  reasoning: true,
4426
5385
  attachment: true,
4427
5386
  temperature: true,
4428
- releaseDate: '2025-09-19',
4429
- lastUpdated: '2025-09-19',
5387
+ knowledge: '2025-01',
5388
+ releaseDate: '2025-11-18',
5389
+ lastUpdated: '2025-11-18',
4430
5390
  openWeights: false,
4431
5391
  cost: {
4432
5392
  input: 0,
@@ -4435,12 +5395,15 @@ export const catalog: Record<ProviderId, ProviderCatalogEntry> = {
4435
5395
  },
4436
5396
  limit: {
4437
5397
  context: 1000000,
4438
- output: 1000000,
5398
+ output: 64000,
5399
+ },
5400
+ provider: {
5401
+ npm: '@ai-sdk/google',
4439
5402
  },
4440
5403
  },
4441
5404
  {
4442
5405
  id: 'glm-4.6',
4443
- label: 'GLM-4.6 (beta)',
5406
+ label: 'GLM-4.6',
4444
5407
  modalities: {
4445
5408
  input: ['text'],
4446
5409
  output: ['text'],
@@ -4455,7 +5418,8 @@ export const catalog: Record<ProviderId, ProviderCatalogEntry> = {
4455
5418
  openWeights: true,
4456
5419
  cost: {
4457
5420
  input: 0.6,
4458
- output: 1.9,
5421
+ output: 2.2,
5422
+ cacheRead: 0.1,
4459
5423
  },
4460
5424
  limit: {
4461
5425
  context: 204800,
@@ -4492,7 +5456,7 @@ export const catalog: Record<ProviderId, ProviderCatalogEntry> = {
4492
5456
  },
4493
5457
  {
4494
5458
  id: 'gpt-5-codex',
4495
- label: 'GPT-5-Codex',
5459
+ label: 'GPT-5 Codex',
4496
5460
  modalities: {
4497
5461
  input: ['text', 'image'],
4498
5462
  output: ['text'],
@@ -4518,6 +5482,90 @@ export const catalog: Record<ProviderId, ProviderCatalogEntry> = {
4518
5482
  npm: '@ai-sdk/openai',
4519
5483
  },
4520
5484
  },
5485
+ {
5486
+ id: 'gpt-5-nano',
5487
+ label: 'GPT-5 Nano',
5488
+ modalities: {
5489
+ input: ['text', 'image'],
5490
+ output: ['text'],
5491
+ },
5492
+ toolCall: true,
5493
+ reasoning: true,
5494
+ attachment: true,
5495
+ temperature: false,
5496
+ knowledge: '2024-05-30',
5497
+ releaseDate: '2025-08-07',
5498
+ lastUpdated: '2025-08-07',
5499
+ openWeights: false,
5500
+ cost: {
5501
+ input: 0,
5502
+ output: 0,
5503
+ cacheRead: 0,
5504
+ },
5505
+ limit: {
5506
+ context: 400000,
5507
+ output: 128000,
5508
+ },
5509
+ provider: {
5510
+ npm: '@ai-sdk/openai',
5511
+ },
5512
+ },
5513
+ {
5514
+ id: 'gpt-5.1',
5515
+ label: 'GPT-5.1',
5516
+ modalities: {
5517
+ input: ['text', 'image'],
5518
+ output: ['text', 'image'],
5519
+ },
5520
+ toolCall: true,
5521
+ reasoning: true,
5522
+ attachment: true,
5523
+ temperature: false,
5524
+ knowledge: '2024-09-30',
5525
+ releaseDate: '2025-11-12',
5526
+ lastUpdated: '2025-11-12',
5527
+ openWeights: false,
5528
+ cost: {
5529
+ input: 1.25,
5530
+ output: 10,
5531
+ cacheRead: 0.125,
5532
+ },
5533
+ limit: {
5534
+ context: 400000,
5535
+ output: 128000,
5536
+ },
5537
+ provider: {
5538
+ npm: '@ai-sdk/openai',
5539
+ },
5540
+ },
5541
+ {
5542
+ id: 'gpt-5.1-codex',
5543
+ label: 'GPT-5.1 Codex',
5544
+ modalities: {
5545
+ input: ['text', 'image'],
5546
+ output: ['text', 'image'],
5547
+ },
5548
+ toolCall: true,
5549
+ reasoning: true,
5550
+ attachment: true,
5551
+ temperature: false,
5552
+ knowledge: '2024-09-30',
5553
+ releaseDate: '2025-11-12',
5554
+ lastUpdated: '2025-11-12',
5555
+ openWeights: false,
5556
+ cost: {
5557
+ input: 1.25,
5558
+ output: 10,
5559
+ cacheRead: 0.125,
5560
+ },
5561
+ limit: {
5562
+ context: 400000,
5563
+ output: 128000,
5564
+ },
5565
+ provider: {
5566
+ npm: '@ai-sdk/openai',
5567
+ },
5568
+ },
4521
5569
  {
4522
5570
  id: 'grok-code',
4523
5571
  label: 'Grok Code Fast 1',