@ottocode/sdk 0.1.237 → 0.1.243
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/bash.txt +9 -4
- package/src/core/src/tools/builtin/finish.txt +12 -7
- package/src/core/src/tools/builtin/glob.txt +9 -6
- package/src/core/src/tools/builtin/patch.txt +120 -11
- package/src/core/src/tools/builtin/progress.txt +20 -3
- package/src/core/src/tools/builtin/ripgrep.txt +8 -3
- package/src/core/src/tools/builtin/terminal.txt +1 -1
- package/src/core/src/tools/builtin/todos.txt +44 -4
- package/src/prompts/src/agents/build.txt +23 -211
- package/src/prompts/src/agents/init.txt +24 -0
- package/src/prompts/src/base.txt +33 -32
- package/src/prompts/src/providers/anthropic.txt +58 -210
- package/src/prompts/src/providers/default.txt +36 -472
- package/src/prompts/src/providers/glm.txt +43 -342
- package/src/prompts/src/providers/google.txt +55 -178
- package/src/prompts/src/providers/moonshot.txt +43 -396
- package/src/prompts/src/providers/openai.txt +95 -359
- package/src/providers/src/catalog.ts +977 -1225
- 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 +215 -24
- package/src/skills/tool.ts +91 -13
- 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',
|
|
@@ -860,12 +906,72 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
860
906
|
output: 128000,
|
|
861
907
|
},
|
|
862
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
|
+
},
|
|
863
969
|
{
|
|
864
970
|
id: 'o1',
|
|
865
971
|
ownedBy: 'openai',
|
|
866
972
|
label: 'o1',
|
|
867
973
|
modalities: {
|
|
868
|
-
input: ['text', 'image'],
|
|
974
|
+
input: ['text', 'image', 'pdf'],
|
|
869
975
|
output: ['text'],
|
|
870
976
|
},
|
|
871
977
|
toolCall: true,
|
|
@@ -968,7 +1074,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
968
1074
|
ownedBy: 'openai',
|
|
969
1075
|
label: 'o3',
|
|
970
1076
|
modalities: {
|
|
971
|
-
input: ['text', 'image'],
|
|
1077
|
+
input: ['text', 'image', 'pdf'],
|
|
972
1078
|
output: ['text'],
|
|
973
1079
|
},
|
|
974
1080
|
toolCall: true,
|
|
@@ -1337,33 +1443,6 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
1337
1443
|
output: 64000,
|
|
1338
1444
|
},
|
|
1339
1445
|
},
|
|
1340
|
-
{
|
|
1341
|
-
id: 'claude-3-7-sonnet-latest',
|
|
1342
|
-
ownedBy: 'anthropic',
|
|
1343
|
-
label: 'Claude Sonnet 3.7 (latest)',
|
|
1344
|
-
modalities: {
|
|
1345
|
-
input: ['text', 'image', 'pdf'],
|
|
1346
|
-
output: ['text'],
|
|
1347
|
-
},
|
|
1348
|
-
toolCall: true,
|
|
1349
|
-
reasoningText: true,
|
|
1350
|
-
attachment: true,
|
|
1351
|
-
temperature: true,
|
|
1352
|
-
knowledge: '2024-10-31',
|
|
1353
|
-
releaseDate: '2025-02-19',
|
|
1354
|
-
lastUpdated: '2025-02-19',
|
|
1355
|
-
openWeights: false,
|
|
1356
|
-
cost: {
|
|
1357
|
-
input: 3,
|
|
1358
|
-
output: 15,
|
|
1359
|
-
cacheRead: 0.3,
|
|
1360
|
-
cacheWrite: 3.75,
|
|
1361
|
-
},
|
|
1362
|
-
limit: {
|
|
1363
|
-
context: 200000,
|
|
1364
|
-
output: 64000,
|
|
1365
|
-
},
|
|
1366
|
-
},
|
|
1367
1446
|
{
|
|
1368
1447
|
id: 'claude-3-haiku-20240307',
|
|
1369
1448
|
ownedBy: 'anthropic',
|
|
@@ -1688,6 +1767,33 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
1688
1767
|
output: 128000,
|
|
1689
1768
|
},
|
|
1690
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,
|
|
1794
|
+
output: 128000,
|
|
1795
|
+
},
|
|
1796
|
+
},
|
|
1691
1797
|
{
|
|
1692
1798
|
id: 'claude-sonnet-4-0',
|
|
1693
1799
|
ownedBy: 'anthropic',
|
|
@@ -2606,126 +2712,267 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
2606
2712
|
output: 65536,
|
|
2607
2713
|
},
|
|
2608
2714
|
},
|
|
2609
|
-
],
|
|
2610
|
-
label: 'Google',
|
|
2611
|
-
env: ['GOOGLE_GENERATIVE_AI_API_KEY', 'GEMINI_API_KEY'],
|
|
2612
|
-
npm: '@ai-sdk/google',
|
|
2613
|
-
doc: 'https://ai.google.dev/gemini-api/docs/pricing',
|
|
2614
|
-
},
|
|
2615
|
-
openrouter: {
|
|
2616
|
-
id: 'openrouter',
|
|
2617
|
-
models: [
|
|
2618
2715
|
{
|
|
2619
|
-
id: '
|
|
2620
|
-
|
|
2716
|
+
id: 'gemma-3-12b-it',
|
|
2717
|
+
ownedBy: 'google',
|
|
2718
|
+
label: 'Gemma 3 12B',
|
|
2621
2719
|
modalities: {
|
|
2622
|
-
input: ['text', 'image'
|
|
2720
|
+
input: ['text', 'image'],
|
|
2623
2721
|
output: ['text'],
|
|
2624
2722
|
},
|
|
2625
2723
|
toolCall: false,
|
|
2626
|
-
reasoningText:
|
|
2627
|
-
attachment:
|
|
2724
|
+
reasoningText: false,
|
|
2725
|
+
attachment: true,
|
|
2628
2726
|
temperature: true,
|
|
2629
|
-
knowledge: '
|
|
2630
|
-
releaseDate: '
|
|
2631
|
-
lastUpdated: '
|
|
2727
|
+
knowledge: '2024-10',
|
|
2728
|
+
releaseDate: '2025-03-13',
|
|
2729
|
+
lastUpdated: '2025-03-13',
|
|
2632
2730
|
openWeights: true,
|
|
2633
2731
|
cost: {
|
|
2634
2732
|
input: 0,
|
|
2635
2733
|
output: 0,
|
|
2636
2734
|
},
|
|
2637
2735
|
limit: {
|
|
2638
|
-
context:
|
|
2639
|
-
output:
|
|
2736
|
+
context: 32768,
|
|
2737
|
+
output: 8192,
|
|
2640
2738
|
},
|
|
2641
2739
|
},
|
|
2642
2740
|
{
|
|
2643
|
-
id: '
|
|
2644
|
-
ownedBy: '
|
|
2645
|
-
label: '
|
|
2741
|
+
id: 'gemma-3-27b-it',
|
|
2742
|
+
ownedBy: 'google',
|
|
2743
|
+
label: 'Gemma 3 27B',
|
|
2646
2744
|
modalities: {
|
|
2647
|
-
input: ['text', 'image'
|
|
2745
|
+
input: ['text', 'image'],
|
|
2648
2746
|
output: ['text'],
|
|
2649
2747
|
},
|
|
2650
2748
|
toolCall: true,
|
|
2651
2749
|
reasoningText: false,
|
|
2652
2750
|
attachment: true,
|
|
2653
2751
|
temperature: true,
|
|
2654
|
-
knowledge: '2024-
|
|
2655
|
-
releaseDate: '
|
|
2656
|
-
lastUpdated: '
|
|
2657
|
-
openWeights:
|
|
2752
|
+
knowledge: '2024-10',
|
|
2753
|
+
releaseDate: '2025-03-12',
|
|
2754
|
+
lastUpdated: '2025-03-12',
|
|
2755
|
+
openWeights: true,
|
|
2658
2756
|
cost: {
|
|
2659
|
-
input: 0
|
|
2660
|
-
output:
|
|
2661
|
-
cacheRead: 0.08,
|
|
2662
|
-
cacheWrite: 1,
|
|
2757
|
+
input: 0,
|
|
2758
|
+
output: 0,
|
|
2663
2759
|
},
|
|
2664
2760
|
limit: {
|
|
2665
|
-
context:
|
|
2761
|
+
context: 131072,
|
|
2666
2762
|
output: 8192,
|
|
2667
2763
|
},
|
|
2668
2764
|
},
|
|
2669
2765
|
{
|
|
2670
|
-
id: '
|
|
2671
|
-
ownedBy: '
|
|
2672
|
-
label: '
|
|
2766
|
+
id: 'gemma-3-4b-it',
|
|
2767
|
+
ownedBy: 'google',
|
|
2768
|
+
label: 'Gemma 3 4B',
|
|
2673
2769
|
modalities: {
|
|
2674
|
-
input: ['text', 'image'
|
|
2770
|
+
input: ['text', 'image'],
|
|
2675
2771
|
output: ['text'],
|
|
2676
2772
|
},
|
|
2677
|
-
toolCall:
|
|
2678
|
-
reasoningText:
|
|
2773
|
+
toolCall: false,
|
|
2774
|
+
reasoningText: false,
|
|
2679
2775
|
attachment: true,
|
|
2680
2776
|
temperature: true,
|
|
2681
|
-
knowledge: '2024-
|
|
2682
|
-
releaseDate: '2025-
|
|
2683
|
-
lastUpdated: '2025-
|
|
2684
|
-
openWeights:
|
|
2777
|
+
knowledge: '2024-10',
|
|
2778
|
+
releaseDate: '2025-03-13',
|
|
2779
|
+
lastUpdated: '2025-03-13',
|
|
2780
|
+
openWeights: true,
|
|
2685
2781
|
cost: {
|
|
2686
|
-
input:
|
|
2687
|
-
output:
|
|
2688
|
-
cacheRead: 1.5,
|
|
2689
|
-
cacheWrite: 18.75,
|
|
2782
|
+
input: 0,
|
|
2783
|
+
output: 0,
|
|
2690
2784
|
},
|
|
2691
2785
|
limit: {
|
|
2692
|
-
context:
|
|
2693
|
-
output:
|
|
2786
|
+
context: 32768,
|
|
2787
|
+
output: 8192,
|
|
2694
2788
|
},
|
|
2695
2789
|
},
|
|
2696
2790
|
{
|
|
2697
|
-
id: '
|
|
2698
|
-
ownedBy: '
|
|
2699
|
-
label: '
|
|
2791
|
+
id: 'gemma-3n-e2b-it',
|
|
2792
|
+
ownedBy: 'google',
|
|
2793
|
+
label: 'Gemma 3n 2B',
|
|
2700
2794
|
modalities: {
|
|
2701
|
-
input: ['text'
|
|
2795
|
+
input: ['text'],
|
|
2702
2796
|
output: ['text'],
|
|
2703
2797
|
},
|
|
2704
|
-
toolCall:
|
|
2705
|
-
reasoningText:
|
|
2798
|
+
toolCall: false,
|
|
2799
|
+
reasoningText: false,
|
|
2706
2800
|
attachment: true,
|
|
2707
2801
|
temperature: true,
|
|
2708
|
-
knowledge: '
|
|
2709
|
-
releaseDate: '2025-
|
|
2710
|
-
lastUpdated: '2025-
|
|
2711
|
-
openWeights:
|
|
2802
|
+
knowledge: '2024-10',
|
|
2803
|
+
releaseDate: '2025-07-09',
|
|
2804
|
+
lastUpdated: '2025-07-09',
|
|
2805
|
+
openWeights: true,
|
|
2712
2806
|
cost: {
|
|
2713
|
-
input:
|
|
2714
|
-
output:
|
|
2715
|
-
cacheRead: 0.1,
|
|
2716
|
-
cacheWrite: 1.25,
|
|
2807
|
+
input: 0,
|
|
2808
|
+
output: 0,
|
|
2717
2809
|
},
|
|
2718
2810
|
limit: {
|
|
2719
|
-
context:
|
|
2720
|
-
output:
|
|
2811
|
+
context: 8192,
|
|
2812
|
+
output: 2000,
|
|
2721
2813
|
},
|
|
2722
2814
|
},
|
|
2723
2815
|
{
|
|
2724
|
-
id: '
|
|
2725
|
-
ownedBy: '
|
|
2726
|
-
label: '
|
|
2816
|
+
id: 'gemma-3n-e4b-it',
|
|
2817
|
+
ownedBy: 'google',
|
|
2818
|
+
label: 'Gemma 3n 4B',
|
|
2727
2819
|
modalities: {
|
|
2728
|
-
input: ['text'
|
|
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,
|
|
2925
|
+
reasoningText: true,
|
|
2926
|
+
attachment: true,
|
|
2927
|
+
temperature: true,
|
|
2928
|
+
knowledge: '2024-01',
|
|
2929
|
+
releaseDate: '2025-02-19',
|
|
2930
|
+
lastUpdated: '2025-02-19',
|
|
2931
|
+
openWeights: false,
|
|
2932
|
+
cost: {
|
|
2933
|
+
input: 15,
|
|
2934
|
+
output: 75,
|
|
2935
|
+
cacheRead: 1.5,
|
|
2936
|
+
cacheWrite: 18.75,
|
|
2937
|
+
},
|
|
2938
|
+
limit: {
|
|
2939
|
+
context: 200000,
|
|
2940
|
+
output: 128000,
|
|
2941
|
+
},
|
|
2942
|
+
},
|
|
2943
|
+
{
|
|
2944
|
+
id: 'anthropic/claude-haiku-4.5',
|
|
2945
|
+
ownedBy: 'anthropic',
|
|
2946
|
+
label: 'Claude Haiku 4.5',
|
|
2947
|
+
modalities: {
|
|
2948
|
+
input: ['text', 'image', 'pdf'],
|
|
2949
|
+
output: ['text'],
|
|
2950
|
+
},
|
|
2951
|
+
toolCall: true,
|
|
2952
|
+
reasoningText: true,
|
|
2953
|
+
attachment: true,
|
|
2954
|
+
temperature: true,
|
|
2955
|
+
knowledge: '2025-02-28',
|
|
2956
|
+
releaseDate: '2025-10-15',
|
|
2957
|
+
lastUpdated: '2025-10-15',
|
|
2958
|
+
openWeights: false,
|
|
2959
|
+
cost: {
|
|
2960
|
+
input: 1,
|
|
2961
|
+
output: 5,
|
|
2962
|
+
cacheRead: 0.1,
|
|
2963
|
+
cacheWrite: 1.25,
|
|
2964
|
+
},
|
|
2965
|
+
limit: {
|
|
2966
|
+
context: 200000,
|
|
2967
|
+
output: 64000,
|
|
2968
|
+
},
|
|
2969
|
+
},
|
|
2970
|
+
{
|
|
2971
|
+
id: 'anthropic/claude-opus-4',
|
|
2972
|
+
ownedBy: 'anthropic',
|
|
2973
|
+
label: 'Claude Opus 4',
|
|
2974
|
+
modalities: {
|
|
2975
|
+
input: ['text', 'image', 'pdf'],
|
|
2729
2976
|
output: ['text'],
|
|
2730
2977
|
},
|
|
2731
2978
|
toolCall: true,
|
|
@@ -2933,27 +3180,26 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
2933
3180
|
},
|
|
2934
3181
|
},
|
|
2935
3182
|
{
|
|
2936
|
-
id: 'arcee-ai/trinity-
|
|
2937
|
-
label: 'Trinity
|
|
3183
|
+
id: 'arcee-ai/trinity-large-thinking',
|
|
3184
|
+
label: 'Trinity Large Thinking',
|
|
2938
3185
|
modalities: {
|
|
2939
3186
|
input: ['text'],
|
|
2940
3187
|
output: ['text'],
|
|
2941
3188
|
},
|
|
2942
3189
|
toolCall: true,
|
|
2943
|
-
reasoningText:
|
|
3190
|
+
reasoningText: true,
|
|
2944
3191
|
attachment: false,
|
|
2945
3192
|
temperature: true,
|
|
2946
|
-
|
|
2947
|
-
|
|
2948
|
-
lastUpdated: '2026-01-28',
|
|
3193
|
+
releaseDate: '2026-04-01',
|
|
3194
|
+
lastUpdated: '2026-04-03',
|
|
2949
3195
|
openWeights: true,
|
|
2950
3196
|
cost: {
|
|
2951
|
-
input: 0,
|
|
2952
|
-
output: 0,
|
|
3197
|
+
input: 0.22,
|
|
3198
|
+
output: 0.85,
|
|
2953
3199
|
},
|
|
2954
3200
|
limit: {
|
|
2955
|
-
context:
|
|
2956
|
-
output:
|
|
3201
|
+
context: 262144,
|
|
3202
|
+
output: 80000,
|
|
2957
3203
|
},
|
|
2958
3204
|
},
|
|
2959
3205
|
{
|
|
@@ -3100,54 +3346,6 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
3100
3346
|
output: 32768,
|
|
3101
3347
|
},
|
|
3102
3348
|
},
|
|
3103
|
-
{
|
|
3104
|
-
id: 'cognitivecomputations/dolphin3.0-mistral-24b',
|
|
3105
|
-
label: 'Dolphin3.0 Mistral 24B',
|
|
3106
|
-
modalities: {
|
|
3107
|
-
input: ['text'],
|
|
3108
|
-
output: ['text'],
|
|
3109
|
-
},
|
|
3110
|
-
toolCall: true,
|
|
3111
|
-
reasoningText: false,
|
|
3112
|
-
attachment: false,
|
|
3113
|
-
temperature: true,
|
|
3114
|
-
knowledge: '2024-10',
|
|
3115
|
-
releaseDate: '2025-02-13',
|
|
3116
|
-
lastUpdated: '2025-02-13',
|
|
3117
|
-
openWeights: true,
|
|
3118
|
-
cost: {
|
|
3119
|
-
input: 0,
|
|
3120
|
-
output: 0,
|
|
3121
|
-
},
|
|
3122
|
-
limit: {
|
|
3123
|
-
context: 32768,
|
|
3124
|
-
output: 8192,
|
|
3125
|
-
},
|
|
3126
|
-
},
|
|
3127
|
-
{
|
|
3128
|
-
id: 'cognitivecomputations/dolphin3.0-r1-mistral-24b',
|
|
3129
|
-
label: 'Dolphin3.0 R1 Mistral 24B',
|
|
3130
|
-
modalities: {
|
|
3131
|
-
input: ['text'],
|
|
3132
|
-
output: ['text'],
|
|
3133
|
-
},
|
|
3134
|
-
toolCall: true,
|
|
3135
|
-
reasoningText: true,
|
|
3136
|
-
attachment: false,
|
|
3137
|
-
temperature: true,
|
|
3138
|
-
knowledge: '2024-10',
|
|
3139
|
-
releaseDate: '2025-02-13',
|
|
3140
|
-
lastUpdated: '2025-02-13',
|
|
3141
|
-
openWeights: true,
|
|
3142
|
-
cost: {
|
|
3143
|
-
input: 0,
|
|
3144
|
-
output: 0,
|
|
3145
|
-
},
|
|
3146
|
-
limit: {
|
|
3147
|
-
context: 32768,
|
|
3148
|
-
output: 8192,
|
|
3149
|
-
},
|
|
3150
|
-
},
|
|
3151
3349
|
{
|
|
3152
3350
|
id: 'deepseek/deepseek-chat-v3-0324',
|
|
3153
3351
|
label: 'DeepSeek V3 0324',
|
|
@@ -3197,8 +3395,8 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
3197
3395
|
},
|
|
3198
3396
|
},
|
|
3199
3397
|
{
|
|
3200
|
-
id: 'deepseek/deepseek-r1
|
|
3201
|
-
label: '
|
|
3398
|
+
id: 'deepseek/deepseek-r1',
|
|
3399
|
+
label: 'DeepSeek: R1',
|
|
3202
3400
|
modalities: {
|
|
3203
3401
|
input: ['text'],
|
|
3204
3402
|
output: ['text'],
|
|
@@ -3207,41 +3405,17 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
3207
3405
|
reasoningText: true,
|
|
3208
3406
|
attachment: false,
|
|
3209
3407
|
temperature: true,
|
|
3210
|
-
knowledge: '
|
|
3211
|
-
releaseDate: '2025-
|
|
3212
|
-
lastUpdated: '2025-
|
|
3213
|
-
openWeights: true,
|
|
3214
|
-
cost: {
|
|
3215
|
-
input: 0,
|
|
3216
|
-
output: 0,
|
|
3217
|
-
},
|
|
3218
|
-
limit: {
|
|
3219
|
-
context: 131072,
|
|
3220
|
-
output: 131072,
|
|
3221
|
-
},
|
|
3222
|
-
},
|
|
3223
|
-
{
|
|
3224
|
-
id: 'deepseek/deepseek-r1-0528:free',
|
|
3225
|
-
label: 'R1 0528 (free)',
|
|
3226
|
-
modalities: {
|
|
3227
|
-
input: ['text'],
|
|
3228
|
-
output: ['text'],
|
|
3229
|
-
},
|
|
3230
|
-
toolCall: false,
|
|
3231
|
-
reasoningText: true,
|
|
3232
|
-
attachment: false,
|
|
3233
|
-
temperature: true,
|
|
3234
|
-
knowledge: '2025-05',
|
|
3235
|
-
releaseDate: '2025-05-28',
|
|
3236
|
-
lastUpdated: '2025-05-28',
|
|
3408
|
+
knowledge: '2024-07',
|
|
3409
|
+
releaseDate: '2025-01-20',
|
|
3410
|
+
lastUpdated: '2025-01-20',
|
|
3237
3411
|
openWeights: true,
|
|
3238
3412
|
cost: {
|
|
3239
|
-
input: 0,
|
|
3240
|
-
output:
|
|
3413
|
+
input: 0.7,
|
|
3414
|
+
output: 2.5,
|
|
3241
3415
|
},
|
|
3242
3416
|
limit: {
|
|
3243
|
-
context:
|
|
3244
|
-
output:
|
|
3417
|
+
context: 64000,
|
|
3418
|
+
output: 16000,
|
|
3245
3419
|
},
|
|
3246
3420
|
},
|
|
3247
3421
|
{
|
|
@@ -3269,32 +3443,32 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
3269
3443
|
},
|
|
3270
3444
|
},
|
|
3271
3445
|
{
|
|
3272
|
-
id: 'deepseek/deepseek-
|
|
3273
|
-
label: 'DeepSeek
|
|
3446
|
+
id: 'deepseek/deepseek-v3.1-terminus',
|
|
3447
|
+
label: 'DeepSeek V3.1 Terminus',
|
|
3274
3448
|
modalities: {
|
|
3275
3449
|
input: ['text'],
|
|
3276
3450
|
output: ['text'],
|
|
3277
3451
|
},
|
|
3278
|
-
toolCall:
|
|
3452
|
+
toolCall: true,
|
|
3279
3453
|
reasoningText: true,
|
|
3280
3454
|
attachment: false,
|
|
3281
3455
|
temperature: true,
|
|
3282
|
-
knowledge: '
|
|
3283
|
-
releaseDate: '2025-
|
|
3284
|
-
lastUpdated: '2025-
|
|
3456
|
+
knowledge: '2025-07',
|
|
3457
|
+
releaseDate: '2025-09-22',
|
|
3458
|
+
lastUpdated: '2025-09-22',
|
|
3285
3459
|
openWeights: true,
|
|
3286
3460
|
cost: {
|
|
3287
|
-
input: 0,
|
|
3288
|
-
output:
|
|
3461
|
+
input: 0.27,
|
|
3462
|
+
output: 1,
|
|
3289
3463
|
},
|
|
3290
3464
|
limit: {
|
|
3291
|
-
context:
|
|
3292
|
-
output:
|
|
3465
|
+
context: 131072,
|
|
3466
|
+
output: 65536,
|
|
3293
3467
|
},
|
|
3294
3468
|
},
|
|
3295
3469
|
{
|
|
3296
|
-
id: 'deepseek/deepseek-
|
|
3297
|
-
label: '
|
|
3470
|
+
id: 'deepseek/deepseek-v3.1-terminus:exacto',
|
|
3471
|
+
label: 'DeepSeek V3.1 Terminus (exacto)',
|
|
3298
3472
|
modalities: {
|
|
3299
3473
|
input: ['text'],
|
|
3300
3474
|
output: ['text'],
|
|
@@ -3303,81 +3477,9 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
3303
3477
|
reasoningText: true,
|
|
3304
3478
|
attachment: false,
|
|
3305
3479
|
temperature: true,
|
|
3306
|
-
knowledge: '2025-
|
|
3307
|
-
releaseDate: '2025-
|
|
3308
|
-
lastUpdated: '2025-
|
|
3309
|
-
openWeights: true,
|
|
3310
|
-
cost: {
|
|
3311
|
-
input: 0,
|
|
3312
|
-
output: 0,
|
|
3313
|
-
},
|
|
3314
|
-
limit: {
|
|
3315
|
-
context: 163840,
|
|
3316
|
-
output: 163840,
|
|
3317
|
-
},
|
|
3318
|
-
},
|
|
3319
|
-
{
|
|
3320
|
-
id: 'deepseek/deepseek-v3-base:free',
|
|
3321
|
-
label: 'DeepSeek V3 Base (free)',
|
|
3322
|
-
modalities: {
|
|
3323
|
-
input: ['text'],
|
|
3324
|
-
output: ['text'],
|
|
3325
|
-
},
|
|
3326
|
-
toolCall: false,
|
|
3327
|
-
reasoningText: false,
|
|
3328
|
-
attachment: false,
|
|
3329
|
-
temperature: true,
|
|
3330
|
-
knowledge: '2025-03',
|
|
3331
|
-
releaseDate: '2025-03-29',
|
|
3332
|
-
lastUpdated: '2025-03-29',
|
|
3333
|
-
openWeights: true,
|
|
3334
|
-
cost: {
|
|
3335
|
-
input: 0,
|
|
3336
|
-
output: 0,
|
|
3337
|
-
},
|
|
3338
|
-
limit: {
|
|
3339
|
-
context: 163840,
|
|
3340
|
-
output: 163840,
|
|
3341
|
-
},
|
|
3342
|
-
},
|
|
3343
|
-
{
|
|
3344
|
-
id: 'deepseek/deepseek-v3.1-terminus',
|
|
3345
|
-
label: 'DeepSeek V3.1 Terminus',
|
|
3346
|
-
modalities: {
|
|
3347
|
-
input: ['text'],
|
|
3348
|
-
output: ['text'],
|
|
3349
|
-
},
|
|
3350
|
-
toolCall: true,
|
|
3351
|
-
reasoningText: true,
|
|
3352
|
-
attachment: false,
|
|
3353
|
-
temperature: true,
|
|
3354
|
-
knowledge: '2025-07',
|
|
3355
|
-
releaseDate: '2025-09-22',
|
|
3356
|
-
lastUpdated: '2025-09-22',
|
|
3357
|
-
openWeights: true,
|
|
3358
|
-
cost: {
|
|
3359
|
-
input: 0.27,
|
|
3360
|
-
output: 1,
|
|
3361
|
-
},
|
|
3362
|
-
limit: {
|
|
3363
|
-
context: 131072,
|
|
3364
|
-
output: 65536,
|
|
3365
|
-
},
|
|
3366
|
-
},
|
|
3367
|
-
{
|
|
3368
|
-
id: 'deepseek/deepseek-v3.1-terminus:exacto',
|
|
3369
|
-
label: 'DeepSeek V3.1 Terminus (exacto)',
|
|
3370
|
-
modalities: {
|
|
3371
|
-
input: ['text'],
|
|
3372
|
-
output: ['text'],
|
|
3373
|
-
},
|
|
3374
|
-
toolCall: true,
|
|
3375
|
-
reasoningText: true,
|
|
3376
|
-
attachment: false,
|
|
3377
|
-
temperature: true,
|
|
3378
|
-
knowledge: '2025-07',
|
|
3379
|
-
releaseDate: '2025-09-22',
|
|
3380
|
-
lastUpdated: '2025-09-22',
|
|
3480
|
+
knowledge: '2025-07',
|
|
3481
|
+
releaseDate: '2025-09-22',
|
|
3482
|
+
lastUpdated: '2025-09-22',
|
|
3381
3483
|
openWeights: true,
|
|
3382
3484
|
cost: {
|
|
3383
3485
|
input: 0.27,
|
|
@@ -3436,30 +3538,6 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
3436
3538
|
output: 65536,
|
|
3437
3539
|
},
|
|
3438
3540
|
},
|
|
3439
|
-
{
|
|
3440
|
-
id: 'featherless/qwerky-72b',
|
|
3441
|
-
label: 'Qwerky 72B',
|
|
3442
|
-
modalities: {
|
|
3443
|
-
input: ['text'],
|
|
3444
|
-
output: ['text'],
|
|
3445
|
-
},
|
|
3446
|
-
toolCall: false,
|
|
3447
|
-
reasoningText: false,
|
|
3448
|
-
attachment: false,
|
|
3449
|
-
temperature: true,
|
|
3450
|
-
knowledge: '2024-10',
|
|
3451
|
-
releaseDate: '2025-03-20',
|
|
3452
|
-
lastUpdated: '2025-03-20',
|
|
3453
|
-
openWeights: true,
|
|
3454
|
-
cost: {
|
|
3455
|
-
input: 0,
|
|
3456
|
-
output: 0,
|
|
3457
|
-
},
|
|
3458
|
-
limit: {
|
|
3459
|
-
context: 32768,
|
|
3460
|
-
output: 8192,
|
|
3461
|
-
},
|
|
3462
|
-
},
|
|
3463
3541
|
{
|
|
3464
3542
|
id: 'google/gemini-2.0-flash-001',
|
|
3465
3543
|
ownedBy: 'google',
|
|
@@ -3486,31 +3564,6 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
3486
3564
|
output: 8192,
|
|
3487
3565
|
},
|
|
3488
3566
|
},
|
|
3489
|
-
{
|
|
3490
|
-
id: 'google/gemini-2.0-flash-exp:free',
|
|
3491
|
-
ownedBy: 'google',
|
|
3492
|
-
label: 'Gemini 2.0 Flash Experimental (free)',
|
|
3493
|
-
modalities: {
|
|
3494
|
-
input: ['text', 'image'],
|
|
3495
|
-
output: ['text'],
|
|
3496
|
-
},
|
|
3497
|
-
toolCall: true,
|
|
3498
|
-
reasoningText: false,
|
|
3499
|
-
attachment: true,
|
|
3500
|
-
temperature: true,
|
|
3501
|
-
knowledge: '2024-12',
|
|
3502
|
-
releaseDate: '2024-12-11',
|
|
3503
|
-
lastUpdated: '2024-12-11',
|
|
3504
|
-
openWeights: false,
|
|
3505
|
-
cost: {
|
|
3506
|
-
input: 0,
|
|
3507
|
-
output: 0,
|
|
3508
|
-
},
|
|
3509
|
-
limit: {
|
|
3510
|
-
context: 1048576,
|
|
3511
|
-
output: 1048576,
|
|
3512
|
-
},
|
|
3513
|
-
},
|
|
3514
3567
|
{
|
|
3515
3568
|
id: 'google/gemini-2.5-flash',
|
|
3516
3569
|
ownedBy: 'google',
|
|
@@ -4071,66 +4124,118 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4071
4124
|
},
|
|
4072
4125
|
},
|
|
4073
4126
|
{
|
|
4074
|
-
id: '
|
|
4075
|
-
|
|
4127
|
+
id: 'google/gemma-4-26b-a4b-it',
|
|
4128
|
+
ownedBy: 'google',
|
|
4129
|
+
label: 'Gemma 4 26B A4B',
|
|
4076
4130
|
modalities: {
|
|
4077
|
-
input: ['text'],
|
|
4131
|
+
input: ['text', 'image', 'video'],
|
|
4078
4132
|
output: ['text'],
|
|
4079
4133
|
},
|
|
4080
4134
|
toolCall: true,
|
|
4081
|
-
reasoningText:
|
|
4082
|
-
attachment:
|
|
4135
|
+
reasoningText: true,
|
|
4136
|
+
attachment: true,
|
|
4083
4137
|
temperature: true,
|
|
4084
|
-
|
|
4085
|
-
|
|
4086
|
-
|
|
4138
|
+
knowledge: '2025-01',
|
|
4139
|
+
releaseDate: '2026-04-03',
|
|
4140
|
+
lastUpdated: '2026-04-03',
|
|
4141
|
+
openWeights: true,
|
|
4087
4142
|
cost: {
|
|
4088
|
-
input: 0.
|
|
4089
|
-
output: 0.
|
|
4090
|
-
cacheRead: 0.025,
|
|
4143
|
+
input: 0.13,
|
|
4144
|
+
output: 0.4,
|
|
4091
4145
|
},
|
|
4092
4146
|
limit: {
|
|
4093
|
-
context:
|
|
4094
|
-
output:
|
|
4147
|
+
context: 262144,
|
|
4148
|
+
output: 262144,
|
|
4095
4149
|
},
|
|
4096
4150
|
},
|
|
4097
4151
|
{
|
|
4098
|
-
id: '
|
|
4099
|
-
|
|
4152
|
+
id: 'google/gemma-4-26b-a4b-it:free',
|
|
4153
|
+
ownedBy: 'google',
|
|
4154
|
+
label: 'Gemma 4 26B A4B (free)',
|
|
4100
4155
|
modalities: {
|
|
4101
|
-
input: ['text'],
|
|
4156
|
+
input: ['text', 'image', 'video'],
|
|
4102
4157
|
output: ['text'],
|
|
4103
4158
|
},
|
|
4104
4159
|
toolCall: true,
|
|
4105
4160
|
reasoningText: true,
|
|
4106
|
-
attachment:
|
|
4161
|
+
attachment: true,
|
|
4107
4162
|
temperature: true,
|
|
4108
|
-
|
|
4109
|
-
|
|
4110
|
-
|
|
4163
|
+
knowledge: '2025-01',
|
|
4164
|
+
releaseDate: '2026-04-03',
|
|
4165
|
+
lastUpdated: '2026-04-03',
|
|
4166
|
+
openWeights: true,
|
|
4111
4167
|
cost: {
|
|
4112
|
-
input: 0
|
|
4113
|
-
output: 0
|
|
4114
|
-
cacheRead: 0.025,
|
|
4168
|
+
input: 0,
|
|
4169
|
+
output: 0,
|
|
4115
4170
|
},
|
|
4116
4171
|
limit: {
|
|
4117
|
-
context:
|
|
4118
|
-
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,
|
|
4119
4224
|
},
|
|
4120
4225
|
},
|
|
4121
4226
|
{
|
|
4122
|
-
id: 'inception/mercury-
|
|
4123
|
-
label: 'Mercury
|
|
4227
|
+
id: 'inception/mercury-2',
|
|
4228
|
+
label: 'Mercury 2',
|
|
4124
4229
|
modalities: {
|
|
4125
4230
|
input: ['text'],
|
|
4126
4231
|
output: ['text'],
|
|
4127
4232
|
},
|
|
4128
4233
|
toolCall: true,
|
|
4129
|
-
reasoningText:
|
|
4234
|
+
reasoningText: true,
|
|
4130
4235
|
attachment: false,
|
|
4131
4236
|
temperature: true,
|
|
4132
|
-
releaseDate: '
|
|
4133
|
-
lastUpdated: '
|
|
4237
|
+
releaseDate: '2026-03-04',
|
|
4238
|
+
lastUpdated: '2026-03-04',
|
|
4134
4239
|
openWeights: false,
|
|
4135
4240
|
cost: {
|
|
4136
4241
|
input: 0.25,
|
|
@@ -4139,31 +4244,31 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4139
4244
|
},
|
|
4140
4245
|
limit: {
|
|
4141
4246
|
context: 128000,
|
|
4142
|
-
output:
|
|
4247
|
+
output: 50000,
|
|
4143
4248
|
},
|
|
4144
4249
|
},
|
|
4145
4250
|
{
|
|
4146
|
-
id: '
|
|
4147
|
-
label: '
|
|
4251
|
+
id: 'inception/mercury-edit-2',
|
|
4252
|
+
label: 'Mercury Edit 2',
|
|
4148
4253
|
modalities: {
|
|
4149
4254
|
input: ['text'],
|
|
4150
4255
|
output: ['text'],
|
|
4151
4256
|
},
|
|
4152
|
-
toolCall:
|
|
4153
|
-
reasoningText:
|
|
4257
|
+
toolCall: false,
|
|
4258
|
+
reasoningText: true,
|
|
4154
4259
|
attachment: false,
|
|
4155
4260
|
temperature: true,
|
|
4156
|
-
|
|
4157
|
-
|
|
4158
|
-
lastUpdated: '2025-11-10',
|
|
4261
|
+
releaseDate: '2026-03-30',
|
|
4262
|
+
lastUpdated: '2026-03-30',
|
|
4159
4263
|
openWeights: false,
|
|
4160
4264
|
cost: {
|
|
4161
|
-
input: 0,
|
|
4162
|
-
output: 0,
|
|
4265
|
+
input: 0.25,
|
|
4266
|
+
output: 0.75,
|
|
4267
|
+
cacheRead: 0.025,
|
|
4163
4268
|
},
|
|
4164
4269
|
limit: {
|
|
4165
|
-
context:
|
|
4166
|
-
output:
|
|
4270
|
+
context: 128000,
|
|
4271
|
+
output: 8192,
|
|
4167
4272
|
},
|
|
4168
4273
|
},
|
|
4169
4274
|
{
|
|
@@ -4214,30 +4319,6 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4214
4319
|
output: 32768,
|
|
4215
4320
|
},
|
|
4216
4321
|
},
|
|
4217
|
-
{
|
|
4218
|
-
id: 'meta-llama/llama-3.1-405b-instruct:free',
|
|
4219
|
-
label: 'Llama 3.1 405B Instruct (free)',
|
|
4220
|
-
modalities: {
|
|
4221
|
-
input: ['text'],
|
|
4222
|
-
output: ['text'],
|
|
4223
|
-
},
|
|
4224
|
-
toolCall: false,
|
|
4225
|
-
reasoningText: false,
|
|
4226
|
-
attachment: true,
|
|
4227
|
-
temperature: true,
|
|
4228
|
-
knowledge: '2024-08',
|
|
4229
|
-
releaseDate: '2024-07-23',
|
|
4230
|
-
lastUpdated: '2025-04-05',
|
|
4231
|
-
openWeights: true,
|
|
4232
|
-
cost: {
|
|
4233
|
-
input: 0,
|
|
4234
|
-
output: 0,
|
|
4235
|
-
},
|
|
4236
|
-
limit: {
|
|
4237
|
-
context: 131072,
|
|
4238
|
-
output: 131072,
|
|
4239
|
-
},
|
|
4240
|
-
},
|
|
4241
4322
|
{
|
|
4242
4323
|
id: 'meta-llama/llama-3.2-11b-vision-instruct',
|
|
4243
4324
|
label: 'Llama 3.2 11B Vision Instruct',
|
|
@@ -4311,32 +4392,33 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4311
4392
|
},
|
|
4312
4393
|
},
|
|
4313
4394
|
{
|
|
4314
|
-
id: '
|
|
4315
|
-
|
|
4395
|
+
id: 'minimax/minimax-01',
|
|
4396
|
+
ownedBy: 'minimax',
|
|
4397
|
+
label: 'MiniMax-01',
|
|
4316
4398
|
modalities: {
|
|
4317
4399
|
input: ['text', 'image'],
|
|
4318
4400
|
output: ['text'],
|
|
4319
4401
|
},
|
|
4320
4402
|
toolCall: true,
|
|
4321
|
-
reasoningText:
|
|
4403
|
+
reasoningText: true,
|
|
4322
4404
|
attachment: true,
|
|
4323
4405
|
temperature: true,
|
|
4324
|
-
|
|
4325
|
-
|
|
4326
|
-
lastUpdated: '2025-04-05',
|
|
4406
|
+
releaseDate: '2025-01-15',
|
|
4407
|
+
lastUpdated: '2025-01-15',
|
|
4327
4408
|
openWeights: true,
|
|
4328
4409
|
cost: {
|
|
4329
|
-
input: 0,
|
|
4330
|
-
output:
|
|
4410
|
+
input: 0.2,
|
|
4411
|
+
output: 1.1,
|
|
4331
4412
|
},
|
|
4332
4413
|
limit: {
|
|
4333
|
-
context:
|
|
4334
|
-
output:
|
|
4414
|
+
context: 1000000,
|
|
4415
|
+
output: 1000000,
|
|
4335
4416
|
},
|
|
4336
4417
|
},
|
|
4337
4418
|
{
|
|
4338
|
-
id: '
|
|
4339
|
-
|
|
4419
|
+
id: 'minimax/minimax-m1',
|
|
4420
|
+
ownedBy: 'minimax',
|
|
4421
|
+
label: 'MiniMax M1',
|
|
4340
4422
|
modalities: {
|
|
4341
4423
|
input: ['text'],
|
|
4342
4424
|
output: ['text'],
|
|
@@ -4345,57 +4427,8 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4345
4427
|
reasoningText: true,
|
|
4346
4428
|
attachment: false,
|
|
4347
4429
|
temperature: true,
|
|
4348
|
-
|
|
4349
|
-
|
|
4350
|
-
lastUpdated: '2025-04-21',
|
|
4351
|
-
openWeights: true,
|
|
4352
|
-
cost: {
|
|
4353
|
-
input: 0,
|
|
4354
|
-
output: 0,
|
|
4355
|
-
},
|
|
4356
|
-
limit: {
|
|
4357
|
-
context: 163840,
|
|
4358
|
-
output: 163840,
|
|
4359
|
-
},
|
|
4360
|
-
},
|
|
4361
|
-
{
|
|
4362
|
-
id: 'minimax/minimax-01',
|
|
4363
|
-
ownedBy: 'minimax',
|
|
4364
|
-
label: 'MiniMax-01',
|
|
4365
|
-
modalities: {
|
|
4366
|
-
input: ['text', 'image'],
|
|
4367
|
-
output: ['text'],
|
|
4368
|
-
},
|
|
4369
|
-
toolCall: true,
|
|
4370
|
-
reasoningText: true,
|
|
4371
|
-
attachment: true,
|
|
4372
|
-
temperature: true,
|
|
4373
|
-
releaseDate: '2025-01-15',
|
|
4374
|
-
lastUpdated: '2025-01-15',
|
|
4375
|
-
openWeights: true,
|
|
4376
|
-
cost: {
|
|
4377
|
-
input: 0.2,
|
|
4378
|
-
output: 1.1,
|
|
4379
|
-
},
|
|
4380
|
-
limit: {
|
|
4381
|
-
context: 1000000,
|
|
4382
|
-
output: 1000000,
|
|
4383
|
-
},
|
|
4384
|
-
},
|
|
4385
|
-
{
|
|
4386
|
-
id: 'minimax/minimax-m1',
|
|
4387
|
-
ownedBy: 'minimax',
|
|
4388
|
-
label: 'MiniMax M1',
|
|
4389
|
-
modalities: {
|
|
4390
|
-
input: ['text'],
|
|
4391
|
-
output: ['text'],
|
|
4392
|
-
},
|
|
4393
|
-
toolCall: true,
|
|
4394
|
-
reasoningText: true,
|
|
4395
|
-
attachment: false,
|
|
4396
|
-
temperature: true,
|
|
4397
|
-
releaseDate: '2025-06-17',
|
|
4398
|
-
lastUpdated: '2025-06-17',
|
|
4430
|
+
releaseDate: '2025-06-17',
|
|
4431
|
+
lastUpdated: '2025-06-17',
|
|
4399
4432
|
openWeights: true,
|
|
4400
4433
|
cost: {
|
|
4401
4434
|
input: 0.4,
|
|
@@ -4481,6 +4514,30 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4481
4514
|
output: 131072,
|
|
4482
4515
|
},
|
|
4483
4516
|
},
|
|
4517
|
+
{
|
|
4518
|
+
id: 'minimax/minimax-m2.5:free',
|
|
4519
|
+
ownedBy: 'minimax',
|
|
4520
|
+
label: 'MiniMax M2.5 (free)',
|
|
4521
|
+
modalities: {
|
|
4522
|
+
input: ['text'],
|
|
4523
|
+
output: ['text'],
|
|
4524
|
+
},
|
|
4525
|
+
toolCall: true,
|
|
4526
|
+
reasoningText: true,
|
|
4527
|
+
attachment: false,
|
|
4528
|
+
temperature: true,
|
|
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
|
+
},
|
|
4484
4541
|
{
|
|
4485
4542
|
id: 'minimax/minimax-m2.7',
|
|
4486
4543
|
ownedBy: 'minimax',
|
|
@@ -4555,30 +4612,6 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4555
4612
|
output: 262144,
|
|
4556
4613
|
},
|
|
4557
4614
|
},
|
|
4558
|
-
{
|
|
4559
|
-
id: 'mistralai/devstral-2512:free',
|
|
4560
|
-
label: 'Devstral 2 2512 (free)',
|
|
4561
|
-
modalities: {
|
|
4562
|
-
input: ['text'],
|
|
4563
|
-
output: ['text'],
|
|
4564
|
-
},
|
|
4565
|
-
toolCall: true,
|
|
4566
|
-
reasoningText: false,
|
|
4567
|
-
attachment: false,
|
|
4568
|
-
temperature: true,
|
|
4569
|
-
knowledge: '2025-12',
|
|
4570
|
-
releaseDate: '2025-09-12',
|
|
4571
|
-
lastUpdated: '2025-09-12',
|
|
4572
|
-
openWeights: true,
|
|
4573
|
-
cost: {
|
|
4574
|
-
input: 0,
|
|
4575
|
-
output: 0,
|
|
4576
|
-
},
|
|
4577
|
-
limit: {
|
|
4578
|
-
context: 262144,
|
|
4579
|
-
output: 262144,
|
|
4580
|
-
},
|
|
4581
|
-
},
|
|
4582
4615
|
{
|
|
4583
4616
|
id: 'mistralai/devstral-medium-2507',
|
|
4584
4617
|
label: 'Devstral Medium',
|
|
@@ -4627,30 +4660,6 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4627
4660
|
output: 128000,
|
|
4628
4661
|
},
|
|
4629
4662
|
},
|
|
4630
|
-
{
|
|
4631
|
-
id: 'mistralai/devstral-small-2505:free',
|
|
4632
|
-
label: 'Devstral Small 2505 (free)',
|
|
4633
|
-
modalities: {
|
|
4634
|
-
input: ['text'],
|
|
4635
|
-
output: ['text'],
|
|
4636
|
-
},
|
|
4637
|
-
toolCall: true,
|
|
4638
|
-
reasoningText: false,
|
|
4639
|
-
attachment: false,
|
|
4640
|
-
temperature: true,
|
|
4641
|
-
knowledge: '2025-05',
|
|
4642
|
-
releaseDate: '2025-05-21',
|
|
4643
|
-
lastUpdated: '2025-05-21',
|
|
4644
|
-
openWeights: true,
|
|
4645
|
-
cost: {
|
|
4646
|
-
input: 0,
|
|
4647
|
-
output: 0,
|
|
4648
|
-
},
|
|
4649
|
-
limit: {
|
|
4650
|
-
context: 32768,
|
|
4651
|
-
output: 32768,
|
|
4652
|
-
},
|
|
4653
|
-
},
|
|
4654
4663
|
{
|
|
4655
4664
|
id: 'mistralai/devstral-small-2507',
|
|
4656
4665
|
label: 'Devstral Small 1.1',
|
|
@@ -4675,30 +4684,6 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4675
4684
|
output: 131072,
|
|
4676
4685
|
},
|
|
4677
4686
|
},
|
|
4678
|
-
{
|
|
4679
|
-
id: 'mistralai/mistral-7b-instruct:free',
|
|
4680
|
-
label: 'Mistral 7B Instruct (free)',
|
|
4681
|
-
modalities: {
|
|
4682
|
-
input: ['text'],
|
|
4683
|
-
output: ['text'],
|
|
4684
|
-
},
|
|
4685
|
-
toolCall: true,
|
|
4686
|
-
reasoningText: false,
|
|
4687
|
-
attachment: false,
|
|
4688
|
-
temperature: true,
|
|
4689
|
-
knowledge: '2024-05',
|
|
4690
|
-
releaseDate: '2024-05-27',
|
|
4691
|
-
lastUpdated: '2024-05-27',
|
|
4692
|
-
openWeights: true,
|
|
4693
|
-
cost: {
|
|
4694
|
-
input: 0,
|
|
4695
|
-
output: 0,
|
|
4696
|
-
},
|
|
4697
|
-
limit: {
|
|
4698
|
-
context: 32768,
|
|
4699
|
-
output: 32768,
|
|
4700
|
-
},
|
|
4701
|
-
},
|
|
4702
4687
|
{
|
|
4703
4688
|
id: 'mistralai/mistral-medium-3',
|
|
4704
4689
|
label: 'Mistral Medium 3',
|
|
@@ -4748,27 +4733,27 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4748
4733
|
},
|
|
4749
4734
|
},
|
|
4750
4735
|
{
|
|
4751
|
-
id: 'mistralai/mistral-
|
|
4752
|
-
label: 'Mistral
|
|
4736
|
+
id: 'mistralai/mistral-small-2603',
|
|
4737
|
+
label: 'Mistral Small 4',
|
|
4753
4738
|
modalities: {
|
|
4754
|
-
input: ['text'],
|
|
4739
|
+
input: ['text', 'image'],
|
|
4755
4740
|
output: ['text'],
|
|
4756
4741
|
},
|
|
4757
4742
|
toolCall: true,
|
|
4758
|
-
reasoningText:
|
|
4759
|
-
attachment:
|
|
4743
|
+
reasoningText: true,
|
|
4744
|
+
attachment: true,
|
|
4760
4745
|
temperature: true,
|
|
4761
|
-
knowledge: '
|
|
4762
|
-
releaseDate: '
|
|
4763
|
-
lastUpdated: '
|
|
4746
|
+
knowledge: '2025-06',
|
|
4747
|
+
releaseDate: '2026-03-16',
|
|
4748
|
+
lastUpdated: '2026-03-16',
|
|
4764
4749
|
openWeights: true,
|
|
4765
4750
|
cost: {
|
|
4766
|
-
input: 0,
|
|
4767
|
-
output: 0,
|
|
4751
|
+
input: 0.15,
|
|
4752
|
+
output: 0.6,
|
|
4768
4753
|
},
|
|
4769
4754
|
limit: {
|
|
4770
|
-
context:
|
|
4771
|
-
output:
|
|
4755
|
+
context: 262144,
|
|
4756
|
+
output: 262144,
|
|
4772
4757
|
},
|
|
4773
4758
|
},
|
|
4774
4759
|
{
|
|
@@ -4819,55 +4804,6 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4819
4804
|
output: 8192,
|
|
4820
4805
|
},
|
|
4821
4806
|
},
|
|
4822
|
-
{
|
|
4823
|
-
id: 'mistralai/mistral-small-3.2-24b-instruct:free',
|
|
4824
|
-
label: 'Mistral Small 3.2 24B (free)',
|
|
4825
|
-
modalities: {
|
|
4826
|
-
input: ['text', 'image'],
|
|
4827
|
-
output: ['text'],
|
|
4828
|
-
},
|
|
4829
|
-
toolCall: true,
|
|
4830
|
-
reasoningText: false,
|
|
4831
|
-
attachment: true,
|
|
4832
|
-
temperature: true,
|
|
4833
|
-
knowledge: '2025-06',
|
|
4834
|
-
releaseDate: '2025-06-20',
|
|
4835
|
-
lastUpdated: '2025-06-20',
|
|
4836
|
-
openWeights: true,
|
|
4837
|
-
cost: {
|
|
4838
|
-
input: 0,
|
|
4839
|
-
output: 0,
|
|
4840
|
-
},
|
|
4841
|
-
limit: {
|
|
4842
|
-
context: 96000,
|
|
4843
|
-
output: 96000,
|
|
4844
|
-
},
|
|
4845
|
-
},
|
|
4846
|
-
{
|
|
4847
|
-
id: 'moonshotai/kimi-dev-72b:free',
|
|
4848
|
-
ownedBy: 'moonshot',
|
|
4849
|
-
label: 'Kimi Dev 72b (free)',
|
|
4850
|
-
modalities: {
|
|
4851
|
-
input: ['text'],
|
|
4852
|
-
output: ['text'],
|
|
4853
|
-
},
|
|
4854
|
-
toolCall: true,
|
|
4855
|
-
reasoningText: false,
|
|
4856
|
-
attachment: false,
|
|
4857
|
-
temperature: true,
|
|
4858
|
-
knowledge: '2025-06',
|
|
4859
|
-
releaseDate: '2025-06-16',
|
|
4860
|
-
lastUpdated: '2025-06-16',
|
|
4861
|
-
openWeights: true,
|
|
4862
|
-
cost: {
|
|
4863
|
-
input: 0,
|
|
4864
|
-
output: 0,
|
|
4865
|
-
},
|
|
4866
|
-
limit: {
|
|
4867
|
-
context: 131072,
|
|
4868
|
-
output: 131072,
|
|
4869
|
-
},
|
|
4870
|
-
},
|
|
4871
4807
|
{
|
|
4872
4808
|
id: 'moonshotai/kimi-k2',
|
|
4873
4809
|
ownedBy: 'moonshot',
|
|
@@ -4969,31 +4905,6 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
4969
4905
|
output: 262144,
|
|
4970
4906
|
},
|
|
4971
4907
|
},
|
|
4972
|
-
{
|
|
4973
|
-
id: 'moonshotai/kimi-k2:free',
|
|
4974
|
-
ownedBy: 'moonshot',
|
|
4975
|
-
label: 'Kimi K2 (free)',
|
|
4976
|
-
modalities: {
|
|
4977
|
-
input: ['text'],
|
|
4978
|
-
output: ['text'],
|
|
4979
|
-
},
|
|
4980
|
-
toolCall: true,
|
|
4981
|
-
reasoningText: false,
|
|
4982
|
-
attachment: false,
|
|
4983
|
-
temperature: true,
|
|
4984
|
-
knowledge: '2025-04',
|
|
4985
|
-
releaseDate: '2025-07-11',
|
|
4986
|
-
lastUpdated: '2025-07-11',
|
|
4987
|
-
openWeights: true,
|
|
4988
|
-
cost: {
|
|
4989
|
-
input: 0,
|
|
4990
|
-
output: 0,
|
|
4991
|
-
},
|
|
4992
|
-
limit: {
|
|
4993
|
-
context: 32800,
|
|
4994
|
-
output: 32800,
|
|
4995
|
-
},
|
|
4996
|
-
},
|
|
4997
4908
|
{
|
|
4998
4909
|
id: 'moonshotai/kimi-k2.5',
|
|
4999
4910
|
ownedBy: 'moonshot',
|
|
@@ -5020,30 +4931,6 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
5020
4931
|
output: 262144,
|
|
5021
4932
|
},
|
|
5022
4933
|
},
|
|
5023
|
-
{
|
|
5024
|
-
id: 'nousresearch/deephermes-3-llama-3-8b-preview',
|
|
5025
|
-
label: 'DeepHermes 3 Llama 3 8B Preview',
|
|
5026
|
-
modalities: {
|
|
5027
|
-
input: ['text'],
|
|
5028
|
-
output: ['text'],
|
|
5029
|
-
},
|
|
5030
|
-
toolCall: true,
|
|
5031
|
-
reasoningText: true,
|
|
5032
|
-
attachment: false,
|
|
5033
|
-
temperature: true,
|
|
5034
|
-
knowledge: '2024-04',
|
|
5035
|
-
releaseDate: '2025-02-28',
|
|
5036
|
-
lastUpdated: '2025-02-28',
|
|
5037
|
-
openWeights: true,
|
|
5038
|
-
cost: {
|
|
5039
|
-
input: 0,
|
|
5040
|
-
output: 0,
|
|
5041
|
-
},
|
|
5042
|
-
limit: {
|
|
5043
|
-
context: 131072,
|
|
5044
|
-
output: 8192,
|
|
5045
|
-
},
|
|
5046
|
-
},
|
|
5047
4934
|
{
|
|
5048
4935
|
id: 'nousresearch/hermes-3-llama-3.1-405b:free',
|
|
5049
4936
|
label: 'Hermes 3 405B Instruct (free)',
|
|
@@ -5141,32 +5028,32 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
5141
5028
|
},
|
|
5142
5029
|
},
|
|
5143
5030
|
{
|
|
5144
|
-
id: 'nvidia/nemotron-
|
|
5145
|
-
label: 'Nemotron
|
|
5031
|
+
id: 'nvidia/nemotron-3-super-120b-a12b',
|
|
5032
|
+
label: 'Nemotron 3 Super',
|
|
5146
5033
|
modalities: {
|
|
5147
|
-
input: ['text'
|
|
5034
|
+
input: ['text'],
|
|
5148
5035
|
output: ['text'],
|
|
5149
5036
|
},
|
|
5150
5037
|
toolCall: true,
|
|
5151
5038
|
reasoningText: true,
|
|
5152
5039
|
attachment: false,
|
|
5153
5040
|
temperature: true,
|
|
5154
|
-
knowledge: '
|
|
5155
|
-
releaseDate: '
|
|
5156
|
-
lastUpdated: '2026-
|
|
5041
|
+
knowledge: '2024-04',
|
|
5042
|
+
releaseDate: '2026-03-11',
|
|
5043
|
+
lastUpdated: '2026-03-11',
|
|
5157
5044
|
openWeights: true,
|
|
5158
5045
|
cost: {
|
|
5159
|
-
input: 0,
|
|
5160
|
-
output: 0,
|
|
5046
|
+
input: 0.1,
|
|
5047
|
+
output: 0.5,
|
|
5161
5048
|
},
|
|
5162
5049
|
limit: {
|
|
5163
|
-
context:
|
|
5164
|
-
output:
|
|
5050
|
+
context: 262144,
|
|
5051
|
+
output: 262144,
|
|
5165
5052
|
},
|
|
5166
5053
|
},
|
|
5167
5054
|
{
|
|
5168
|
-
id: 'nvidia/nemotron-
|
|
5169
|
-
label: '
|
|
5055
|
+
id: 'nvidia/nemotron-3-super-120b-a12b:free',
|
|
5056
|
+
label: 'Nemotron 3 Super (free)',
|
|
5170
5057
|
modalities: {
|
|
5171
5058
|
input: ['text'],
|
|
5172
5059
|
output: ['text'],
|
|
@@ -5175,9 +5062,57 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
5175
5062
|
reasoningText: true,
|
|
5176
5063
|
attachment: false,
|
|
5177
5064
|
temperature: true,
|
|
5178
|
-
knowledge: '2024-
|
|
5179
|
-
releaseDate: '
|
|
5180
|
-
lastUpdated: '
|
|
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
|
+
},
|
|
5078
|
+
{
|
|
5079
|
+
id: 'nvidia/nemotron-nano-12b-v2-vl:free',
|
|
5080
|
+
label: 'Nemotron Nano 12B 2 VL (free)',
|
|
5081
|
+
modalities: {
|
|
5082
|
+
input: ['text', 'image'],
|
|
5083
|
+
output: ['text'],
|
|
5084
|
+
},
|
|
5085
|
+
toolCall: true,
|
|
5086
|
+
reasoningText: true,
|
|
5087
|
+
attachment: false,
|
|
5088
|
+
temperature: true,
|
|
5089
|
+
knowledge: '2025-11',
|
|
5090
|
+
releaseDate: '2025-10-28',
|
|
5091
|
+
lastUpdated: '2026-01-31',
|
|
5092
|
+
openWeights: true,
|
|
5093
|
+
cost: {
|
|
5094
|
+
input: 0,
|
|
5095
|
+
output: 0,
|
|
5096
|
+
},
|
|
5097
|
+
limit: {
|
|
5098
|
+
context: 128000,
|
|
5099
|
+
output: 128000,
|
|
5100
|
+
},
|
|
5101
|
+
},
|
|
5102
|
+
{
|
|
5103
|
+
id: 'nvidia/nemotron-nano-9b-v2',
|
|
5104
|
+
label: 'nvidia-nemotron-nano-9b-v2',
|
|
5105
|
+
modalities: {
|
|
5106
|
+
input: ['text'],
|
|
5107
|
+
output: ['text'],
|
|
5108
|
+
},
|
|
5109
|
+
toolCall: true,
|
|
5110
|
+
reasoningText: true,
|
|
5111
|
+
attachment: false,
|
|
5112
|
+
temperature: true,
|
|
5113
|
+
knowledge: '2024-09',
|
|
5114
|
+
releaseDate: '2025-08-18',
|
|
5115
|
+
lastUpdated: '2025-08-18',
|
|
5181
5116
|
openWeights: true,
|
|
5182
5117
|
cost: {
|
|
5183
5118
|
input: 0.04,
|
|
@@ -6001,8 +5936,8 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
6001
5936
|
},
|
|
6002
5937
|
},
|
|
6003
5938
|
{
|
|
6004
|
-
id: 'openrouter/
|
|
6005
|
-
label: '
|
|
5939
|
+
id: 'openrouter/elephant-alpha',
|
|
5940
|
+
label: 'Elephant (free)',
|
|
6006
5941
|
modalities: {
|
|
6007
5942
|
input: ['text'],
|
|
6008
5943
|
output: ['text'],
|
|
@@ -6011,16 +5946,16 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
6011
5946
|
reasoningText: true,
|
|
6012
5947
|
attachment: false,
|
|
6013
5948
|
temperature: true,
|
|
6014
|
-
releaseDate: '2026-
|
|
6015
|
-
lastUpdated: '2026-
|
|
5949
|
+
releaseDate: '2026-04-13',
|
|
5950
|
+
lastUpdated: '2026-04-13',
|
|
6016
5951
|
openWeights: false,
|
|
6017
5952
|
cost: {
|
|
6018
5953
|
input: 0,
|
|
6019
5954
|
output: 0,
|
|
6020
5955
|
},
|
|
6021
5956
|
limit: {
|
|
6022
|
-
context:
|
|
6023
|
-
output:
|
|
5957
|
+
context: 262144,
|
|
5958
|
+
output: 32768,
|
|
6024
5959
|
},
|
|
6025
5960
|
},
|
|
6026
5961
|
{
|
|
@@ -6046,102 +5981,6 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
6046
5981
|
output: 8000,
|
|
6047
5982
|
},
|
|
6048
5983
|
},
|
|
6049
|
-
{
|
|
6050
|
-
id: 'openrouter/healer-alpha',
|
|
6051
|
-
label: 'Healer Alpha',
|
|
6052
|
-
modalities: {
|
|
6053
|
-
input: ['text', 'image', 'audio', 'pdf'],
|
|
6054
|
-
output: ['text'],
|
|
6055
|
-
},
|
|
6056
|
-
toolCall: true,
|
|
6057
|
-
reasoningText: true,
|
|
6058
|
-
attachment: true,
|
|
6059
|
-
temperature: true,
|
|
6060
|
-
knowledge: '2026-03-11',
|
|
6061
|
-
releaseDate: '2026-03-11',
|
|
6062
|
-
lastUpdated: '2026-03-11',
|
|
6063
|
-
openWeights: false,
|
|
6064
|
-
cost: {
|
|
6065
|
-
input: 0,
|
|
6066
|
-
output: 0,
|
|
6067
|
-
},
|
|
6068
|
-
limit: {
|
|
6069
|
-
context: 262144,
|
|
6070
|
-
output: 64000,
|
|
6071
|
-
},
|
|
6072
|
-
},
|
|
6073
|
-
{
|
|
6074
|
-
id: 'openrouter/hunter-alpha',
|
|
6075
|
-
label: 'Hunter Alpha',
|
|
6076
|
-
modalities: {
|
|
6077
|
-
input: ['text', 'image', 'pdf'],
|
|
6078
|
-
output: ['text'],
|
|
6079
|
-
},
|
|
6080
|
-
toolCall: true,
|
|
6081
|
-
reasoningText: true,
|
|
6082
|
-
attachment: true,
|
|
6083
|
-
temperature: true,
|
|
6084
|
-
knowledge: '2026-03-11',
|
|
6085
|
-
releaseDate: '2026-03-11',
|
|
6086
|
-
lastUpdated: '2026-03-11',
|
|
6087
|
-
openWeights: false,
|
|
6088
|
-
cost: {
|
|
6089
|
-
input: 0,
|
|
6090
|
-
output: 0,
|
|
6091
|
-
},
|
|
6092
|
-
limit: {
|
|
6093
|
-
context: 1048576,
|
|
6094
|
-
output: 64000,
|
|
6095
|
-
},
|
|
6096
|
-
},
|
|
6097
|
-
{
|
|
6098
|
-
id: 'openrouter/sherlock-dash-alpha',
|
|
6099
|
-
label: 'Sherlock Dash Alpha',
|
|
6100
|
-
modalities: {
|
|
6101
|
-
input: ['text', 'image'],
|
|
6102
|
-
output: ['text'],
|
|
6103
|
-
},
|
|
6104
|
-
toolCall: true,
|
|
6105
|
-
reasoningText: false,
|
|
6106
|
-
attachment: true,
|
|
6107
|
-
temperature: true,
|
|
6108
|
-
knowledge: '2025-11',
|
|
6109
|
-
releaseDate: '2025-11-15',
|
|
6110
|
-
lastUpdated: '2025-12-14',
|
|
6111
|
-
openWeights: false,
|
|
6112
|
-
cost: {
|
|
6113
|
-
input: 0,
|
|
6114
|
-
output: 0,
|
|
6115
|
-
},
|
|
6116
|
-
limit: {
|
|
6117
|
-
context: 1840000,
|
|
6118
|
-
output: 0,
|
|
6119
|
-
},
|
|
6120
|
-
},
|
|
6121
|
-
{
|
|
6122
|
-
id: 'openrouter/sherlock-think-alpha',
|
|
6123
|
-
label: 'Sherlock Think Alpha',
|
|
6124
|
-
modalities: {
|
|
6125
|
-
input: ['text', 'image'],
|
|
6126
|
-
output: ['text'],
|
|
6127
|
-
},
|
|
6128
|
-
toolCall: true,
|
|
6129
|
-
reasoningText: true,
|
|
6130
|
-
attachment: true,
|
|
6131
|
-
temperature: true,
|
|
6132
|
-
knowledge: '2025-11',
|
|
6133
|
-
releaseDate: '2025-11-15',
|
|
6134
|
-
lastUpdated: '2025-12-14',
|
|
6135
|
-
openWeights: false,
|
|
6136
|
-
cost: {
|
|
6137
|
-
input: 0,
|
|
6138
|
-
output: 0,
|
|
6139
|
-
},
|
|
6140
|
-
limit: {
|
|
6141
|
-
context: 1840000,
|
|
6142
|
-
output: 0,
|
|
6143
|
-
},
|
|
6144
|
-
},
|
|
6145
5984
|
{
|
|
6146
5985
|
id: 'prime-intellect/intellect-3',
|
|
6147
5986
|
ownedBy: 'zai',
|
|
@@ -6191,54 +6030,6 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
6191
6030
|
output: 8192,
|
|
6192
6031
|
},
|
|
6193
6032
|
},
|
|
6194
|
-
{
|
|
6195
|
-
id: 'qwen/qwen-2.5-vl-7b-instruct:free',
|
|
6196
|
-
label: 'Qwen2.5-VL 7B Instruct (free)',
|
|
6197
|
-
modalities: {
|
|
6198
|
-
input: ['text', 'image'],
|
|
6199
|
-
output: ['text'],
|
|
6200
|
-
},
|
|
6201
|
-
toolCall: true,
|
|
6202
|
-
reasoningText: false,
|
|
6203
|
-
attachment: true,
|
|
6204
|
-
temperature: true,
|
|
6205
|
-
knowledge: '2025-02',
|
|
6206
|
-
releaseDate: '2024-08-28',
|
|
6207
|
-
lastUpdated: '2024-08-28',
|
|
6208
|
-
openWeights: true,
|
|
6209
|
-
cost: {
|
|
6210
|
-
input: 0,
|
|
6211
|
-
output: 0,
|
|
6212
|
-
},
|
|
6213
|
-
limit: {
|
|
6214
|
-
context: 32768,
|
|
6215
|
-
output: 32768,
|
|
6216
|
-
},
|
|
6217
|
-
},
|
|
6218
|
-
{
|
|
6219
|
-
id: 'qwen/qwen2.5-vl-32b-instruct:free',
|
|
6220
|
-
label: 'Qwen2.5 VL 32B Instruct (free)',
|
|
6221
|
-
modalities: {
|
|
6222
|
-
input: ['text', 'image', 'video'],
|
|
6223
|
-
output: ['text'],
|
|
6224
|
-
},
|
|
6225
|
-
toolCall: true,
|
|
6226
|
-
reasoningText: false,
|
|
6227
|
-
attachment: true,
|
|
6228
|
-
temperature: true,
|
|
6229
|
-
knowledge: '2025-03',
|
|
6230
|
-
releaseDate: '2025-03-24',
|
|
6231
|
-
lastUpdated: '2025-03-24',
|
|
6232
|
-
openWeights: true,
|
|
6233
|
-
cost: {
|
|
6234
|
-
input: 0,
|
|
6235
|
-
output: 0,
|
|
6236
|
-
},
|
|
6237
|
-
limit: {
|
|
6238
|
-
context: 8192,
|
|
6239
|
-
output: 8192,
|
|
6240
|
-
},
|
|
6241
|
-
},
|
|
6242
6033
|
{
|
|
6243
6034
|
id: 'qwen/qwen2.5-vl-72b-instruct',
|
|
6244
6035
|
label: 'Qwen2.5 VL 72B Instruct',
|
|
@@ -6263,54 +6054,6 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
6263
6054
|
output: 8192,
|
|
6264
6055
|
},
|
|
6265
6056
|
},
|
|
6266
|
-
{
|
|
6267
|
-
id: 'qwen/qwen2.5-vl-72b-instruct:free',
|
|
6268
|
-
label: 'Qwen2.5 VL 72B Instruct (free)',
|
|
6269
|
-
modalities: {
|
|
6270
|
-
input: ['text', 'image'],
|
|
6271
|
-
output: ['text'],
|
|
6272
|
-
},
|
|
6273
|
-
toolCall: true,
|
|
6274
|
-
reasoningText: false,
|
|
6275
|
-
attachment: true,
|
|
6276
|
-
temperature: true,
|
|
6277
|
-
knowledge: '2025-02',
|
|
6278
|
-
releaseDate: '2025-02-01',
|
|
6279
|
-
lastUpdated: '2025-02-01',
|
|
6280
|
-
openWeights: true,
|
|
6281
|
-
cost: {
|
|
6282
|
-
input: 0,
|
|
6283
|
-
output: 0,
|
|
6284
|
-
},
|
|
6285
|
-
limit: {
|
|
6286
|
-
context: 32768,
|
|
6287
|
-
output: 32768,
|
|
6288
|
-
},
|
|
6289
|
-
},
|
|
6290
|
-
{
|
|
6291
|
-
id: 'qwen/qwen3-14b:free',
|
|
6292
|
-
label: 'Qwen3 14B (free)',
|
|
6293
|
-
modalities: {
|
|
6294
|
-
input: ['text'],
|
|
6295
|
-
output: ['text'],
|
|
6296
|
-
},
|
|
6297
|
-
toolCall: true,
|
|
6298
|
-
reasoningText: true,
|
|
6299
|
-
attachment: false,
|
|
6300
|
-
temperature: true,
|
|
6301
|
-
knowledge: '2025-04',
|
|
6302
|
-
releaseDate: '2025-04-28',
|
|
6303
|
-
lastUpdated: '2025-04-28',
|
|
6304
|
-
openWeights: true,
|
|
6305
|
-
cost: {
|
|
6306
|
-
input: 0,
|
|
6307
|
-
output: 0,
|
|
6308
|
-
},
|
|
6309
|
-
limit: {
|
|
6310
|
-
context: 40960,
|
|
6311
|
-
output: 40960,
|
|
6312
|
-
},
|
|
6313
|
-
},
|
|
6314
6057
|
{
|
|
6315
6058
|
id: 'qwen/qwen3-235b-a22b-07-25',
|
|
6316
6059
|
label: 'Qwen3 235B A22B Instruct 2507',
|
|
@@ -6335,30 +6078,6 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
6335
6078
|
output: 131072,
|
|
6336
6079
|
},
|
|
6337
6080
|
},
|
|
6338
|
-
{
|
|
6339
|
-
id: 'qwen/qwen3-235b-a22b-07-25:free',
|
|
6340
|
-
label: 'Qwen3 235B A22B Instruct 2507 (free)',
|
|
6341
|
-
modalities: {
|
|
6342
|
-
input: ['text'],
|
|
6343
|
-
output: ['text'],
|
|
6344
|
-
},
|
|
6345
|
-
toolCall: true,
|
|
6346
|
-
reasoningText: false,
|
|
6347
|
-
attachment: false,
|
|
6348
|
-
temperature: true,
|
|
6349
|
-
knowledge: '2025-04',
|
|
6350
|
-
releaseDate: '2025-04-28',
|
|
6351
|
-
lastUpdated: '2025-07-21',
|
|
6352
|
-
openWeights: true,
|
|
6353
|
-
cost: {
|
|
6354
|
-
input: 0,
|
|
6355
|
-
output: 0,
|
|
6356
|
-
},
|
|
6357
|
-
limit: {
|
|
6358
|
-
context: 262144,
|
|
6359
|
-
output: 131072,
|
|
6360
|
-
},
|
|
6361
|
-
},
|
|
6362
6081
|
{
|
|
6363
6082
|
id: 'qwen/qwen3-235b-a22b-thinking-2507',
|
|
6364
6083
|
label: 'Qwen3 235B A22B Thinking 2507',
|
|
@@ -6383,30 +6102,6 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
6383
6102
|
output: 81920,
|
|
6384
6103
|
},
|
|
6385
6104
|
},
|
|
6386
|
-
{
|
|
6387
|
-
id: 'qwen/qwen3-235b-a22b:free',
|
|
6388
|
-
label: 'Qwen3 235B A22B (free)',
|
|
6389
|
-
modalities: {
|
|
6390
|
-
input: ['text'],
|
|
6391
|
-
output: ['text'],
|
|
6392
|
-
},
|
|
6393
|
-
toolCall: true,
|
|
6394
|
-
reasoningText: true,
|
|
6395
|
-
attachment: false,
|
|
6396
|
-
temperature: true,
|
|
6397
|
-
knowledge: '2025-04',
|
|
6398
|
-
releaseDate: '2025-04-28',
|
|
6399
|
-
lastUpdated: '2025-04-28',
|
|
6400
|
-
openWeights: true,
|
|
6401
|
-
cost: {
|
|
6402
|
-
input: 0,
|
|
6403
|
-
output: 0,
|
|
6404
|
-
},
|
|
6405
|
-
limit: {
|
|
6406
|
-
context: 131072,
|
|
6407
|
-
output: 131072,
|
|
6408
|
-
},
|
|
6409
|
-
},
|
|
6410
6105
|
{
|
|
6411
6106
|
id: 'qwen/qwen3-30b-a3b-instruct-2507',
|
|
6412
6107
|
label: 'Qwen3 30B A3B Instruct 2507',
|
|
@@ -6423,113 +6118,17 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
6423
6118
|
lastUpdated: '2025-07-29',
|
|
6424
6119
|
openWeights: true,
|
|
6425
6120
|
cost: {
|
|
6426
|
-
input: 0.2,
|
|
6427
|
-
output: 0.8,
|
|
6428
|
-
},
|
|
6429
|
-
limit: {
|
|
6430
|
-
context: 262000,
|
|
6431
|
-
output: 262000,
|
|
6432
|
-
},
|
|
6433
|
-
},
|
|
6434
|
-
{
|
|
6435
|
-
id: 'qwen/qwen3-30b-a3b-thinking-2507',
|
|
6436
|
-
label: 'Qwen3 30B A3B Thinking 2507',
|
|
6437
|
-
modalities: {
|
|
6438
|
-
input: ['text'],
|
|
6439
|
-
output: ['text'],
|
|
6440
|
-
},
|
|
6441
|
-
toolCall: true,
|
|
6442
|
-
reasoningText: true,
|
|
6443
|
-
attachment: false,
|
|
6444
|
-
temperature: true,
|
|
6445
|
-
knowledge: '2025-04',
|
|
6446
|
-
releaseDate: '2025-07-29',
|
|
6447
|
-
lastUpdated: '2025-07-29',
|
|
6448
|
-
openWeights: true,
|
|
6449
|
-
cost: {
|
|
6450
|
-
input: 0.2,
|
|
6451
|
-
output: 0.8,
|
|
6452
|
-
},
|
|
6453
|
-
limit: {
|
|
6454
|
-
context: 262000,
|
|
6455
|
-
output: 262000,
|
|
6456
|
-
},
|
|
6457
|
-
},
|
|
6458
|
-
{
|
|
6459
|
-
id: 'qwen/qwen3-30b-a3b:free',
|
|
6460
|
-
label: 'Qwen3 30B A3B (free)',
|
|
6461
|
-
modalities: {
|
|
6462
|
-
input: ['text'],
|
|
6463
|
-
output: ['text'],
|
|
6464
|
-
},
|
|
6465
|
-
toolCall: true,
|
|
6466
|
-
reasoningText: true,
|
|
6467
|
-
attachment: false,
|
|
6468
|
-
temperature: true,
|
|
6469
|
-
knowledge: '2025-04',
|
|
6470
|
-
releaseDate: '2025-04-28',
|
|
6471
|
-
lastUpdated: '2025-04-28',
|
|
6472
|
-
openWeights: true,
|
|
6473
|
-
cost: {
|
|
6474
|
-
input: 0,
|
|
6475
|
-
output: 0,
|
|
6476
|
-
},
|
|
6477
|
-
limit: {
|
|
6478
|
-
context: 40960,
|
|
6479
|
-
output: 40960,
|
|
6480
|
-
},
|
|
6481
|
-
},
|
|
6482
|
-
{
|
|
6483
|
-
id: 'qwen/qwen3-32b:free',
|
|
6484
|
-
label: 'Qwen3 32B (free)',
|
|
6485
|
-
modalities: {
|
|
6486
|
-
input: ['text'],
|
|
6487
|
-
output: ['text'],
|
|
6488
|
-
},
|
|
6489
|
-
toolCall: true,
|
|
6490
|
-
reasoningText: true,
|
|
6491
|
-
attachment: false,
|
|
6492
|
-
temperature: true,
|
|
6493
|
-
knowledge: '2025-04',
|
|
6494
|
-
releaseDate: '2025-04-28',
|
|
6495
|
-
lastUpdated: '2025-04-28',
|
|
6496
|
-
openWeights: true,
|
|
6497
|
-
cost: {
|
|
6498
|
-
input: 0,
|
|
6499
|
-
output: 0,
|
|
6500
|
-
},
|
|
6501
|
-
limit: {
|
|
6502
|
-
context: 40960,
|
|
6503
|
-
output: 40960,
|
|
6504
|
-
},
|
|
6505
|
-
},
|
|
6506
|
-
{
|
|
6507
|
-
id: 'qwen/qwen3-4b:free',
|
|
6508
|
-
label: 'Qwen3 4B (free)',
|
|
6509
|
-
modalities: {
|
|
6510
|
-
input: ['text'],
|
|
6511
|
-
output: ['text'],
|
|
6512
|
-
},
|
|
6513
|
-
toolCall: true,
|
|
6514
|
-
reasoningText: true,
|
|
6515
|
-
attachment: false,
|
|
6516
|
-
temperature: true,
|
|
6517
|
-
knowledge: '2025-04',
|
|
6518
|
-
releaseDate: '2025-04-30',
|
|
6519
|
-
lastUpdated: '2025-07-23',
|
|
6520
|
-
openWeights: true,
|
|
6521
|
-
cost: {
|
|
6522
|
-
input: 0,
|
|
6523
|
-
output: 0,
|
|
6121
|
+
input: 0.2,
|
|
6122
|
+
output: 0.8,
|
|
6524
6123
|
},
|
|
6525
6124
|
limit: {
|
|
6526
|
-
context:
|
|
6527
|
-
output:
|
|
6125
|
+
context: 262000,
|
|
6126
|
+
output: 262000,
|
|
6528
6127
|
},
|
|
6529
6128
|
},
|
|
6530
6129
|
{
|
|
6531
|
-
id: 'qwen/qwen3-
|
|
6532
|
-
label: 'Qwen3
|
|
6130
|
+
id: 'qwen/qwen3-30b-a3b-thinking-2507',
|
|
6131
|
+
label: 'Qwen3 30B A3B Thinking 2507',
|
|
6533
6132
|
modalities: {
|
|
6534
6133
|
input: ['text'],
|
|
6535
6134
|
output: ['text'],
|
|
@@ -6539,16 +6138,16 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
6539
6138
|
attachment: false,
|
|
6540
6139
|
temperature: true,
|
|
6541
6140
|
knowledge: '2025-04',
|
|
6542
|
-
releaseDate: '2025-
|
|
6543
|
-
lastUpdated: '2025-
|
|
6141
|
+
releaseDate: '2025-07-29',
|
|
6142
|
+
lastUpdated: '2025-07-29',
|
|
6544
6143
|
openWeights: true,
|
|
6545
6144
|
cost: {
|
|
6546
|
-
input: 0,
|
|
6547
|
-
output: 0,
|
|
6145
|
+
input: 0.2,
|
|
6146
|
+
output: 0.8,
|
|
6548
6147
|
},
|
|
6549
6148
|
limit: {
|
|
6550
|
-
context:
|
|
6551
|
-
output:
|
|
6149
|
+
context: 262000,
|
|
6150
|
+
output: 262000,
|
|
6552
6151
|
},
|
|
6553
6152
|
},
|
|
6554
6153
|
{
|
|
@@ -6647,30 +6246,6 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
6647
6246
|
output: 32768,
|
|
6648
6247
|
},
|
|
6649
6248
|
},
|
|
6650
|
-
{
|
|
6651
|
-
id: 'qwen/qwen3-coder:free',
|
|
6652
|
-
label: 'Qwen3 Coder 480B A35B Instruct (free)',
|
|
6653
|
-
modalities: {
|
|
6654
|
-
input: ['text'],
|
|
6655
|
-
output: ['text'],
|
|
6656
|
-
},
|
|
6657
|
-
toolCall: true,
|
|
6658
|
-
reasoningText: false,
|
|
6659
|
-
attachment: false,
|
|
6660
|
-
temperature: true,
|
|
6661
|
-
knowledge: '2025-04',
|
|
6662
|
-
releaseDate: '2025-07-23',
|
|
6663
|
-
lastUpdated: '2025-07-23',
|
|
6664
|
-
openWeights: true,
|
|
6665
|
-
cost: {
|
|
6666
|
-
input: 0,
|
|
6667
|
-
output: 0,
|
|
6668
|
-
},
|
|
6669
|
-
limit: {
|
|
6670
|
-
context: 262144,
|
|
6671
|
-
output: 66536,
|
|
6672
|
-
},
|
|
6673
|
-
},
|
|
6674
6249
|
{
|
|
6675
6250
|
id: 'qwen/qwen3-max',
|
|
6676
6251
|
label: 'Qwen3 Max',
|
|
@@ -6718,30 +6293,6 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
6718
6293
|
output: 262144,
|
|
6719
6294
|
},
|
|
6720
6295
|
},
|
|
6721
|
-
{
|
|
6722
|
-
id: 'qwen/qwen3-next-80b-a3b-instruct:free',
|
|
6723
|
-
label: 'Qwen3 Next 80B A3B Instruct (free)',
|
|
6724
|
-
modalities: {
|
|
6725
|
-
input: ['text'],
|
|
6726
|
-
output: ['text'],
|
|
6727
|
-
},
|
|
6728
|
-
toolCall: true,
|
|
6729
|
-
reasoningText: false,
|
|
6730
|
-
attachment: false,
|
|
6731
|
-
temperature: true,
|
|
6732
|
-
knowledge: '2025-04',
|
|
6733
|
-
releaseDate: '2025-09-11',
|
|
6734
|
-
lastUpdated: '2025-09-11',
|
|
6735
|
-
openWeights: true,
|
|
6736
|
-
cost: {
|
|
6737
|
-
input: 0,
|
|
6738
|
-
output: 0,
|
|
6739
|
-
},
|
|
6740
|
-
limit: {
|
|
6741
|
-
context: 262144,
|
|
6742
|
-
output: 262144,
|
|
6743
|
-
},
|
|
6744
|
-
},
|
|
6745
6296
|
{
|
|
6746
6297
|
id: 'qwen/qwen3-next-80b-a3b-thinking',
|
|
6747
6298
|
label: 'Qwen3 Next 80B A3B Thinking',
|
|
@@ -6791,8 +6342,8 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
6791
6342
|
},
|
|
6792
6343
|
},
|
|
6793
6344
|
{
|
|
6794
|
-
id: 'qwen/qwen3.5-
|
|
6795
|
-
label: 'Qwen3.5
|
|
6345
|
+
id: 'qwen/qwen3.5-flash-02-23',
|
|
6346
|
+
label: 'Qwen: Qwen3.5-Flash',
|
|
6796
6347
|
modalities: {
|
|
6797
6348
|
input: ['text', 'image', 'video'],
|
|
6798
6349
|
output: ['text'],
|
|
@@ -6801,13 +6352,12 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
6801
6352
|
reasoningText: true,
|
|
6802
6353
|
attachment: true,
|
|
6803
6354
|
temperature: true,
|
|
6804
|
-
|
|
6805
|
-
|
|
6806
|
-
lastUpdated: '2026-02-16',
|
|
6355
|
+
releaseDate: '2026-02-25',
|
|
6356
|
+
lastUpdated: '2026-02-25',
|
|
6807
6357
|
openWeights: false,
|
|
6808
6358
|
cost: {
|
|
6809
|
-
input: 0.
|
|
6810
|
-
output:
|
|
6359
|
+
input: 0.065,
|
|
6360
|
+
output: 0.26,
|
|
6811
6361
|
},
|
|
6812
6362
|
limit: {
|
|
6813
6363
|
context: 1000000,
|
|
@@ -6815,75 +6365,51 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
6815
6365
|
},
|
|
6816
6366
|
},
|
|
6817
6367
|
{
|
|
6818
|
-
id: 'qwen/
|
|
6819
|
-
label: '
|
|
6820
|
-
modalities: {
|
|
6821
|
-
input: ['text'],
|
|
6822
|
-
output: ['text'],
|
|
6823
|
-
},
|
|
6824
|
-
toolCall: true,
|
|
6825
|
-
reasoningText: true,
|
|
6826
|
-
attachment: false,
|
|
6827
|
-
temperature: true,
|
|
6828
|
-
knowledge: '2025-03',
|
|
6829
|
-
releaseDate: '2025-03-05',
|
|
6830
|
-
lastUpdated: '2025-03-05',
|
|
6831
|
-
openWeights: true,
|
|
6832
|
-
cost: {
|
|
6833
|
-
input: 0,
|
|
6834
|
-
output: 0,
|
|
6835
|
-
},
|
|
6836
|
-
limit: {
|
|
6837
|
-
context: 32768,
|
|
6838
|
-
output: 32768,
|
|
6839
|
-
},
|
|
6840
|
-
},
|
|
6841
|
-
{
|
|
6842
|
-
id: 'rekaai/reka-flash-3',
|
|
6843
|
-
label: 'Reka Flash 3',
|
|
6368
|
+
id: 'qwen/qwen3.5-plus-02-15',
|
|
6369
|
+
label: 'Qwen3.5 Plus 2026-02-15',
|
|
6844
6370
|
modalities: {
|
|
6845
|
-
input: ['text'],
|
|
6371
|
+
input: ['text', 'image', 'video'],
|
|
6846
6372
|
output: ['text'],
|
|
6847
6373
|
},
|
|
6848
6374
|
toolCall: true,
|
|
6849
6375
|
reasoningText: true,
|
|
6850
|
-
attachment:
|
|
6376
|
+
attachment: true,
|
|
6851
6377
|
temperature: true,
|
|
6852
|
-
knowledge: '
|
|
6853
|
-
releaseDate: '
|
|
6854
|
-
lastUpdated: '
|
|
6855
|
-
openWeights:
|
|
6378
|
+
knowledge: '2025-04',
|
|
6379
|
+
releaseDate: '2026-02-16',
|
|
6380
|
+
lastUpdated: '2026-02-16',
|
|
6381
|
+
openWeights: false,
|
|
6856
6382
|
cost: {
|
|
6857
|
-
input: 0,
|
|
6858
|
-
output:
|
|
6383
|
+
input: 0.4,
|
|
6384
|
+
output: 2.4,
|
|
6859
6385
|
},
|
|
6860
6386
|
limit: {
|
|
6861
|
-
context:
|
|
6862
|
-
output:
|
|
6387
|
+
context: 1000000,
|
|
6388
|
+
output: 65536,
|
|
6863
6389
|
},
|
|
6864
6390
|
},
|
|
6865
6391
|
{
|
|
6866
|
-
id: '
|
|
6867
|
-
label: '
|
|
6392
|
+
id: 'qwen/qwen3.6-plus',
|
|
6393
|
+
label: 'Qwen3.6 Plus',
|
|
6868
6394
|
modalities: {
|
|
6869
|
-
input: ['text'],
|
|
6395
|
+
input: ['text', 'image', 'video'],
|
|
6870
6396
|
output: ['text'],
|
|
6871
6397
|
},
|
|
6872
6398
|
toolCall: true,
|
|
6873
6399
|
reasoningText: true,
|
|
6874
|
-
attachment:
|
|
6400
|
+
attachment: true,
|
|
6875
6401
|
temperature: true,
|
|
6876
|
-
knowledge: '2025-
|
|
6877
|
-
releaseDate: '
|
|
6878
|
-
lastUpdated: '
|
|
6879
|
-
openWeights:
|
|
6402
|
+
knowledge: '2025-04',
|
|
6403
|
+
releaseDate: '2026-04-02',
|
|
6404
|
+
lastUpdated: '2026-04-02',
|
|
6405
|
+
openWeights: false,
|
|
6880
6406
|
cost: {
|
|
6881
|
-
input: 0,
|
|
6882
|
-
output:
|
|
6407
|
+
input: 0.325,
|
|
6408
|
+
output: 1.95,
|
|
6883
6409
|
},
|
|
6884
6410
|
limit: {
|
|
6885
|
-
context:
|
|
6886
|
-
output:
|
|
6411
|
+
context: 1000000,
|
|
6412
|
+
output: 65536,
|
|
6887
6413
|
},
|
|
6888
6414
|
},
|
|
6889
6415
|
{
|
|
@@ -6983,103 +6509,6 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
6983
6509
|
output: 256000,
|
|
6984
6510
|
},
|
|
6985
6511
|
},
|
|
6986
|
-
{
|
|
6987
|
-
id: 'stepfun/step-3.5-flash:free',
|
|
6988
|
-
label: 'Step 3.5 Flash (free)',
|
|
6989
|
-
modalities: {
|
|
6990
|
-
input: ['text'],
|
|
6991
|
-
output: ['text'],
|
|
6992
|
-
},
|
|
6993
|
-
toolCall: true,
|
|
6994
|
-
reasoningText: true,
|
|
6995
|
-
attachment: false,
|
|
6996
|
-
temperature: true,
|
|
6997
|
-
knowledge: '2025-01',
|
|
6998
|
-
releaseDate: '2026-01-29',
|
|
6999
|
-
lastUpdated: '2026-01-29',
|
|
7000
|
-
openWeights: true,
|
|
7001
|
-
cost: {
|
|
7002
|
-
input: 0,
|
|
7003
|
-
output: 0,
|
|
7004
|
-
},
|
|
7005
|
-
limit: {
|
|
7006
|
-
context: 256000,
|
|
7007
|
-
output: 256000,
|
|
7008
|
-
},
|
|
7009
|
-
},
|
|
7010
|
-
{
|
|
7011
|
-
id: 'thudm/glm-z1-32b:free',
|
|
7012
|
-
ownedBy: 'zai',
|
|
7013
|
-
label: 'GLM Z1 32B (free)',
|
|
7014
|
-
modalities: {
|
|
7015
|
-
input: ['text'],
|
|
7016
|
-
output: ['text'],
|
|
7017
|
-
},
|
|
7018
|
-
toolCall: true,
|
|
7019
|
-
reasoningText: true,
|
|
7020
|
-
attachment: false,
|
|
7021
|
-
temperature: true,
|
|
7022
|
-
knowledge: '2025-04',
|
|
7023
|
-
releaseDate: '2025-04-17',
|
|
7024
|
-
lastUpdated: '2025-04-17',
|
|
7025
|
-
openWeights: true,
|
|
7026
|
-
cost: {
|
|
7027
|
-
input: 0,
|
|
7028
|
-
output: 0,
|
|
7029
|
-
},
|
|
7030
|
-
limit: {
|
|
7031
|
-
context: 32768,
|
|
7032
|
-
output: 32768,
|
|
7033
|
-
},
|
|
7034
|
-
},
|
|
7035
|
-
{
|
|
7036
|
-
id: 'tngtech/deepseek-r1t2-chimera:free',
|
|
7037
|
-
label: 'DeepSeek R1T2 Chimera (free)',
|
|
7038
|
-
modalities: {
|
|
7039
|
-
input: ['text'],
|
|
7040
|
-
output: ['text'],
|
|
7041
|
-
},
|
|
7042
|
-
toolCall: false,
|
|
7043
|
-
reasoningText: true,
|
|
7044
|
-
attachment: false,
|
|
7045
|
-
temperature: true,
|
|
7046
|
-
knowledge: '2025-07',
|
|
7047
|
-
releaseDate: '2025-07-08',
|
|
7048
|
-
lastUpdated: '2025-07-08',
|
|
7049
|
-
openWeights: true,
|
|
7050
|
-
cost: {
|
|
7051
|
-
input: 0,
|
|
7052
|
-
output: 0,
|
|
7053
|
-
},
|
|
7054
|
-
limit: {
|
|
7055
|
-
context: 163840,
|
|
7056
|
-
output: 163840,
|
|
7057
|
-
},
|
|
7058
|
-
},
|
|
7059
|
-
{
|
|
7060
|
-
id: 'tngtech/tng-r1t-chimera:free',
|
|
7061
|
-
label: 'R1T Chimera (free)',
|
|
7062
|
-
modalities: {
|
|
7063
|
-
input: ['text'],
|
|
7064
|
-
output: ['text'],
|
|
7065
|
-
},
|
|
7066
|
-
toolCall: true,
|
|
7067
|
-
reasoningText: true,
|
|
7068
|
-
attachment: false,
|
|
7069
|
-
temperature: true,
|
|
7070
|
-
knowledge: '2025-07',
|
|
7071
|
-
releaseDate: '2025-11-26',
|
|
7072
|
-
lastUpdated: '2026-01-31',
|
|
7073
|
-
openWeights: true,
|
|
7074
|
-
cost: {
|
|
7075
|
-
input: 0,
|
|
7076
|
-
output: 0,
|
|
7077
|
-
},
|
|
7078
|
-
limit: {
|
|
7079
|
-
context: 163840,
|
|
7080
|
-
output: 163840,
|
|
7081
|
-
},
|
|
7082
|
-
},
|
|
7083
6512
|
{
|
|
7084
6513
|
id: 'x-ai/grok-3',
|
|
7085
6514
|
ownedBy: 'xai',
|
|
@@ -7387,6 +6816,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
7387
6816
|
cost: {
|
|
7388
6817
|
input: 0.4,
|
|
7389
6818
|
output: 2,
|
|
6819
|
+
cacheRead: 0.08,
|
|
7390
6820
|
},
|
|
7391
6821
|
limit: {
|
|
7392
6822
|
context: 262144,
|
|
@@ -7410,6 +6840,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
7410
6840
|
cost: {
|
|
7411
6841
|
input: 1,
|
|
7412
6842
|
output: 3,
|
|
6843
|
+
cacheRead: 0.2,
|
|
7413
6844
|
},
|
|
7414
6845
|
limit: {
|
|
7415
6846
|
context: 1048576,
|
|
@@ -7640,7 +7071,58 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
7640
7071
|
},
|
|
7641
7072
|
limit: {
|
|
7642
7073
|
context: 202752,
|
|
7643
|
-
output: 131000,
|
|
7074
|
+
output: 131000,
|
|
7075
|
+
},
|
|
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,
|
|
7644
7126
|
},
|
|
7645
7127
|
},
|
|
7646
7128
|
],
|
|
@@ -7832,6 +7314,36 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
7832
7314
|
npm: '@ai-sdk/anthropic',
|
|
7833
7315
|
},
|
|
7834
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
|
+
},
|
|
7835
7347
|
{
|
|
7836
7348
|
id: 'claude-sonnet-4',
|
|
7837
7349
|
ownedBy: 'anthropic',
|
|
@@ -8139,6 +7651,32 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
8139
7651
|
output: 131072,
|
|
8140
7652
|
},
|
|
8141
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
|
+
},
|
|
8142
7680
|
{
|
|
8143
7681
|
id: 'gpt-5',
|
|
8144
7682
|
ownedBy: 'openai',
|
|
@@ -8910,7 +8448,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
8910
8448
|
cacheRead: 0,
|
|
8911
8449
|
},
|
|
8912
8450
|
limit: {
|
|
8913
|
-
context:
|
|
8451
|
+
context: 204800,
|
|
8914
8452
|
output: 128000,
|
|
8915
8453
|
},
|
|
8916
8454
|
},
|
|
@@ -8938,6 +8476,89 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
8938
8476
|
output: 65536,
|
|
8939
8477
|
},
|
|
8940
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,
|
|
8556
|
+
},
|
|
8557
|
+
limit: {
|
|
8558
|
+
context: 1048576,
|
|
8559
|
+
output: 64000,
|
|
8560
|
+
},
|
|
8561
|
+
},
|
|
8941
8562
|
{
|
|
8942
8563
|
id: 'trinity-large-preview-free',
|
|
8943
8564
|
label: 'Trinity Large Preview',
|
|
@@ -9184,6 +8805,33 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
9184
8805
|
output: 131072,
|
|
9185
8806
|
},
|
|
9186
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
|
+
},
|
|
9187
8835
|
{
|
|
9188
8836
|
id: 'glm-5',
|
|
9189
8837
|
ownedBy: 'zai',
|
|
@@ -9236,6 +8884,58 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
9236
8884
|
output: 131072,
|
|
9237
8885
|
},
|
|
9238
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
|
+
},
|
|
9239
8939
|
],
|
|
9240
8940
|
label: 'Z.AI',
|
|
9241
8941
|
env: ['ZHIPU_API_KEY'],
|
|
@@ -9537,6 +9237,58 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
9537
9237
|
output: 131072,
|
|
9538
9238
|
},
|
|
9539
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
|
+
},
|
|
9540
9292
|
],
|
|
9541
9293
|
label: 'Z.AI Coding Plan',
|
|
9542
9294
|
env: ['ZHIPU_API_KEY'],
|
|
@@ -9896,7 +9648,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
9896
9648
|
output: 0,
|
|
9897
9649
|
},
|
|
9898
9650
|
limit: {
|
|
9899
|
-
context:
|
|
9651
|
+
context: 144000,
|
|
9900
9652
|
output: 32000,
|
|
9901
9653
|
},
|
|
9902
9654
|
},
|
|
@@ -9921,7 +9673,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
9921
9673
|
output: 0,
|
|
9922
9674
|
},
|
|
9923
9675
|
limit: {
|
|
9924
|
-
context:
|
|
9676
|
+
context: 160000,
|
|
9925
9677
|
output: 32000,
|
|
9926
9678
|
},
|
|
9927
9679
|
},
|
|
@@ -9946,7 +9698,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
9946
9698
|
output: 0,
|
|
9947
9699
|
},
|
|
9948
9700
|
limit: {
|
|
9949
|
-
context:
|
|
9701
|
+
context: 144000,
|
|
9950
9702
|
output: 64000,
|
|
9951
9703
|
},
|
|
9952
9704
|
},
|
|
@@ -9996,7 +9748,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
9996
9748
|
output: 0,
|
|
9997
9749
|
},
|
|
9998
9750
|
limit: {
|
|
9999
|
-
context:
|
|
9751
|
+
context: 216000,
|
|
10000
9752
|
output: 16000,
|
|
10001
9753
|
},
|
|
10002
9754
|
},
|
|
@@ -10021,7 +9773,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
10021
9773
|
output: 0,
|
|
10022
9774
|
},
|
|
10023
9775
|
limit: {
|
|
10024
|
-
context:
|
|
9776
|
+
context: 144000,
|
|
10025
9777
|
output: 32000,
|
|
10026
9778
|
},
|
|
10027
9779
|
},
|
|
@@ -10045,7 +9797,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
10045
9797
|
output: 0,
|
|
10046
9798
|
},
|
|
10047
9799
|
limit: {
|
|
10048
|
-
context:
|
|
9800
|
+
context: 200000,
|
|
10049
9801
|
output: 32000,
|
|
10050
9802
|
},
|
|
10051
9803
|
},
|
|
@@ -10170,7 +9922,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
10170
9922
|
output: 0,
|
|
10171
9923
|
},
|
|
10172
9924
|
limit: {
|
|
10173
|
-
context:
|
|
9925
|
+
context: 128000,
|
|
10174
9926
|
output: 16384,
|
|
10175
9927
|
},
|
|
10176
9928
|
},
|
|
@@ -10195,8 +9947,8 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
10195
9947
|
output: 0,
|
|
10196
9948
|
},
|
|
10197
9949
|
limit: {
|
|
10198
|
-
context:
|
|
10199
|
-
output:
|
|
9950
|
+
context: 128000,
|
|
9951
|
+
output: 4096,
|
|
10200
9952
|
},
|
|
10201
9953
|
},
|
|
10202
9954
|
{
|
|
@@ -10245,7 +9997,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
10245
9997
|
output: 0,
|
|
10246
9998
|
},
|
|
10247
9999
|
limit: {
|
|
10248
|
-
context:
|
|
10000
|
+
context: 264000,
|
|
10249
10001
|
output: 64000,
|
|
10250
10002
|
},
|
|
10251
10003
|
},
|
|
@@ -10270,7 +10022,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
10270
10022
|
output: 0,
|
|
10271
10023
|
},
|
|
10272
10024
|
limit: {
|
|
10273
|
-
context:
|
|
10025
|
+
context: 264000,
|
|
10274
10026
|
output: 64000,
|
|
10275
10027
|
},
|
|
10276
10028
|
},
|
|
@@ -10295,7 +10047,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
10295
10047
|
output: 0,
|
|
10296
10048
|
},
|
|
10297
10049
|
limit: {
|
|
10298
|
-
context:
|
|
10050
|
+
context: 400000,
|
|
10299
10051
|
output: 128000,
|
|
10300
10052
|
},
|
|
10301
10053
|
},
|
|
@@ -10320,7 +10072,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
10320
10072
|
output: 0,
|
|
10321
10073
|
},
|
|
10322
10074
|
limit: {
|
|
10323
|
-
context:
|
|
10075
|
+
context: 400000,
|
|
10324
10076
|
output: 128000,
|
|
10325
10077
|
},
|
|
10326
10078
|
},
|
|
@@ -10345,7 +10097,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
10345
10097
|
output: 0,
|
|
10346
10098
|
},
|
|
10347
10099
|
limit: {
|
|
10348
|
-
context:
|
|
10100
|
+
context: 400000,
|
|
10349
10101
|
output: 128000,
|
|
10350
10102
|
},
|
|
10351
10103
|
},
|
|
@@ -10452,7 +10204,7 @@ export const catalog: Partial<Record<ProviderId, ProviderCatalogEntry>> = {
|
|
|
10452
10204
|
{
|
|
10453
10205
|
id: 'gpt-5.4-mini',
|
|
10454
10206
|
ownedBy: 'openai',
|
|
10455
|
-
label: 'GPT-5.4
|
|
10207
|
+
label: 'GPT-5.4 Mini',
|
|
10456
10208
|
modalities: {
|
|
10457
10209
|
input: ['text', 'image'],
|
|
10458
10210
|
output: ['text'],
|