@ottocode/sdk 0.1.236 → 0.1.242
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/config/src/index.ts +1 -0
- package/src/config/src/manager.ts +2 -1
- package/src/core/src/tools/builtin/fs/edit-shared.ts +83 -0
- package/src/core/src/tools/builtin/fs/edit.ts +129 -0
- package/src/core/src/tools/builtin/fs/edit.txt +9 -0
- package/src/core/src/tools/builtin/fs/index.ts +4 -0
- package/src/core/src/tools/builtin/fs/multiedit.ts +137 -0
- package/src/core/src/tools/builtin/fs/multiedit.txt +9 -0
- package/src/core/src/tools/builtin/fs/read-tracker.ts +72 -0
- package/src/core/src/tools/builtin/fs/read.ts +2 -0
- package/src/core/src/tools/builtin/fs/write.ts +2 -0
- package/src/core/src/tools/builtin/fs/write.txt +1 -1
- package/src/prompts/src/agents/build.txt +9 -2
- package/src/prompts/src/agents/init.txt +24 -0
- package/src/prompts/src/base.txt +10 -7
- package/src/prompts/src/providers/default.txt +25 -14
- package/src/prompts/src/providers/glm.txt +25 -14
- package/src/prompts/src/providers/google.txt +3 -3
- package/src/prompts/src/providers/moonshot.txt +25 -14
- package/src/prompts/src/providers/openai.txt +1 -1
- package/src/providers/src/catalog.ts +1518 -1276
- package/src/providers/src/oauth-models.ts +2 -0
- package/src/providers/src/utils.ts +1 -1
- package/src/skills/loader.ts +1 -1
- package/src/skills/parser.ts +209 -24
- package/src/types/src/config.ts +2 -1
|
@@ -9,6 +9,26 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
9
9
|
openai: {
|
|
10
10
|
id: 'openai',
|
|
11
11
|
models: [
|
|
12
|
+
{
|
|
13
|
+
id: 'chatgpt-image-latest',
|
|
14
|
+
ownedBy: 'openai',
|
|
15
|
+
label: 'chatgpt-image-latest',
|
|
16
|
+
modalities: {
|
|
17
|
+
input: ['text', 'image'],
|
|
18
|
+
output: ['text', 'image'],
|
|
19
|
+
},
|
|
20
|
+
toolCall: false,
|
|
21
|
+
reasoningText: false,
|
|
22
|
+
attachment: true,
|
|
23
|
+
temperature: false,
|
|
24
|
+
releaseDate: '2025-12-16',
|
|
25
|
+
lastUpdated: '2025-12-16',
|
|
26
|
+
openWeights: false,
|
|
27
|
+
limit: {
|
|
28
|
+
context: 0,
|
|
29
|
+
output: 0,
|
|
30
|
+
},
|
|
31
|
+
},
|
|
12
32
|
{
|
|
13
33
|
id: 'codex-mini-latest',
|
|
14
34
|
ownedBy: 'openai',
|
|
@@ -116,7 +136,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
116
136
|
ownedBy: 'openai',
|
|
117
137
|
label: 'GPT-4.1',
|
|
118
138
|
modalities: {
|
|
119
|
-
input: ['text', 'image'],
|
|
139
|
+
input: ['text', 'image', 'pdf'],
|
|
120
140
|
output: ['text'],
|
|
121
141
|
},
|
|
122
142
|
toolCall: true,
|
|
@@ -142,7 +162,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
142
162
|
ownedBy: 'openai',
|
|
143
163
|
label: 'GPT-4.1 mini',
|
|
144
164
|
modalities: {
|
|
145
|
-
input: ['text', 'image'],
|
|
165
|
+
input: ['text', 'image', 'pdf'],
|
|
146
166
|
output: ['text'],
|
|
147
167
|
},
|
|
148
168
|
toolCall: true,
|
|
@@ -194,7 +214,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
194
214
|
ownedBy: 'openai',
|
|
195
215
|
label: 'GPT-4o',
|
|
196
216
|
modalities: {
|
|
197
|
-
input: ['text', 'image'],
|
|
217
|
+
input: ['text', 'image', 'pdf'],
|
|
198
218
|
output: ['text'],
|
|
199
219
|
},
|
|
200
220
|
toolCall: true,
|
|
@@ -297,7 +317,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
297
317
|
ownedBy: 'openai',
|
|
298
318
|
label: 'GPT-4o mini',
|
|
299
319
|
modalities: {
|
|
300
|
-
input: ['text', 'image'],
|
|
320
|
+
input: ['text', 'image', 'pdf'],
|
|
301
321
|
output: ['text'],
|
|
302
322
|
},
|
|
303
323
|
toolCall: true,
|
|
@@ -705,6 +725,32 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
705
725
|
output: 128000,
|
|
706
726
|
},
|
|
707
727
|
},
|
|
728
|
+
{
|
|
729
|
+
id: 'gpt-5.3-chat-latest',
|
|
730
|
+
ownedBy: 'openai',
|
|
731
|
+
label: 'GPT-5.3 Chat (latest)',
|
|
732
|
+
modalities: {
|
|
733
|
+
input: ['text', 'image'],
|
|
734
|
+
output: ['text'],
|
|
735
|
+
},
|
|
736
|
+
toolCall: true,
|
|
737
|
+
reasoningText: false,
|
|
738
|
+
attachment: true,
|
|
739
|
+
temperature: true,
|
|
740
|
+
knowledge: '2025-08-31',
|
|
741
|
+
releaseDate: '2026-03-03',
|
|
742
|
+
lastUpdated: '2026-03-03',
|
|
743
|
+
openWeights: false,
|
|
744
|
+
cost: {
|
|
745
|
+
input: 1.75,
|
|
746
|
+
output: 14,
|
|
747
|
+
cacheRead: 0.175,
|
|
748
|
+
},
|
|
749
|
+
limit: {
|
|
750
|
+
context: 128000,
|
|
751
|
+
output: 16384,
|
|
752
|
+
},
|
|
753
|
+
},
|
|
708
754
|
{
|
|
709
755
|
id: 'gpt-5.3-codex',
|
|
710
756
|
ownedBy: 'openai',
|
|
@@ -783,6 +829,58 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
783
829
|
output: 128000,
|
|
784
830
|
},
|
|
785
831
|
},
|
|
832
|
+
{
|
|
833
|
+
id: 'gpt-5.4-mini',
|
|
834
|
+
ownedBy: 'openai',
|
|
835
|
+
label: 'GPT-5.4 mini',
|
|
836
|
+
modalities: {
|
|
837
|
+
input: ['text', 'image'],
|
|
838
|
+
output: ['text'],
|
|
839
|
+
},
|
|
840
|
+
toolCall: true,
|
|
841
|
+
reasoningText: true,
|
|
842
|
+
attachment: true,
|
|
843
|
+
temperature: false,
|
|
844
|
+
knowledge: '2025-08-31',
|
|
845
|
+
releaseDate: '2026-03-17',
|
|
846
|
+
lastUpdated: '2026-03-17',
|
|
847
|
+
openWeights: false,
|
|
848
|
+
cost: {
|
|
849
|
+
input: 0.75,
|
|
850
|
+
output: 4.5,
|
|
851
|
+
cacheRead: 0.075,
|
|
852
|
+
},
|
|
853
|
+
limit: {
|
|
854
|
+
context: 400000,
|
|
855
|
+
output: 128000,
|
|
856
|
+
},
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
id: 'gpt-5.4-nano',
|
|
860
|
+
ownedBy: 'openai',
|
|
861
|
+
label: 'GPT-5.4 nano',
|
|
862
|
+
modalities: {
|
|
863
|
+
input: ['text', 'image'],
|
|
864
|
+
output: ['text'],
|
|
865
|
+
},
|
|
866
|
+
toolCall: true,
|
|
867
|
+
reasoningText: true,
|
|
868
|
+
attachment: true,
|
|
869
|
+
temperature: false,
|
|
870
|
+
knowledge: '2025-08-31',
|
|
871
|
+
releaseDate: '2026-03-17',
|
|
872
|
+
lastUpdated: '2026-03-17',
|
|
873
|
+
openWeights: false,
|
|
874
|
+
cost: {
|
|
875
|
+
input: 0.2,
|
|
876
|
+
output: 1.25,
|
|
877
|
+
cacheRead: 0.02,
|
|
878
|
+
},
|
|
879
|
+
limit: {
|
|
880
|
+
context: 400000,
|
|
881
|
+
output: 128000,
|
|
882
|
+
},
|
|
883
|
+
},
|
|
786
884
|
{
|
|
787
885
|
id: 'gpt-5.4-pro',
|
|
788
886
|
ownedBy: 'openai',
|
|
@@ -808,12 +906,72 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
808
906
|
output: 128000,
|
|
809
907
|
},
|
|
810
908
|
},
|
|
909
|
+
{
|
|
910
|
+
id: 'gpt-image-1',
|
|
911
|
+
ownedBy: 'openai',
|
|
912
|
+
label: 'gpt-image-1',
|
|
913
|
+
modalities: {
|
|
914
|
+
input: ['text', 'image'],
|
|
915
|
+
output: ['image'],
|
|
916
|
+
},
|
|
917
|
+
toolCall: false,
|
|
918
|
+
reasoningText: false,
|
|
919
|
+
attachment: true,
|
|
920
|
+
temperature: false,
|
|
921
|
+
releaseDate: '2025-04-24',
|
|
922
|
+
lastUpdated: '2025-04-24',
|
|
923
|
+
openWeights: false,
|
|
924
|
+
limit: {
|
|
925
|
+
context: 0,
|
|
926
|
+
output: 0,
|
|
927
|
+
},
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
id: 'gpt-image-1-mini',
|
|
931
|
+
ownedBy: 'openai',
|
|
932
|
+
label: 'gpt-image-1-mini',
|
|
933
|
+
modalities: {
|
|
934
|
+
input: ['text', 'image'],
|
|
935
|
+
output: ['text', 'image'],
|
|
936
|
+
},
|
|
937
|
+
toolCall: false,
|
|
938
|
+
reasoningText: false,
|
|
939
|
+
attachment: true,
|
|
940
|
+
temperature: false,
|
|
941
|
+
releaseDate: '2025-09-26',
|
|
942
|
+
lastUpdated: '2025-09-26',
|
|
943
|
+
openWeights: false,
|
|
944
|
+
limit: {
|
|
945
|
+
context: 0,
|
|
946
|
+
output: 0,
|
|
947
|
+
},
|
|
948
|
+
},
|
|
949
|
+
{
|
|
950
|
+
id: 'gpt-image-1.5',
|
|
951
|
+
ownedBy: 'openai',
|
|
952
|
+
label: 'gpt-image-1.5',
|
|
953
|
+
modalities: {
|
|
954
|
+
input: ['text', 'image'],
|
|
955
|
+
output: ['text', 'image'],
|
|
956
|
+
},
|
|
957
|
+
toolCall: false,
|
|
958
|
+
reasoningText: false,
|
|
959
|
+
attachment: true,
|
|
960
|
+
temperature: false,
|
|
961
|
+
releaseDate: '2025-11-25',
|
|
962
|
+
lastUpdated: '2025-11-25',
|
|
963
|
+
openWeights: false,
|
|
964
|
+
limit: {
|
|
965
|
+
context: 0,
|
|
966
|
+
output: 0,
|
|
967
|
+
},
|
|
968
|
+
},
|
|
811
969
|
{
|
|
812
970
|
id: 'o1',
|
|
813
971
|
ownedBy: 'openai',
|
|
814
972
|
label: 'o1',
|
|
815
973
|
modalities: {
|
|
816
|
-
input: ['text', 'image'],
|
|
974
|
+
input: ['text', 'image', 'pdf'],
|
|
817
975
|
output: ['text'],
|
|
818
976
|
},
|
|
819
977
|
toolCall: true,
|
|
@@ -916,7 +1074,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
916
1074
|
ownedBy: 'openai',
|
|
917
1075
|
label: 'o3',
|
|
918
1076
|
modalities: {
|
|
919
|
-
input: ['text', 'image'],
|
|
1077
|
+
input: ['text', 'image', 'pdf'],
|
|
920
1078
|
output: ['text'],
|
|
921
1079
|
},
|
|
922
1080
|
toolCall: true,
|
|
@@ -1285,33 +1443,6 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
1285
1443
|
output: 64000,
|
|
1286
1444
|
},
|
|
1287
1445
|
},
|
|
1288
|
-
{
|
|
1289
|
-
id: 'claude-3-7-sonnet-latest',
|
|
1290
|
-
ownedBy: 'anthropic',
|
|
1291
|
-
label: 'Claude Sonnet 3.7 (latest)',
|
|
1292
|
-
modalities: {
|
|
1293
|
-
input: ['text', 'image', 'pdf'],
|
|
1294
|
-
output: ['text'],
|
|
1295
|
-
},
|
|
1296
|
-
toolCall: true,
|
|
1297
|
-
reasoningText: true,
|
|
1298
|
-
attachment: true,
|
|
1299
|
-
temperature: true,
|
|
1300
|
-
knowledge: '2024-10-31',
|
|
1301
|
-
releaseDate: '2025-02-19',
|
|
1302
|
-
lastUpdated: '2025-02-19',
|
|
1303
|
-
openWeights: false,
|
|
1304
|
-
cost: {
|
|
1305
|
-
input: 3,
|
|
1306
|
-
output: 15,
|
|
1307
|
-
cacheRead: 0.3,
|
|
1308
|
-
cacheWrite: 3.75,
|
|
1309
|
-
},
|
|
1310
|
-
limit: {
|
|
1311
|
-
context: 200000,
|
|
1312
|
-
output: 64000,
|
|
1313
|
-
},
|
|
1314
|
-
},
|
|
1315
1446
|
{
|
|
1316
1447
|
id: 'claude-3-haiku-20240307',
|
|
1317
1448
|
ownedBy: 'anthropic',
|
|
@@ -1623,7 +1754,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
1623
1754
|
temperature: true,
|
|
1624
1755
|
knowledge: '2025-05',
|
|
1625
1756
|
releaseDate: '2026-02-05',
|
|
1626
|
-
lastUpdated: '2026-
|
|
1757
|
+
lastUpdated: '2026-03-13',
|
|
1627
1758
|
openWeights: false,
|
|
1628
1759
|
cost: {
|
|
1629
1760
|
input: 5,
|
|
@@ -1632,7 +1763,34 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
1632
1763
|
cacheWrite: 6.25,
|
|
1633
1764
|
},
|
|
1634
1765
|
limit: {
|
|
1635
|
-
context:
|
|
1766
|
+
context: 1000000,
|
|
1767
|
+
output: 128000,
|
|
1768
|
+
},
|
|
1769
|
+
},
|
|
1770
|
+
{
|
|
1771
|
+
id: 'claude-opus-4-7',
|
|
1772
|
+
ownedBy: 'anthropic',
|
|
1773
|
+
label: 'Claude Opus 4.7',
|
|
1774
|
+
modalities: {
|
|
1775
|
+
input: ['text', 'image', 'pdf'],
|
|
1776
|
+
output: ['text'],
|
|
1777
|
+
},
|
|
1778
|
+
toolCall: true,
|
|
1779
|
+
reasoningText: true,
|
|
1780
|
+
attachment: true,
|
|
1781
|
+
temperature: true,
|
|
1782
|
+
knowledge: '2026-01',
|
|
1783
|
+
releaseDate: '2026-04-16',
|
|
1784
|
+
lastUpdated: '2026-04-16',
|
|
1785
|
+
openWeights: false,
|
|
1786
|
+
cost: {
|
|
1787
|
+
input: 5,
|
|
1788
|
+
output: 25,
|
|
1789
|
+
cacheRead: 0.5,
|
|
1790
|
+
cacheWrite: 6.25,
|
|
1791
|
+
},
|
|
1792
|
+
limit: {
|
|
1793
|
+
context: 1000000,
|
|
1636
1794
|
output: 128000,
|
|
1637
1795
|
},
|
|
1638
1796
|
},
|
|
@@ -1758,7 +1916,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
1758
1916
|
temperature: true,
|
|
1759
1917
|
knowledge: '2025-08',
|
|
1760
1918
|
releaseDate: '2026-02-17',
|
|
1761
|
-
lastUpdated: '2026-
|
|
1919
|
+
lastUpdated: '2026-03-13',
|
|
1762
1920
|
openWeights: false,
|
|
1763
1921
|
cost: {
|
|
1764
1922
|
input: 3,
|
|
@@ -1767,7 +1925,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
1767
1925
|
cacheWrite: 3.75,
|
|
1768
1926
|
},
|
|
1769
1927
|
limit: {
|
|
1770
|
-
context:
|
|
1928
|
+
context: 1000000,
|
|
1771
1929
|
output: 64000,
|
|
1772
1930
|
},
|
|
1773
1931
|
},
|
|
@@ -2365,9 +2523,10 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
2365
2523
|
lastUpdated: '2026-03-03',
|
|
2366
2524
|
openWeights: false,
|
|
2367
2525
|
cost: {
|
|
2368
|
-
input: 0.
|
|
2369
|
-
output:
|
|
2370
|
-
cacheRead: 0.
|
|
2526
|
+
input: 0.25,
|
|
2527
|
+
output: 1.5,
|
|
2528
|
+
cacheRead: 0.025,
|
|
2529
|
+
cacheWrite: 1,
|
|
2371
2530
|
},
|
|
2372
2531
|
limit: {
|
|
2373
2532
|
context: 1048576,
|
|
@@ -2553,75 +2712,216 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
2553
2712
|
output: 65536,
|
|
2554
2713
|
},
|
|
2555
2714
|
},
|
|
2556
|
-
],
|
|
2557
|
-
label: 'Google',
|
|
2558
|
-
env: ['GOOGLE_GENERATIVE_AI_API_KEY', 'GEMINI_API_KEY'],
|
|
2559
|
-
npm: '@ai-sdk/google',
|
|
2560
|
-
doc: 'https://ai.google.dev/gemini-api/docs/pricing',
|
|
2561
|
-
},
|
|
2562
|
-
openrouter: {
|
|
2563
|
-
id: 'openrouter',
|
|
2564
|
-
models: [
|
|
2565
2715
|
{
|
|
2566
|
-
id: '
|
|
2567
|
-
|
|
2716
|
+
id: 'gemma-3-12b-it',
|
|
2717
|
+
ownedBy: 'google',
|
|
2718
|
+
label: 'Gemma 3 12B',
|
|
2568
2719
|
modalities: {
|
|
2569
|
-
input: ['text', 'image'
|
|
2720
|
+
input: ['text', 'image'],
|
|
2570
2721
|
output: ['text'],
|
|
2571
2722
|
},
|
|
2572
2723
|
toolCall: false,
|
|
2573
|
-
reasoningText:
|
|
2574
|
-
attachment:
|
|
2724
|
+
reasoningText: false,
|
|
2725
|
+
attachment: true,
|
|
2575
2726
|
temperature: true,
|
|
2576
|
-
knowledge: '
|
|
2577
|
-
releaseDate: '
|
|
2578
|
-
lastUpdated: '
|
|
2727
|
+
knowledge: '2024-10',
|
|
2728
|
+
releaseDate: '2025-03-13',
|
|
2729
|
+
lastUpdated: '2025-03-13',
|
|
2579
2730
|
openWeights: true,
|
|
2580
2731
|
cost: {
|
|
2581
2732
|
input: 0,
|
|
2582
2733
|
output: 0,
|
|
2583
2734
|
},
|
|
2584
2735
|
limit: {
|
|
2585
|
-
context:
|
|
2586
|
-
output:
|
|
2736
|
+
context: 32768,
|
|
2737
|
+
output: 8192,
|
|
2587
2738
|
},
|
|
2588
2739
|
},
|
|
2589
2740
|
{
|
|
2590
|
-
id: '
|
|
2591
|
-
ownedBy: '
|
|
2592
|
-
label: '
|
|
2741
|
+
id: 'gemma-3-27b-it',
|
|
2742
|
+
ownedBy: 'google',
|
|
2743
|
+
label: 'Gemma 3 27B',
|
|
2593
2744
|
modalities: {
|
|
2594
|
-
input: ['text', 'image'
|
|
2745
|
+
input: ['text', 'image'],
|
|
2595
2746
|
output: ['text'],
|
|
2596
2747
|
},
|
|
2597
2748
|
toolCall: true,
|
|
2598
2749
|
reasoningText: false,
|
|
2599
2750
|
attachment: true,
|
|
2600
2751
|
temperature: true,
|
|
2601
|
-
knowledge: '2024-
|
|
2602
|
-
releaseDate: '
|
|
2603
|
-
lastUpdated: '
|
|
2604
|
-
openWeights:
|
|
2752
|
+
knowledge: '2024-10',
|
|
2753
|
+
releaseDate: '2025-03-12',
|
|
2754
|
+
lastUpdated: '2025-03-12',
|
|
2755
|
+
openWeights: true,
|
|
2605
2756
|
cost: {
|
|
2606
|
-
input: 0
|
|
2607
|
-
output:
|
|
2608
|
-
cacheRead: 0.08,
|
|
2609
|
-
cacheWrite: 1,
|
|
2757
|
+
input: 0,
|
|
2758
|
+
output: 0,
|
|
2610
2759
|
},
|
|
2611
2760
|
limit: {
|
|
2612
|
-
context:
|
|
2761
|
+
context: 131072,
|
|
2613
2762
|
output: 8192,
|
|
2614
2763
|
},
|
|
2615
2764
|
},
|
|
2616
2765
|
{
|
|
2617
|
-
id: '
|
|
2618
|
-
ownedBy: '
|
|
2619
|
-
label: '
|
|
2766
|
+
id: 'gemma-3-4b-it',
|
|
2767
|
+
ownedBy: 'google',
|
|
2768
|
+
label: 'Gemma 3 4B',
|
|
2620
2769
|
modalities: {
|
|
2621
|
-
input: ['text', 'image'
|
|
2770
|
+
input: ['text', 'image'],
|
|
2622
2771
|
output: ['text'],
|
|
2623
2772
|
},
|
|
2624
|
-
toolCall:
|
|
2773
|
+
toolCall: false,
|
|
2774
|
+
reasoningText: false,
|
|
2775
|
+
attachment: true,
|
|
2776
|
+
temperature: true,
|
|
2777
|
+
knowledge: '2024-10',
|
|
2778
|
+
releaseDate: '2025-03-13',
|
|
2779
|
+
lastUpdated: '2025-03-13',
|
|
2780
|
+
openWeights: true,
|
|
2781
|
+
cost: {
|
|
2782
|
+
input: 0,
|
|
2783
|
+
output: 0,
|
|
2784
|
+
},
|
|
2785
|
+
limit: {
|
|
2786
|
+
context: 32768,
|
|
2787
|
+
output: 8192,
|
|
2788
|
+
},
|
|
2789
|
+
},
|
|
2790
|
+
{
|
|
2791
|
+
id: 'gemma-3n-e2b-it',
|
|
2792
|
+
ownedBy: 'google',
|
|
2793
|
+
label: 'Gemma 3n 2B',
|
|
2794
|
+
modalities: {
|
|
2795
|
+
input: ['text'],
|
|
2796
|
+
output: ['text'],
|
|
2797
|
+
},
|
|
2798
|
+
toolCall: false,
|
|
2799
|
+
reasoningText: false,
|
|
2800
|
+
attachment: true,
|
|
2801
|
+
temperature: true,
|
|
2802
|
+
knowledge: '2024-10',
|
|
2803
|
+
releaseDate: '2025-07-09',
|
|
2804
|
+
lastUpdated: '2025-07-09',
|
|
2805
|
+
openWeights: true,
|
|
2806
|
+
cost: {
|
|
2807
|
+
input: 0,
|
|
2808
|
+
output: 0,
|
|
2809
|
+
},
|
|
2810
|
+
limit: {
|
|
2811
|
+
context: 8192,
|
|
2812
|
+
output: 2000,
|
|
2813
|
+
},
|
|
2814
|
+
},
|
|
2815
|
+
{
|
|
2816
|
+
id: 'gemma-3n-e4b-it',
|
|
2817
|
+
ownedBy: 'google',
|
|
2818
|
+
label: 'Gemma 3n 4B',
|
|
2819
|
+
modalities: {
|
|
2820
|
+
input: ['text'],
|
|
2821
|
+
output: ['text'],
|
|
2822
|
+
},
|
|
2823
|
+
toolCall: false,
|
|
2824
|
+
reasoningText: false,
|
|
2825
|
+
attachment: true,
|
|
2826
|
+
temperature: true,
|
|
2827
|
+
knowledge: '2024-10',
|
|
2828
|
+
releaseDate: '2025-05-20',
|
|
2829
|
+
lastUpdated: '2025-05-20',
|
|
2830
|
+
openWeights: true,
|
|
2831
|
+
cost: {
|
|
2832
|
+
input: 0,
|
|
2833
|
+
output: 0,
|
|
2834
|
+
},
|
|
2835
|
+
limit: {
|
|
2836
|
+
context: 8192,
|
|
2837
|
+
output: 2000,
|
|
2838
|
+
},
|
|
2839
|
+
},
|
|
2840
|
+
{
|
|
2841
|
+
id: 'gemma-4-26b-it',
|
|
2842
|
+
ownedBy: 'google',
|
|
2843
|
+
label: 'Gemma 4 26B',
|
|
2844
|
+
modalities: {
|
|
2845
|
+
input: ['text', 'image'],
|
|
2846
|
+
output: ['text'],
|
|
2847
|
+
},
|
|
2848
|
+
toolCall: true,
|
|
2849
|
+
reasoningText: true,
|
|
2850
|
+
attachment: false,
|
|
2851
|
+
temperature: true,
|
|
2852
|
+
releaseDate: '2026-04-02',
|
|
2853
|
+
lastUpdated: '2026-04-02',
|
|
2854
|
+
openWeights: true,
|
|
2855
|
+
limit: {
|
|
2856
|
+
context: 256000,
|
|
2857
|
+
output: 8192,
|
|
2858
|
+
},
|
|
2859
|
+
},
|
|
2860
|
+
{
|
|
2861
|
+
id: 'gemma-4-31b-it',
|
|
2862
|
+
ownedBy: 'google',
|
|
2863
|
+
label: 'Gemma 4 31B',
|
|
2864
|
+
modalities: {
|
|
2865
|
+
input: ['text', 'image'],
|
|
2866
|
+
output: ['text'],
|
|
2867
|
+
},
|
|
2868
|
+
toolCall: true,
|
|
2869
|
+
reasoningText: true,
|
|
2870
|
+
attachment: false,
|
|
2871
|
+
temperature: true,
|
|
2872
|
+
releaseDate: '2026-04-02',
|
|
2873
|
+
lastUpdated: '2026-04-02',
|
|
2874
|
+
openWeights: true,
|
|
2875
|
+
limit: {
|
|
2876
|
+
context: 256000,
|
|
2877
|
+
output: 8192,
|
|
2878
|
+
},
|
|
2879
|
+
},
|
|
2880
|
+
],
|
|
2881
|
+
label: 'Google',
|
|
2882
|
+
env: ['GOOGLE_GENERATIVE_AI_API_KEY', 'GEMINI_API_KEY'],
|
|
2883
|
+
npm: '@ai-sdk/google',
|
|
2884
|
+
doc: 'https://ai.google.dev/gemini-api/docs/pricing',
|
|
2885
|
+
},
|
|
2886
|
+
openrouter: {
|
|
2887
|
+
id: 'openrouter',
|
|
2888
|
+
models: [
|
|
2889
|
+
{
|
|
2890
|
+
id: 'anthropic/claude-3.5-haiku',
|
|
2891
|
+
ownedBy: 'anthropic',
|
|
2892
|
+
label: 'Claude Haiku 3.5',
|
|
2893
|
+
modalities: {
|
|
2894
|
+
input: ['text', 'image', 'pdf'],
|
|
2895
|
+
output: ['text'],
|
|
2896
|
+
},
|
|
2897
|
+
toolCall: true,
|
|
2898
|
+
reasoningText: false,
|
|
2899
|
+
attachment: true,
|
|
2900
|
+
temperature: true,
|
|
2901
|
+
knowledge: '2024-07-31',
|
|
2902
|
+
releaseDate: '2024-10-22',
|
|
2903
|
+
lastUpdated: '2024-10-22',
|
|
2904
|
+
openWeights: false,
|
|
2905
|
+
cost: {
|
|
2906
|
+
input: 0.8,
|
|
2907
|
+
output: 4,
|
|
2908
|
+
cacheRead: 0.08,
|
|
2909
|
+
cacheWrite: 1,
|
|
2910
|
+
},
|
|
2911
|
+
limit: {
|
|
2912
|
+
context: 200000,
|
|
2913
|
+
output: 8192,
|
|
2914
|
+
},
|
|
2915
|
+
},
|
|
2916
|
+
{
|
|
2917
|
+
id: 'anthropic/claude-3.7-sonnet',
|
|
2918
|
+
ownedBy: 'anthropic',
|
|
2919
|
+
label: 'Claude Sonnet 3.7',
|
|
2920
|
+
modalities: {
|
|
2921
|
+
input: ['text', 'image', 'pdf'],
|
|
2922
|
+
output: ['text'],
|
|
2923
|
+
},
|
|
2924
|
+
toolCall: true,
|
|
2625
2925
|
reasoningText: true,
|
|
2626
2926
|
attachment: true,
|
|
2627
2927
|
temperature: true,
|
|
@@ -2880,27 +3180,26 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
2880
3180
|
},
|
|
2881
3181
|
},
|
|
2882
3182
|
{
|
|
2883
|
-
id: 'arcee-ai/trinity-
|
|
2884
|
-
label: 'Trinity
|
|
3183
|
+
id: 'arcee-ai/trinity-large-thinking',
|
|
3184
|
+
label: 'Trinity Large Thinking',
|
|
2885
3185
|
modalities: {
|
|
2886
3186
|
input: ['text'],
|
|
2887
3187
|
output: ['text'],
|
|
2888
3188
|
},
|
|
2889
3189
|
toolCall: true,
|
|
2890
|
-
reasoningText:
|
|
3190
|
+
reasoningText: true,
|
|
2891
3191
|
attachment: false,
|
|
2892
3192
|
temperature: true,
|
|
2893
|
-
|
|
2894
|
-
|
|
2895
|
-
lastUpdated: '2026-01-28',
|
|
3193
|
+
releaseDate: '2026-04-01',
|
|
3194
|
+
lastUpdated: '2026-04-03',
|
|
2896
3195
|
openWeights: true,
|
|
2897
3196
|
cost: {
|
|
2898
|
-
input: 0,
|
|
2899
|
-
output: 0,
|
|
3197
|
+
input: 0.22,
|
|
3198
|
+
output: 0.85,
|
|
2900
3199
|
},
|
|
2901
3200
|
limit: {
|
|
2902
|
-
context:
|
|
2903
|
-
output:
|
|
3201
|
+
context: 262144,
|
|
3202
|
+
output: 80000,
|
|
2904
3203
|
},
|
|
2905
3204
|
},
|
|
2906
3205
|
{
|
|
@@ -3047,54 +3346,6 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
3047
3346
|
output: 32768,
|
|
3048
3347
|
},
|
|
3049
3348
|
},
|
|
3050
|
-
{
|
|
3051
|
-
id: 'cognitivecomputations/dolphin3.0-mistral-24b',
|
|
3052
|
-
label: 'Dolphin3.0 Mistral 24B',
|
|
3053
|
-
modalities: {
|
|
3054
|
-
input: ['text'],
|
|
3055
|
-
output: ['text'],
|
|
3056
|
-
},
|
|
3057
|
-
toolCall: true,
|
|
3058
|
-
reasoningText: false,
|
|
3059
|
-
attachment: false,
|
|
3060
|
-
temperature: true,
|
|
3061
|
-
knowledge: '2024-10',
|
|
3062
|
-
releaseDate: '2025-02-13',
|
|
3063
|
-
lastUpdated: '2025-02-13',
|
|
3064
|
-
openWeights: true,
|
|
3065
|
-
cost: {
|
|
3066
|
-
input: 0,
|
|
3067
|
-
output: 0,
|
|
3068
|
-
},
|
|
3069
|
-
limit: {
|
|
3070
|
-
context: 32768,
|
|
3071
|
-
output: 8192,
|
|
3072
|
-
},
|
|
3073
|
-
},
|
|
3074
|
-
{
|
|
3075
|
-
id: 'cognitivecomputations/dolphin3.0-r1-mistral-24b',
|
|
3076
|
-
label: 'Dolphin3.0 R1 Mistral 24B',
|
|
3077
|
-
modalities: {
|
|
3078
|
-
input: ['text'],
|
|
3079
|
-
output: ['text'],
|
|
3080
|
-
},
|
|
3081
|
-
toolCall: true,
|
|
3082
|
-
reasoningText: true,
|
|
3083
|
-
attachment: false,
|
|
3084
|
-
temperature: true,
|
|
3085
|
-
knowledge: '2024-10',
|
|
3086
|
-
releaseDate: '2025-02-13',
|
|
3087
|
-
lastUpdated: '2025-02-13',
|
|
3088
|
-
openWeights: true,
|
|
3089
|
-
cost: {
|
|
3090
|
-
input: 0,
|
|
3091
|
-
output: 0,
|
|
3092
|
-
},
|
|
3093
|
-
limit: {
|
|
3094
|
-
context: 32768,
|
|
3095
|
-
output: 8192,
|
|
3096
|
-
},
|
|
3097
|
-
},
|
|
3098
3349
|
{
|
|
3099
3350
|
id: 'deepseek/deepseek-chat-v3-0324',
|
|
3100
3351
|
label: 'DeepSeek V3 0324',
|
|
@@ -3144,8 +3395,8 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
3144
3395
|
},
|
|
3145
3396
|
},
|
|
3146
3397
|
{
|
|
3147
|
-
id: 'deepseek/deepseek-r1
|
|
3148
|
-
label: '
|
|
3398
|
+
id: 'deepseek/deepseek-r1',
|
|
3399
|
+
label: 'DeepSeek: R1',
|
|
3149
3400
|
modalities: {
|
|
3150
3401
|
input: ['text'],
|
|
3151
3402
|
output: ['text'],
|
|
@@ -3154,41 +3405,17 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
3154
3405
|
reasoningText: true,
|
|
3155
3406
|
attachment: false,
|
|
3156
3407
|
temperature: true,
|
|
3157
|
-
knowledge: '
|
|
3158
|
-
releaseDate: '2025-
|
|
3159
|
-
lastUpdated: '2025-
|
|
3160
|
-
openWeights: true,
|
|
3161
|
-
cost: {
|
|
3162
|
-
input: 0,
|
|
3163
|
-
output: 0,
|
|
3164
|
-
},
|
|
3165
|
-
limit: {
|
|
3166
|
-
context: 131072,
|
|
3167
|
-
output: 131072,
|
|
3168
|
-
},
|
|
3169
|
-
},
|
|
3170
|
-
{
|
|
3171
|
-
id: 'deepseek/deepseek-r1-0528:free',
|
|
3172
|
-
label: 'R1 0528 (free)',
|
|
3173
|
-
modalities: {
|
|
3174
|
-
input: ['text'],
|
|
3175
|
-
output: ['text'],
|
|
3176
|
-
},
|
|
3177
|
-
toolCall: false,
|
|
3178
|
-
reasoningText: true,
|
|
3179
|
-
attachment: false,
|
|
3180
|
-
temperature: true,
|
|
3181
|
-
knowledge: '2025-05',
|
|
3182
|
-
releaseDate: '2025-05-28',
|
|
3183
|
-
lastUpdated: '2025-05-28',
|
|
3408
|
+
knowledge: '2024-07',
|
|
3409
|
+
releaseDate: '2025-01-20',
|
|
3410
|
+
lastUpdated: '2025-01-20',
|
|
3184
3411
|
openWeights: true,
|
|
3185
3412
|
cost: {
|
|
3186
|
-
input: 0,
|
|
3187
|
-
output:
|
|
3413
|
+
input: 0.7,
|
|
3414
|
+
output: 2.5,
|
|
3188
3415
|
},
|
|
3189
3416
|
limit: {
|
|
3190
|
-
context:
|
|
3191
|
-
output:
|
|
3417
|
+
context: 64000,
|
|
3418
|
+
output: 16000,
|
|
3192
3419
|
},
|
|
3193
3420
|
},
|
|
3194
3421
|
{
|
|
@@ -3216,32 +3443,32 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
3216
3443
|
},
|
|
3217
3444
|
},
|
|
3218
3445
|
{
|
|
3219
|
-
id: 'deepseek/deepseek-
|
|
3220
|
-
label: 'DeepSeek
|
|
3446
|
+
id: 'deepseek/deepseek-v3.1-terminus',
|
|
3447
|
+
label: 'DeepSeek V3.1 Terminus',
|
|
3221
3448
|
modalities: {
|
|
3222
3449
|
input: ['text'],
|
|
3223
3450
|
output: ['text'],
|
|
3224
3451
|
},
|
|
3225
|
-
toolCall:
|
|
3452
|
+
toolCall: true,
|
|
3226
3453
|
reasoningText: true,
|
|
3227
3454
|
attachment: false,
|
|
3228
3455
|
temperature: true,
|
|
3229
|
-
knowledge: '
|
|
3230
|
-
releaseDate: '2025-
|
|
3231
|
-
lastUpdated: '2025-
|
|
3456
|
+
knowledge: '2025-07',
|
|
3457
|
+
releaseDate: '2025-09-22',
|
|
3458
|
+
lastUpdated: '2025-09-22',
|
|
3232
3459
|
openWeights: true,
|
|
3233
3460
|
cost: {
|
|
3234
|
-
input: 0,
|
|
3235
|
-
output:
|
|
3461
|
+
input: 0.27,
|
|
3462
|
+
output: 1,
|
|
3236
3463
|
},
|
|
3237
3464
|
limit: {
|
|
3238
|
-
context:
|
|
3239
|
-
output:
|
|
3465
|
+
context: 131072,
|
|
3466
|
+
output: 65536,
|
|
3240
3467
|
},
|
|
3241
3468
|
},
|
|
3242
3469
|
{
|
|
3243
|
-
id: 'deepseek/deepseek-
|
|
3244
|
-
label: '
|
|
3470
|
+
id: 'deepseek/deepseek-v3.1-terminus:exacto',
|
|
3471
|
+
label: 'DeepSeek V3.1 Terminus (exacto)',
|
|
3245
3472
|
modalities: {
|
|
3246
3473
|
input: ['text'],
|
|
3247
3474
|
output: ['text'],
|
|
@@ -3250,89 +3477,17 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
3250
3477
|
reasoningText: true,
|
|
3251
3478
|
attachment: false,
|
|
3252
3479
|
temperature: true,
|
|
3253
|
-
knowledge: '2025-
|
|
3254
|
-
releaseDate: '2025-
|
|
3255
|
-
lastUpdated: '2025-
|
|
3480
|
+
knowledge: '2025-07',
|
|
3481
|
+
releaseDate: '2025-09-22',
|
|
3482
|
+
lastUpdated: '2025-09-22',
|
|
3256
3483
|
openWeights: true,
|
|
3257
3484
|
cost: {
|
|
3258
|
-
input: 0,
|
|
3259
|
-
output:
|
|
3485
|
+
input: 0.27,
|
|
3486
|
+
output: 1,
|
|
3260
3487
|
},
|
|
3261
3488
|
limit: {
|
|
3262
|
-
context:
|
|
3263
|
-
output:
|
|
3264
|
-
},
|
|
3265
|
-
},
|
|
3266
|
-
{
|
|
3267
|
-
id: 'deepseek/deepseek-v3-base:free',
|
|
3268
|
-
label: 'DeepSeek V3 Base (free)',
|
|
3269
|
-
modalities: {
|
|
3270
|
-
input: ['text'],
|
|
3271
|
-
output: ['text'],
|
|
3272
|
-
},
|
|
3273
|
-
toolCall: false,
|
|
3274
|
-
reasoningText: false,
|
|
3275
|
-
attachment: false,
|
|
3276
|
-
temperature: true,
|
|
3277
|
-
knowledge: '2025-03',
|
|
3278
|
-
releaseDate: '2025-03-29',
|
|
3279
|
-
lastUpdated: '2025-03-29',
|
|
3280
|
-
openWeights: true,
|
|
3281
|
-
cost: {
|
|
3282
|
-
input: 0,
|
|
3283
|
-
output: 0,
|
|
3284
|
-
},
|
|
3285
|
-
limit: {
|
|
3286
|
-
context: 163840,
|
|
3287
|
-
output: 163840,
|
|
3288
|
-
},
|
|
3289
|
-
},
|
|
3290
|
-
{
|
|
3291
|
-
id: 'deepseek/deepseek-v3.1-terminus',
|
|
3292
|
-
label: 'DeepSeek V3.1 Terminus',
|
|
3293
|
-
modalities: {
|
|
3294
|
-
input: ['text'],
|
|
3295
|
-
output: ['text'],
|
|
3296
|
-
},
|
|
3297
|
-
toolCall: true,
|
|
3298
|
-
reasoningText: true,
|
|
3299
|
-
attachment: false,
|
|
3300
|
-
temperature: true,
|
|
3301
|
-
knowledge: '2025-07',
|
|
3302
|
-
releaseDate: '2025-09-22',
|
|
3303
|
-
lastUpdated: '2025-09-22',
|
|
3304
|
-
openWeights: true,
|
|
3305
|
-
cost: {
|
|
3306
|
-
input: 0.27,
|
|
3307
|
-
output: 1,
|
|
3308
|
-
},
|
|
3309
|
-
limit: {
|
|
3310
|
-
context: 131072,
|
|
3311
|
-
output: 65536,
|
|
3312
|
-
},
|
|
3313
|
-
},
|
|
3314
|
-
{
|
|
3315
|
-
id: 'deepseek/deepseek-v3.1-terminus:exacto',
|
|
3316
|
-
label: 'DeepSeek V3.1 Terminus (exacto)',
|
|
3317
|
-
modalities: {
|
|
3318
|
-
input: ['text'],
|
|
3319
|
-
output: ['text'],
|
|
3320
|
-
},
|
|
3321
|
-
toolCall: true,
|
|
3322
|
-
reasoningText: true,
|
|
3323
|
-
attachment: false,
|
|
3324
|
-
temperature: true,
|
|
3325
|
-
knowledge: '2025-07',
|
|
3326
|
-
releaseDate: '2025-09-22',
|
|
3327
|
-
lastUpdated: '2025-09-22',
|
|
3328
|
-
openWeights: true,
|
|
3329
|
-
cost: {
|
|
3330
|
-
input: 0.27,
|
|
3331
|
-
output: 1,
|
|
3332
|
-
},
|
|
3333
|
-
limit: {
|
|
3334
|
-
context: 131072,
|
|
3335
|
-
output: 65536,
|
|
3489
|
+
context: 131072,
|
|
3490
|
+
output: 65536,
|
|
3336
3491
|
},
|
|
3337
3492
|
},
|
|
3338
3493
|
{
|
|
@@ -3383,30 +3538,6 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
3383
3538
|
output: 65536,
|
|
3384
3539
|
},
|
|
3385
3540
|
},
|
|
3386
|
-
{
|
|
3387
|
-
id: 'featherless/qwerky-72b',
|
|
3388
|
-
label: 'Qwerky 72B',
|
|
3389
|
-
modalities: {
|
|
3390
|
-
input: ['text'],
|
|
3391
|
-
output: ['text'],
|
|
3392
|
-
},
|
|
3393
|
-
toolCall: false,
|
|
3394
|
-
reasoningText: false,
|
|
3395
|
-
attachment: false,
|
|
3396
|
-
temperature: true,
|
|
3397
|
-
knowledge: '2024-10',
|
|
3398
|
-
releaseDate: '2025-03-20',
|
|
3399
|
-
lastUpdated: '2025-03-20',
|
|
3400
|
-
openWeights: true,
|
|
3401
|
-
cost: {
|
|
3402
|
-
input: 0,
|
|
3403
|
-
output: 0,
|
|
3404
|
-
},
|
|
3405
|
-
limit: {
|
|
3406
|
-
context: 32768,
|
|
3407
|
-
output: 8192,
|
|
3408
|
-
},
|
|
3409
|
-
},
|
|
3410
3541
|
{
|
|
3411
3542
|
id: 'google/gemini-2.0-flash-001',
|
|
3412
3543
|
ownedBy: 'google',
|
|
@@ -3433,31 +3564,6 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
3433
3564
|
output: 8192,
|
|
3434
3565
|
},
|
|
3435
3566
|
},
|
|
3436
|
-
{
|
|
3437
|
-
id: 'google/gemini-2.0-flash-exp:free',
|
|
3438
|
-
ownedBy: 'google',
|
|
3439
|
-
label: 'Gemini 2.0 Flash Experimental (free)',
|
|
3440
|
-
modalities: {
|
|
3441
|
-
input: ['text', 'image'],
|
|
3442
|
-
output: ['text'],
|
|
3443
|
-
},
|
|
3444
|
-
toolCall: true,
|
|
3445
|
-
reasoningText: false,
|
|
3446
|
-
attachment: true,
|
|
3447
|
-
temperature: true,
|
|
3448
|
-
knowledge: '2024-12',
|
|
3449
|
-
releaseDate: '2024-12-11',
|
|
3450
|
-
lastUpdated: '2024-12-11',
|
|
3451
|
-
openWeights: false,
|
|
3452
|
-
cost: {
|
|
3453
|
-
input: 0,
|
|
3454
|
-
output: 0,
|
|
3455
|
-
},
|
|
3456
|
-
limit: {
|
|
3457
|
-
context: 1048576,
|
|
3458
|
-
output: 1048576,
|
|
3459
|
-
},
|
|
3460
|
-
},
|
|
3461
3567
|
{
|
|
3462
3568
|
id: 'google/gemini-2.5-flash',
|
|
3463
3569
|
ownedBy: 'google',
|
|
@@ -3691,6 +3797,32 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
3691
3797
|
output: 66000,
|
|
3692
3798
|
},
|
|
3693
3799
|
},
|
|
3800
|
+
{
|
|
3801
|
+
id: 'google/gemini-3.1-flash-lite-preview',
|
|
3802
|
+
ownedBy: 'google',
|
|
3803
|
+
label: 'Gemini 3.1 Flash Lite Preview',
|
|
3804
|
+
modalities: {
|
|
3805
|
+
input: ['text', 'image', 'video', 'pdf', 'audio'],
|
|
3806
|
+
output: ['text'],
|
|
3807
|
+
},
|
|
3808
|
+
toolCall: true,
|
|
3809
|
+
reasoningText: true,
|
|
3810
|
+
attachment: true,
|
|
3811
|
+
temperature: true,
|
|
3812
|
+
releaseDate: '2026-03-03',
|
|
3813
|
+
lastUpdated: '2026-03-03',
|
|
3814
|
+
openWeights: false,
|
|
3815
|
+
cost: {
|
|
3816
|
+
input: 0.25,
|
|
3817
|
+
output: 1.5,
|
|
3818
|
+
cacheRead: 0.025,
|
|
3819
|
+
cacheWrite: 0.083,
|
|
3820
|
+
},
|
|
3821
|
+
limit: {
|
|
3822
|
+
context: 1048576,
|
|
3823
|
+
output: 65536,
|
|
3824
|
+
},
|
|
3825
|
+
},
|
|
3694
3826
|
{
|
|
3695
3827
|
id: 'google/gemini-3.1-pro-preview',
|
|
3696
3828
|
ownedBy: 'google',
|
|
@@ -3992,66 +4124,118 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
3992
4124
|
},
|
|
3993
4125
|
},
|
|
3994
4126
|
{
|
|
3995
|
-
id: '
|
|
3996
|
-
|
|
4127
|
+
id: 'google/gemma-4-26b-a4b-it',
|
|
4128
|
+
ownedBy: 'google',
|
|
4129
|
+
label: 'Gemma 4 26B A4B',
|
|
3997
4130
|
modalities: {
|
|
3998
|
-
input: ['text'],
|
|
4131
|
+
input: ['text', 'image', 'video'],
|
|
3999
4132
|
output: ['text'],
|
|
4000
4133
|
},
|
|
4001
4134
|
toolCall: true,
|
|
4002
|
-
reasoningText:
|
|
4003
|
-
attachment:
|
|
4135
|
+
reasoningText: true,
|
|
4136
|
+
attachment: true,
|
|
4004
4137
|
temperature: true,
|
|
4005
|
-
|
|
4006
|
-
|
|
4007
|
-
|
|
4138
|
+
knowledge: '2025-01',
|
|
4139
|
+
releaseDate: '2026-04-03',
|
|
4140
|
+
lastUpdated: '2026-04-03',
|
|
4141
|
+
openWeights: true,
|
|
4008
4142
|
cost: {
|
|
4009
|
-
input: 0.
|
|
4010
|
-
output: 0.
|
|
4011
|
-
cacheRead: 0.025,
|
|
4143
|
+
input: 0.13,
|
|
4144
|
+
output: 0.4,
|
|
4012
4145
|
},
|
|
4013
4146
|
limit: {
|
|
4014
|
-
context:
|
|
4015
|
-
output:
|
|
4147
|
+
context: 262144,
|
|
4148
|
+
output: 262144,
|
|
4016
4149
|
},
|
|
4017
4150
|
},
|
|
4018
4151
|
{
|
|
4019
|
-
id: '
|
|
4020
|
-
|
|
4152
|
+
id: 'google/gemma-4-26b-a4b-it:free',
|
|
4153
|
+
ownedBy: 'google',
|
|
4154
|
+
label: 'Gemma 4 26B A4B (free)',
|
|
4021
4155
|
modalities: {
|
|
4022
|
-
input: ['text'],
|
|
4156
|
+
input: ['text', 'image', 'video'],
|
|
4023
4157
|
output: ['text'],
|
|
4024
4158
|
},
|
|
4025
4159
|
toolCall: true,
|
|
4026
4160
|
reasoningText: true,
|
|
4027
|
-
attachment:
|
|
4161
|
+
attachment: true,
|
|
4028
4162
|
temperature: true,
|
|
4029
|
-
|
|
4030
|
-
|
|
4031
|
-
|
|
4163
|
+
knowledge: '2025-01',
|
|
4164
|
+
releaseDate: '2026-04-03',
|
|
4165
|
+
lastUpdated: '2026-04-03',
|
|
4166
|
+
openWeights: true,
|
|
4032
4167
|
cost: {
|
|
4033
|
-
input: 0
|
|
4034
|
-
output: 0
|
|
4035
|
-
cacheRead: 0.025,
|
|
4168
|
+
input: 0,
|
|
4169
|
+
output: 0,
|
|
4036
4170
|
},
|
|
4037
4171
|
limit: {
|
|
4038
|
-
context:
|
|
4039
|
-
output:
|
|
4172
|
+
context: 262144,
|
|
4173
|
+
output: 32768,
|
|
4174
|
+
},
|
|
4175
|
+
},
|
|
4176
|
+
{
|
|
4177
|
+
id: 'google/gemma-4-31b-it',
|
|
4178
|
+
ownedBy: 'google',
|
|
4179
|
+
label: 'Gemma 4 31B',
|
|
4180
|
+
modalities: {
|
|
4181
|
+
input: ['text', 'image', 'video'],
|
|
4182
|
+
output: ['text'],
|
|
4183
|
+
},
|
|
4184
|
+
toolCall: true,
|
|
4185
|
+
reasoningText: true,
|
|
4186
|
+
attachment: true,
|
|
4187
|
+
temperature: true,
|
|
4188
|
+
knowledge: '2025-01',
|
|
4189
|
+
releaseDate: '2026-04-02',
|
|
4190
|
+
lastUpdated: '2026-04-02',
|
|
4191
|
+
openWeights: true,
|
|
4192
|
+
cost: {
|
|
4193
|
+
input: 0.14,
|
|
4194
|
+
output: 0.4,
|
|
4195
|
+
},
|
|
4196
|
+
limit: {
|
|
4197
|
+
context: 262144,
|
|
4198
|
+
output: 262144,
|
|
4199
|
+
},
|
|
4200
|
+
},
|
|
4201
|
+
{
|
|
4202
|
+
id: 'google/gemma-4-31b-it:free',
|
|
4203
|
+
ownedBy: 'google',
|
|
4204
|
+
label: 'Gemma 4 31B (free)',
|
|
4205
|
+
modalities: {
|
|
4206
|
+
input: ['text', 'image', 'video'],
|
|
4207
|
+
output: ['text'],
|
|
4208
|
+
},
|
|
4209
|
+
toolCall: true,
|
|
4210
|
+
reasoningText: true,
|
|
4211
|
+
attachment: true,
|
|
4212
|
+
temperature: true,
|
|
4213
|
+
knowledge: '2025-01',
|
|
4214
|
+
releaseDate: '2026-04-02',
|
|
4215
|
+
lastUpdated: '2026-04-02',
|
|
4216
|
+
openWeights: true,
|
|
4217
|
+
cost: {
|
|
4218
|
+
input: 0,
|
|
4219
|
+
output: 0,
|
|
4220
|
+
},
|
|
4221
|
+
limit: {
|
|
4222
|
+
context: 262144,
|
|
4223
|
+
output: 32768,
|
|
4040
4224
|
},
|
|
4041
4225
|
},
|
|
4042
4226
|
{
|
|
4043
|
-
id: 'inception/mercury-
|
|
4044
|
-
label: 'Mercury
|
|
4227
|
+
id: 'inception/mercury-2',
|
|
4228
|
+
label: 'Mercury 2',
|
|
4045
4229
|
modalities: {
|
|
4046
4230
|
input: ['text'],
|
|
4047
4231
|
output: ['text'],
|
|
4048
4232
|
},
|
|
4049
4233
|
toolCall: true,
|
|
4050
|
-
reasoningText:
|
|
4234
|
+
reasoningText: true,
|
|
4051
4235
|
attachment: false,
|
|
4052
4236
|
temperature: true,
|
|
4053
|
-
releaseDate: '
|
|
4054
|
-
lastUpdated: '
|
|
4237
|
+
releaseDate: '2026-03-04',
|
|
4238
|
+
lastUpdated: '2026-03-04',
|
|
4055
4239
|
openWeights: false,
|
|
4056
4240
|
cost: {
|
|
4057
4241
|
input: 0.25,
|
|
@@ -4060,31 +4244,31 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4060
4244
|
},
|
|
4061
4245
|
limit: {
|
|
4062
4246
|
context: 128000,
|
|
4063
|
-
output:
|
|
4247
|
+
output: 50000,
|
|
4064
4248
|
},
|
|
4065
4249
|
},
|
|
4066
4250
|
{
|
|
4067
|
-
id: '
|
|
4068
|
-
label: '
|
|
4251
|
+
id: 'inception/mercury-edit-2',
|
|
4252
|
+
label: 'Mercury Edit 2',
|
|
4069
4253
|
modalities: {
|
|
4070
4254
|
input: ['text'],
|
|
4071
4255
|
output: ['text'],
|
|
4072
4256
|
},
|
|
4073
|
-
toolCall:
|
|
4074
|
-
reasoningText:
|
|
4257
|
+
toolCall: false,
|
|
4258
|
+
reasoningText: true,
|
|
4075
4259
|
attachment: false,
|
|
4076
4260
|
temperature: true,
|
|
4077
|
-
|
|
4078
|
-
|
|
4079
|
-
lastUpdated: '2025-11-10',
|
|
4261
|
+
releaseDate: '2026-03-30',
|
|
4262
|
+
lastUpdated: '2026-03-30',
|
|
4080
4263
|
openWeights: false,
|
|
4081
4264
|
cost: {
|
|
4082
|
-
input: 0,
|
|
4083
|
-
output: 0,
|
|
4265
|
+
input: 0.25,
|
|
4266
|
+
output: 0.75,
|
|
4267
|
+
cacheRead: 0.025,
|
|
4084
4268
|
},
|
|
4085
4269
|
limit: {
|
|
4086
|
-
context:
|
|
4087
|
-
output:
|
|
4270
|
+
context: 128000,
|
|
4271
|
+
output: 8192,
|
|
4088
4272
|
},
|
|
4089
4273
|
},
|
|
4090
4274
|
{
|
|
@@ -4136,19 +4320,19 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4136
4320
|
},
|
|
4137
4321
|
},
|
|
4138
4322
|
{
|
|
4139
|
-
id: 'meta-llama/llama-3.
|
|
4140
|
-
label: 'Llama 3.
|
|
4323
|
+
id: 'meta-llama/llama-3.2-11b-vision-instruct',
|
|
4324
|
+
label: 'Llama 3.2 11B Vision Instruct',
|
|
4141
4325
|
modalities: {
|
|
4142
|
-
input: ['text'],
|
|
4326
|
+
input: ['text', 'image'],
|
|
4143
4327
|
output: ['text'],
|
|
4144
4328
|
},
|
|
4145
4329
|
toolCall: false,
|
|
4146
4330
|
reasoningText: false,
|
|
4147
4331
|
attachment: true,
|
|
4148
4332
|
temperature: true,
|
|
4149
|
-
knowledge: '
|
|
4150
|
-
releaseDate: '2024-
|
|
4151
|
-
lastUpdated: '
|
|
4333
|
+
knowledge: '2023-12',
|
|
4334
|
+
releaseDate: '2024-09-25',
|
|
4335
|
+
lastUpdated: '2024-09-25',
|
|
4152
4336
|
openWeights: true,
|
|
4153
4337
|
cost: {
|
|
4154
4338
|
input: 0,
|
|
@@ -4156,12 +4340,12 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4156
4340
|
},
|
|
4157
4341
|
limit: {
|
|
4158
4342
|
context: 131072,
|
|
4159
|
-
output:
|
|
4343
|
+
output: 8192,
|
|
4160
4344
|
},
|
|
4161
4345
|
},
|
|
4162
4346
|
{
|
|
4163
|
-
id: 'meta-llama/llama-3.2-
|
|
4164
|
-
label: 'Llama 3.2
|
|
4347
|
+
id: 'meta-llama/llama-3.2-3b-instruct:free',
|
|
4348
|
+
label: 'Llama 3.2 3B Instruct (free)',
|
|
4165
4349
|
modalities: {
|
|
4166
4350
|
input: ['text', 'image'],
|
|
4167
4351
|
output: ['text'],
|
|
@@ -4180,31 +4364,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4180
4364
|
},
|
|
4181
4365
|
limit: {
|
|
4182
4366
|
context: 131072,
|
|
4183
|
-
output:
|
|
4184
|
-
},
|
|
4185
|
-
},
|
|
4186
|
-
{
|
|
4187
|
-
id: 'meta-llama/llama-3.2-3b-instruct:free',
|
|
4188
|
-
label: 'Llama 3.2 3B Instruct (free)',
|
|
4189
|
-
modalities: {
|
|
4190
|
-
input: ['text', 'image'],
|
|
4191
|
-
output: ['text'],
|
|
4192
|
-
},
|
|
4193
|
-
toolCall: false,
|
|
4194
|
-
reasoningText: false,
|
|
4195
|
-
attachment: true,
|
|
4196
|
-
temperature: true,
|
|
4197
|
-
knowledge: '2023-12',
|
|
4198
|
-
releaseDate: '2024-09-25',
|
|
4199
|
-
lastUpdated: '2024-09-25',
|
|
4200
|
-
openWeights: true,
|
|
4201
|
-
cost: {
|
|
4202
|
-
input: 0,
|
|
4203
|
-
output: 0,
|
|
4204
|
-
},
|
|
4205
|
-
limit: {
|
|
4206
|
-
context: 131072,
|
|
4207
|
-
output: 131072,
|
|
4367
|
+
output: 131072,
|
|
4208
4368
|
},
|
|
4209
4369
|
},
|
|
4210
4370
|
{
|
|
@@ -4231,54 +4391,6 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4231
4391
|
output: 131072,
|
|
4232
4392
|
},
|
|
4233
4393
|
},
|
|
4234
|
-
{
|
|
4235
|
-
id: 'meta-llama/llama-4-scout:free',
|
|
4236
|
-
label: 'Llama 4 Scout (free)',
|
|
4237
|
-
modalities: {
|
|
4238
|
-
input: ['text', 'image'],
|
|
4239
|
-
output: ['text'],
|
|
4240
|
-
},
|
|
4241
|
-
toolCall: true,
|
|
4242
|
-
reasoningText: false,
|
|
4243
|
-
attachment: true,
|
|
4244
|
-
temperature: true,
|
|
4245
|
-
knowledge: '2024-08',
|
|
4246
|
-
releaseDate: '2025-04-05',
|
|
4247
|
-
lastUpdated: '2025-04-05',
|
|
4248
|
-
openWeights: true,
|
|
4249
|
-
cost: {
|
|
4250
|
-
input: 0,
|
|
4251
|
-
output: 0,
|
|
4252
|
-
},
|
|
4253
|
-
limit: {
|
|
4254
|
-
context: 64000,
|
|
4255
|
-
output: 64000,
|
|
4256
|
-
},
|
|
4257
|
-
},
|
|
4258
|
-
{
|
|
4259
|
-
id: 'microsoft/mai-ds-r1:free',
|
|
4260
|
-
label: 'MAI DS R1 (free)',
|
|
4261
|
-
modalities: {
|
|
4262
|
-
input: ['text'],
|
|
4263
|
-
output: ['text'],
|
|
4264
|
-
},
|
|
4265
|
-
toolCall: true,
|
|
4266
|
-
reasoningText: true,
|
|
4267
|
-
attachment: false,
|
|
4268
|
-
temperature: true,
|
|
4269
|
-
knowledge: '2025-04',
|
|
4270
|
-
releaseDate: '2025-04-21',
|
|
4271
|
-
lastUpdated: '2025-04-21',
|
|
4272
|
-
openWeights: true,
|
|
4273
|
-
cost: {
|
|
4274
|
-
input: 0,
|
|
4275
|
-
output: 0,
|
|
4276
|
-
},
|
|
4277
|
-
limit: {
|
|
4278
|
-
context: 163840,
|
|
4279
|
-
output: 163840,
|
|
4280
|
-
},
|
|
4281
|
-
},
|
|
4282
4394
|
{
|
|
4283
4395
|
id: 'minimax/minimax-01',
|
|
4284
4396
|
ownedBy: 'minimax',
|
|
@@ -4403,32 +4515,58 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4403
4515
|
},
|
|
4404
4516
|
},
|
|
4405
4517
|
{
|
|
4406
|
-
id: '
|
|
4407
|
-
|
|
4518
|
+
id: 'minimax/minimax-m2.5:free',
|
|
4519
|
+
ownedBy: 'minimax',
|
|
4520
|
+
label: 'MiniMax M2.5 (free)',
|
|
4408
4521
|
modalities: {
|
|
4409
4522
|
input: ['text'],
|
|
4410
4523
|
output: ['text'],
|
|
4411
4524
|
},
|
|
4412
4525
|
toolCall: true,
|
|
4413
|
-
reasoningText:
|
|
4526
|
+
reasoningText: true,
|
|
4414
4527
|
attachment: false,
|
|
4415
4528
|
temperature: true,
|
|
4416
|
-
|
|
4417
|
-
|
|
4418
|
-
|
|
4529
|
+
releaseDate: '2026-02-12',
|
|
4530
|
+
lastUpdated: '2026-02-12',
|
|
4531
|
+
openWeights: true,
|
|
4532
|
+
cost: {
|
|
4533
|
+
input: 0,
|
|
4534
|
+
output: 0,
|
|
4535
|
+
},
|
|
4536
|
+
limit: {
|
|
4537
|
+
context: 204800,
|
|
4538
|
+
output: 131072,
|
|
4539
|
+
},
|
|
4540
|
+
},
|
|
4541
|
+
{
|
|
4542
|
+
id: 'minimax/minimax-m2.7',
|
|
4543
|
+
ownedBy: 'minimax',
|
|
4544
|
+
label: 'MiniMax M2.7',
|
|
4545
|
+
modalities: {
|
|
4546
|
+
input: ['text'],
|
|
4547
|
+
output: ['text'],
|
|
4548
|
+
},
|
|
4549
|
+
toolCall: true,
|
|
4550
|
+
reasoningText: true,
|
|
4551
|
+
attachment: false,
|
|
4552
|
+
temperature: true,
|
|
4553
|
+
releaseDate: '2026-03-18',
|
|
4554
|
+
lastUpdated: '2026-03-18',
|
|
4419
4555
|
openWeights: true,
|
|
4420
4556
|
cost: {
|
|
4421
4557
|
input: 0.3,
|
|
4422
|
-
output:
|
|
4558
|
+
output: 1.2,
|
|
4559
|
+
cacheRead: 0.06,
|
|
4560
|
+
cacheWrite: 0.375,
|
|
4423
4561
|
},
|
|
4424
4562
|
limit: {
|
|
4425
|
-
context:
|
|
4426
|
-
output:
|
|
4563
|
+
context: 204800,
|
|
4564
|
+
output: 131072,
|
|
4427
4565
|
},
|
|
4428
4566
|
},
|
|
4429
4567
|
{
|
|
4430
|
-
id: 'mistralai/
|
|
4431
|
-
label: '
|
|
4568
|
+
id: 'mistralai/codestral-2508',
|
|
4569
|
+
label: 'Codestral 2508',
|
|
4432
4570
|
modalities: {
|
|
4433
4571
|
input: ['text'],
|
|
4434
4572
|
output: ['text'],
|
|
@@ -4437,22 +4575,22 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4437
4575
|
reasoningText: false,
|
|
4438
4576
|
attachment: false,
|
|
4439
4577
|
temperature: true,
|
|
4440
|
-
knowledge: '2025-
|
|
4441
|
-
releaseDate: '2025-
|
|
4442
|
-
lastUpdated: '2025-
|
|
4578
|
+
knowledge: '2025-05',
|
|
4579
|
+
releaseDate: '2025-08-01',
|
|
4580
|
+
lastUpdated: '2025-08-01',
|
|
4443
4581
|
openWeights: true,
|
|
4444
4582
|
cost: {
|
|
4445
|
-
input: 0.
|
|
4446
|
-
output: 0.
|
|
4583
|
+
input: 0.3,
|
|
4584
|
+
output: 0.9,
|
|
4447
4585
|
},
|
|
4448
4586
|
limit: {
|
|
4449
|
-
context:
|
|
4450
|
-
output:
|
|
4587
|
+
context: 256000,
|
|
4588
|
+
output: 256000,
|
|
4451
4589
|
},
|
|
4452
4590
|
},
|
|
4453
4591
|
{
|
|
4454
|
-
id: 'mistralai/devstral-2512
|
|
4455
|
-
label: 'Devstral 2 2512
|
|
4592
|
+
id: 'mistralai/devstral-2512',
|
|
4593
|
+
label: 'Devstral 2 2512',
|
|
4456
4594
|
modalities: {
|
|
4457
4595
|
input: ['text'],
|
|
4458
4596
|
output: ['text'],
|
|
@@ -4466,8 +4604,8 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4466
4604
|
lastUpdated: '2025-09-12',
|
|
4467
4605
|
openWeights: true,
|
|
4468
4606
|
cost: {
|
|
4469
|
-
input: 0,
|
|
4470
|
-
output: 0,
|
|
4607
|
+
input: 0.15,
|
|
4608
|
+
output: 0.6,
|
|
4471
4609
|
},
|
|
4472
4610
|
limit: {
|
|
4473
4611
|
context: 262144,
|
|
@@ -4522,30 +4660,6 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4522
4660
|
output: 128000,
|
|
4523
4661
|
},
|
|
4524
4662
|
},
|
|
4525
|
-
{
|
|
4526
|
-
id: 'mistralai/devstral-small-2505:free',
|
|
4527
|
-
label: 'Devstral Small 2505 (free)',
|
|
4528
|
-
modalities: {
|
|
4529
|
-
input: ['text'],
|
|
4530
|
-
output: ['text'],
|
|
4531
|
-
},
|
|
4532
|
-
toolCall: true,
|
|
4533
|
-
reasoningText: false,
|
|
4534
|
-
attachment: false,
|
|
4535
|
-
temperature: true,
|
|
4536
|
-
knowledge: '2025-05',
|
|
4537
|
-
releaseDate: '2025-05-21',
|
|
4538
|
-
lastUpdated: '2025-05-21',
|
|
4539
|
-
openWeights: true,
|
|
4540
|
-
cost: {
|
|
4541
|
-
input: 0,
|
|
4542
|
-
output: 0,
|
|
4543
|
-
},
|
|
4544
|
-
limit: {
|
|
4545
|
-
context: 32768,
|
|
4546
|
-
output: 32768,
|
|
4547
|
-
},
|
|
4548
|
-
},
|
|
4549
4663
|
{
|
|
4550
4664
|
id: 'mistralai/devstral-small-2507',
|
|
4551
4665
|
label: 'Devstral Small 1.1',
|
|
@@ -4570,30 +4684,6 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4570
4684
|
output: 131072,
|
|
4571
4685
|
},
|
|
4572
4686
|
},
|
|
4573
|
-
{
|
|
4574
|
-
id: 'mistralai/mistral-7b-instruct:free',
|
|
4575
|
-
label: 'Mistral 7B Instruct (free)',
|
|
4576
|
-
modalities: {
|
|
4577
|
-
input: ['text'],
|
|
4578
|
-
output: ['text'],
|
|
4579
|
-
},
|
|
4580
|
-
toolCall: true,
|
|
4581
|
-
reasoningText: false,
|
|
4582
|
-
attachment: false,
|
|
4583
|
-
temperature: true,
|
|
4584
|
-
knowledge: '2024-05',
|
|
4585
|
-
releaseDate: '2024-05-27',
|
|
4586
|
-
lastUpdated: '2024-05-27',
|
|
4587
|
-
openWeights: true,
|
|
4588
|
-
cost: {
|
|
4589
|
-
input: 0,
|
|
4590
|
-
output: 0,
|
|
4591
|
-
},
|
|
4592
|
-
limit: {
|
|
4593
|
-
context: 32768,
|
|
4594
|
-
output: 32768,
|
|
4595
|
-
},
|
|
4596
|
-
},
|
|
4597
4687
|
{
|
|
4598
4688
|
id: 'mistralai/mistral-medium-3',
|
|
4599
4689
|
label: 'Mistral Medium 3',
|
|
@@ -4643,27 +4733,27 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4643
4733
|
},
|
|
4644
4734
|
},
|
|
4645
4735
|
{
|
|
4646
|
-
id: 'mistralai/mistral-
|
|
4647
|
-
label: 'Mistral
|
|
4736
|
+
id: 'mistralai/mistral-small-2603',
|
|
4737
|
+
label: 'Mistral Small 4',
|
|
4648
4738
|
modalities: {
|
|
4649
|
-
input: ['text'],
|
|
4739
|
+
input: ['text', 'image'],
|
|
4650
4740
|
output: ['text'],
|
|
4651
4741
|
},
|
|
4652
4742
|
toolCall: true,
|
|
4653
|
-
reasoningText:
|
|
4654
|
-
attachment:
|
|
4743
|
+
reasoningText: true,
|
|
4744
|
+
attachment: true,
|
|
4655
4745
|
temperature: true,
|
|
4656
|
-
knowledge: '
|
|
4657
|
-
releaseDate: '
|
|
4658
|
-
lastUpdated: '
|
|
4746
|
+
knowledge: '2025-06',
|
|
4747
|
+
releaseDate: '2026-03-16',
|
|
4748
|
+
lastUpdated: '2026-03-16',
|
|
4659
4749
|
openWeights: true,
|
|
4660
4750
|
cost: {
|
|
4661
|
-
input: 0,
|
|
4662
|
-
output: 0,
|
|
4751
|
+
input: 0.15,
|
|
4752
|
+
output: 0.6,
|
|
4663
4753
|
},
|
|
4664
4754
|
limit: {
|
|
4665
|
-
context:
|
|
4666
|
-
output:
|
|
4755
|
+
context: 262144,
|
|
4756
|
+
output: 262144,
|
|
4667
4757
|
},
|
|
4668
4758
|
},
|
|
4669
4759
|
{
|
|
@@ -4714,55 +4804,6 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4714
4804
|
output: 8192,
|
|
4715
4805
|
},
|
|
4716
4806
|
},
|
|
4717
|
-
{
|
|
4718
|
-
id: 'mistralai/mistral-small-3.2-24b-instruct:free',
|
|
4719
|
-
label: 'Mistral Small 3.2 24B (free)',
|
|
4720
|
-
modalities: {
|
|
4721
|
-
input: ['text', 'image'],
|
|
4722
|
-
output: ['text'],
|
|
4723
|
-
},
|
|
4724
|
-
toolCall: true,
|
|
4725
|
-
reasoningText: false,
|
|
4726
|
-
attachment: true,
|
|
4727
|
-
temperature: true,
|
|
4728
|
-
knowledge: '2025-06',
|
|
4729
|
-
releaseDate: '2025-06-20',
|
|
4730
|
-
lastUpdated: '2025-06-20',
|
|
4731
|
-
openWeights: true,
|
|
4732
|
-
cost: {
|
|
4733
|
-
input: 0,
|
|
4734
|
-
output: 0,
|
|
4735
|
-
},
|
|
4736
|
-
limit: {
|
|
4737
|
-
context: 96000,
|
|
4738
|
-
output: 96000,
|
|
4739
|
-
},
|
|
4740
|
-
},
|
|
4741
|
-
{
|
|
4742
|
-
id: 'moonshotai/kimi-dev-72b:free',
|
|
4743
|
-
ownedBy: 'moonshot',
|
|
4744
|
-
label: 'Kimi Dev 72b (free)',
|
|
4745
|
-
modalities: {
|
|
4746
|
-
input: ['text'],
|
|
4747
|
-
output: ['text'],
|
|
4748
|
-
},
|
|
4749
|
-
toolCall: true,
|
|
4750
|
-
reasoningText: false,
|
|
4751
|
-
attachment: false,
|
|
4752
|
-
temperature: true,
|
|
4753
|
-
knowledge: '2025-06',
|
|
4754
|
-
releaseDate: '2025-06-16',
|
|
4755
|
-
lastUpdated: '2025-06-16',
|
|
4756
|
-
openWeights: true,
|
|
4757
|
-
cost: {
|
|
4758
|
-
input: 0,
|
|
4759
|
-
output: 0,
|
|
4760
|
-
},
|
|
4761
|
-
limit: {
|
|
4762
|
-
context: 131072,
|
|
4763
|
-
output: 131072,
|
|
4764
|
-
},
|
|
4765
|
-
},
|
|
4766
4807
|
{
|
|
4767
4808
|
id: 'moonshotai/kimi-k2',
|
|
4768
4809
|
ownedBy: 'moonshot',
|
|
@@ -4864,31 +4905,6 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4864
4905
|
output: 262144,
|
|
4865
4906
|
},
|
|
4866
4907
|
},
|
|
4867
|
-
{
|
|
4868
|
-
id: 'moonshotai/kimi-k2:free',
|
|
4869
|
-
ownedBy: 'moonshot',
|
|
4870
|
-
label: 'Kimi K2 (free)',
|
|
4871
|
-
modalities: {
|
|
4872
|
-
input: ['text'],
|
|
4873
|
-
output: ['text'],
|
|
4874
|
-
},
|
|
4875
|
-
toolCall: true,
|
|
4876
|
-
reasoningText: false,
|
|
4877
|
-
attachment: false,
|
|
4878
|
-
temperature: true,
|
|
4879
|
-
knowledge: '2025-04',
|
|
4880
|
-
releaseDate: '2025-07-11',
|
|
4881
|
-
lastUpdated: '2025-07-11',
|
|
4882
|
-
openWeights: true,
|
|
4883
|
-
cost: {
|
|
4884
|
-
input: 0,
|
|
4885
|
-
output: 0,
|
|
4886
|
-
},
|
|
4887
|
-
limit: {
|
|
4888
|
-
context: 32800,
|
|
4889
|
-
output: 32800,
|
|
4890
|
-
},
|
|
4891
|
-
},
|
|
4892
4908
|
{
|
|
4893
4909
|
id: 'moonshotai/kimi-k2.5',
|
|
4894
4910
|
ownedBy: 'moonshot',
|
|
@@ -4916,19 +4932,19 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4916
4932
|
},
|
|
4917
4933
|
},
|
|
4918
4934
|
{
|
|
4919
|
-
id: 'nousresearch/
|
|
4920
|
-
label: '
|
|
4935
|
+
id: 'nousresearch/hermes-3-llama-3.1-405b:free',
|
|
4936
|
+
label: 'Hermes 3 405B Instruct (free)',
|
|
4921
4937
|
modalities: {
|
|
4922
4938
|
input: ['text'],
|
|
4923
4939
|
output: ['text'],
|
|
4924
4940
|
},
|
|
4925
|
-
toolCall:
|
|
4941
|
+
toolCall: false,
|
|
4926
4942
|
reasoningText: true,
|
|
4927
4943
|
attachment: false,
|
|
4928
4944
|
temperature: true,
|
|
4929
|
-
knowledge: '
|
|
4930
|
-
releaseDate: '
|
|
4931
|
-
lastUpdated: '
|
|
4945
|
+
knowledge: '2023-12',
|
|
4946
|
+
releaseDate: '2024-08-16',
|
|
4947
|
+
lastUpdated: '2024-08-16',
|
|
4932
4948
|
openWeights: true,
|
|
4933
4949
|
cost: {
|
|
4934
4950
|
input: 0,
|
|
@@ -4936,31 +4952,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4936
4952
|
},
|
|
4937
4953
|
limit: {
|
|
4938
4954
|
context: 131072,
|
|
4939
|
-
output:
|
|
4940
|
-
},
|
|
4941
|
-
},
|
|
4942
|
-
{
|
|
4943
|
-
id: 'nousresearch/hermes-3-llama-3.1-405b:free',
|
|
4944
|
-
label: 'Hermes 3 405B Instruct (free)',
|
|
4945
|
-
modalities: {
|
|
4946
|
-
input: ['text'],
|
|
4947
|
-
output: ['text'],
|
|
4948
|
-
},
|
|
4949
|
-
toolCall: false,
|
|
4950
|
-
reasoningText: true,
|
|
4951
|
-
attachment: false,
|
|
4952
|
-
temperature: true,
|
|
4953
|
-
knowledge: '2023-12',
|
|
4954
|
-
releaseDate: '2024-08-16',
|
|
4955
|
-
lastUpdated: '2024-08-16',
|
|
4956
|
-
openWeights: true,
|
|
4957
|
-
cost: {
|
|
4958
|
-
input: 0,
|
|
4959
|
-
output: 0,
|
|
4960
|
-
},
|
|
4961
|
-
limit: {
|
|
4962
|
-
context: 131072,
|
|
4963
|
-
output: 131072,
|
|
4955
|
+
output: 131072,
|
|
4964
4956
|
},
|
|
4965
4957
|
},
|
|
4966
4958
|
{
|
|
@@ -5035,6 +5027,54 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
5035
5027
|
output: 256000,
|
|
5036
5028
|
},
|
|
5037
5029
|
},
|
|
5030
|
+
{
|
|
5031
|
+
id: 'nvidia/nemotron-3-super-120b-a12b',
|
|
5032
|
+
label: 'Nemotron 3 Super',
|
|
5033
|
+
modalities: {
|
|
5034
|
+
input: ['text'],
|
|
5035
|
+
output: ['text'],
|
|
5036
|
+
},
|
|
5037
|
+
toolCall: true,
|
|
5038
|
+
reasoningText: true,
|
|
5039
|
+
attachment: false,
|
|
5040
|
+
temperature: true,
|
|
5041
|
+
knowledge: '2024-04',
|
|
5042
|
+
releaseDate: '2026-03-11',
|
|
5043
|
+
lastUpdated: '2026-03-11',
|
|
5044
|
+
openWeights: true,
|
|
5045
|
+
cost: {
|
|
5046
|
+
input: 0.1,
|
|
5047
|
+
output: 0.5,
|
|
5048
|
+
},
|
|
5049
|
+
limit: {
|
|
5050
|
+
context: 262144,
|
|
5051
|
+
output: 262144,
|
|
5052
|
+
},
|
|
5053
|
+
},
|
|
5054
|
+
{
|
|
5055
|
+
id: 'nvidia/nemotron-3-super-120b-a12b:free',
|
|
5056
|
+
label: 'Nemotron 3 Super (free)',
|
|
5057
|
+
modalities: {
|
|
5058
|
+
input: ['text'],
|
|
5059
|
+
output: ['text'],
|
|
5060
|
+
},
|
|
5061
|
+
toolCall: true,
|
|
5062
|
+
reasoningText: true,
|
|
5063
|
+
attachment: false,
|
|
5064
|
+
temperature: true,
|
|
5065
|
+
knowledge: '2024-04',
|
|
5066
|
+
releaseDate: '2026-03-11',
|
|
5067
|
+
lastUpdated: '2026-03-11',
|
|
5068
|
+
openWeights: true,
|
|
5069
|
+
cost: {
|
|
5070
|
+
input: 0,
|
|
5071
|
+
output: 0,
|
|
5072
|
+
},
|
|
5073
|
+
limit: {
|
|
5074
|
+
context: 262144,
|
|
5075
|
+
output: 262144,
|
|
5076
|
+
},
|
|
5077
|
+
},
|
|
5038
5078
|
{
|
|
5039
5079
|
id: 'nvidia/nemotron-nano-12b-v2-vl:free',
|
|
5040
5080
|
label: 'Nemotron Nano 12B 2 VL (free)',
|
|
@@ -5647,6 +5687,58 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
5647
5687
|
output: 128000,
|
|
5648
5688
|
},
|
|
5649
5689
|
},
|
|
5690
|
+
{
|
|
5691
|
+
id: 'openai/gpt-5.4-mini',
|
|
5692
|
+
ownedBy: 'openai',
|
|
5693
|
+
label: 'GPT-5.4 Mini',
|
|
5694
|
+
modalities: {
|
|
5695
|
+
input: ['text', 'image', 'pdf'],
|
|
5696
|
+
output: ['text'],
|
|
5697
|
+
},
|
|
5698
|
+
toolCall: true,
|
|
5699
|
+
reasoningText: true,
|
|
5700
|
+
attachment: true,
|
|
5701
|
+
temperature: true,
|
|
5702
|
+
knowledge: '2025-08-31',
|
|
5703
|
+
releaseDate: '2026-03-17',
|
|
5704
|
+
lastUpdated: '2026-03-17',
|
|
5705
|
+
openWeights: false,
|
|
5706
|
+
cost: {
|
|
5707
|
+
input: 7.5e-7,
|
|
5708
|
+
output: 0.0000045,
|
|
5709
|
+
cacheRead: 7.5e-8,
|
|
5710
|
+
},
|
|
5711
|
+
limit: {
|
|
5712
|
+
context: 400000,
|
|
5713
|
+
output: 128000,
|
|
5714
|
+
},
|
|
5715
|
+
},
|
|
5716
|
+
{
|
|
5717
|
+
id: 'openai/gpt-5.4-nano',
|
|
5718
|
+
ownedBy: 'openai',
|
|
5719
|
+
label: 'GPT-5.4 Nano',
|
|
5720
|
+
modalities: {
|
|
5721
|
+
input: ['text', 'image', 'pdf'],
|
|
5722
|
+
output: ['text'],
|
|
5723
|
+
},
|
|
5724
|
+
toolCall: true,
|
|
5725
|
+
reasoningText: false,
|
|
5726
|
+
attachment: true,
|
|
5727
|
+
temperature: true,
|
|
5728
|
+
knowledge: '2025-08-31',
|
|
5729
|
+
releaseDate: '2026-03-17',
|
|
5730
|
+
lastUpdated: '2026-03-17',
|
|
5731
|
+
openWeights: false,
|
|
5732
|
+
cost: {
|
|
5733
|
+
input: 2e-7,
|
|
5734
|
+
output: 0.00000125,
|
|
5735
|
+
cacheRead: 2e-8,
|
|
5736
|
+
},
|
|
5737
|
+
limit: {
|
|
5738
|
+
context: 400000,
|
|
5739
|
+
output: 128000,
|
|
5740
|
+
},
|
|
5741
|
+
},
|
|
5650
5742
|
{
|
|
5651
5743
|
id: 'openai/gpt-5.4-pro',
|
|
5652
5744
|
ownedBy: 'openai',
|
|
@@ -5844,8 +5936,8 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
5844
5936
|
},
|
|
5845
5937
|
},
|
|
5846
5938
|
{
|
|
5847
|
-
id: 'openrouter/
|
|
5848
|
-
label: '
|
|
5939
|
+
id: 'openrouter/elephant-alpha',
|
|
5940
|
+
label: 'Elephant (free)',
|
|
5849
5941
|
modalities: {
|
|
5850
5942
|
input: ['text'],
|
|
5851
5943
|
output: ['text'],
|
|
@@ -5854,16 +5946,16 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
5854
5946
|
reasoningText: true,
|
|
5855
5947
|
attachment: false,
|
|
5856
5948
|
temperature: true,
|
|
5857
|
-
releaseDate: '2026-
|
|
5858
|
-
lastUpdated: '2026-
|
|
5949
|
+
releaseDate: '2026-04-13',
|
|
5950
|
+
lastUpdated: '2026-04-13',
|
|
5859
5951
|
openWeights: false,
|
|
5860
5952
|
cost: {
|
|
5861
5953
|
input: 0,
|
|
5862
5954
|
output: 0,
|
|
5863
5955
|
},
|
|
5864
5956
|
limit: {
|
|
5865
|
-
context:
|
|
5866
|
-
output:
|
|
5957
|
+
context: 262144,
|
|
5958
|
+
output: 32768,
|
|
5867
5959
|
},
|
|
5868
5960
|
},
|
|
5869
5961
|
{
|
|
@@ -5890,105 +5982,105 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
5890
5982
|
},
|
|
5891
5983
|
},
|
|
5892
5984
|
{
|
|
5893
|
-
id: '
|
|
5894
|
-
|
|
5985
|
+
id: 'prime-intellect/intellect-3',
|
|
5986
|
+
ownedBy: 'zai',
|
|
5987
|
+
label: 'Intellect 3',
|
|
5895
5988
|
modalities: {
|
|
5896
|
-
input: ['text'
|
|
5989
|
+
input: ['text'],
|
|
5897
5990
|
output: ['text'],
|
|
5898
5991
|
},
|
|
5899
5992
|
toolCall: true,
|
|
5900
5993
|
reasoningText: true,
|
|
5901
|
-
attachment:
|
|
5994
|
+
attachment: false,
|
|
5902
5995
|
temperature: true,
|
|
5903
|
-
knowledge: '
|
|
5904
|
-
releaseDate: '
|
|
5905
|
-
lastUpdated: '
|
|
5906
|
-
openWeights:
|
|
5996
|
+
knowledge: '2024-10',
|
|
5997
|
+
releaseDate: '2025-01-15',
|
|
5998
|
+
lastUpdated: '2025-01-15',
|
|
5999
|
+
openWeights: true,
|
|
5907
6000
|
cost: {
|
|
5908
|
-
input: 0,
|
|
5909
|
-
output:
|
|
6001
|
+
input: 0.2,
|
|
6002
|
+
output: 1.1,
|
|
5910
6003
|
},
|
|
5911
6004
|
limit: {
|
|
5912
|
-
context:
|
|
5913
|
-
output:
|
|
6005
|
+
context: 131072,
|
|
6006
|
+
output: 8192,
|
|
5914
6007
|
},
|
|
5915
6008
|
},
|
|
5916
6009
|
{
|
|
5917
|
-
id: '
|
|
5918
|
-
label: '
|
|
6010
|
+
id: 'qwen/qwen-2.5-coder-32b-instruct',
|
|
6011
|
+
label: 'Qwen2.5 Coder 32B Instruct',
|
|
5919
6012
|
modalities: {
|
|
5920
|
-
input: ['text'
|
|
6013
|
+
input: ['text'],
|
|
5921
6014
|
output: ['text'],
|
|
5922
6015
|
},
|
|
5923
|
-
toolCall:
|
|
5924
|
-
reasoningText:
|
|
5925
|
-
attachment:
|
|
6016
|
+
toolCall: false,
|
|
6017
|
+
reasoningText: false,
|
|
6018
|
+
attachment: false,
|
|
5926
6019
|
temperature: true,
|
|
5927
|
-
knowledge: '
|
|
5928
|
-
releaseDate: '
|
|
5929
|
-
lastUpdated: '
|
|
5930
|
-
openWeights:
|
|
6020
|
+
knowledge: '2024-10',
|
|
6021
|
+
releaseDate: '2024-11-11',
|
|
6022
|
+
lastUpdated: '2024-11-11',
|
|
6023
|
+
openWeights: true,
|
|
5931
6024
|
cost: {
|
|
5932
6025
|
input: 0,
|
|
5933
6026
|
output: 0,
|
|
5934
6027
|
},
|
|
5935
6028
|
limit: {
|
|
5936
|
-
context:
|
|
5937
|
-
output:
|
|
6029
|
+
context: 32768,
|
|
6030
|
+
output: 8192,
|
|
5938
6031
|
},
|
|
5939
6032
|
},
|
|
5940
6033
|
{
|
|
5941
|
-
id: '
|
|
5942
|
-
label: '
|
|
6034
|
+
id: 'qwen/qwen2.5-vl-72b-instruct',
|
|
6035
|
+
label: 'Qwen2.5 VL 72B Instruct',
|
|
5943
6036
|
modalities: {
|
|
5944
6037
|
input: ['text', 'image'],
|
|
5945
6038
|
output: ['text'],
|
|
5946
6039
|
},
|
|
5947
|
-
toolCall:
|
|
6040
|
+
toolCall: false,
|
|
5948
6041
|
reasoningText: false,
|
|
5949
6042
|
attachment: true,
|
|
5950
6043
|
temperature: true,
|
|
5951
|
-
knowledge: '
|
|
5952
|
-
releaseDate: '2025-
|
|
5953
|
-
lastUpdated: '2025-
|
|
5954
|
-
openWeights:
|
|
6044
|
+
knowledge: '2024-10',
|
|
6045
|
+
releaseDate: '2025-02-01',
|
|
6046
|
+
lastUpdated: '2025-02-01',
|
|
6047
|
+
openWeights: true,
|
|
5955
6048
|
cost: {
|
|
5956
6049
|
input: 0,
|
|
5957
6050
|
output: 0,
|
|
5958
6051
|
},
|
|
5959
6052
|
limit: {
|
|
5960
|
-
context:
|
|
5961
|
-
output:
|
|
6053
|
+
context: 32768,
|
|
6054
|
+
output: 8192,
|
|
5962
6055
|
},
|
|
5963
6056
|
},
|
|
5964
6057
|
{
|
|
5965
|
-
id: '
|
|
5966
|
-
label: '
|
|
6058
|
+
id: 'qwen/qwen3-235b-a22b-07-25',
|
|
6059
|
+
label: 'Qwen3 235B A22B Instruct 2507',
|
|
5967
6060
|
modalities: {
|
|
5968
|
-
input: ['text'
|
|
6061
|
+
input: ['text'],
|
|
5969
6062
|
output: ['text'],
|
|
5970
6063
|
},
|
|
5971
6064
|
toolCall: true,
|
|
5972
|
-
reasoningText:
|
|
5973
|
-
attachment:
|
|
6065
|
+
reasoningText: false,
|
|
6066
|
+
attachment: false,
|
|
5974
6067
|
temperature: true,
|
|
5975
|
-
knowledge: '2025-
|
|
5976
|
-
releaseDate: '2025-
|
|
5977
|
-
lastUpdated: '2025-
|
|
5978
|
-
openWeights:
|
|
6068
|
+
knowledge: '2025-04',
|
|
6069
|
+
releaseDate: '2025-04-28',
|
|
6070
|
+
lastUpdated: '2025-07-21',
|
|
6071
|
+
openWeights: true,
|
|
5979
6072
|
cost: {
|
|
5980
|
-
input: 0,
|
|
5981
|
-
output: 0,
|
|
6073
|
+
input: 0.15,
|
|
6074
|
+
output: 0.85,
|
|
5982
6075
|
},
|
|
5983
6076
|
limit: {
|
|
5984
|
-
context:
|
|
5985
|
-
output:
|
|
6077
|
+
context: 262144,
|
|
6078
|
+
output: 131072,
|
|
5986
6079
|
},
|
|
5987
6080
|
},
|
|
5988
6081
|
{
|
|
5989
|
-
id: '
|
|
5990
|
-
|
|
5991
|
-
label: 'Intellect 3',
|
|
6082
|
+
id: 'qwen/qwen3-235b-a22b-thinking-2507',
|
|
6083
|
+
label: 'Qwen3 235B A22B Thinking 2507',
|
|
5992
6084
|
modalities: {
|
|
5993
6085
|
input: ['text'],
|
|
5994
6086
|
output: ['text'],
|
|
@@ -5997,417 +6089,81 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
5997
6089
|
reasoningText: true,
|
|
5998
6090
|
attachment: false,
|
|
5999
6091
|
temperature: true,
|
|
6000
|
-
knowledge: '
|
|
6001
|
-
releaseDate: '2025-
|
|
6002
|
-
lastUpdated: '2025-
|
|
6092
|
+
knowledge: '2025-04',
|
|
6093
|
+
releaseDate: '2025-07-25',
|
|
6094
|
+
lastUpdated: '2025-07-25',
|
|
6003
6095
|
openWeights: true,
|
|
6004
6096
|
cost: {
|
|
6005
|
-
input: 0.
|
|
6006
|
-
output:
|
|
6097
|
+
input: 0.078,
|
|
6098
|
+
output: 0.312,
|
|
6007
6099
|
},
|
|
6008
6100
|
limit: {
|
|
6009
|
-
context:
|
|
6010
|
-
output:
|
|
6101
|
+
context: 262144,
|
|
6102
|
+
output: 81920,
|
|
6011
6103
|
},
|
|
6012
6104
|
},
|
|
6013
6105
|
{
|
|
6014
|
-
id: 'qwen/
|
|
6015
|
-
label: '
|
|
6106
|
+
id: 'qwen/qwen3-30b-a3b-instruct-2507',
|
|
6107
|
+
label: 'Qwen3 30B A3B Instruct 2507',
|
|
6016
6108
|
modalities: {
|
|
6017
6109
|
input: ['text'],
|
|
6018
6110
|
output: ['text'],
|
|
6019
6111
|
},
|
|
6020
|
-
toolCall:
|
|
6112
|
+
toolCall: true,
|
|
6021
6113
|
reasoningText: false,
|
|
6022
6114
|
attachment: false,
|
|
6023
6115
|
temperature: true,
|
|
6024
|
-
knowledge: '
|
|
6025
|
-
releaseDate: '
|
|
6026
|
-
lastUpdated: '
|
|
6116
|
+
knowledge: '2025-04',
|
|
6117
|
+
releaseDate: '2025-07-29',
|
|
6118
|
+
lastUpdated: '2025-07-29',
|
|
6027
6119
|
openWeights: true,
|
|
6028
6120
|
cost: {
|
|
6029
|
-
input: 0,
|
|
6030
|
-
output: 0,
|
|
6121
|
+
input: 0.2,
|
|
6122
|
+
output: 0.8,
|
|
6031
6123
|
},
|
|
6032
6124
|
limit: {
|
|
6033
|
-
context:
|
|
6034
|
-
output:
|
|
6125
|
+
context: 262000,
|
|
6126
|
+
output: 262000,
|
|
6035
6127
|
},
|
|
6036
6128
|
},
|
|
6037
6129
|
{
|
|
6038
|
-
id: 'qwen/
|
|
6039
|
-
label: '
|
|
6130
|
+
id: 'qwen/qwen3-30b-a3b-thinking-2507',
|
|
6131
|
+
label: 'Qwen3 30B A3B Thinking 2507',
|
|
6040
6132
|
modalities: {
|
|
6041
|
-
input: ['text'
|
|
6133
|
+
input: ['text'],
|
|
6042
6134
|
output: ['text'],
|
|
6043
6135
|
},
|
|
6044
6136
|
toolCall: true,
|
|
6045
|
-
reasoningText:
|
|
6046
|
-
attachment:
|
|
6137
|
+
reasoningText: true,
|
|
6138
|
+
attachment: false,
|
|
6047
6139
|
temperature: true,
|
|
6048
|
-
knowledge: '2025-
|
|
6049
|
-
releaseDate: '
|
|
6050
|
-
lastUpdated: '
|
|
6140
|
+
knowledge: '2025-04',
|
|
6141
|
+
releaseDate: '2025-07-29',
|
|
6142
|
+
lastUpdated: '2025-07-29',
|
|
6051
6143
|
openWeights: true,
|
|
6052
6144
|
cost: {
|
|
6053
|
-
input: 0,
|
|
6054
|
-
output: 0,
|
|
6145
|
+
input: 0.2,
|
|
6146
|
+
output: 0.8,
|
|
6055
6147
|
},
|
|
6056
6148
|
limit: {
|
|
6057
|
-
context:
|
|
6058
|
-
output:
|
|
6149
|
+
context: 262000,
|
|
6150
|
+
output: 262000,
|
|
6059
6151
|
},
|
|
6060
6152
|
},
|
|
6061
6153
|
{
|
|
6062
|
-
id: 'qwen/
|
|
6063
|
-
label: '
|
|
6154
|
+
id: 'qwen/qwen3-coder',
|
|
6155
|
+
label: 'Qwen3 Coder',
|
|
6064
6156
|
modalities: {
|
|
6065
|
-
input: ['text'
|
|
6157
|
+
input: ['text'],
|
|
6066
6158
|
output: ['text'],
|
|
6067
6159
|
},
|
|
6068
6160
|
toolCall: true,
|
|
6069
6161
|
reasoningText: false,
|
|
6070
|
-
attachment:
|
|
6162
|
+
attachment: false,
|
|
6071
6163
|
temperature: true,
|
|
6072
|
-
knowledge: '2025-
|
|
6073
|
-
releaseDate: '2025-
|
|
6074
|
-
lastUpdated: '2025-
|
|
6075
|
-
openWeights: true,
|
|
6076
|
-
cost: {
|
|
6077
|
-
input: 0,
|
|
6078
|
-
output: 0,
|
|
6079
|
-
},
|
|
6080
|
-
limit: {
|
|
6081
|
-
context: 8192,
|
|
6082
|
-
output: 8192,
|
|
6083
|
-
},
|
|
6084
|
-
},
|
|
6085
|
-
{
|
|
6086
|
-
id: 'qwen/qwen2.5-vl-72b-instruct',
|
|
6087
|
-
label: 'Qwen2.5 VL 72B Instruct',
|
|
6088
|
-
modalities: {
|
|
6089
|
-
input: ['text', 'image'],
|
|
6090
|
-
output: ['text'],
|
|
6091
|
-
},
|
|
6092
|
-
toolCall: false,
|
|
6093
|
-
reasoningText: false,
|
|
6094
|
-
attachment: true,
|
|
6095
|
-
temperature: true,
|
|
6096
|
-
knowledge: '2024-10',
|
|
6097
|
-
releaseDate: '2025-02-01',
|
|
6098
|
-
lastUpdated: '2025-02-01',
|
|
6099
|
-
openWeights: true,
|
|
6100
|
-
cost: {
|
|
6101
|
-
input: 0,
|
|
6102
|
-
output: 0,
|
|
6103
|
-
},
|
|
6104
|
-
limit: {
|
|
6105
|
-
context: 32768,
|
|
6106
|
-
output: 8192,
|
|
6107
|
-
},
|
|
6108
|
-
},
|
|
6109
|
-
{
|
|
6110
|
-
id: 'qwen/qwen2.5-vl-72b-instruct:free',
|
|
6111
|
-
label: 'Qwen2.5 VL 72B Instruct (free)',
|
|
6112
|
-
modalities: {
|
|
6113
|
-
input: ['text', 'image'],
|
|
6114
|
-
output: ['text'],
|
|
6115
|
-
},
|
|
6116
|
-
toolCall: true,
|
|
6117
|
-
reasoningText: false,
|
|
6118
|
-
attachment: true,
|
|
6119
|
-
temperature: true,
|
|
6120
|
-
knowledge: '2025-02',
|
|
6121
|
-
releaseDate: '2025-02-01',
|
|
6122
|
-
lastUpdated: '2025-02-01',
|
|
6123
|
-
openWeights: true,
|
|
6124
|
-
cost: {
|
|
6125
|
-
input: 0,
|
|
6126
|
-
output: 0,
|
|
6127
|
-
},
|
|
6128
|
-
limit: {
|
|
6129
|
-
context: 32768,
|
|
6130
|
-
output: 32768,
|
|
6131
|
-
},
|
|
6132
|
-
},
|
|
6133
|
-
{
|
|
6134
|
-
id: 'qwen/qwen3-14b:free',
|
|
6135
|
-
label: 'Qwen3 14B (free)',
|
|
6136
|
-
modalities: {
|
|
6137
|
-
input: ['text'],
|
|
6138
|
-
output: ['text'],
|
|
6139
|
-
},
|
|
6140
|
-
toolCall: true,
|
|
6141
|
-
reasoningText: true,
|
|
6142
|
-
attachment: false,
|
|
6143
|
-
temperature: true,
|
|
6144
|
-
knowledge: '2025-04',
|
|
6145
|
-
releaseDate: '2025-04-28',
|
|
6146
|
-
lastUpdated: '2025-04-28',
|
|
6147
|
-
openWeights: true,
|
|
6148
|
-
cost: {
|
|
6149
|
-
input: 0,
|
|
6150
|
-
output: 0,
|
|
6151
|
-
},
|
|
6152
|
-
limit: {
|
|
6153
|
-
context: 40960,
|
|
6154
|
-
output: 40960,
|
|
6155
|
-
},
|
|
6156
|
-
},
|
|
6157
|
-
{
|
|
6158
|
-
id: 'qwen/qwen3-235b-a22b-07-25',
|
|
6159
|
-
label: 'Qwen3 235B A22B Instruct 2507',
|
|
6160
|
-
modalities: {
|
|
6161
|
-
input: ['text'],
|
|
6162
|
-
output: ['text'],
|
|
6163
|
-
},
|
|
6164
|
-
toolCall: true,
|
|
6165
|
-
reasoningText: false,
|
|
6166
|
-
attachment: false,
|
|
6167
|
-
temperature: true,
|
|
6168
|
-
knowledge: '2025-04',
|
|
6169
|
-
releaseDate: '2025-04-28',
|
|
6170
|
-
lastUpdated: '2025-07-21',
|
|
6171
|
-
openWeights: true,
|
|
6172
|
-
cost: {
|
|
6173
|
-
input: 0.15,
|
|
6174
|
-
output: 0.85,
|
|
6175
|
-
},
|
|
6176
|
-
limit: {
|
|
6177
|
-
context: 262144,
|
|
6178
|
-
output: 131072,
|
|
6179
|
-
},
|
|
6180
|
-
},
|
|
6181
|
-
{
|
|
6182
|
-
id: 'qwen/qwen3-235b-a22b-07-25:free',
|
|
6183
|
-
label: 'Qwen3 235B A22B Instruct 2507 (free)',
|
|
6184
|
-
modalities: {
|
|
6185
|
-
input: ['text'],
|
|
6186
|
-
output: ['text'],
|
|
6187
|
-
},
|
|
6188
|
-
toolCall: true,
|
|
6189
|
-
reasoningText: false,
|
|
6190
|
-
attachment: false,
|
|
6191
|
-
temperature: true,
|
|
6192
|
-
knowledge: '2025-04',
|
|
6193
|
-
releaseDate: '2025-04-28',
|
|
6194
|
-
lastUpdated: '2025-07-21',
|
|
6195
|
-
openWeights: true,
|
|
6196
|
-
cost: {
|
|
6197
|
-
input: 0,
|
|
6198
|
-
output: 0,
|
|
6199
|
-
},
|
|
6200
|
-
limit: {
|
|
6201
|
-
context: 262144,
|
|
6202
|
-
output: 131072,
|
|
6203
|
-
},
|
|
6204
|
-
},
|
|
6205
|
-
{
|
|
6206
|
-
id: 'qwen/qwen3-235b-a22b-thinking-2507',
|
|
6207
|
-
label: 'Qwen3 235B A22B Thinking 2507',
|
|
6208
|
-
modalities: {
|
|
6209
|
-
input: ['text'],
|
|
6210
|
-
output: ['text'],
|
|
6211
|
-
},
|
|
6212
|
-
toolCall: true,
|
|
6213
|
-
reasoningText: true,
|
|
6214
|
-
attachment: false,
|
|
6215
|
-
temperature: true,
|
|
6216
|
-
knowledge: '2025-04',
|
|
6217
|
-
releaseDate: '2025-07-25',
|
|
6218
|
-
lastUpdated: '2025-07-25',
|
|
6219
|
-
openWeights: true,
|
|
6220
|
-
cost: {
|
|
6221
|
-
input: 0.078,
|
|
6222
|
-
output: 0.312,
|
|
6223
|
-
},
|
|
6224
|
-
limit: {
|
|
6225
|
-
context: 262144,
|
|
6226
|
-
output: 81920,
|
|
6227
|
-
},
|
|
6228
|
-
},
|
|
6229
|
-
{
|
|
6230
|
-
id: 'qwen/qwen3-235b-a22b:free',
|
|
6231
|
-
label: 'Qwen3 235B A22B (free)',
|
|
6232
|
-
modalities: {
|
|
6233
|
-
input: ['text'],
|
|
6234
|
-
output: ['text'],
|
|
6235
|
-
},
|
|
6236
|
-
toolCall: true,
|
|
6237
|
-
reasoningText: true,
|
|
6238
|
-
attachment: false,
|
|
6239
|
-
temperature: true,
|
|
6240
|
-
knowledge: '2025-04',
|
|
6241
|
-
releaseDate: '2025-04-28',
|
|
6242
|
-
lastUpdated: '2025-04-28',
|
|
6243
|
-
openWeights: true,
|
|
6244
|
-
cost: {
|
|
6245
|
-
input: 0,
|
|
6246
|
-
output: 0,
|
|
6247
|
-
},
|
|
6248
|
-
limit: {
|
|
6249
|
-
context: 131072,
|
|
6250
|
-
output: 131072,
|
|
6251
|
-
},
|
|
6252
|
-
},
|
|
6253
|
-
{
|
|
6254
|
-
id: 'qwen/qwen3-30b-a3b-instruct-2507',
|
|
6255
|
-
label: 'Qwen3 30B A3B Instruct 2507',
|
|
6256
|
-
modalities: {
|
|
6257
|
-
input: ['text'],
|
|
6258
|
-
output: ['text'],
|
|
6259
|
-
},
|
|
6260
|
-
toolCall: true,
|
|
6261
|
-
reasoningText: false,
|
|
6262
|
-
attachment: false,
|
|
6263
|
-
temperature: true,
|
|
6264
|
-
knowledge: '2025-04',
|
|
6265
|
-
releaseDate: '2025-07-29',
|
|
6266
|
-
lastUpdated: '2025-07-29',
|
|
6267
|
-
openWeights: true,
|
|
6268
|
-
cost: {
|
|
6269
|
-
input: 0.2,
|
|
6270
|
-
output: 0.8,
|
|
6271
|
-
},
|
|
6272
|
-
limit: {
|
|
6273
|
-
context: 262000,
|
|
6274
|
-
output: 262000,
|
|
6275
|
-
},
|
|
6276
|
-
},
|
|
6277
|
-
{
|
|
6278
|
-
id: 'qwen/qwen3-30b-a3b-thinking-2507',
|
|
6279
|
-
label: 'Qwen3 30B A3B Thinking 2507',
|
|
6280
|
-
modalities: {
|
|
6281
|
-
input: ['text'],
|
|
6282
|
-
output: ['text'],
|
|
6283
|
-
},
|
|
6284
|
-
toolCall: true,
|
|
6285
|
-
reasoningText: true,
|
|
6286
|
-
attachment: false,
|
|
6287
|
-
temperature: true,
|
|
6288
|
-
knowledge: '2025-04',
|
|
6289
|
-
releaseDate: '2025-07-29',
|
|
6290
|
-
lastUpdated: '2025-07-29',
|
|
6291
|
-
openWeights: true,
|
|
6292
|
-
cost: {
|
|
6293
|
-
input: 0.2,
|
|
6294
|
-
output: 0.8,
|
|
6295
|
-
},
|
|
6296
|
-
limit: {
|
|
6297
|
-
context: 262000,
|
|
6298
|
-
output: 262000,
|
|
6299
|
-
},
|
|
6300
|
-
},
|
|
6301
|
-
{
|
|
6302
|
-
id: 'qwen/qwen3-30b-a3b:free',
|
|
6303
|
-
label: 'Qwen3 30B A3B (free)',
|
|
6304
|
-
modalities: {
|
|
6305
|
-
input: ['text'],
|
|
6306
|
-
output: ['text'],
|
|
6307
|
-
},
|
|
6308
|
-
toolCall: true,
|
|
6309
|
-
reasoningText: true,
|
|
6310
|
-
attachment: false,
|
|
6311
|
-
temperature: true,
|
|
6312
|
-
knowledge: '2025-04',
|
|
6313
|
-
releaseDate: '2025-04-28',
|
|
6314
|
-
lastUpdated: '2025-04-28',
|
|
6315
|
-
openWeights: true,
|
|
6316
|
-
cost: {
|
|
6317
|
-
input: 0,
|
|
6318
|
-
output: 0,
|
|
6319
|
-
},
|
|
6320
|
-
limit: {
|
|
6321
|
-
context: 40960,
|
|
6322
|
-
output: 40960,
|
|
6323
|
-
},
|
|
6324
|
-
},
|
|
6325
|
-
{
|
|
6326
|
-
id: 'qwen/qwen3-32b:free',
|
|
6327
|
-
label: 'Qwen3 32B (free)',
|
|
6328
|
-
modalities: {
|
|
6329
|
-
input: ['text'],
|
|
6330
|
-
output: ['text'],
|
|
6331
|
-
},
|
|
6332
|
-
toolCall: true,
|
|
6333
|
-
reasoningText: true,
|
|
6334
|
-
attachment: false,
|
|
6335
|
-
temperature: true,
|
|
6336
|
-
knowledge: '2025-04',
|
|
6337
|
-
releaseDate: '2025-04-28',
|
|
6338
|
-
lastUpdated: '2025-04-28',
|
|
6339
|
-
openWeights: true,
|
|
6340
|
-
cost: {
|
|
6341
|
-
input: 0,
|
|
6342
|
-
output: 0,
|
|
6343
|
-
},
|
|
6344
|
-
limit: {
|
|
6345
|
-
context: 40960,
|
|
6346
|
-
output: 40960,
|
|
6347
|
-
},
|
|
6348
|
-
},
|
|
6349
|
-
{
|
|
6350
|
-
id: 'qwen/qwen3-4b:free',
|
|
6351
|
-
label: 'Qwen3 4B (free)',
|
|
6352
|
-
modalities: {
|
|
6353
|
-
input: ['text'],
|
|
6354
|
-
output: ['text'],
|
|
6355
|
-
},
|
|
6356
|
-
toolCall: true,
|
|
6357
|
-
reasoningText: true,
|
|
6358
|
-
attachment: false,
|
|
6359
|
-
temperature: true,
|
|
6360
|
-
knowledge: '2025-04',
|
|
6361
|
-
releaseDate: '2025-04-30',
|
|
6362
|
-
lastUpdated: '2025-07-23',
|
|
6363
|
-
openWeights: true,
|
|
6364
|
-
cost: {
|
|
6365
|
-
input: 0,
|
|
6366
|
-
output: 0,
|
|
6367
|
-
},
|
|
6368
|
-
limit: {
|
|
6369
|
-
context: 40960,
|
|
6370
|
-
output: 40960,
|
|
6371
|
-
},
|
|
6372
|
-
},
|
|
6373
|
-
{
|
|
6374
|
-
id: 'qwen/qwen3-8b:free',
|
|
6375
|
-
label: 'Qwen3 8B (free)',
|
|
6376
|
-
modalities: {
|
|
6377
|
-
input: ['text'],
|
|
6378
|
-
output: ['text'],
|
|
6379
|
-
},
|
|
6380
|
-
toolCall: true,
|
|
6381
|
-
reasoningText: true,
|
|
6382
|
-
attachment: false,
|
|
6383
|
-
temperature: true,
|
|
6384
|
-
knowledge: '2025-04',
|
|
6385
|
-
releaseDate: '2025-04-28',
|
|
6386
|
-
lastUpdated: '2025-04-28',
|
|
6387
|
-
openWeights: true,
|
|
6388
|
-
cost: {
|
|
6389
|
-
input: 0,
|
|
6390
|
-
output: 0,
|
|
6391
|
-
},
|
|
6392
|
-
limit: {
|
|
6393
|
-
context: 40960,
|
|
6394
|
-
output: 40960,
|
|
6395
|
-
},
|
|
6396
|
-
},
|
|
6397
|
-
{
|
|
6398
|
-
id: 'qwen/qwen3-coder',
|
|
6399
|
-
label: 'Qwen3 Coder',
|
|
6400
|
-
modalities: {
|
|
6401
|
-
input: ['text'],
|
|
6402
|
-
output: ['text'],
|
|
6403
|
-
},
|
|
6404
|
-
toolCall: true,
|
|
6405
|
-
reasoningText: false,
|
|
6406
|
-
attachment: false,
|
|
6407
|
-
temperature: true,
|
|
6408
|
-
knowledge: '2025-04',
|
|
6409
|
-
releaseDate: '2025-07-23',
|
|
6410
|
-
lastUpdated: '2025-07-23',
|
|
6164
|
+
knowledge: '2025-04',
|
|
6165
|
+
releaseDate: '2025-07-23',
|
|
6166
|
+
lastUpdated: '2025-07-23',
|
|
6411
6167
|
openWeights: true,
|
|
6412
6168
|
cost: {
|
|
6413
6169
|
input: 0.3,
|
|
@@ -6490,30 +6246,6 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
6490
6246
|
output: 32768,
|
|
6491
6247
|
},
|
|
6492
6248
|
},
|
|
6493
|
-
{
|
|
6494
|
-
id: 'qwen/qwen3-coder:free',
|
|
6495
|
-
label: 'Qwen3 Coder 480B A35B Instruct (free)',
|
|
6496
|
-
modalities: {
|
|
6497
|
-
input: ['text'],
|
|
6498
|
-
output: ['text'],
|
|
6499
|
-
},
|
|
6500
|
-
toolCall: true,
|
|
6501
|
-
reasoningText: false,
|
|
6502
|
-
attachment: false,
|
|
6503
|
-
temperature: true,
|
|
6504
|
-
knowledge: '2025-04',
|
|
6505
|
-
releaseDate: '2025-07-23',
|
|
6506
|
-
lastUpdated: '2025-07-23',
|
|
6507
|
-
openWeights: true,
|
|
6508
|
-
cost: {
|
|
6509
|
-
input: 0,
|
|
6510
|
-
output: 0,
|
|
6511
|
-
},
|
|
6512
|
-
limit: {
|
|
6513
|
-
context: 262144,
|
|
6514
|
-
output: 66536,
|
|
6515
|
-
},
|
|
6516
|
-
},
|
|
6517
6249
|
{
|
|
6518
6250
|
id: 'qwen/qwen3-max',
|
|
6519
6251
|
label: 'Qwen3 Max',
|
|
@@ -6561,30 +6293,6 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
6561
6293
|
output: 262144,
|
|
6562
6294
|
},
|
|
6563
6295
|
},
|
|
6564
|
-
{
|
|
6565
|
-
id: 'qwen/qwen3-next-80b-a3b-instruct:free',
|
|
6566
|
-
label: 'Qwen3 Next 80B A3B Instruct (free)',
|
|
6567
|
-
modalities: {
|
|
6568
|
-
input: ['text'],
|
|
6569
|
-
output: ['text'],
|
|
6570
|
-
},
|
|
6571
|
-
toolCall: true,
|
|
6572
|
-
reasoningText: false,
|
|
6573
|
-
attachment: false,
|
|
6574
|
-
temperature: true,
|
|
6575
|
-
knowledge: '2025-04',
|
|
6576
|
-
releaseDate: '2025-09-11',
|
|
6577
|
-
lastUpdated: '2025-09-11',
|
|
6578
|
-
openWeights: true,
|
|
6579
|
-
cost: {
|
|
6580
|
-
input: 0,
|
|
6581
|
-
output: 0,
|
|
6582
|
-
},
|
|
6583
|
-
limit: {
|
|
6584
|
-
context: 262144,
|
|
6585
|
-
output: 262144,
|
|
6586
|
-
},
|
|
6587
|
-
},
|
|
6588
6296
|
{
|
|
6589
6297
|
id: 'qwen/qwen3-next-80b-a3b-thinking',
|
|
6590
6298
|
label: 'Qwen3 Next 80B A3B Thinking',
|
|
@@ -6634,8 +6342,8 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
6634
6342
|
},
|
|
6635
6343
|
},
|
|
6636
6344
|
{
|
|
6637
|
-
id: 'qwen/qwen3.5-
|
|
6638
|
-
label: 'Qwen3.5
|
|
6345
|
+
id: 'qwen/qwen3.5-flash-02-23',
|
|
6346
|
+
label: 'Qwen: Qwen3.5-Flash',
|
|
6639
6347
|
modalities: {
|
|
6640
6348
|
input: ['text', 'image', 'video'],
|
|
6641
6349
|
output: ['text'],
|
|
@@ -6644,13 +6352,12 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
6644
6352
|
reasoningText: true,
|
|
6645
6353
|
attachment: true,
|
|
6646
6354
|
temperature: true,
|
|
6647
|
-
|
|
6648
|
-
|
|
6649
|
-
lastUpdated: '2026-02-16',
|
|
6355
|
+
releaseDate: '2026-02-25',
|
|
6356
|
+
lastUpdated: '2026-02-25',
|
|
6650
6357
|
openWeights: false,
|
|
6651
6358
|
cost: {
|
|
6652
|
-
input: 0.
|
|
6653
|
-
output:
|
|
6359
|
+
input: 0.065,
|
|
6360
|
+
output: 0.26,
|
|
6654
6361
|
},
|
|
6655
6362
|
limit: {
|
|
6656
6363
|
context: 1000000,
|
|
@@ -6658,75 +6365,51 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
6658
6365
|
},
|
|
6659
6366
|
},
|
|
6660
6367
|
{
|
|
6661
|
-
id: 'qwen/
|
|
6662
|
-
label: '
|
|
6663
|
-
modalities: {
|
|
6664
|
-
input: ['text'],
|
|
6665
|
-
output: ['text'],
|
|
6666
|
-
},
|
|
6667
|
-
toolCall: true,
|
|
6668
|
-
reasoningText: true,
|
|
6669
|
-
attachment: false,
|
|
6670
|
-
temperature: true,
|
|
6671
|
-
knowledge: '2025-03',
|
|
6672
|
-
releaseDate: '2025-03-05',
|
|
6673
|
-
lastUpdated: '2025-03-05',
|
|
6674
|
-
openWeights: true,
|
|
6675
|
-
cost: {
|
|
6676
|
-
input: 0,
|
|
6677
|
-
output: 0,
|
|
6678
|
-
},
|
|
6679
|
-
limit: {
|
|
6680
|
-
context: 32768,
|
|
6681
|
-
output: 32768,
|
|
6682
|
-
},
|
|
6683
|
-
},
|
|
6684
|
-
{
|
|
6685
|
-
id: 'rekaai/reka-flash-3',
|
|
6686
|
-
label: 'Reka Flash 3',
|
|
6368
|
+
id: 'qwen/qwen3.5-plus-02-15',
|
|
6369
|
+
label: 'Qwen3.5 Plus 2026-02-15',
|
|
6687
6370
|
modalities: {
|
|
6688
|
-
input: ['text'],
|
|
6371
|
+
input: ['text', 'image', 'video'],
|
|
6689
6372
|
output: ['text'],
|
|
6690
6373
|
},
|
|
6691
6374
|
toolCall: true,
|
|
6692
6375
|
reasoningText: true,
|
|
6693
|
-
attachment:
|
|
6376
|
+
attachment: true,
|
|
6694
6377
|
temperature: true,
|
|
6695
|
-
knowledge: '
|
|
6696
|
-
releaseDate: '
|
|
6697
|
-
lastUpdated: '
|
|
6698
|
-
openWeights:
|
|
6378
|
+
knowledge: '2025-04',
|
|
6379
|
+
releaseDate: '2026-02-16',
|
|
6380
|
+
lastUpdated: '2026-02-16',
|
|
6381
|
+
openWeights: false,
|
|
6699
6382
|
cost: {
|
|
6700
|
-
input: 0,
|
|
6701
|
-
output:
|
|
6383
|
+
input: 0.4,
|
|
6384
|
+
output: 2.4,
|
|
6702
6385
|
},
|
|
6703
6386
|
limit: {
|
|
6704
|
-
context:
|
|
6705
|
-
output:
|
|
6387
|
+
context: 1000000,
|
|
6388
|
+
output: 65536,
|
|
6706
6389
|
},
|
|
6707
6390
|
},
|
|
6708
6391
|
{
|
|
6709
|
-
id: '
|
|
6710
|
-
label: '
|
|
6392
|
+
id: 'qwen/qwen3.6-plus',
|
|
6393
|
+
label: 'Qwen3.6 Plus',
|
|
6711
6394
|
modalities: {
|
|
6712
|
-
input: ['text'],
|
|
6395
|
+
input: ['text', 'image', 'video'],
|
|
6713
6396
|
output: ['text'],
|
|
6714
6397
|
},
|
|
6715
6398
|
toolCall: true,
|
|
6716
6399
|
reasoningText: true,
|
|
6717
|
-
attachment:
|
|
6400
|
+
attachment: true,
|
|
6718
6401
|
temperature: true,
|
|
6719
|
-
knowledge: '2025-
|
|
6720
|
-
releaseDate: '
|
|
6721
|
-
lastUpdated: '
|
|
6722
|
-
openWeights:
|
|
6402
|
+
knowledge: '2025-04',
|
|
6403
|
+
releaseDate: '2026-04-02',
|
|
6404
|
+
lastUpdated: '2026-04-02',
|
|
6405
|
+
openWeights: false,
|
|
6723
6406
|
cost: {
|
|
6724
|
-
input: 0,
|
|
6725
|
-
output:
|
|
6407
|
+
input: 0.325,
|
|
6408
|
+
output: 1.95,
|
|
6726
6409
|
},
|
|
6727
6410
|
limit: {
|
|
6728
|
-
context:
|
|
6729
|
-
output:
|
|
6411
|
+
context: 1000000,
|
|
6412
|
+
output: 65536,
|
|
6730
6413
|
},
|
|
6731
6414
|
},
|
|
6732
6415
|
{
|
|
@@ -6826,103 +6509,6 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
6826
6509
|
output: 256000,
|
|
6827
6510
|
},
|
|
6828
6511
|
},
|
|
6829
|
-
{
|
|
6830
|
-
id: 'stepfun/step-3.5-flash:free',
|
|
6831
|
-
label: 'Step 3.5 Flash (free)',
|
|
6832
|
-
modalities: {
|
|
6833
|
-
input: ['text'],
|
|
6834
|
-
output: ['text'],
|
|
6835
|
-
},
|
|
6836
|
-
toolCall: true,
|
|
6837
|
-
reasoningText: true,
|
|
6838
|
-
attachment: false,
|
|
6839
|
-
temperature: true,
|
|
6840
|
-
knowledge: '2025-01',
|
|
6841
|
-
releaseDate: '2026-01-29',
|
|
6842
|
-
lastUpdated: '2026-01-29',
|
|
6843
|
-
openWeights: true,
|
|
6844
|
-
cost: {
|
|
6845
|
-
input: 0,
|
|
6846
|
-
output: 0,
|
|
6847
|
-
},
|
|
6848
|
-
limit: {
|
|
6849
|
-
context: 256000,
|
|
6850
|
-
output: 256000,
|
|
6851
|
-
},
|
|
6852
|
-
},
|
|
6853
|
-
{
|
|
6854
|
-
id: 'thudm/glm-z1-32b:free',
|
|
6855
|
-
ownedBy: 'zai',
|
|
6856
|
-
label: 'GLM Z1 32B (free)',
|
|
6857
|
-
modalities: {
|
|
6858
|
-
input: ['text'],
|
|
6859
|
-
output: ['text'],
|
|
6860
|
-
},
|
|
6861
|
-
toolCall: true,
|
|
6862
|
-
reasoningText: true,
|
|
6863
|
-
attachment: false,
|
|
6864
|
-
temperature: true,
|
|
6865
|
-
knowledge: '2025-04',
|
|
6866
|
-
releaseDate: '2025-04-17',
|
|
6867
|
-
lastUpdated: '2025-04-17',
|
|
6868
|
-
openWeights: true,
|
|
6869
|
-
cost: {
|
|
6870
|
-
input: 0,
|
|
6871
|
-
output: 0,
|
|
6872
|
-
},
|
|
6873
|
-
limit: {
|
|
6874
|
-
context: 32768,
|
|
6875
|
-
output: 32768,
|
|
6876
|
-
},
|
|
6877
|
-
},
|
|
6878
|
-
{
|
|
6879
|
-
id: 'tngtech/deepseek-r1t2-chimera:free',
|
|
6880
|
-
label: 'DeepSeek R1T2 Chimera (free)',
|
|
6881
|
-
modalities: {
|
|
6882
|
-
input: ['text'],
|
|
6883
|
-
output: ['text'],
|
|
6884
|
-
},
|
|
6885
|
-
toolCall: false,
|
|
6886
|
-
reasoningText: true,
|
|
6887
|
-
attachment: false,
|
|
6888
|
-
temperature: true,
|
|
6889
|
-
knowledge: '2025-07',
|
|
6890
|
-
releaseDate: '2025-07-08',
|
|
6891
|
-
lastUpdated: '2025-07-08',
|
|
6892
|
-
openWeights: true,
|
|
6893
|
-
cost: {
|
|
6894
|
-
input: 0,
|
|
6895
|
-
output: 0,
|
|
6896
|
-
},
|
|
6897
|
-
limit: {
|
|
6898
|
-
context: 163840,
|
|
6899
|
-
output: 163840,
|
|
6900
|
-
},
|
|
6901
|
-
},
|
|
6902
|
-
{
|
|
6903
|
-
id: 'tngtech/tng-r1t-chimera:free',
|
|
6904
|
-
label: 'R1T Chimera (free)',
|
|
6905
|
-
modalities: {
|
|
6906
|
-
input: ['text'],
|
|
6907
|
-
output: ['text'],
|
|
6908
|
-
},
|
|
6909
|
-
toolCall: true,
|
|
6910
|
-
reasoningText: true,
|
|
6911
|
-
attachment: false,
|
|
6912
|
-
temperature: true,
|
|
6913
|
-
knowledge: '2025-07',
|
|
6914
|
-
releaseDate: '2025-11-26',
|
|
6915
|
-
lastUpdated: '2026-01-31',
|
|
6916
|
-
openWeights: true,
|
|
6917
|
-
cost: {
|
|
6918
|
-
input: 0,
|
|
6919
|
-
output: 0,
|
|
6920
|
-
},
|
|
6921
|
-
limit: {
|
|
6922
|
-
context: 163840,
|
|
6923
|
-
output: 163840,
|
|
6924
|
-
},
|
|
6925
|
-
},
|
|
6926
6512
|
{
|
|
6927
6513
|
id: 'x-ai/grok-3',
|
|
6928
6514
|
ownedBy: 'xai',
|
|
@@ -7112,6 +6698,56 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
7112
6698
|
output: 30000,
|
|
7113
6699
|
},
|
|
7114
6700
|
},
|
|
6701
|
+
{
|
|
6702
|
+
id: 'x-ai/grok-4.20-beta',
|
|
6703
|
+
ownedBy: 'xai',
|
|
6704
|
+
label: 'Grok 4.20 Beta',
|
|
6705
|
+
modalities: {
|
|
6706
|
+
input: ['text', 'image'],
|
|
6707
|
+
output: ['text'],
|
|
6708
|
+
},
|
|
6709
|
+
toolCall: true,
|
|
6710
|
+
reasoningText: true,
|
|
6711
|
+
attachment: true,
|
|
6712
|
+
temperature: true,
|
|
6713
|
+
releaseDate: '2026-03-12',
|
|
6714
|
+
lastUpdated: '2026-03-12',
|
|
6715
|
+
openWeights: false,
|
|
6716
|
+
cost: {
|
|
6717
|
+
input: 2,
|
|
6718
|
+
output: 6,
|
|
6719
|
+
cacheRead: 0.2,
|
|
6720
|
+
},
|
|
6721
|
+
limit: {
|
|
6722
|
+
context: 2000000,
|
|
6723
|
+
output: 30000,
|
|
6724
|
+
},
|
|
6725
|
+
},
|
|
6726
|
+
{
|
|
6727
|
+
id: 'x-ai/grok-4.20-multi-agent-beta',
|
|
6728
|
+
ownedBy: 'xai',
|
|
6729
|
+
label: 'Grok 4.20 Multi - Agent Beta',
|
|
6730
|
+
modalities: {
|
|
6731
|
+
input: ['text', 'image'],
|
|
6732
|
+
output: ['text'],
|
|
6733
|
+
},
|
|
6734
|
+
toolCall: false,
|
|
6735
|
+
reasoningText: true,
|
|
6736
|
+
attachment: true,
|
|
6737
|
+
temperature: true,
|
|
6738
|
+
releaseDate: '2026-03-12',
|
|
6739
|
+
lastUpdated: '2026-03-12',
|
|
6740
|
+
openWeights: false,
|
|
6741
|
+
cost: {
|
|
6742
|
+
input: 2,
|
|
6743
|
+
output: 6,
|
|
6744
|
+
cacheRead: 0.2,
|
|
6745
|
+
},
|
|
6746
|
+
limit: {
|
|
6747
|
+
context: 2000000,
|
|
6748
|
+
output: 30000,
|
|
6749
|
+
},
|
|
6750
|
+
},
|
|
7115
6751
|
{
|
|
7116
6752
|
id: 'x-ai/grok-code-fast-1',
|
|
7117
6753
|
ownedBy: 'xai',
|
|
@@ -7134,13 +6770,62 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
7134
6770
|
cacheRead: 0.02,
|
|
7135
6771
|
},
|
|
7136
6772
|
limit: {
|
|
7137
|
-
context: 256000,
|
|
7138
|
-
output: 10000,
|
|
6773
|
+
context: 256000,
|
|
6774
|
+
output: 10000,
|
|
6775
|
+
},
|
|
6776
|
+
},
|
|
6777
|
+
{
|
|
6778
|
+
id: 'xiaomi/mimo-v2-flash',
|
|
6779
|
+
label: 'MiMo-V2-Flash',
|
|
6780
|
+
modalities: {
|
|
6781
|
+
input: ['text'],
|
|
6782
|
+
output: ['text'],
|
|
6783
|
+
},
|
|
6784
|
+
toolCall: true,
|
|
6785
|
+
reasoningText: true,
|
|
6786
|
+
attachment: false,
|
|
6787
|
+
temperature: true,
|
|
6788
|
+
knowledge: '2024-12',
|
|
6789
|
+
releaseDate: '2025-12-14',
|
|
6790
|
+
lastUpdated: '2025-12-14',
|
|
6791
|
+
openWeights: true,
|
|
6792
|
+
cost: {
|
|
6793
|
+
input: 0.1,
|
|
6794
|
+
output: 0.3,
|
|
6795
|
+
cacheRead: 0.01,
|
|
6796
|
+
},
|
|
6797
|
+
limit: {
|
|
6798
|
+
context: 262144,
|
|
6799
|
+
output: 65536,
|
|
6800
|
+
},
|
|
6801
|
+
},
|
|
6802
|
+
{
|
|
6803
|
+
id: 'xiaomi/mimo-v2-omni',
|
|
6804
|
+
label: 'MiMo-V2-Omni',
|
|
6805
|
+
modalities: {
|
|
6806
|
+
input: ['text', 'image', 'video', 'audio'],
|
|
6807
|
+
output: ['text'],
|
|
6808
|
+
},
|
|
6809
|
+
toolCall: true,
|
|
6810
|
+
reasoningText: true,
|
|
6811
|
+
attachment: true,
|
|
6812
|
+
temperature: true,
|
|
6813
|
+
releaseDate: '2026-03-18',
|
|
6814
|
+
lastUpdated: '2026-03-18',
|
|
6815
|
+
openWeights: true,
|
|
6816
|
+
cost: {
|
|
6817
|
+
input: 0.4,
|
|
6818
|
+
output: 2,
|
|
6819
|
+
cacheRead: 0.08,
|
|
6820
|
+
},
|
|
6821
|
+
limit: {
|
|
6822
|
+
context: 262144,
|
|
6823
|
+
output: 65536,
|
|
7139
6824
|
},
|
|
7140
6825
|
},
|
|
7141
6826
|
{
|
|
7142
|
-
id: 'xiaomi/mimo-v2-
|
|
7143
|
-
label: 'MiMo-V2-
|
|
6827
|
+
id: 'xiaomi/mimo-v2-pro',
|
|
6828
|
+
label: 'MiMo-V2-Pro',
|
|
7144
6829
|
modalities: {
|
|
7145
6830
|
input: ['text'],
|
|
7146
6831
|
output: ['text'],
|
|
@@ -7149,17 +6834,16 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
7149
6834
|
reasoningText: true,
|
|
7150
6835
|
attachment: false,
|
|
7151
6836
|
temperature: true,
|
|
7152
|
-
|
|
7153
|
-
|
|
7154
|
-
lastUpdated: '2025-12-14',
|
|
6837
|
+
releaseDate: '2026-03-18',
|
|
6838
|
+
lastUpdated: '2026-03-18',
|
|
7155
6839
|
openWeights: true,
|
|
7156
6840
|
cost: {
|
|
7157
|
-
input:
|
|
7158
|
-
output:
|
|
7159
|
-
cacheRead: 0.
|
|
6841
|
+
input: 1,
|
|
6842
|
+
output: 3,
|
|
6843
|
+
cacheRead: 0.2,
|
|
7160
6844
|
},
|
|
7161
6845
|
limit: {
|
|
7162
|
-
context:
|
|
6846
|
+
context: 1048576,
|
|
7163
6847
|
output: 65536,
|
|
7164
6848
|
},
|
|
7165
6849
|
},
|
|
@@ -7390,6 +7074,57 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
7390
7074
|
output: 131000,
|
|
7391
7075
|
},
|
|
7392
7076
|
},
|
|
7077
|
+
{
|
|
7078
|
+
id: 'z-ai/glm-5-turbo',
|
|
7079
|
+
ownedBy: 'zai',
|
|
7080
|
+
label: 'GLM-5-Turbo',
|
|
7081
|
+
modalities: {
|
|
7082
|
+
input: ['text'],
|
|
7083
|
+
output: ['text'],
|
|
7084
|
+
},
|
|
7085
|
+
toolCall: true,
|
|
7086
|
+
reasoningText: true,
|
|
7087
|
+
attachment: false,
|
|
7088
|
+
temperature: true,
|
|
7089
|
+
releaseDate: '2026-03-16',
|
|
7090
|
+
lastUpdated: '2026-03-16',
|
|
7091
|
+
openWeights: false,
|
|
7092
|
+
cost: {
|
|
7093
|
+
input: 0.96,
|
|
7094
|
+
output: 3.2,
|
|
7095
|
+
cacheRead: 0.192,
|
|
7096
|
+
cacheWrite: 0,
|
|
7097
|
+
},
|
|
7098
|
+
limit: {
|
|
7099
|
+
context: 202752,
|
|
7100
|
+
output: 131072,
|
|
7101
|
+
},
|
|
7102
|
+
},
|
|
7103
|
+
{
|
|
7104
|
+
id: 'z-ai/glm-5.1',
|
|
7105
|
+
ownedBy: 'zai',
|
|
7106
|
+
label: 'GLM-5.1',
|
|
7107
|
+
modalities: {
|
|
7108
|
+
input: ['text'],
|
|
7109
|
+
output: ['text'],
|
|
7110
|
+
},
|
|
7111
|
+
toolCall: true,
|
|
7112
|
+
reasoningText: true,
|
|
7113
|
+
attachment: false,
|
|
7114
|
+
temperature: true,
|
|
7115
|
+
releaseDate: '2026-04-07',
|
|
7116
|
+
lastUpdated: '2026-04-07',
|
|
7117
|
+
openWeights: true,
|
|
7118
|
+
cost: {
|
|
7119
|
+
input: 1.4,
|
|
7120
|
+
output: 4.4,
|
|
7121
|
+
cacheRead: 0.26,
|
|
7122
|
+
},
|
|
7123
|
+
limit: {
|
|
7124
|
+
context: 202752,
|
|
7125
|
+
output: 131072,
|
|
7126
|
+
},
|
|
7127
|
+
},
|
|
7393
7128
|
],
|
|
7394
7129
|
label: 'OpenRouter',
|
|
7395
7130
|
env: ['OPENROUTER_API_KEY'],
|
|
@@ -7579,6 +7314,36 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
7579
7314
|
npm: '@ai-sdk/anthropic',
|
|
7580
7315
|
},
|
|
7581
7316
|
},
|
|
7317
|
+
{
|
|
7318
|
+
id: 'claude-opus-4-7',
|
|
7319
|
+
ownedBy: 'anthropic',
|
|
7320
|
+
label: 'Claude Opus 4.7',
|
|
7321
|
+
modalities: {
|
|
7322
|
+
input: ['text', 'image', 'pdf'],
|
|
7323
|
+
output: ['text'],
|
|
7324
|
+
},
|
|
7325
|
+
toolCall: true,
|
|
7326
|
+
reasoningText: true,
|
|
7327
|
+
attachment: true,
|
|
7328
|
+
temperature: true,
|
|
7329
|
+
knowledge: '2026-01',
|
|
7330
|
+
releaseDate: '2026-04-16',
|
|
7331
|
+
lastUpdated: '2026-04-16',
|
|
7332
|
+
openWeights: false,
|
|
7333
|
+
cost: {
|
|
7334
|
+
input: 5,
|
|
7335
|
+
output: 25,
|
|
7336
|
+
cacheRead: 0.5,
|
|
7337
|
+
cacheWrite: 6.25,
|
|
7338
|
+
},
|
|
7339
|
+
limit: {
|
|
7340
|
+
context: 1000000,
|
|
7341
|
+
output: 128000,
|
|
7342
|
+
},
|
|
7343
|
+
provider: {
|
|
7344
|
+
npm: '@ai-sdk/anthropic',
|
|
7345
|
+
},
|
|
7346
|
+
},
|
|
7582
7347
|
{
|
|
7583
7348
|
id: 'claude-sonnet-4',
|
|
7584
7349
|
ownedBy: 'anthropic',
|
|
@@ -7886,6 +7651,32 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
7886
7651
|
output: 131072,
|
|
7887
7652
|
},
|
|
7888
7653
|
},
|
|
7654
|
+
{
|
|
7655
|
+
id: 'glm-5.1',
|
|
7656
|
+
ownedBy: 'zai',
|
|
7657
|
+
label: 'GLM-5.1',
|
|
7658
|
+
modalities: {
|
|
7659
|
+
input: ['text'],
|
|
7660
|
+
output: ['text'],
|
|
7661
|
+
},
|
|
7662
|
+
toolCall: true,
|
|
7663
|
+
reasoningText: true,
|
|
7664
|
+
attachment: false,
|
|
7665
|
+
temperature: true,
|
|
7666
|
+
knowledge: '2025-04',
|
|
7667
|
+
releaseDate: '2026-04-07',
|
|
7668
|
+
lastUpdated: '2026-04-07',
|
|
7669
|
+
openWeights: true,
|
|
7670
|
+
cost: {
|
|
7671
|
+
input: 1.4,
|
|
7672
|
+
output: 4.4,
|
|
7673
|
+
cacheRead: 0.26,
|
|
7674
|
+
},
|
|
7675
|
+
limit: {
|
|
7676
|
+
context: 204800,
|
|
7677
|
+
output: 131072,
|
|
7678
|
+
},
|
|
7679
|
+
},
|
|
7889
7680
|
{
|
|
7890
7681
|
id: 'gpt-5',
|
|
7891
7682
|
ownedBy: 'openai',
|
|
@@ -8234,6 +8025,64 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
8234
8025
|
npm: '@ai-sdk/openai',
|
|
8235
8026
|
},
|
|
8236
8027
|
},
|
|
8028
|
+
{
|
|
8029
|
+
id: 'gpt-5.4-mini',
|
|
8030
|
+
ownedBy: 'openai',
|
|
8031
|
+
label: 'GPT-5.4 Mini',
|
|
8032
|
+
modalities: {
|
|
8033
|
+
input: ['text', 'image', 'pdf'],
|
|
8034
|
+
output: ['text'],
|
|
8035
|
+
},
|
|
8036
|
+
toolCall: true,
|
|
8037
|
+
reasoningText: true,
|
|
8038
|
+
attachment: true,
|
|
8039
|
+
temperature: false,
|
|
8040
|
+
knowledge: '2025-08-31',
|
|
8041
|
+
releaseDate: '2026-03-17',
|
|
8042
|
+
lastUpdated: '2026-03-17',
|
|
8043
|
+
openWeights: false,
|
|
8044
|
+
cost: {
|
|
8045
|
+
input: 0.75,
|
|
8046
|
+
output: 4.5,
|
|
8047
|
+
cacheRead: 0.075,
|
|
8048
|
+
},
|
|
8049
|
+
limit: {
|
|
8050
|
+
context: 400000,
|
|
8051
|
+
output: 128000,
|
|
8052
|
+
},
|
|
8053
|
+
provider: {
|
|
8054
|
+
npm: '@ai-sdk/openai',
|
|
8055
|
+
},
|
|
8056
|
+
},
|
|
8057
|
+
{
|
|
8058
|
+
id: 'gpt-5.4-nano',
|
|
8059
|
+
ownedBy: 'openai',
|
|
8060
|
+
label: 'GPT-5.4 Nano',
|
|
8061
|
+
modalities: {
|
|
8062
|
+
input: ['text', 'image', 'pdf'],
|
|
8063
|
+
output: ['text'],
|
|
8064
|
+
},
|
|
8065
|
+
toolCall: true,
|
|
8066
|
+
reasoningText: true,
|
|
8067
|
+
attachment: true,
|
|
8068
|
+
temperature: false,
|
|
8069
|
+
knowledge: '2025-08-31',
|
|
8070
|
+
releaseDate: '2026-03-17',
|
|
8071
|
+
lastUpdated: '2026-03-17',
|
|
8072
|
+
openWeights: false,
|
|
8073
|
+
cost: {
|
|
8074
|
+
input: 0.2,
|
|
8075
|
+
output: 1.25,
|
|
8076
|
+
cacheRead: 0.02,
|
|
8077
|
+
},
|
|
8078
|
+
limit: {
|
|
8079
|
+
context: 400000,
|
|
8080
|
+
output: 128000,
|
|
8081
|
+
},
|
|
8082
|
+
provider: {
|
|
8083
|
+
npm: '@ai-sdk/openai',
|
|
8084
|
+
},
|
|
8085
|
+
},
|
|
8237
8086
|
{
|
|
8238
8087
|
id: 'gpt-5.4-pro',
|
|
8239
8088
|
ownedBy: 'openai',
|
|
@@ -8418,6 +8267,56 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
8418
8267
|
output: 65536,
|
|
8419
8268
|
},
|
|
8420
8269
|
},
|
|
8270
|
+
{
|
|
8271
|
+
id: 'mimo-v2-omni-free',
|
|
8272
|
+
label: 'MiMo V2 Omni Free',
|
|
8273
|
+
modalities: {
|
|
8274
|
+
input: ['text', 'image', 'audio', 'pdf'],
|
|
8275
|
+
output: ['text'],
|
|
8276
|
+
},
|
|
8277
|
+
toolCall: true,
|
|
8278
|
+
reasoningText: true,
|
|
8279
|
+
attachment: true,
|
|
8280
|
+
temperature: true,
|
|
8281
|
+
knowledge: '2024-12',
|
|
8282
|
+
releaseDate: '2026-03-18',
|
|
8283
|
+
lastUpdated: '2026-03-18',
|
|
8284
|
+
openWeights: true,
|
|
8285
|
+
cost: {
|
|
8286
|
+
input: 0,
|
|
8287
|
+
output: 0,
|
|
8288
|
+
cacheRead: 0,
|
|
8289
|
+
},
|
|
8290
|
+
limit: {
|
|
8291
|
+
context: 262144,
|
|
8292
|
+
output: 64000,
|
|
8293
|
+
},
|
|
8294
|
+
},
|
|
8295
|
+
{
|
|
8296
|
+
id: 'mimo-v2-pro-free',
|
|
8297
|
+
label: 'MiMo V2 Pro Free',
|
|
8298
|
+
modalities: {
|
|
8299
|
+
input: ['text'],
|
|
8300
|
+
output: ['text'],
|
|
8301
|
+
},
|
|
8302
|
+
toolCall: true,
|
|
8303
|
+
reasoningText: true,
|
|
8304
|
+
attachment: true,
|
|
8305
|
+
temperature: true,
|
|
8306
|
+
knowledge: '2024-12',
|
|
8307
|
+
releaseDate: '2026-03-18',
|
|
8308
|
+
lastUpdated: '2026-03-18',
|
|
8309
|
+
openWeights: true,
|
|
8310
|
+
cost: {
|
|
8311
|
+
input: 0,
|
|
8312
|
+
output: 0,
|
|
8313
|
+
cacheRead: 0,
|
|
8314
|
+
},
|
|
8315
|
+
limit: {
|
|
8316
|
+
context: 1048576,
|
|
8317
|
+
output: 64000,
|
|
8318
|
+
},
|
|
8319
|
+
},
|
|
8421
8320
|
{
|
|
8422
8321
|
id: 'minimax-m2.1',
|
|
8423
8322
|
ownedBy: 'minimax',
|
|
@@ -8549,7 +8448,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
8549
8448
|
cacheRead: 0,
|
|
8550
8449
|
},
|
|
8551
8450
|
limit: {
|
|
8552
|
-
context:
|
|
8451
|
+
context: 204800,
|
|
8553
8452
|
output: 128000,
|
|
8554
8453
|
},
|
|
8555
8454
|
},
|
|
@@ -8569,12 +8468,95 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
8569
8468
|
lastUpdated: '2025-07-23',
|
|
8570
8469
|
openWeights: true,
|
|
8571
8470
|
cost: {
|
|
8572
|
-
input: 0.45,
|
|
8573
|
-
output: 1.8,
|
|
8471
|
+
input: 0.45,
|
|
8472
|
+
output: 1.8,
|
|
8473
|
+
},
|
|
8474
|
+
limit: {
|
|
8475
|
+
context: 262144,
|
|
8476
|
+
output: 65536,
|
|
8477
|
+
},
|
|
8478
|
+
},
|
|
8479
|
+
{
|
|
8480
|
+
id: 'qwen3.5-plus',
|
|
8481
|
+
label: 'Qwen3.5 Plus',
|
|
8482
|
+
modalities: {
|
|
8483
|
+
input: ['text', 'image', 'video'],
|
|
8484
|
+
output: ['text'],
|
|
8485
|
+
},
|
|
8486
|
+
toolCall: true,
|
|
8487
|
+
reasoningText: true,
|
|
8488
|
+
attachment: true,
|
|
8489
|
+
temperature: true,
|
|
8490
|
+
knowledge: '2025-04',
|
|
8491
|
+
releaseDate: '2026-02-16',
|
|
8492
|
+
lastUpdated: '2026-02-16',
|
|
8493
|
+
openWeights: false,
|
|
8494
|
+
cost: {
|
|
8495
|
+
input: 0.2,
|
|
8496
|
+
output: 1.2,
|
|
8497
|
+
cacheRead: 0.02,
|
|
8498
|
+
cacheWrite: 0.25,
|
|
8499
|
+
},
|
|
8500
|
+
limit: {
|
|
8501
|
+
context: 262144,
|
|
8502
|
+
output: 65536,
|
|
8503
|
+
},
|
|
8504
|
+
provider: {
|
|
8505
|
+
npm: '@ai-sdk/alibaba',
|
|
8506
|
+
},
|
|
8507
|
+
},
|
|
8508
|
+
{
|
|
8509
|
+
id: 'qwen3.6-plus',
|
|
8510
|
+
label: 'Qwen3.6 Plus',
|
|
8511
|
+
modalities: {
|
|
8512
|
+
input: ['text', 'image', 'video'],
|
|
8513
|
+
output: ['text'],
|
|
8514
|
+
},
|
|
8515
|
+
toolCall: true,
|
|
8516
|
+
reasoningText: true,
|
|
8517
|
+
attachment: true,
|
|
8518
|
+
temperature: true,
|
|
8519
|
+
knowledge: '2025-04',
|
|
8520
|
+
releaseDate: '2026-04-02',
|
|
8521
|
+
lastUpdated: '2026-04-02',
|
|
8522
|
+
openWeights: false,
|
|
8523
|
+
cost: {
|
|
8524
|
+
input: 0.5,
|
|
8525
|
+
output: 3,
|
|
8526
|
+
cacheRead: 0.05,
|
|
8527
|
+
cacheWrite: 0.625,
|
|
8528
|
+
},
|
|
8529
|
+
limit: {
|
|
8530
|
+
context: 262144,
|
|
8531
|
+
output: 65536,
|
|
8532
|
+
},
|
|
8533
|
+
provider: {
|
|
8534
|
+
npm: '@ai-sdk/alibaba',
|
|
8535
|
+
},
|
|
8536
|
+
},
|
|
8537
|
+
{
|
|
8538
|
+
id: 'qwen3.6-plus-free',
|
|
8539
|
+
label: 'Qwen3.6 Plus Free',
|
|
8540
|
+
modalities: {
|
|
8541
|
+
input: ['text'],
|
|
8542
|
+
output: ['text'],
|
|
8543
|
+
},
|
|
8544
|
+
toolCall: true,
|
|
8545
|
+
reasoningText: true,
|
|
8546
|
+
attachment: false,
|
|
8547
|
+
temperature: true,
|
|
8548
|
+
knowledge: '2024-12',
|
|
8549
|
+
releaseDate: '2026-03-30',
|
|
8550
|
+
lastUpdated: '2026-03-30',
|
|
8551
|
+
openWeights: false,
|
|
8552
|
+
cost: {
|
|
8553
|
+
input: 0,
|
|
8554
|
+
output: 0,
|
|
8555
|
+
cacheRead: 0,
|
|
8574
8556
|
},
|
|
8575
8557
|
limit: {
|
|
8576
|
-
context:
|
|
8577
|
-
output:
|
|
8558
|
+
context: 1048576,
|
|
8559
|
+
output: 64000,
|
|
8578
8560
|
},
|
|
8579
8561
|
},
|
|
8580
8562
|
{
|
|
@@ -8823,6 +8805,33 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
8823
8805
|
output: 131072,
|
|
8824
8806
|
},
|
|
8825
8807
|
},
|
|
8808
|
+
{
|
|
8809
|
+
id: 'glm-4.7-flashx',
|
|
8810
|
+
ownedBy: 'zai',
|
|
8811
|
+
label: 'GLM-4.7-FlashX',
|
|
8812
|
+
modalities: {
|
|
8813
|
+
input: ['text'],
|
|
8814
|
+
output: ['text'],
|
|
8815
|
+
},
|
|
8816
|
+
toolCall: true,
|
|
8817
|
+
reasoningText: true,
|
|
8818
|
+
attachment: false,
|
|
8819
|
+
temperature: true,
|
|
8820
|
+
knowledge: '2025-04',
|
|
8821
|
+
releaseDate: '2026-01-19',
|
|
8822
|
+
lastUpdated: '2026-01-19',
|
|
8823
|
+
openWeights: true,
|
|
8824
|
+
cost: {
|
|
8825
|
+
input: 0.07,
|
|
8826
|
+
output: 0.4,
|
|
8827
|
+
cacheRead: 0.01,
|
|
8828
|
+
cacheWrite: 0,
|
|
8829
|
+
},
|
|
8830
|
+
limit: {
|
|
8831
|
+
context: 200000,
|
|
8832
|
+
output: 131072,
|
|
8833
|
+
},
|
|
8834
|
+
},
|
|
8826
8835
|
{
|
|
8827
8836
|
id: 'glm-5',
|
|
8828
8837
|
ownedBy: 'zai',
|
|
@@ -8849,6 +8858,84 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
8849
8858
|
output: 131072,
|
|
8850
8859
|
},
|
|
8851
8860
|
},
|
|
8861
|
+
{
|
|
8862
|
+
id: 'glm-5-turbo',
|
|
8863
|
+
ownedBy: 'zai',
|
|
8864
|
+
label: 'GLM-5-Turbo',
|
|
8865
|
+
modalities: {
|
|
8866
|
+
input: ['text'],
|
|
8867
|
+
output: ['text'],
|
|
8868
|
+
},
|
|
8869
|
+
toolCall: true,
|
|
8870
|
+
reasoningText: true,
|
|
8871
|
+
attachment: false,
|
|
8872
|
+
temperature: true,
|
|
8873
|
+
releaseDate: '2026-03-16',
|
|
8874
|
+
lastUpdated: '2026-03-16',
|
|
8875
|
+
openWeights: false,
|
|
8876
|
+
cost: {
|
|
8877
|
+
input: 1.2,
|
|
8878
|
+
output: 4,
|
|
8879
|
+
cacheRead: 0.24,
|
|
8880
|
+
cacheWrite: 0,
|
|
8881
|
+
},
|
|
8882
|
+
limit: {
|
|
8883
|
+
context: 200000,
|
|
8884
|
+
output: 131072,
|
|
8885
|
+
},
|
|
8886
|
+
},
|
|
8887
|
+
{
|
|
8888
|
+
id: 'glm-5.1',
|
|
8889
|
+
ownedBy: 'zai',
|
|
8890
|
+
label: 'GLM-5.1',
|
|
8891
|
+
modalities: {
|
|
8892
|
+
input: ['text'],
|
|
8893
|
+
output: ['text'],
|
|
8894
|
+
},
|
|
8895
|
+
toolCall: true,
|
|
8896
|
+
reasoningText: true,
|
|
8897
|
+
attachment: false,
|
|
8898
|
+
temperature: true,
|
|
8899
|
+
releaseDate: '2026-03-27',
|
|
8900
|
+
lastUpdated: '2026-03-27',
|
|
8901
|
+
openWeights: false,
|
|
8902
|
+
cost: {
|
|
8903
|
+
input: 1.4,
|
|
8904
|
+
output: 4.4,
|
|
8905
|
+
cacheRead: 0.26,
|
|
8906
|
+
cacheWrite: 0,
|
|
8907
|
+
},
|
|
8908
|
+
limit: {
|
|
8909
|
+
context: 200000,
|
|
8910
|
+
output: 131072,
|
|
8911
|
+
},
|
|
8912
|
+
},
|
|
8913
|
+
{
|
|
8914
|
+
id: 'glm-5v-turbo',
|
|
8915
|
+
ownedBy: 'zai',
|
|
8916
|
+
label: 'glm-5v-turbo',
|
|
8917
|
+
modalities: {
|
|
8918
|
+
input: ['text', 'image', 'video', 'pdf'],
|
|
8919
|
+
output: ['text'],
|
|
8920
|
+
},
|
|
8921
|
+
toolCall: true,
|
|
8922
|
+
reasoningText: true,
|
|
8923
|
+
attachment: true,
|
|
8924
|
+
temperature: true,
|
|
8925
|
+
releaseDate: '2026-04-01',
|
|
8926
|
+
lastUpdated: '2026-04-01',
|
|
8927
|
+
openWeights: false,
|
|
8928
|
+
cost: {
|
|
8929
|
+
input: 1.2,
|
|
8930
|
+
output: 4,
|
|
8931
|
+
cacheRead: 0.24,
|
|
8932
|
+
cacheWrite: 0,
|
|
8933
|
+
},
|
|
8934
|
+
limit: {
|
|
8935
|
+
context: 200000,
|
|
8936
|
+
output: 131072,
|
|
8937
|
+
},
|
|
8938
|
+
},
|
|
8852
8939
|
],
|
|
8853
8940
|
label: 'Z.AI',
|
|
8854
8941
|
env: ['ZHIPU_API_KEY'],
|
|
@@ -9124,6 +9211,84 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
9124
9211
|
output: 131072,
|
|
9125
9212
|
},
|
|
9126
9213
|
},
|
|
9214
|
+
{
|
|
9215
|
+
id: 'glm-5-turbo',
|
|
9216
|
+
ownedBy: 'zai',
|
|
9217
|
+
label: 'GLM-5-Turbo',
|
|
9218
|
+
modalities: {
|
|
9219
|
+
input: ['text'],
|
|
9220
|
+
output: ['text'],
|
|
9221
|
+
},
|
|
9222
|
+
toolCall: true,
|
|
9223
|
+
reasoningText: true,
|
|
9224
|
+
attachment: false,
|
|
9225
|
+
temperature: true,
|
|
9226
|
+
releaseDate: '2026-03-16',
|
|
9227
|
+
lastUpdated: '2026-03-16',
|
|
9228
|
+
openWeights: false,
|
|
9229
|
+
cost: {
|
|
9230
|
+
input: 0,
|
|
9231
|
+
output: 0,
|
|
9232
|
+
cacheRead: 0,
|
|
9233
|
+
cacheWrite: 0,
|
|
9234
|
+
},
|
|
9235
|
+
limit: {
|
|
9236
|
+
context: 200000,
|
|
9237
|
+
output: 131072,
|
|
9238
|
+
},
|
|
9239
|
+
},
|
|
9240
|
+
{
|
|
9241
|
+
id: 'glm-5.1',
|
|
9242
|
+
ownedBy: 'zai',
|
|
9243
|
+
label: 'GLM-5.1',
|
|
9244
|
+
modalities: {
|
|
9245
|
+
input: ['text'],
|
|
9246
|
+
output: ['text'],
|
|
9247
|
+
},
|
|
9248
|
+
toolCall: true,
|
|
9249
|
+
reasoningText: true,
|
|
9250
|
+
attachment: false,
|
|
9251
|
+
temperature: true,
|
|
9252
|
+
releaseDate: '2026-03-27',
|
|
9253
|
+
lastUpdated: '2026-03-27',
|
|
9254
|
+
openWeights: false,
|
|
9255
|
+
cost: {
|
|
9256
|
+
input: 0,
|
|
9257
|
+
output: 0,
|
|
9258
|
+
cacheRead: 0,
|
|
9259
|
+
cacheWrite: 0,
|
|
9260
|
+
},
|
|
9261
|
+
limit: {
|
|
9262
|
+
context: 200000,
|
|
9263
|
+
output: 131072,
|
|
9264
|
+
},
|
|
9265
|
+
},
|
|
9266
|
+
{
|
|
9267
|
+
id: 'glm-5v-turbo',
|
|
9268
|
+
ownedBy: 'zai',
|
|
9269
|
+
label: 'glm-5v-turbo',
|
|
9270
|
+
modalities: {
|
|
9271
|
+
input: ['text', 'image', 'video', 'pdf'],
|
|
9272
|
+
output: ['text'],
|
|
9273
|
+
},
|
|
9274
|
+
toolCall: true,
|
|
9275
|
+
reasoningText: true,
|
|
9276
|
+
attachment: true,
|
|
9277
|
+
temperature: true,
|
|
9278
|
+
releaseDate: '2026-04-01',
|
|
9279
|
+
lastUpdated: '2026-04-01',
|
|
9280
|
+
openWeights: false,
|
|
9281
|
+
cost: {
|
|
9282
|
+
input: 0,
|
|
9283
|
+
output: 0,
|
|
9284
|
+
cacheRead: 0,
|
|
9285
|
+
cacheWrite: 0,
|
|
9286
|
+
},
|
|
9287
|
+
limit: {
|
|
9288
|
+
context: 200000,
|
|
9289
|
+
output: 131072,
|
|
9290
|
+
},
|
|
9291
|
+
},
|
|
9127
9292
|
],
|
|
9128
9293
|
label: 'Z.AI Coding Plan',
|
|
9129
9294
|
env: ['ZHIPU_API_KEY'],
|
|
@@ -9400,6 +9565,58 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
9400
9565
|
output: 131072,
|
|
9401
9566
|
},
|
|
9402
9567
|
},
|
|
9568
|
+
{
|
|
9569
|
+
id: 'MiniMax-M2.7',
|
|
9570
|
+
ownedBy: 'minimax',
|
|
9571
|
+
label: 'MiniMax-M2.7',
|
|
9572
|
+
modalities: {
|
|
9573
|
+
input: ['text'],
|
|
9574
|
+
output: ['text'],
|
|
9575
|
+
},
|
|
9576
|
+
toolCall: true,
|
|
9577
|
+
reasoningText: true,
|
|
9578
|
+
attachment: false,
|
|
9579
|
+
temperature: true,
|
|
9580
|
+
releaseDate: '2026-03-18',
|
|
9581
|
+
lastUpdated: '2026-03-18',
|
|
9582
|
+
openWeights: true,
|
|
9583
|
+
cost: {
|
|
9584
|
+
input: 0.3,
|
|
9585
|
+
output: 1.2,
|
|
9586
|
+
cacheRead: 0.06,
|
|
9587
|
+
cacheWrite: 0.375,
|
|
9588
|
+
},
|
|
9589
|
+
limit: {
|
|
9590
|
+
context: 204800,
|
|
9591
|
+
output: 131072,
|
|
9592
|
+
},
|
|
9593
|
+
},
|
|
9594
|
+
{
|
|
9595
|
+
id: 'MiniMax-M2.7-highspeed',
|
|
9596
|
+
ownedBy: 'minimax',
|
|
9597
|
+
label: 'MiniMax-M2.7-highspeed',
|
|
9598
|
+
modalities: {
|
|
9599
|
+
input: ['text'],
|
|
9600
|
+
output: ['text'],
|
|
9601
|
+
},
|
|
9602
|
+
toolCall: true,
|
|
9603
|
+
reasoningText: true,
|
|
9604
|
+
attachment: false,
|
|
9605
|
+
temperature: true,
|
|
9606
|
+
releaseDate: '2026-03-18',
|
|
9607
|
+
lastUpdated: '2026-03-18',
|
|
9608
|
+
openWeights: true,
|
|
9609
|
+
cost: {
|
|
9610
|
+
input: 0.6,
|
|
9611
|
+
output: 2.4,
|
|
9612
|
+
cacheRead: 0.06,
|
|
9613
|
+
cacheWrite: 0.375,
|
|
9614
|
+
},
|
|
9615
|
+
limit: {
|
|
9616
|
+
context: 204800,
|
|
9617
|
+
output: 131072,
|
|
9618
|
+
},
|
|
9619
|
+
},
|
|
9403
9620
|
],
|
|
9404
9621
|
label: 'MiniMax (minimax.io)',
|
|
9405
9622
|
env: ['MINIMAX_API_KEY'],
|
|
@@ -9431,7 +9648,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
9431
9648
|
output: 0,
|
|
9432
9649
|
},
|
|
9433
9650
|
limit: {
|
|
9434
|
-
context:
|
|
9651
|
+
context: 144000,
|
|
9435
9652
|
output: 32000,
|
|
9436
9653
|
},
|
|
9437
9654
|
},
|
|
@@ -9456,7 +9673,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
9456
9673
|
output: 0,
|
|
9457
9674
|
},
|
|
9458
9675
|
limit: {
|
|
9459
|
-
context:
|
|
9676
|
+
context: 160000,
|
|
9460
9677
|
output: 32000,
|
|
9461
9678
|
},
|
|
9462
9679
|
},
|
|
@@ -9481,7 +9698,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
9481
9698
|
output: 0,
|
|
9482
9699
|
},
|
|
9483
9700
|
limit: {
|
|
9484
|
-
context:
|
|
9701
|
+
context: 144000,
|
|
9485
9702
|
output: 64000,
|
|
9486
9703
|
},
|
|
9487
9704
|
},
|
|
@@ -9531,7 +9748,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
9531
9748
|
output: 0,
|
|
9532
9749
|
},
|
|
9533
9750
|
limit: {
|
|
9534
|
-
context:
|
|
9751
|
+
context: 216000,
|
|
9535
9752
|
output: 16000,
|
|
9536
9753
|
},
|
|
9537
9754
|
},
|
|
@@ -9556,7 +9773,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
9556
9773
|
output: 0,
|
|
9557
9774
|
},
|
|
9558
9775
|
limit: {
|
|
9559
|
-
context:
|
|
9776
|
+
context: 144000,
|
|
9560
9777
|
output: 32000,
|
|
9561
9778
|
},
|
|
9562
9779
|
},
|
|
@@ -9580,7 +9797,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
9580
9797
|
output: 0,
|
|
9581
9798
|
},
|
|
9582
9799
|
limit: {
|
|
9583
|
-
context:
|
|
9800
|
+
context: 200000,
|
|
9584
9801
|
output: 32000,
|
|
9585
9802
|
},
|
|
9586
9803
|
},
|
|
@@ -9705,7 +9922,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
9705
9922
|
output: 0,
|
|
9706
9923
|
},
|
|
9707
9924
|
limit: {
|
|
9708
|
-
context:
|
|
9925
|
+
context: 128000,
|
|
9709
9926
|
output: 16384,
|
|
9710
9927
|
},
|
|
9711
9928
|
},
|
|
@@ -9730,8 +9947,8 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
9730
9947
|
output: 0,
|
|
9731
9948
|
},
|
|
9732
9949
|
limit: {
|
|
9733
|
-
context:
|
|
9734
|
-
output:
|
|
9950
|
+
context: 128000,
|
|
9951
|
+
output: 4096,
|
|
9735
9952
|
},
|
|
9736
9953
|
},
|
|
9737
9954
|
{
|
|
@@ -9780,7 +9997,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
9780
9997
|
output: 0,
|
|
9781
9998
|
},
|
|
9782
9999
|
limit: {
|
|
9783
|
-
context:
|
|
10000
|
+
context: 264000,
|
|
9784
10001
|
output: 64000,
|
|
9785
10002
|
},
|
|
9786
10003
|
},
|
|
@@ -9805,7 +10022,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
9805
10022
|
output: 0,
|
|
9806
10023
|
},
|
|
9807
10024
|
limit: {
|
|
9808
|
-
context:
|
|
10025
|
+
context: 264000,
|
|
9809
10026
|
output: 64000,
|
|
9810
10027
|
},
|
|
9811
10028
|
},
|
|
@@ -9830,7 +10047,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
9830
10047
|
output: 0,
|
|
9831
10048
|
},
|
|
9832
10049
|
limit: {
|
|
9833
|
-
context:
|
|
10050
|
+
context: 400000,
|
|
9834
10051
|
output: 128000,
|
|
9835
10052
|
},
|
|
9836
10053
|
},
|
|
@@ -9855,7 +10072,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
9855
10072
|
output: 0,
|
|
9856
10073
|
},
|
|
9857
10074
|
limit: {
|
|
9858
|
-
context:
|
|
10075
|
+
context: 400000,
|
|
9859
10076
|
output: 128000,
|
|
9860
10077
|
},
|
|
9861
10078
|
},
|
|
@@ -9880,7 +10097,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
9880
10097
|
output: 0,
|
|
9881
10098
|
},
|
|
9882
10099
|
limit: {
|
|
9883
|
-
context:
|
|
10100
|
+
context: 400000,
|
|
9884
10101
|
output: 128000,
|
|
9885
10102
|
},
|
|
9886
10103
|
},
|
|
@@ -9984,6 +10201,31 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
9984
10201
|
output: 128000,
|
|
9985
10202
|
},
|
|
9986
10203
|
},
|
|
10204
|
+
{
|
|
10205
|
+
id: 'gpt-5.4-mini',
|
|
10206
|
+
ownedBy: 'openai',
|
|
10207
|
+
label: 'GPT-5.4 Mini',
|
|
10208
|
+
modalities: {
|
|
10209
|
+
input: ['text', 'image'],
|
|
10210
|
+
output: ['text'],
|
|
10211
|
+
},
|
|
10212
|
+
toolCall: true,
|
|
10213
|
+
reasoningText: true,
|
|
10214
|
+
attachment: true,
|
|
10215
|
+
temperature: false,
|
|
10216
|
+
knowledge: '2025-08-31',
|
|
10217
|
+
releaseDate: '2026-03-17',
|
|
10218
|
+
lastUpdated: '2026-03-17',
|
|
10219
|
+
openWeights: false,
|
|
10220
|
+
cost: {
|
|
10221
|
+
input: 0,
|
|
10222
|
+
output: 0,
|
|
10223
|
+
},
|
|
10224
|
+
limit: {
|
|
10225
|
+
context: 400000,
|
|
10226
|
+
output: 128000,
|
|
10227
|
+
},
|
|
10228
|
+
},
|
|
9987
10229
|
{
|
|
9988
10230
|
id: 'grok-code-fast-1',
|
|
9989
10231
|
ownedBy: 'xai',
|