@dexto/core 1.7.0 → 1.7.2
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/dist/context/manager.cjs +3 -2
- package/dist/context/manager.d.ts.map +1 -1
- package/dist/context/manager.js +3 -2
- package/dist/llm/formatters/vercel.cjs +43 -29
- package/dist/llm/formatters/vercel.d.ts.map +1 -1
- package/dist/llm/formatters/vercel.js +49 -30
- package/dist/llm/registry/models.generated.cjs +967 -201
- package/dist/llm/registry/models.generated.d.ts +317 -27
- package/dist/llm/registry/models.generated.d.ts.map +1 -1
- package/dist/llm/registry/models.generated.js +967 -201
- package/dist/session/history/database.cjs +37 -54
- package/dist/session/history/database.d.ts +3 -18
- package/dist/session/history/database.d.ts.map +1 -1
- package/dist/session/history/database.js +37 -54
- package/package.json +1 -1
|
@@ -72,7 +72,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
72
72
|
supportsToolCall: true,
|
|
73
73
|
releaseDate: "2025-04-14",
|
|
74
74
|
modalities: {
|
|
75
|
-
input: ["text", "image"],
|
|
75
|
+
input: ["text", "image", "pdf"],
|
|
76
76
|
output: ["text"]
|
|
77
77
|
},
|
|
78
78
|
pricing: {
|
|
@@ -93,7 +93,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
93
93
|
supportsToolCall: true,
|
|
94
94
|
releaseDate: "2025-04-14",
|
|
95
95
|
modalities: {
|
|
96
|
-
input: ["text", "image"],
|
|
96
|
+
input: ["text", "image", "pdf"],
|
|
97
97
|
output: ["text"]
|
|
98
98
|
},
|
|
99
99
|
pricing: {
|
|
@@ -135,7 +135,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
135
135
|
supportsToolCall: true,
|
|
136
136
|
releaseDate: "2024-05-13",
|
|
137
137
|
modalities: {
|
|
138
|
-
input: ["text", "image"],
|
|
138
|
+
input: ["text", "image", "pdf"],
|
|
139
139
|
output: ["text"]
|
|
140
140
|
},
|
|
141
141
|
pricing: {
|
|
@@ -218,7 +218,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
218
218
|
supportsToolCall: true,
|
|
219
219
|
releaseDate: "2024-07-18",
|
|
220
220
|
modalities: {
|
|
221
|
-
input: ["text", "image"],
|
|
221
|
+
input: ["text", "image", "pdf"],
|
|
222
222
|
output: ["text"]
|
|
223
223
|
},
|
|
224
224
|
pricing: {
|
|
@@ -696,6 +696,97 @@ const MODELS_BY_PROVIDER = {
|
|
|
696
696
|
unit: "per_million_tokens"
|
|
697
697
|
}
|
|
698
698
|
},
|
|
699
|
+
{
|
|
700
|
+
name: "gpt-5.5",
|
|
701
|
+
displayName: "GPT-5.5",
|
|
702
|
+
maxInputTokens: 922e3,
|
|
703
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
704
|
+
reasoning: true,
|
|
705
|
+
supportsTemperature: false,
|
|
706
|
+
supportsToolCall: true,
|
|
707
|
+
releaseDate: "2026-04-23",
|
|
708
|
+
modalities: {
|
|
709
|
+
input: ["text", "image", "pdf"],
|
|
710
|
+
output: ["text"]
|
|
711
|
+
},
|
|
712
|
+
pricing: {
|
|
713
|
+
inputPerM: 5,
|
|
714
|
+
outputPerM: 30,
|
|
715
|
+
cacheReadPerM: 0.5,
|
|
716
|
+
contextOver200kPerM: {
|
|
717
|
+
inputPerM: 10,
|
|
718
|
+
outputPerM: 45
|
|
719
|
+
},
|
|
720
|
+
currency: "USD",
|
|
721
|
+
unit: "per_million_tokens"
|
|
722
|
+
}
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
name: "gpt-5.5-pro",
|
|
726
|
+
displayName: "GPT-5.5 Pro",
|
|
727
|
+
maxInputTokens: 922e3,
|
|
728
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
729
|
+
reasoning: true,
|
|
730
|
+
supportsTemperature: false,
|
|
731
|
+
supportsToolCall: true,
|
|
732
|
+
releaseDate: "2026-04-23",
|
|
733
|
+
modalities: {
|
|
734
|
+
input: ["text", "image", "pdf"],
|
|
735
|
+
output: ["text"]
|
|
736
|
+
},
|
|
737
|
+
pricing: {
|
|
738
|
+
inputPerM: 30,
|
|
739
|
+
outputPerM: 180,
|
|
740
|
+
contextOver200kPerM: {
|
|
741
|
+
inputPerM: 60,
|
|
742
|
+
outputPerM: 270
|
|
743
|
+
},
|
|
744
|
+
currency: "USD",
|
|
745
|
+
unit: "per_million_tokens"
|
|
746
|
+
}
|
|
747
|
+
},
|
|
748
|
+
{
|
|
749
|
+
name: "gpt-image-1",
|
|
750
|
+
displayName: "gpt-image-1",
|
|
751
|
+
maxInputTokens: 0,
|
|
752
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
753
|
+
reasoning: false,
|
|
754
|
+
supportsTemperature: false,
|
|
755
|
+
supportsToolCall: false,
|
|
756
|
+
releaseDate: "2025-04-24",
|
|
757
|
+
modalities: {
|
|
758
|
+
input: ["text", "image"],
|
|
759
|
+
output: ["image"]
|
|
760
|
+
}
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
name: "gpt-image-1-mini",
|
|
764
|
+
displayName: "gpt-image-1-mini",
|
|
765
|
+
maxInputTokens: 0,
|
|
766
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
767
|
+
reasoning: false,
|
|
768
|
+
supportsTemperature: false,
|
|
769
|
+
supportsToolCall: false,
|
|
770
|
+
releaseDate: "2025-09-26",
|
|
771
|
+
modalities: {
|
|
772
|
+
input: ["text", "image"],
|
|
773
|
+
output: ["text", "image"]
|
|
774
|
+
}
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
name: "gpt-image-1.5",
|
|
778
|
+
displayName: "gpt-image-1.5",
|
|
779
|
+
maxInputTokens: 0,
|
|
780
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
781
|
+
reasoning: false,
|
|
782
|
+
supportsTemperature: false,
|
|
783
|
+
supportsToolCall: false,
|
|
784
|
+
releaseDate: "2025-11-25",
|
|
785
|
+
modalities: {
|
|
786
|
+
input: ["text", "image"],
|
|
787
|
+
output: ["text", "image"]
|
|
788
|
+
}
|
|
789
|
+
},
|
|
699
790
|
{
|
|
700
791
|
name: "o1",
|
|
701
792
|
displayName: "o1",
|
|
@@ -706,7 +797,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
706
797
|
supportsToolCall: true,
|
|
707
798
|
releaseDate: "2024-12-05",
|
|
708
799
|
modalities: {
|
|
709
|
-
input: ["text", "image"],
|
|
800
|
+
input: ["text", "image", "pdf"],
|
|
710
801
|
output: ["text"]
|
|
711
802
|
},
|
|
712
803
|
pricing: {
|
|
@@ -789,7 +880,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
789
880
|
supportsToolCall: true,
|
|
790
881
|
releaseDate: "2025-04-16",
|
|
791
882
|
modalities: {
|
|
792
|
-
input: ["text", "image"],
|
|
883
|
+
input: ["text", "image", "pdf"],
|
|
793
884
|
output: ["text"]
|
|
794
885
|
},
|
|
795
886
|
pricing: {
|
|
@@ -1017,28 +1108,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
1017
1108
|
unit: "per_million_tokens"
|
|
1018
1109
|
}
|
|
1019
1110
|
},
|
|
1020
|
-
{
|
|
1021
|
-
name: "claude-3-7-sonnet-latest",
|
|
1022
|
-
displayName: "Claude Sonnet 3.7 (latest)",
|
|
1023
|
-
maxInputTokens: 2e5,
|
|
1024
|
-
supportedFileTypes: ["pdf", "image"],
|
|
1025
|
-
reasoning: true,
|
|
1026
|
-
supportsTemperature: true,
|
|
1027
|
-
supportsToolCall: true,
|
|
1028
|
-
releaseDate: "2025-02-19",
|
|
1029
|
-
modalities: {
|
|
1030
|
-
input: ["text", "image", "pdf"],
|
|
1031
|
-
output: ["text"]
|
|
1032
|
-
},
|
|
1033
|
-
pricing: {
|
|
1034
|
-
inputPerM: 3,
|
|
1035
|
-
outputPerM: 15,
|
|
1036
|
-
cacheReadPerM: 0.3,
|
|
1037
|
-
cacheWritePerM: 3.75,
|
|
1038
|
-
currency: "USD",
|
|
1039
|
-
unit: "per_million_tokens"
|
|
1040
|
-
}
|
|
1041
|
-
},
|
|
1042
1111
|
{
|
|
1043
1112
|
name: "claude-3-haiku-20240307",
|
|
1044
1113
|
displayName: "Claude Haiku 3",
|
|
@@ -1304,6 +1373,28 @@ const MODELS_BY_PROVIDER = {
|
|
|
1304
1373
|
unit: "per_million_tokens"
|
|
1305
1374
|
}
|
|
1306
1375
|
},
|
|
1376
|
+
{
|
|
1377
|
+
name: "claude-opus-4-7",
|
|
1378
|
+
displayName: "Claude Opus 4.7",
|
|
1379
|
+
maxInputTokens: 1e6,
|
|
1380
|
+
supportedFileTypes: ["pdf", "image"],
|
|
1381
|
+
reasoning: true,
|
|
1382
|
+
supportsTemperature: false,
|
|
1383
|
+
supportsToolCall: true,
|
|
1384
|
+
releaseDate: "2026-04-16",
|
|
1385
|
+
modalities: {
|
|
1386
|
+
input: ["text", "image", "pdf"],
|
|
1387
|
+
output: ["text"]
|
|
1388
|
+
},
|
|
1389
|
+
pricing: {
|
|
1390
|
+
inputPerM: 5,
|
|
1391
|
+
outputPerM: 25,
|
|
1392
|
+
cacheReadPerM: 0.5,
|
|
1393
|
+
cacheWritePerM: 6.25,
|
|
1394
|
+
currency: "USD",
|
|
1395
|
+
unit: "per_million_tokens"
|
|
1396
|
+
}
|
|
1397
|
+
},
|
|
1307
1398
|
{
|
|
1308
1399
|
name: "claude-sonnet-4-0",
|
|
1309
1400
|
displayName: "Claude Sonnet 4 (latest)",
|
|
@@ -1536,7 +1627,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1536
1627
|
pricing: {
|
|
1537
1628
|
inputPerM: 0.3,
|
|
1538
1629
|
outputPerM: 2.5,
|
|
1539
|
-
cacheReadPerM: 0.
|
|
1630
|
+
cacheReadPerM: 0.03,
|
|
1540
1631
|
inputAudioPerM: 1,
|
|
1541
1632
|
currency: "USD",
|
|
1542
1633
|
unit: "per_million_tokens"
|
|
@@ -1748,7 +1839,11 @@ const MODELS_BY_PROVIDER = {
|
|
|
1748
1839
|
pricing: {
|
|
1749
1840
|
inputPerM: 1.25,
|
|
1750
1841
|
outputPerM: 10,
|
|
1751
|
-
cacheReadPerM: 0.
|
|
1842
|
+
cacheReadPerM: 0.125,
|
|
1843
|
+
contextOver200kPerM: {
|
|
1844
|
+
inputPerM: 2.5,
|
|
1845
|
+
outputPerM: 15
|
|
1846
|
+
},
|
|
1752
1847
|
currency: "USD",
|
|
1753
1848
|
unit: "per_million_tokens"
|
|
1754
1849
|
}
|
|
@@ -3684,6 +3779,58 @@ const MODELS_BY_PROVIDER = {
|
|
|
3684
3779
|
currency: "USD",
|
|
3685
3780
|
unit: "per_million_tokens"
|
|
3686
3781
|
}
|
|
3782
|
+
},
|
|
3783
|
+
{
|
|
3784
|
+
name: "glm-5.1",
|
|
3785
|
+
displayName: "GLM-5.1",
|
|
3786
|
+
maxInputTokens: 2e5,
|
|
3787
|
+
supportedFileTypes: [],
|
|
3788
|
+
reasoning: true,
|
|
3789
|
+
supportsTemperature: true,
|
|
3790
|
+
supportsToolCall: true,
|
|
3791
|
+
releaseDate: "2026-03-27",
|
|
3792
|
+
modalities: {
|
|
3793
|
+
input: ["text"],
|
|
3794
|
+
output: ["text"]
|
|
3795
|
+
},
|
|
3796
|
+
interleaved: {
|
|
3797
|
+
field: "reasoning_content"
|
|
3798
|
+
},
|
|
3799
|
+
supportsInterleaved: true,
|
|
3800
|
+
pricing: {
|
|
3801
|
+
inputPerM: 6,
|
|
3802
|
+
outputPerM: 24,
|
|
3803
|
+
cacheReadPerM: 1.3,
|
|
3804
|
+
cacheWritePerM: 0,
|
|
3805
|
+
currency: "USD",
|
|
3806
|
+
unit: "per_million_tokens"
|
|
3807
|
+
}
|
|
3808
|
+
},
|
|
3809
|
+
{
|
|
3810
|
+
name: "glm-5v-turbo",
|
|
3811
|
+
displayName: "glm-5v-turbo",
|
|
3812
|
+
maxInputTokens: 2e5,
|
|
3813
|
+
supportedFileTypes: ["pdf", "image", "video"],
|
|
3814
|
+
reasoning: true,
|
|
3815
|
+
supportsTemperature: true,
|
|
3816
|
+
supportsToolCall: true,
|
|
3817
|
+
releaseDate: "2026-04-01",
|
|
3818
|
+
modalities: {
|
|
3819
|
+
input: ["text", "image", "video", "pdf"],
|
|
3820
|
+
output: ["text"]
|
|
3821
|
+
},
|
|
3822
|
+
interleaved: {
|
|
3823
|
+
field: "reasoning_content"
|
|
3824
|
+
},
|
|
3825
|
+
supportsInterleaved: true,
|
|
3826
|
+
pricing: {
|
|
3827
|
+
inputPerM: 5,
|
|
3828
|
+
outputPerM: 22,
|
|
3829
|
+
cacheReadPerM: 1.2,
|
|
3830
|
+
cacheWritePerM: 0,
|
|
3831
|
+
currency: "USD",
|
|
3832
|
+
unit: "per_million_tokens"
|
|
3833
|
+
}
|
|
3687
3834
|
}
|
|
3688
3835
|
],
|
|
3689
3836
|
openrouter: [
|
|
@@ -3845,6 +3992,32 @@ const MODELS_BY_PROVIDER = {
|
|
|
3845
3992
|
unit: "per_million_tokens"
|
|
3846
3993
|
}
|
|
3847
3994
|
},
|
|
3995
|
+
{
|
|
3996
|
+
name: "anthropic/claude-opus-4.7",
|
|
3997
|
+
displayName: "Claude Opus 4.7",
|
|
3998
|
+
maxInputTokens: 1e6,
|
|
3999
|
+
supportedFileTypes: ["pdf", "image"],
|
|
4000
|
+
reasoning: true,
|
|
4001
|
+
supportsTemperature: false,
|
|
4002
|
+
supportsToolCall: true,
|
|
4003
|
+
releaseDate: "2026-04-16",
|
|
4004
|
+
modalities: {
|
|
4005
|
+
input: ["text", "image", "pdf"],
|
|
4006
|
+
output: ["text"]
|
|
4007
|
+
},
|
|
4008
|
+
pricing: {
|
|
4009
|
+
inputPerM: 5,
|
|
4010
|
+
outputPerM: 25,
|
|
4011
|
+
cacheReadPerM: 0.5,
|
|
4012
|
+
cacheWritePerM: 6.25,
|
|
4013
|
+
contextOver200kPerM: {
|
|
4014
|
+
inputPerM: 10,
|
|
4015
|
+
outputPerM: 37.5
|
|
4016
|
+
},
|
|
4017
|
+
currency: "USD",
|
|
4018
|
+
unit: "per_million_tokens"
|
|
4019
|
+
}
|
|
4020
|
+
},
|
|
3848
4021
|
{
|
|
3849
4022
|
name: "anthropic/claude-sonnet-4",
|
|
3850
4023
|
displayName: "Claude Sonnet 4",
|
|
@@ -3944,21 +4117,21 @@ const MODELS_BY_PROVIDER = {
|
|
|
3944
4117
|
}
|
|
3945
4118
|
},
|
|
3946
4119
|
{
|
|
3947
|
-
name: "arcee-ai/trinity-
|
|
3948
|
-
displayName: "Trinity
|
|
3949
|
-
maxInputTokens:
|
|
4120
|
+
name: "arcee-ai/trinity-large-thinking",
|
|
4121
|
+
displayName: "Trinity Large Thinking",
|
|
4122
|
+
maxInputTokens: 262144,
|
|
3950
4123
|
supportedFileTypes: [],
|
|
3951
|
-
reasoning:
|
|
4124
|
+
reasoning: true,
|
|
3952
4125
|
supportsTemperature: true,
|
|
3953
4126
|
supportsToolCall: true,
|
|
3954
|
-
releaseDate: "2026-01
|
|
4127
|
+
releaseDate: "2026-04-01",
|
|
3955
4128
|
modalities: {
|
|
3956
4129
|
input: ["text"],
|
|
3957
4130
|
output: ["text"]
|
|
3958
4131
|
},
|
|
3959
4132
|
pricing: {
|
|
3960
|
-
inputPerM: 0,
|
|
3961
|
-
outputPerM: 0,
|
|
4133
|
+
inputPerM: 0.22,
|
|
4134
|
+
outputPerM: 0.85,
|
|
3962
4135
|
currency: "USD",
|
|
3963
4136
|
unit: "per_million_tokens"
|
|
3964
4137
|
}
|
|
@@ -4123,6 +4296,26 @@ const MODELS_BY_PROVIDER = {
|
|
|
4123
4296
|
unit: "per_million_tokens"
|
|
4124
4297
|
}
|
|
4125
4298
|
},
|
|
4299
|
+
{
|
|
4300
|
+
name: "deepseek/deepseek-r1",
|
|
4301
|
+
displayName: "DeepSeek: R1",
|
|
4302
|
+
maxInputTokens: 64e3,
|
|
4303
|
+
supportedFileTypes: [],
|
|
4304
|
+
reasoning: true,
|
|
4305
|
+
supportsTemperature: true,
|
|
4306
|
+
supportsToolCall: true,
|
|
4307
|
+
releaseDate: "2025-01-20",
|
|
4308
|
+
modalities: {
|
|
4309
|
+
input: ["text"],
|
|
4310
|
+
output: ["text"]
|
|
4311
|
+
},
|
|
4312
|
+
pricing: {
|
|
4313
|
+
inputPerM: 0.7,
|
|
4314
|
+
outputPerM: 2.5,
|
|
4315
|
+
currency: "USD",
|
|
4316
|
+
unit: "per_million_tokens"
|
|
4317
|
+
}
|
|
4318
|
+
},
|
|
4126
4319
|
{
|
|
4127
4320
|
name: "deepseek/deepseek-r1-distill-llama-70b",
|
|
4128
4321
|
displayName: "DeepSeek R1 Distill Llama 70B",
|
|
@@ -4224,53 +4417,103 @@ const MODELS_BY_PROVIDER = {
|
|
|
4224
4417
|
}
|
|
4225
4418
|
},
|
|
4226
4419
|
{
|
|
4227
|
-
name: "
|
|
4228
|
-
displayName: "
|
|
4420
|
+
name: "deepseek/deepseek-v4-flash",
|
|
4421
|
+
displayName: "DeepSeek V4 Flash",
|
|
4229
4422
|
maxInputTokens: 1048576,
|
|
4230
|
-
supportedFileTypes: [
|
|
4231
|
-
reasoning:
|
|
4423
|
+
supportedFileTypes: [],
|
|
4424
|
+
reasoning: true,
|
|
4232
4425
|
supportsTemperature: true,
|
|
4233
4426
|
supportsToolCall: true,
|
|
4234
|
-
releaseDate: "
|
|
4427
|
+
releaseDate: "2026-04-24",
|
|
4235
4428
|
modalities: {
|
|
4236
|
-
input: ["text"
|
|
4429
|
+
input: ["text"],
|
|
4237
4430
|
output: ["text"]
|
|
4238
4431
|
},
|
|
4432
|
+
interleaved: {
|
|
4433
|
+
field: "reasoning_content"
|
|
4434
|
+
},
|
|
4435
|
+
supportsInterleaved: true,
|
|
4239
4436
|
pricing: {
|
|
4240
|
-
inputPerM: 0.
|
|
4241
|
-
outputPerM: 0.
|
|
4242
|
-
cacheReadPerM: 0.
|
|
4437
|
+
inputPerM: 0.14,
|
|
4438
|
+
outputPerM: 0.28,
|
|
4439
|
+
cacheReadPerM: 0.028,
|
|
4243
4440
|
currency: "USD",
|
|
4244
4441
|
unit: "per_million_tokens"
|
|
4245
4442
|
}
|
|
4246
4443
|
},
|
|
4247
4444
|
{
|
|
4248
|
-
name: "
|
|
4249
|
-
displayName: "
|
|
4445
|
+
name: "deepseek/deepseek-v4-pro",
|
|
4446
|
+
displayName: "DeepSeek V4 Pro",
|
|
4250
4447
|
maxInputTokens: 1048576,
|
|
4251
|
-
supportedFileTypes: [
|
|
4448
|
+
supportedFileTypes: [],
|
|
4252
4449
|
reasoning: true,
|
|
4253
4450
|
supportsTemperature: true,
|
|
4254
4451
|
supportsToolCall: true,
|
|
4255
|
-
releaseDate: "
|
|
4452
|
+
releaseDate: "2026-04-24",
|
|
4256
4453
|
modalities: {
|
|
4257
|
-
input: ["text"
|
|
4454
|
+
input: ["text"],
|
|
4258
4455
|
output: ["text"]
|
|
4259
4456
|
},
|
|
4457
|
+
interleaved: {
|
|
4458
|
+
field: "reasoning_content"
|
|
4459
|
+
},
|
|
4460
|
+
supportsInterleaved: true,
|
|
4260
4461
|
pricing: {
|
|
4261
|
-
inputPerM:
|
|
4262
|
-
outputPerM:
|
|
4263
|
-
cacheReadPerM: 0.
|
|
4462
|
+
inputPerM: 1.74,
|
|
4463
|
+
outputPerM: 3.48,
|
|
4464
|
+
cacheReadPerM: 0.145,
|
|
4264
4465
|
currency: "USD",
|
|
4265
4466
|
unit: "per_million_tokens"
|
|
4266
4467
|
}
|
|
4267
4468
|
},
|
|
4268
4469
|
{
|
|
4269
|
-
name: "google/gemini-2.
|
|
4270
|
-
displayName: "Gemini 2.
|
|
4470
|
+
name: "google/gemini-2.0-flash-001",
|
|
4471
|
+
displayName: "Gemini 2.0 Flash",
|
|
4271
4472
|
maxInputTokens: 1048576,
|
|
4272
4473
|
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
4273
|
-
reasoning:
|
|
4474
|
+
reasoning: false,
|
|
4475
|
+
supportsTemperature: true,
|
|
4476
|
+
supportsToolCall: true,
|
|
4477
|
+
releaseDate: "2024-12-11",
|
|
4478
|
+
modalities: {
|
|
4479
|
+
input: ["text", "image", "audio", "video", "pdf"],
|
|
4480
|
+
output: ["text"]
|
|
4481
|
+
},
|
|
4482
|
+
pricing: {
|
|
4483
|
+
inputPerM: 0.1,
|
|
4484
|
+
outputPerM: 0.4,
|
|
4485
|
+
cacheReadPerM: 0.025,
|
|
4486
|
+
currency: "USD",
|
|
4487
|
+
unit: "per_million_tokens"
|
|
4488
|
+
}
|
|
4489
|
+
},
|
|
4490
|
+
{
|
|
4491
|
+
name: "google/gemini-2.5-flash",
|
|
4492
|
+
displayName: "Gemini 2.5 Flash",
|
|
4493
|
+
maxInputTokens: 1048576,
|
|
4494
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
4495
|
+
reasoning: true,
|
|
4496
|
+
supportsTemperature: true,
|
|
4497
|
+
supportsToolCall: true,
|
|
4498
|
+
releaseDate: "2025-07-17",
|
|
4499
|
+
modalities: {
|
|
4500
|
+
input: ["text", "image", "audio", "video", "pdf"],
|
|
4501
|
+
output: ["text"]
|
|
4502
|
+
},
|
|
4503
|
+
pricing: {
|
|
4504
|
+
inputPerM: 0.3,
|
|
4505
|
+
outputPerM: 2.5,
|
|
4506
|
+
cacheReadPerM: 0.0375,
|
|
4507
|
+
currency: "USD",
|
|
4508
|
+
unit: "per_million_tokens"
|
|
4509
|
+
}
|
|
4510
|
+
},
|
|
4511
|
+
{
|
|
4512
|
+
name: "google/gemini-2.5-flash-lite",
|
|
4513
|
+
displayName: "Gemini 2.5 Flash Lite",
|
|
4514
|
+
maxInputTokens: 1048576,
|
|
4515
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
4516
|
+
reasoning: true,
|
|
4274
4517
|
supportsTemperature: true,
|
|
4275
4518
|
supportsToolCall: true,
|
|
4276
4519
|
releaseDate: "2025-06-17",
|
|
@@ -4344,7 +4587,11 @@ const MODELS_BY_PROVIDER = {
|
|
|
4344
4587
|
pricing: {
|
|
4345
4588
|
inputPerM: 1.25,
|
|
4346
4589
|
outputPerM: 10,
|
|
4347
|
-
cacheReadPerM: 0.
|
|
4590
|
+
cacheReadPerM: 0.125,
|
|
4591
|
+
contextOver200kPerM: {
|
|
4592
|
+
inputPerM: 2.5,
|
|
4593
|
+
outputPerM: 15
|
|
4594
|
+
},
|
|
4348
4595
|
currency: "USD",
|
|
4349
4596
|
unit: "per_million_tokens"
|
|
4350
4597
|
}
|
|
@@ -4440,6 +4687,26 @@ const MODELS_BY_PROVIDER = {
|
|
|
4440
4687
|
unit: "per_million_tokens"
|
|
4441
4688
|
}
|
|
4442
4689
|
},
|
|
4690
|
+
{
|
|
4691
|
+
name: "google/gemini-3.1-flash-image-preview",
|
|
4692
|
+
displayName: "Gemini 3.1 Flash Image Preview (Nano Banana 2)",
|
|
4693
|
+
maxInputTokens: 65536,
|
|
4694
|
+
supportedFileTypes: ["image", "document"],
|
|
4695
|
+
reasoning: true,
|
|
4696
|
+
supportsTemperature: true,
|
|
4697
|
+
supportsToolCall: false,
|
|
4698
|
+
releaseDate: "2026-02-26",
|
|
4699
|
+
modalities: {
|
|
4700
|
+
input: ["text", "image"],
|
|
4701
|
+
output: ["text", "image"]
|
|
4702
|
+
},
|
|
4703
|
+
pricing: {
|
|
4704
|
+
inputPerM: 0.5,
|
|
4705
|
+
outputPerM: 3,
|
|
4706
|
+
currency: "USD",
|
|
4707
|
+
unit: "per_million_tokens"
|
|
4708
|
+
}
|
|
4709
|
+
},
|
|
4443
4710
|
{
|
|
4444
4711
|
name: "google/gemini-3.1-flash-lite-preview",
|
|
4445
4712
|
displayName: "Gemini 3.1 Flash Lite Preview",
|
|
@@ -4724,22 +4991,81 @@ const MODELS_BY_PROVIDER = {
|
|
|
4724
4991
|
}
|
|
4725
4992
|
},
|
|
4726
4993
|
{
|
|
4727
|
-
name: "
|
|
4728
|
-
displayName: "
|
|
4729
|
-
maxInputTokens:
|
|
4730
|
-
supportedFileTypes: [],
|
|
4731
|
-
reasoning:
|
|
4994
|
+
name: "google/gemma-4-26b-a4b-it",
|
|
4995
|
+
displayName: "Gemma 4 26B A4B",
|
|
4996
|
+
maxInputTokens: 262144,
|
|
4997
|
+
supportedFileTypes: ["image", "video", "document"],
|
|
4998
|
+
reasoning: true,
|
|
4732
4999
|
supportsTemperature: true,
|
|
4733
5000
|
supportsToolCall: true,
|
|
4734
|
-
releaseDate: "
|
|
5001
|
+
releaseDate: "2026-04-03",
|
|
4735
5002
|
modalities: {
|
|
4736
|
-
input: ["text"],
|
|
5003
|
+
input: ["text", "image", "video"],
|
|
4737
5004
|
output: ["text"]
|
|
4738
5005
|
},
|
|
4739
5006
|
pricing: {
|
|
4740
|
-
inputPerM: 0.
|
|
4741
|
-
outputPerM: 0.
|
|
4742
|
-
|
|
5007
|
+
inputPerM: 0.13,
|
|
5008
|
+
outputPerM: 0.4,
|
|
5009
|
+
currency: "USD",
|
|
5010
|
+
unit: "per_million_tokens"
|
|
5011
|
+
}
|
|
5012
|
+
},
|
|
5013
|
+
{
|
|
5014
|
+
name: "google/gemma-4-26b-a4b-it:free",
|
|
5015
|
+
displayName: "Gemma 4 26B A4B (free)",
|
|
5016
|
+
maxInputTokens: 262144,
|
|
5017
|
+
supportedFileTypes: ["image", "video", "document"],
|
|
5018
|
+
reasoning: true,
|
|
5019
|
+
supportsTemperature: true,
|
|
5020
|
+
supportsToolCall: true,
|
|
5021
|
+
releaseDate: "2026-04-03",
|
|
5022
|
+
modalities: {
|
|
5023
|
+
input: ["text", "image", "video"],
|
|
5024
|
+
output: ["text"]
|
|
5025
|
+
},
|
|
5026
|
+
pricing: {
|
|
5027
|
+
inputPerM: 0,
|
|
5028
|
+
outputPerM: 0,
|
|
5029
|
+
currency: "USD",
|
|
5030
|
+
unit: "per_million_tokens"
|
|
5031
|
+
}
|
|
5032
|
+
},
|
|
5033
|
+
{
|
|
5034
|
+
name: "google/gemma-4-31b-it",
|
|
5035
|
+
displayName: "Gemma 4 31B",
|
|
5036
|
+
maxInputTokens: 262144,
|
|
5037
|
+
supportedFileTypes: ["image", "video", "document"],
|
|
5038
|
+
reasoning: true,
|
|
5039
|
+
supportsTemperature: true,
|
|
5040
|
+
supportsToolCall: true,
|
|
5041
|
+
releaseDate: "2026-04-02",
|
|
5042
|
+
modalities: {
|
|
5043
|
+
input: ["text", "image", "video"],
|
|
5044
|
+
output: ["text"]
|
|
5045
|
+
},
|
|
5046
|
+
pricing: {
|
|
5047
|
+
inputPerM: 0.14,
|
|
5048
|
+
outputPerM: 0.4,
|
|
5049
|
+
currency: "USD",
|
|
5050
|
+
unit: "per_million_tokens"
|
|
5051
|
+
}
|
|
5052
|
+
},
|
|
5053
|
+
{
|
|
5054
|
+
name: "google/gemma-4-31b-it:free",
|
|
5055
|
+
displayName: "Gemma 4 31B (free)",
|
|
5056
|
+
maxInputTokens: 262144,
|
|
5057
|
+
supportedFileTypes: ["image", "video", "document"],
|
|
5058
|
+
reasoning: true,
|
|
5059
|
+
supportsTemperature: true,
|
|
5060
|
+
supportsToolCall: true,
|
|
5061
|
+
releaseDate: "2026-04-02",
|
|
5062
|
+
modalities: {
|
|
5063
|
+
input: ["text", "image", "video"],
|
|
5064
|
+
output: ["text"]
|
|
5065
|
+
},
|
|
5066
|
+
pricing: {
|
|
5067
|
+
inputPerM: 0,
|
|
5068
|
+
outputPerM: 0,
|
|
4743
5069
|
currency: "USD",
|
|
4744
5070
|
unit: "per_million_tokens"
|
|
4745
5071
|
}
|
|
@@ -4766,14 +5092,14 @@ const MODELS_BY_PROVIDER = {
|
|
|
4766
5092
|
}
|
|
4767
5093
|
},
|
|
4768
5094
|
{
|
|
4769
|
-
name: "inception/mercury-
|
|
4770
|
-
displayName: "Mercury
|
|
5095
|
+
name: "inception/mercury-edit-2",
|
|
5096
|
+
displayName: "Mercury Edit 2",
|
|
4771
5097
|
maxInputTokens: 128e3,
|
|
4772
5098
|
supportedFileTypes: [],
|
|
4773
|
-
reasoning:
|
|
5099
|
+
reasoning: true,
|
|
4774
5100
|
supportsTemperature: true,
|
|
4775
|
-
supportsToolCall:
|
|
4776
|
-
releaseDate: "
|
|
5101
|
+
supportsToolCall: false,
|
|
5102
|
+
releaseDate: "2026-03-30",
|
|
4777
5103
|
modalities: {
|
|
4778
5104
|
input: ["text"],
|
|
4779
5105
|
output: ["text"]
|
|
@@ -5001,6 +5327,30 @@ const MODELS_BY_PROVIDER = {
|
|
|
5001
5327
|
unit: "per_million_tokens"
|
|
5002
5328
|
}
|
|
5003
5329
|
},
|
|
5330
|
+
{
|
|
5331
|
+
name: "minimax/minimax-m2.5:free",
|
|
5332
|
+
displayName: "MiniMax M2.5 (free)",
|
|
5333
|
+
maxInputTokens: 204800,
|
|
5334
|
+
supportedFileTypes: [],
|
|
5335
|
+
reasoning: true,
|
|
5336
|
+
supportsTemperature: true,
|
|
5337
|
+
supportsToolCall: true,
|
|
5338
|
+
releaseDate: "2026-02-12",
|
|
5339
|
+
modalities: {
|
|
5340
|
+
input: ["text"],
|
|
5341
|
+
output: ["text"]
|
|
5342
|
+
},
|
|
5343
|
+
interleaved: {
|
|
5344
|
+
field: "reasoning_details"
|
|
5345
|
+
},
|
|
5346
|
+
supportsInterleaved: true,
|
|
5347
|
+
pricing: {
|
|
5348
|
+
inputPerM: 0,
|
|
5349
|
+
outputPerM: 0,
|
|
5350
|
+
currency: "USD",
|
|
5351
|
+
unit: "per_million_tokens"
|
|
5352
|
+
}
|
|
5353
|
+
},
|
|
5004
5354
|
{
|
|
5005
5355
|
name: "minimax/minimax-m2.7",
|
|
5006
5356
|
displayName: "MiniMax M2.7",
|
|
@@ -5309,36 +5659,41 @@ const MODELS_BY_PROVIDER = {
|
|
|
5309
5659
|
}
|
|
5310
5660
|
},
|
|
5311
5661
|
{
|
|
5312
|
-
name: "moonshotai/kimi-k2
|
|
5313
|
-
displayName: "Kimi K2
|
|
5314
|
-
maxInputTokens:
|
|
5315
|
-
supportedFileTypes: [],
|
|
5316
|
-
reasoning:
|
|
5662
|
+
name: "moonshotai/kimi-k2.5",
|
|
5663
|
+
displayName: "Kimi K2.5",
|
|
5664
|
+
maxInputTokens: 262144,
|
|
5665
|
+
supportedFileTypes: ["image", "video"],
|
|
5666
|
+
reasoning: true,
|
|
5317
5667
|
supportsTemperature: true,
|
|
5318
5668
|
supportsToolCall: true,
|
|
5319
|
-
releaseDate: "
|
|
5669
|
+
releaseDate: "2026-01-27",
|
|
5320
5670
|
modalities: {
|
|
5321
|
-
input: ["text"],
|
|
5671
|
+
input: ["text", "image", "video"],
|
|
5322
5672
|
output: ["text"]
|
|
5323
5673
|
},
|
|
5674
|
+
interleaved: {
|
|
5675
|
+
field: "reasoning_details"
|
|
5676
|
+
},
|
|
5677
|
+
supportsInterleaved: true,
|
|
5324
5678
|
pricing: {
|
|
5325
|
-
inputPerM: 0,
|
|
5326
|
-
outputPerM:
|
|
5679
|
+
inputPerM: 0.6,
|
|
5680
|
+
outputPerM: 3,
|
|
5681
|
+
cacheReadPerM: 0.1,
|
|
5327
5682
|
currency: "USD",
|
|
5328
5683
|
unit: "per_million_tokens"
|
|
5329
5684
|
}
|
|
5330
5685
|
},
|
|
5331
5686
|
{
|
|
5332
|
-
name: "moonshotai/kimi-k2.
|
|
5333
|
-
displayName: "Kimi K2.
|
|
5687
|
+
name: "moonshotai/kimi-k2.6",
|
|
5688
|
+
displayName: "Kimi K2.6",
|
|
5334
5689
|
maxInputTokens: 262144,
|
|
5335
|
-
supportedFileTypes: ["image"
|
|
5690
|
+
supportedFileTypes: ["image"],
|
|
5336
5691
|
reasoning: true,
|
|
5337
5692
|
supportsTemperature: true,
|
|
5338
5693
|
supportsToolCall: true,
|
|
5339
|
-
releaseDate: "2026-
|
|
5694
|
+
releaseDate: "2026-04-20",
|
|
5340
5695
|
modalities: {
|
|
5341
|
-
input: ["text", "image"
|
|
5696
|
+
input: ["text", "image"],
|
|
5342
5697
|
output: ["text"]
|
|
5343
5698
|
},
|
|
5344
5699
|
interleaved: {
|
|
@@ -5346,9 +5701,9 @@ const MODELS_BY_PROVIDER = {
|
|
|
5346
5701
|
},
|
|
5347
5702
|
supportsInterleaved: true,
|
|
5348
5703
|
pricing: {
|
|
5349
|
-
inputPerM: 0.
|
|
5350
|
-
outputPerM:
|
|
5351
|
-
cacheReadPerM: 0.
|
|
5704
|
+
inputPerM: 0.95,
|
|
5705
|
+
outputPerM: 4,
|
|
5706
|
+
cacheReadPerM: 0.16,
|
|
5352
5707
|
currency: "USD",
|
|
5353
5708
|
unit: "per_million_tokens"
|
|
5354
5709
|
}
|
|
@@ -5433,6 +5788,26 @@ const MODELS_BY_PROVIDER = {
|
|
|
5433
5788
|
unit: "per_million_tokens"
|
|
5434
5789
|
}
|
|
5435
5790
|
},
|
|
5791
|
+
{
|
|
5792
|
+
name: "nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free",
|
|
5793
|
+
displayName: "Nemotron 3 Nano Omni (free)",
|
|
5794
|
+
maxInputTokens: 256e3,
|
|
5795
|
+
supportedFileTypes: ["image", "audio", "video"],
|
|
5796
|
+
reasoning: true,
|
|
5797
|
+
supportsTemperature: true,
|
|
5798
|
+
supportsToolCall: true,
|
|
5799
|
+
releaseDate: "2026-04-28",
|
|
5800
|
+
modalities: {
|
|
5801
|
+
input: ["text", "image", "video", "audio"],
|
|
5802
|
+
output: ["text"]
|
|
5803
|
+
},
|
|
5804
|
+
pricing: {
|
|
5805
|
+
inputPerM: 0,
|
|
5806
|
+
outputPerM: 0,
|
|
5807
|
+
currency: "USD",
|
|
5808
|
+
unit: "per_million_tokens"
|
|
5809
|
+
}
|
|
5810
|
+
},
|
|
5436
5811
|
{
|
|
5437
5812
|
name: "nvidia/nemotron-3-super-120b-a12b",
|
|
5438
5813
|
displayName: "Nemotron 3 Super",
|
|
@@ -5986,9 +6361,9 @@ const MODELS_BY_PROVIDER = {
|
|
|
5986
6361
|
output: ["text"]
|
|
5987
6362
|
},
|
|
5988
6363
|
pricing: {
|
|
5989
|
-
inputPerM:
|
|
5990
|
-
outputPerM:
|
|
5991
|
-
cacheReadPerM:
|
|
6364
|
+
inputPerM: 0.75,
|
|
6365
|
+
outputPerM: 4.5,
|
|
6366
|
+
cacheReadPerM: 0.075,
|
|
5992
6367
|
currency: "USD",
|
|
5993
6368
|
unit: "per_million_tokens"
|
|
5994
6369
|
}
|
|
@@ -6007,9 +6382,9 @@ const MODELS_BY_PROVIDER = {
|
|
|
6007
6382
|
output: ["text"]
|
|
6008
6383
|
},
|
|
6009
6384
|
pricing: {
|
|
6010
|
-
inputPerM:
|
|
6011
|
-
outputPerM:
|
|
6012
|
-
cacheReadPerM:
|
|
6385
|
+
inputPerM: 0.2,
|
|
6386
|
+
outputPerM: 1.25,
|
|
6387
|
+
cacheReadPerM: 0.02,
|
|
6013
6388
|
currency: "USD",
|
|
6014
6389
|
unit: "per_million_tokens"
|
|
6015
6390
|
}
|
|
@@ -6035,6 +6410,55 @@ const MODELS_BY_PROVIDER = {
|
|
|
6035
6410
|
unit: "per_million_tokens"
|
|
6036
6411
|
}
|
|
6037
6412
|
},
|
|
6413
|
+
{
|
|
6414
|
+
name: "openai/gpt-5.5",
|
|
6415
|
+
displayName: "GPT-5.5",
|
|
6416
|
+
maxInputTokens: 922e3,
|
|
6417
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
6418
|
+
reasoning: true,
|
|
6419
|
+
supportsTemperature: false,
|
|
6420
|
+
supportsToolCall: true,
|
|
6421
|
+
releaseDate: "2026-04-23",
|
|
6422
|
+
modalities: {
|
|
6423
|
+
input: ["text", "image", "pdf"],
|
|
6424
|
+
output: ["text"]
|
|
6425
|
+
},
|
|
6426
|
+
pricing: {
|
|
6427
|
+
inputPerM: 5,
|
|
6428
|
+
outputPerM: 30,
|
|
6429
|
+
cacheReadPerM: 0.5,
|
|
6430
|
+
contextOver200kPerM: {
|
|
6431
|
+
inputPerM: 10,
|
|
6432
|
+
outputPerM: 45
|
|
6433
|
+
},
|
|
6434
|
+
currency: "USD",
|
|
6435
|
+
unit: "per_million_tokens"
|
|
6436
|
+
}
|
|
6437
|
+
},
|
|
6438
|
+
{
|
|
6439
|
+
name: "openai/gpt-5.5-pro",
|
|
6440
|
+
displayName: "GPT-5.5 Pro",
|
|
6441
|
+
maxInputTokens: 922e3,
|
|
6442
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
6443
|
+
reasoning: true,
|
|
6444
|
+
supportsTemperature: false,
|
|
6445
|
+
supportsToolCall: true,
|
|
6446
|
+
releaseDate: "2026-04-23",
|
|
6447
|
+
modalities: {
|
|
6448
|
+
input: ["text", "image", "pdf"],
|
|
6449
|
+
output: ["text"]
|
|
6450
|
+
},
|
|
6451
|
+
pricing: {
|
|
6452
|
+
inputPerM: 30,
|
|
6453
|
+
outputPerM: 180,
|
|
6454
|
+
contextOver200kPerM: {
|
|
6455
|
+
inputPerM: 60,
|
|
6456
|
+
outputPerM: 270
|
|
6457
|
+
},
|
|
6458
|
+
currency: "USD",
|
|
6459
|
+
unit: "per_million_tokens"
|
|
6460
|
+
}
|
|
6461
|
+
},
|
|
6038
6462
|
{
|
|
6039
6463
|
name: "openai/gpt-oss-120b",
|
|
6040
6464
|
displayName: "GPT OSS 120B",
|
|
@@ -6176,6 +6600,26 @@ const MODELS_BY_PROVIDER = {
|
|
|
6176
6600
|
unit: "per_million_tokens"
|
|
6177
6601
|
}
|
|
6178
6602
|
},
|
|
6603
|
+
{
|
|
6604
|
+
name: "openrouter/elephant-alpha",
|
|
6605
|
+
displayName: "Elephant (free)",
|
|
6606
|
+
maxInputTokens: 262144,
|
|
6607
|
+
supportedFileTypes: [],
|
|
6608
|
+
reasoning: true,
|
|
6609
|
+
supportsTemperature: true,
|
|
6610
|
+
supportsToolCall: true,
|
|
6611
|
+
releaseDate: "2026-04-13",
|
|
6612
|
+
modalities: {
|
|
6613
|
+
input: ["text"],
|
|
6614
|
+
output: ["text"]
|
|
6615
|
+
},
|
|
6616
|
+
pricing: {
|
|
6617
|
+
inputPerM: 0,
|
|
6618
|
+
outputPerM: 0,
|
|
6619
|
+
currency: "USD",
|
|
6620
|
+
unit: "per_million_tokens"
|
|
6621
|
+
}
|
|
6622
|
+
},
|
|
6179
6623
|
{
|
|
6180
6624
|
name: "openrouter/free",
|
|
6181
6625
|
displayName: "Free Models Router",
|
|
@@ -6196,6 +6640,20 @@ const MODELS_BY_PROVIDER = {
|
|
|
6196
6640
|
unit: "per_million_tokens"
|
|
6197
6641
|
}
|
|
6198
6642
|
},
|
|
6643
|
+
{
|
|
6644
|
+
name: "openrouter/pareto-code",
|
|
6645
|
+
displayName: "Pareto Code Router",
|
|
6646
|
+
maxInputTokens: 2e5,
|
|
6647
|
+
supportedFileTypes: [],
|
|
6648
|
+
reasoning: true,
|
|
6649
|
+
supportsTemperature: true,
|
|
6650
|
+
supportsToolCall: true,
|
|
6651
|
+
releaseDate: "2026-04-21",
|
|
6652
|
+
modalities: {
|
|
6653
|
+
input: ["text"],
|
|
6654
|
+
output: ["text"]
|
|
6655
|
+
}
|
|
6656
|
+
},
|
|
6199
6657
|
{
|
|
6200
6658
|
name: "prime-intellect/intellect-3",
|
|
6201
6659
|
displayName: "Intellect 3",
|
|
@@ -6336,26 +6794,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
6336
6794
|
unit: "per_million_tokens"
|
|
6337
6795
|
}
|
|
6338
6796
|
},
|
|
6339
|
-
{
|
|
6340
|
-
name: "qwen/qwen3-4b:free",
|
|
6341
|
-
displayName: "Qwen3 4B (free)",
|
|
6342
|
-
maxInputTokens: 40960,
|
|
6343
|
-
supportedFileTypes: [],
|
|
6344
|
-
reasoning: true,
|
|
6345
|
-
supportsTemperature: true,
|
|
6346
|
-
supportsToolCall: true,
|
|
6347
|
-
releaseDate: "2025-04-30",
|
|
6348
|
-
modalities: {
|
|
6349
|
-
input: ["text"],
|
|
6350
|
-
output: ["text"]
|
|
6351
|
-
},
|
|
6352
|
-
pricing: {
|
|
6353
|
-
inputPerM: 0,
|
|
6354
|
-
outputPerM: 0,
|
|
6355
|
-
currency: "USD",
|
|
6356
|
-
unit: "per_million_tokens"
|
|
6357
|
-
}
|
|
6358
|
-
},
|
|
6359
6797
|
{
|
|
6360
6798
|
name: "qwen/qwen3-coder",
|
|
6361
6799
|
displayName: "Qwen3 Coder",
|
|
@@ -6436,26 +6874,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
6436
6874
|
unit: "per_million_tokens"
|
|
6437
6875
|
}
|
|
6438
6876
|
},
|
|
6439
|
-
{
|
|
6440
|
-
name: "qwen/qwen3-coder:free",
|
|
6441
|
-
displayName: "Qwen3 Coder 480B A35B Instruct (free)",
|
|
6442
|
-
maxInputTokens: 262144,
|
|
6443
|
-
supportedFileTypes: [],
|
|
6444
|
-
reasoning: false,
|
|
6445
|
-
supportsTemperature: true,
|
|
6446
|
-
supportsToolCall: true,
|
|
6447
|
-
releaseDate: "2025-07-23",
|
|
6448
|
-
modalities: {
|
|
6449
|
-
input: ["text"],
|
|
6450
|
-
output: ["text"]
|
|
6451
|
-
},
|
|
6452
|
-
pricing: {
|
|
6453
|
-
inputPerM: 0,
|
|
6454
|
-
outputPerM: 0,
|
|
6455
|
-
currency: "USD",
|
|
6456
|
-
unit: "per_million_tokens"
|
|
6457
|
-
}
|
|
6458
|
-
},
|
|
6459
6877
|
{
|
|
6460
6878
|
name: "qwen/qwen3-max",
|
|
6461
6879
|
displayName: "Qwen3 Max",
|
|
@@ -6497,11 +6915,11 @@ const MODELS_BY_PROVIDER = {
|
|
|
6497
6915
|
}
|
|
6498
6916
|
},
|
|
6499
6917
|
{
|
|
6500
|
-
name: "qwen/qwen3-next-80b-a3b-
|
|
6501
|
-
displayName: "Qwen3 Next 80B A3B
|
|
6918
|
+
name: "qwen/qwen3-next-80b-a3b-thinking",
|
|
6919
|
+
displayName: "Qwen3 Next 80B A3B Thinking",
|
|
6502
6920
|
maxInputTokens: 262144,
|
|
6503
6921
|
supportedFileTypes: [],
|
|
6504
|
-
reasoning:
|
|
6922
|
+
reasoning: true,
|
|
6505
6923
|
supportsTemperature: true,
|
|
6506
6924
|
supportsToolCall: true,
|
|
6507
6925
|
releaseDate: "2025-09-11",
|
|
@@ -6510,48 +6928,48 @@ const MODELS_BY_PROVIDER = {
|
|
|
6510
6928
|
output: ["text"]
|
|
6511
6929
|
},
|
|
6512
6930
|
pricing: {
|
|
6513
|
-
inputPerM: 0,
|
|
6514
|
-
outputPerM:
|
|
6931
|
+
inputPerM: 0.14,
|
|
6932
|
+
outputPerM: 1.4,
|
|
6515
6933
|
currency: "USD",
|
|
6516
6934
|
unit: "per_million_tokens"
|
|
6517
6935
|
}
|
|
6518
6936
|
},
|
|
6519
6937
|
{
|
|
6520
|
-
name: "qwen/qwen3-
|
|
6521
|
-
displayName: "Qwen3
|
|
6938
|
+
name: "qwen/qwen3.5-397b-a17b",
|
|
6939
|
+
displayName: "Qwen3.5 397B A17B",
|
|
6522
6940
|
maxInputTokens: 262144,
|
|
6523
|
-
supportedFileTypes: [],
|
|
6941
|
+
supportedFileTypes: ["image", "video"],
|
|
6524
6942
|
reasoning: true,
|
|
6525
6943
|
supportsTemperature: true,
|
|
6526
6944
|
supportsToolCall: true,
|
|
6527
|
-
releaseDate: "
|
|
6945
|
+
releaseDate: "2026-02-16",
|
|
6528
6946
|
modalities: {
|
|
6529
|
-
input: ["text"],
|
|
6947
|
+
input: ["text", "image", "video"],
|
|
6530
6948
|
output: ["text"]
|
|
6531
6949
|
},
|
|
6532
6950
|
pricing: {
|
|
6533
|
-
inputPerM: 0.
|
|
6534
|
-
outputPerM:
|
|
6951
|
+
inputPerM: 0.6,
|
|
6952
|
+
outputPerM: 3.6,
|
|
6535
6953
|
currency: "USD",
|
|
6536
6954
|
unit: "per_million_tokens"
|
|
6537
6955
|
}
|
|
6538
6956
|
},
|
|
6539
6957
|
{
|
|
6540
|
-
name: "qwen/qwen3.5-
|
|
6541
|
-
displayName: "Qwen3.5
|
|
6542
|
-
maxInputTokens:
|
|
6958
|
+
name: "qwen/qwen3.5-flash-02-23",
|
|
6959
|
+
displayName: "Qwen: Qwen3.5-Flash",
|
|
6960
|
+
maxInputTokens: 1e6,
|
|
6543
6961
|
supportedFileTypes: ["image", "video"],
|
|
6544
6962
|
reasoning: true,
|
|
6545
6963
|
supportsTemperature: true,
|
|
6546
6964
|
supportsToolCall: true,
|
|
6547
|
-
releaseDate: "2026-02-
|
|
6965
|
+
releaseDate: "2026-02-25",
|
|
6548
6966
|
modalities: {
|
|
6549
6967
|
input: ["text", "image", "video"],
|
|
6550
6968
|
output: ["text"]
|
|
6551
6969
|
},
|
|
6552
6970
|
pricing: {
|
|
6553
|
-
inputPerM: 0.
|
|
6554
|
-
outputPerM:
|
|
6971
|
+
inputPerM: 0.065,
|
|
6972
|
+
outputPerM: 0.26,
|
|
6555
6973
|
currency: "USD",
|
|
6556
6974
|
unit: "per_million_tokens"
|
|
6557
6975
|
}
|
|
@@ -6577,21 +6995,21 @@ const MODELS_BY_PROVIDER = {
|
|
|
6577
6995
|
}
|
|
6578
6996
|
},
|
|
6579
6997
|
{
|
|
6580
|
-
name: "qwen/qwen3.6-plus
|
|
6581
|
-
displayName: "Qwen3.6 Plus
|
|
6998
|
+
name: "qwen/qwen3.6-plus",
|
|
6999
|
+
displayName: "Qwen3.6 Plus",
|
|
6582
7000
|
maxInputTokens: 1e6,
|
|
6583
|
-
supportedFileTypes: [],
|
|
7001
|
+
supportedFileTypes: ["image", "video"],
|
|
6584
7002
|
reasoning: true,
|
|
6585
7003
|
supportsTemperature: true,
|
|
6586
7004
|
supportsToolCall: true,
|
|
6587
|
-
releaseDate: "2026-
|
|
7005
|
+
releaseDate: "2026-04-02",
|
|
6588
7006
|
modalities: {
|
|
6589
|
-
input: ["text"],
|
|
7007
|
+
input: ["text", "image", "video"],
|
|
6590
7008
|
output: ["text"]
|
|
6591
7009
|
},
|
|
6592
7010
|
pricing: {
|
|
6593
|
-
inputPerM: 0,
|
|
6594
|
-
outputPerM:
|
|
7011
|
+
inputPerM: 0.325,
|
|
7012
|
+
outputPerM: 1.95,
|
|
6595
7013
|
currency: "USD",
|
|
6596
7014
|
unit: "per_million_tokens"
|
|
6597
7015
|
}
|
|
@@ -6677,26 +7095,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
6677
7095
|
unit: "per_million_tokens"
|
|
6678
7096
|
}
|
|
6679
7097
|
},
|
|
6680
|
-
{
|
|
6681
|
-
name: "stepfun/step-3.5-flash:free",
|
|
6682
|
-
displayName: "Step 3.5 Flash (free)",
|
|
6683
|
-
maxInputTokens: 256e3,
|
|
6684
|
-
supportedFileTypes: [],
|
|
6685
|
-
reasoning: true,
|
|
6686
|
-
supportsTemperature: true,
|
|
6687
|
-
supportsToolCall: true,
|
|
6688
|
-
releaseDate: "2026-01-29",
|
|
6689
|
-
modalities: {
|
|
6690
|
-
input: ["text"],
|
|
6691
|
-
output: ["text"]
|
|
6692
|
-
},
|
|
6693
|
-
pricing: {
|
|
6694
|
-
inputPerM: 0,
|
|
6695
|
-
outputPerM: 0,
|
|
6696
|
-
currency: "USD",
|
|
6697
|
-
unit: "per_million_tokens"
|
|
6698
|
-
}
|
|
6699
|
-
},
|
|
6700
7098
|
{
|
|
6701
7099
|
name: "x-ai/grok-3",
|
|
6702
7100
|
displayName: "Grok 3",
|
|
@@ -6965,6 +7363,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
6965
7363
|
pricing: {
|
|
6966
7364
|
inputPerM: 0.4,
|
|
6967
7365
|
outputPerM: 2,
|
|
7366
|
+
cacheReadPerM: 0.08,
|
|
6968
7367
|
currency: "USD",
|
|
6969
7368
|
unit: "per_million_tokens"
|
|
6970
7369
|
}
|
|
@@ -6989,6 +7388,65 @@ const MODELS_BY_PROVIDER = {
|
|
|
6989
7388
|
pricing: {
|
|
6990
7389
|
inputPerM: 1,
|
|
6991
7390
|
outputPerM: 3,
|
|
7391
|
+
cacheReadPerM: 0.2,
|
|
7392
|
+
currency: "USD",
|
|
7393
|
+
unit: "per_million_tokens"
|
|
7394
|
+
}
|
|
7395
|
+
},
|
|
7396
|
+
{
|
|
7397
|
+
name: "xiaomi/mimo-v2.5",
|
|
7398
|
+
displayName: "MiMo-V2.5",
|
|
7399
|
+
maxInputTokens: 1048576,
|
|
7400
|
+
supportedFileTypes: [],
|
|
7401
|
+
reasoning: true,
|
|
7402
|
+
supportsTemperature: true,
|
|
7403
|
+
supportsToolCall: true,
|
|
7404
|
+
releaseDate: "2026-04-22",
|
|
7405
|
+
modalities: {
|
|
7406
|
+
input: ["text"],
|
|
7407
|
+
output: ["text"]
|
|
7408
|
+
},
|
|
7409
|
+
interleaved: {
|
|
7410
|
+
field: "reasoning_content"
|
|
7411
|
+
},
|
|
7412
|
+
supportsInterleaved: true,
|
|
7413
|
+
pricing: {
|
|
7414
|
+
inputPerM: 0.4,
|
|
7415
|
+
outputPerM: 2,
|
|
7416
|
+
cacheReadPerM: 0.08,
|
|
7417
|
+
contextOver200kPerM: {
|
|
7418
|
+
inputPerM: 0.8,
|
|
7419
|
+
outputPerM: 4
|
|
7420
|
+
},
|
|
7421
|
+
currency: "USD",
|
|
7422
|
+
unit: "per_million_tokens"
|
|
7423
|
+
}
|
|
7424
|
+
},
|
|
7425
|
+
{
|
|
7426
|
+
name: "xiaomi/mimo-v2.5-pro",
|
|
7427
|
+
displayName: "MiMo-V2.5-Pro",
|
|
7428
|
+
maxInputTokens: 1048576,
|
|
7429
|
+
supportedFileTypes: ["pdf", "image", "audio", "video"],
|
|
7430
|
+
reasoning: true,
|
|
7431
|
+
supportsTemperature: true,
|
|
7432
|
+
supportsToolCall: true,
|
|
7433
|
+
releaseDate: "2026-04-22",
|
|
7434
|
+
modalities: {
|
|
7435
|
+
input: ["text", "image", "audio", "video", "pdf"],
|
|
7436
|
+
output: ["text"]
|
|
7437
|
+
},
|
|
7438
|
+
interleaved: {
|
|
7439
|
+
field: "reasoning_content"
|
|
7440
|
+
},
|
|
7441
|
+
supportsInterleaved: true,
|
|
7442
|
+
pricing: {
|
|
7443
|
+
inputPerM: 1,
|
|
7444
|
+
outputPerM: 3,
|
|
7445
|
+
cacheReadPerM: 0.2,
|
|
7446
|
+
contextOver200kPerM: {
|
|
7447
|
+
inputPerM: 2,
|
|
7448
|
+
outputPerM: 6
|
|
7449
|
+
},
|
|
6992
7450
|
currency: "USD",
|
|
6993
7451
|
unit: "per_million_tokens"
|
|
6994
7452
|
}
|
|
@@ -7123,56 +7581,107 @@ const MODELS_BY_PROVIDER = {
|
|
|
7123
7581
|
reasoning: true,
|
|
7124
7582
|
supportsTemperature: true,
|
|
7125
7583
|
supportsToolCall: true,
|
|
7126
|
-
releaseDate: "2025-12-22",
|
|
7584
|
+
releaseDate: "2025-12-22",
|
|
7585
|
+
modalities: {
|
|
7586
|
+
input: ["text"],
|
|
7587
|
+
output: ["text"]
|
|
7588
|
+
},
|
|
7589
|
+
interleaved: {
|
|
7590
|
+
field: "reasoning_details"
|
|
7591
|
+
},
|
|
7592
|
+
supportsInterleaved: true,
|
|
7593
|
+
pricing: {
|
|
7594
|
+
inputPerM: 0.6,
|
|
7595
|
+
outputPerM: 2.2,
|
|
7596
|
+
cacheReadPerM: 0.11,
|
|
7597
|
+
currency: "USD",
|
|
7598
|
+
unit: "per_million_tokens"
|
|
7599
|
+
}
|
|
7600
|
+
},
|
|
7601
|
+
{
|
|
7602
|
+
name: "z-ai/glm-4.7-flash",
|
|
7603
|
+
displayName: "GLM-4.7-Flash",
|
|
7604
|
+
maxInputTokens: 2e5,
|
|
7605
|
+
supportedFileTypes: [],
|
|
7606
|
+
reasoning: true,
|
|
7607
|
+
supportsTemperature: true,
|
|
7608
|
+
supportsToolCall: true,
|
|
7609
|
+
releaseDate: "2026-01-19",
|
|
7610
|
+
modalities: {
|
|
7611
|
+
input: ["text"],
|
|
7612
|
+
output: ["text"]
|
|
7613
|
+
},
|
|
7614
|
+
interleaved: {
|
|
7615
|
+
field: "reasoning_details"
|
|
7616
|
+
},
|
|
7617
|
+
supportsInterleaved: true,
|
|
7618
|
+
pricing: {
|
|
7619
|
+
inputPerM: 0.07,
|
|
7620
|
+
outputPerM: 0.4,
|
|
7621
|
+
currency: "USD",
|
|
7622
|
+
unit: "per_million_tokens"
|
|
7623
|
+
}
|
|
7624
|
+
},
|
|
7625
|
+
{
|
|
7626
|
+
name: "z-ai/glm-5",
|
|
7627
|
+
displayName: "GLM-5",
|
|
7628
|
+
maxInputTokens: 202752,
|
|
7629
|
+
supportedFileTypes: [],
|
|
7630
|
+
reasoning: true,
|
|
7631
|
+
supportsTemperature: true,
|
|
7632
|
+
supportsToolCall: true,
|
|
7633
|
+
releaseDate: "2026-02-12",
|
|
7127
7634
|
modalities: {
|
|
7128
7635
|
input: ["text"],
|
|
7129
7636
|
output: ["text"]
|
|
7130
7637
|
},
|
|
7131
7638
|
interleaved: {
|
|
7132
|
-
field: "
|
|
7639
|
+
field: "reasoning_content"
|
|
7133
7640
|
},
|
|
7134
7641
|
supportsInterleaved: true,
|
|
7135
7642
|
pricing: {
|
|
7136
|
-
inputPerM:
|
|
7137
|
-
outputPerM:
|
|
7138
|
-
cacheReadPerM: 0.
|
|
7643
|
+
inputPerM: 1,
|
|
7644
|
+
outputPerM: 3.2,
|
|
7645
|
+
cacheReadPerM: 0.2,
|
|
7139
7646
|
currency: "USD",
|
|
7140
7647
|
unit: "per_million_tokens"
|
|
7141
7648
|
}
|
|
7142
7649
|
},
|
|
7143
7650
|
{
|
|
7144
|
-
name: "z-ai/glm-
|
|
7145
|
-
displayName: "GLM-
|
|
7146
|
-
maxInputTokens:
|
|
7651
|
+
name: "z-ai/glm-5-turbo",
|
|
7652
|
+
displayName: "GLM-5-Turbo",
|
|
7653
|
+
maxInputTokens: 202752,
|
|
7147
7654
|
supportedFileTypes: [],
|
|
7148
7655
|
reasoning: true,
|
|
7149
7656
|
supportsTemperature: true,
|
|
7150
7657
|
supportsToolCall: true,
|
|
7151
|
-
releaseDate: "2026-
|
|
7658
|
+
releaseDate: "2026-03-16",
|
|
7152
7659
|
modalities: {
|
|
7153
7660
|
input: ["text"],
|
|
7154
7661
|
output: ["text"]
|
|
7155
7662
|
},
|
|
7156
7663
|
interleaved: {
|
|
7157
|
-
field: "
|
|
7664
|
+
field: "reasoning_content"
|
|
7158
7665
|
},
|
|
7159
7666
|
supportsInterleaved: true,
|
|
7160
7667
|
pricing: {
|
|
7161
|
-
inputPerM: 0.
|
|
7162
|
-
outputPerM:
|
|
7668
|
+
inputPerM: 0.96,
|
|
7669
|
+
outputPerM: 3.2,
|
|
7670
|
+
cacheReadPerM: 0.192,
|
|
7671
|
+
cacheWritePerM: 0,
|
|
7163
7672
|
currency: "USD",
|
|
7164
7673
|
unit: "per_million_tokens"
|
|
7165
7674
|
}
|
|
7166
7675
|
},
|
|
7167
7676
|
{
|
|
7168
|
-
name: "z-ai/glm-5",
|
|
7169
|
-
displayName: "GLM-5",
|
|
7677
|
+
name: "z-ai/glm-5.1",
|
|
7678
|
+
displayName: "GLM-5.1",
|
|
7170
7679
|
maxInputTokens: 202752,
|
|
7171
7680
|
supportedFileTypes: [],
|
|
7172
7681
|
reasoning: true,
|
|
7173
7682
|
supportsTemperature: true,
|
|
7174
7683
|
supportsToolCall: true,
|
|
7175
|
-
releaseDate: "2026-
|
|
7684
|
+
releaseDate: "2026-04-07",
|
|
7176
7685
|
modalities: {
|
|
7177
7686
|
input: ["text"],
|
|
7178
7687
|
output: ["text"]
|
|
@@ -7182,9 +7691,9 @@ const MODELS_BY_PROVIDER = {
|
|
|
7182
7691
|
},
|
|
7183
7692
|
supportsInterleaved: true,
|
|
7184
7693
|
pricing: {
|
|
7185
|
-
inputPerM: 1,
|
|
7186
|
-
outputPerM:
|
|
7187
|
-
cacheReadPerM: 0.
|
|
7694
|
+
inputPerM: 1.4,
|
|
7695
|
+
outputPerM: 4.4,
|
|
7696
|
+
cacheReadPerM: 0.26,
|
|
7188
7697
|
currency: "USD",
|
|
7189
7698
|
unit: "per_million_tokens"
|
|
7190
7699
|
}
|
|
@@ -7311,7 +7820,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7311
7820
|
reasoning: true,
|
|
7312
7821
|
supportsTemperature: true,
|
|
7313
7822
|
supportsToolCall: true,
|
|
7314
|
-
releaseDate: "2025-11-
|
|
7823
|
+
releaseDate: "2025-11-01",
|
|
7315
7824
|
modalities: {
|
|
7316
7825
|
input: ["text", "image", "pdf"],
|
|
7317
7826
|
output: ["text"]
|
|
@@ -7351,6 +7860,32 @@ const MODELS_BY_PROVIDER = {
|
|
|
7351
7860
|
unit: "per_million_tokens"
|
|
7352
7861
|
}
|
|
7353
7862
|
},
|
|
7863
|
+
{
|
|
7864
|
+
name: "claude-opus-4-7@default",
|
|
7865
|
+
displayName: "Claude Opus 4.7",
|
|
7866
|
+
maxInputTokens: 1e6,
|
|
7867
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
7868
|
+
reasoning: true,
|
|
7869
|
+
supportsTemperature: false,
|
|
7870
|
+
supportsToolCall: true,
|
|
7871
|
+
releaseDate: "2026-04-16",
|
|
7872
|
+
modalities: {
|
|
7873
|
+
input: ["text", "image", "pdf"],
|
|
7874
|
+
output: ["text"]
|
|
7875
|
+
},
|
|
7876
|
+
pricing: {
|
|
7877
|
+
inputPerM: 5,
|
|
7878
|
+
outputPerM: 25,
|
|
7879
|
+
cacheReadPerM: 0.5,
|
|
7880
|
+
cacheWritePerM: 6.25,
|
|
7881
|
+
contextOver200kPerM: {
|
|
7882
|
+
inputPerM: 10,
|
|
7883
|
+
outputPerM: 37.5
|
|
7884
|
+
},
|
|
7885
|
+
currency: "USD",
|
|
7886
|
+
unit: "per_million_tokens"
|
|
7887
|
+
}
|
|
7888
|
+
},
|
|
7354
7889
|
{
|
|
7355
7890
|
name: "claude-opus-4@20250514",
|
|
7356
7891
|
displayName: "Claude Opus 4",
|
|
@@ -7467,6 +8002,31 @@ const MODELS_BY_PROVIDER = {
|
|
|
7467
8002
|
unit: "per_million_tokens"
|
|
7468
8003
|
}
|
|
7469
8004
|
},
|
|
8005
|
+
{
|
|
8006
|
+
name: "deepseek-ai/deepseek-v3.2-maas",
|
|
8007
|
+
displayName: "DeepSeek V3.2",
|
|
8008
|
+
maxInputTokens: 163840,
|
|
8009
|
+
supportedFileTypes: ["pdf", "document"],
|
|
8010
|
+
reasoning: true,
|
|
8011
|
+
supportsTemperature: true,
|
|
8012
|
+
supportsToolCall: true,
|
|
8013
|
+
releaseDate: "2025-12-17",
|
|
8014
|
+
modalities: {
|
|
8015
|
+
input: ["text", "pdf"],
|
|
8016
|
+
output: ["text"]
|
|
8017
|
+
},
|
|
8018
|
+
providerMetadata: {
|
|
8019
|
+
npm: "@ai-sdk/openai-compatible",
|
|
8020
|
+
api: "https://${GOOGLE_VERTEX_ENDPOINT}/v1/projects/${GOOGLE_VERTEX_PROJECT}/locations/${GOOGLE_VERTEX_LOCATION}/endpoints/openapi"
|
|
8021
|
+
},
|
|
8022
|
+
pricing: {
|
|
8023
|
+
inputPerM: 0.56,
|
|
8024
|
+
outputPerM: 1.68,
|
|
8025
|
+
cacheReadPerM: 0.056,
|
|
8026
|
+
currency: "USD",
|
|
8027
|
+
unit: "per_million_tokens"
|
|
8028
|
+
}
|
|
8029
|
+
},
|
|
7470
8030
|
{
|
|
7471
8031
|
name: "gemini-2.0-flash",
|
|
7472
8032
|
displayName: "Gemini 2.0 Flash",
|
|
@@ -7673,7 +8233,11 @@ const MODELS_BY_PROVIDER = {
|
|
|
7673
8233
|
pricing: {
|
|
7674
8234
|
inputPerM: 1.25,
|
|
7675
8235
|
outputPerM: 10,
|
|
7676
|
-
cacheReadPerM: 0.
|
|
8236
|
+
cacheReadPerM: 0.125,
|
|
8237
|
+
contextOver200kPerM: {
|
|
8238
|
+
inputPerM: 2.5,
|
|
8239
|
+
outputPerM: 15
|
|
8240
|
+
},
|
|
7677
8241
|
currency: "USD",
|
|
7678
8242
|
unit: "per_million_tokens"
|
|
7679
8243
|
}
|
|
@@ -7771,6 +8335,28 @@ const MODELS_BY_PROVIDER = {
|
|
|
7771
8335
|
unit: "per_million_tokens"
|
|
7772
8336
|
}
|
|
7773
8337
|
},
|
|
8338
|
+
{
|
|
8339
|
+
name: "gemini-3.1-flash-lite-preview",
|
|
8340
|
+
displayName: "Gemini 3.1 Flash Lite Preview",
|
|
8341
|
+
maxInputTokens: 1048576,
|
|
8342
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
8343
|
+
reasoning: true,
|
|
8344
|
+
supportsTemperature: true,
|
|
8345
|
+
supportsToolCall: true,
|
|
8346
|
+
releaseDate: "2026-03-03",
|
|
8347
|
+
modalities: {
|
|
8348
|
+
input: ["text", "image", "video", "audio", "pdf"],
|
|
8349
|
+
output: ["text"]
|
|
8350
|
+
},
|
|
8351
|
+
pricing: {
|
|
8352
|
+
inputPerM: 0.25,
|
|
8353
|
+
outputPerM: 1.5,
|
|
8354
|
+
cacheReadPerM: 0.025,
|
|
8355
|
+
cacheWritePerM: 1,
|
|
8356
|
+
currency: "USD",
|
|
8357
|
+
unit: "per_million_tokens"
|
|
8358
|
+
}
|
|
8359
|
+
},
|
|
7774
8360
|
{
|
|
7775
8361
|
name: "gemini-3.1-pro-preview",
|
|
7776
8362
|
displayName: "Gemini 3.1 Pro Preview",
|
|
@@ -7932,6 +8518,34 @@ const MODELS_BY_PROVIDER = {
|
|
|
7932
8518
|
unit: "per_million_tokens"
|
|
7933
8519
|
}
|
|
7934
8520
|
},
|
|
8521
|
+
{
|
|
8522
|
+
name: "moonshotai/kimi-k2-thinking-maas",
|
|
8523
|
+
displayName: "Kimi K2 Thinking",
|
|
8524
|
+
maxInputTokens: 262144,
|
|
8525
|
+
supportedFileTypes: [],
|
|
8526
|
+
reasoning: true,
|
|
8527
|
+
supportsTemperature: true,
|
|
8528
|
+
supportsToolCall: true,
|
|
8529
|
+
releaseDate: "2025-11-13",
|
|
8530
|
+
modalities: {
|
|
8531
|
+
input: ["text"],
|
|
8532
|
+
output: ["text"]
|
|
8533
|
+
},
|
|
8534
|
+
providerMetadata: {
|
|
8535
|
+
npm: "@ai-sdk/openai-compatible",
|
|
8536
|
+
api: "https://${GOOGLE_VERTEX_ENDPOINT}/v1/projects/${GOOGLE_VERTEX_PROJECT}/locations/${GOOGLE_VERTEX_LOCATION}/endpoints/openapi"
|
|
8537
|
+
},
|
|
8538
|
+
interleaved: {
|
|
8539
|
+
field: "reasoning_content"
|
|
8540
|
+
},
|
|
8541
|
+
supportsInterleaved: true,
|
|
8542
|
+
pricing: {
|
|
8543
|
+
inputPerM: 0.6,
|
|
8544
|
+
outputPerM: 2.5,
|
|
8545
|
+
currency: "USD",
|
|
8546
|
+
unit: "per_million_tokens"
|
|
8547
|
+
}
|
|
8548
|
+
},
|
|
7935
8549
|
{
|
|
7936
8550
|
name: "openai/gpt-oss-120b-maas",
|
|
7937
8551
|
displayName: "GPT OSS 120B",
|
|
@@ -8376,6 +8990,28 @@ const MODELS_BY_PROVIDER = {
|
|
|
8376
8990
|
unit: "per_million_tokens"
|
|
8377
8991
|
}
|
|
8378
8992
|
},
|
|
8993
|
+
{
|
|
8994
|
+
name: "anthropic.claude-opus-4-7",
|
|
8995
|
+
displayName: "Claude Opus 4.7",
|
|
8996
|
+
maxInputTokens: 1e6,
|
|
8997
|
+
supportedFileTypes: ["pdf", "image"],
|
|
8998
|
+
reasoning: true,
|
|
8999
|
+
supportsTemperature: false,
|
|
9000
|
+
supportsToolCall: true,
|
|
9001
|
+
releaseDate: "2026-04-16",
|
|
9002
|
+
modalities: {
|
|
9003
|
+
input: ["text", "image", "pdf"],
|
|
9004
|
+
output: ["text"]
|
|
9005
|
+
},
|
|
9006
|
+
pricing: {
|
|
9007
|
+
inputPerM: 5,
|
|
9008
|
+
outputPerM: 25,
|
|
9009
|
+
cacheReadPerM: 0.5,
|
|
9010
|
+
cacheWritePerM: 6.25,
|
|
9011
|
+
currency: "USD",
|
|
9012
|
+
unit: "per_million_tokens"
|
|
9013
|
+
}
|
|
9014
|
+
},
|
|
8379
9015
|
{
|
|
8380
9016
|
name: "anthropic.claude-sonnet-4-20250514-v1:0",
|
|
8381
9017
|
displayName: "Claude Sonnet 4",
|
|
@@ -8443,6 +9079,50 @@ const MODELS_BY_PROVIDER = {
|
|
|
8443
9079
|
unit: "per_million_tokens"
|
|
8444
9080
|
}
|
|
8445
9081
|
},
|
|
9082
|
+
{
|
|
9083
|
+
name: "au.anthropic.claude-opus-4-6-v1",
|
|
9084
|
+
displayName: "AU Anthropic Claude Opus 4.6",
|
|
9085
|
+
maxInputTokens: 1e6,
|
|
9086
|
+
supportedFileTypes: ["pdf", "image"],
|
|
9087
|
+
reasoning: true,
|
|
9088
|
+
supportsTemperature: true,
|
|
9089
|
+
supportsToolCall: true,
|
|
9090
|
+
releaseDate: "2026-02-05",
|
|
9091
|
+
modalities: {
|
|
9092
|
+
input: ["text", "image", "pdf"],
|
|
9093
|
+
output: ["text"]
|
|
9094
|
+
},
|
|
9095
|
+
pricing: {
|
|
9096
|
+
inputPerM: 16.5,
|
|
9097
|
+
outputPerM: 82.5,
|
|
9098
|
+
cacheReadPerM: 1.65,
|
|
9099
|
+
cacheWritePerM: 20.625,
|
|
9100
|
+
currency: "USD",
|
|
9101
|
+
unit: "per_million_tokens"
|
|
9102
|
+
}
|
|
9103
|
+
},
|
|
9104
|
+
{
|
|
9105
|
+
name: "au.anthropic.claude-sonnet-4-6",
|
|
9106
|
+
displayName: "AU Anthropic Claude Sonnet 4.6",
|
|
9107
|
+
maxInputTokens: 1e6,
|
|
9108
|
+
supportedFileTypes: ["pdf", "image"],
|
|
9109
|
+
reasoning: true,
|
|
9110
|
+
supportsTemperature: true,
|
|
9111
|
+
supportsToolCall: true,
|
|
9112
|
+
releaseDate: "2026-02-17",
|
|
9113
|
+
modalities: {
|
|
9114
|
+
input: ["text", "image", "pdf"],
|
|
9115
|
+
output: ["text"]
|
|
9116
|
+
},
|
|
9117
|
+
pricing: {
|
|
9118
|
+
inputPerM: 3.3,
|
|
9119
|
+
outputPerM: 16.5,
|
|
9120
|
+
cacheReadPerM: 0.33,
|
|
9121
|
+
cacheWritePerM: 4.125,
|
|
9122
|
+
currency: "USD",
|
|
9123
|
+
unit: "per_million_tokens"
|
|
9124
|
+
}
|
|
9125
|
+
},
|
|
8446
9126
|
{
|
|
8447
9127
|
name: "deepseek.r1-v1:0",
|
|
8448
9128
|
displayName: "DeepSeek-R1",
|
|
@@ -8569,6 +9249,28 @@ const MODELS_BY_PROVIDER = {
|
|
|
8569
9249
|
unit: "per_million_tokens"
|
|
8570
9250
|
}
|
|
8571
9251
|
},
|
|
9252
|
+
{
|
|
9253
|
+
name: "eu.anthropic.claude-opus-4-7",
|
|
9254
|
+
displayName: "Claude Opus 4.7 (EU)",
|
|
9255
|
+
maxInputTokens: 1e6,
|
|
9256
|
+
supportedFileTypes: ["pdf", "image"],
|
|
9257
|
+
reasoning: true,
|
|
9258
|
+
supportsTemperature: false,
|
|
9259
|
+
supportsToolCall: true,
|
|
9260
|
+
releaseDate: "2026-04-16",
|
|
9261
|
+
modalities: {
|
|
9262
|
+
input: ["text", "image", "pdf"],
|
|
9263
|
+
output: ["text"]
|
|
9264
|
+
},
|
|
9265
|
+
pricing: {
|
|
9266
|
+
inputPerM: 5,
|
|
9267
|
+
outputPerM: 25,
|
|
9268
|
+
cacheReadPerM: 0.5,
|
|
9269
|
+
cacheWritePerM: 6.25,
|
|
9270
|
+
currency: "USD",
|
|
9271
|
+
unit: "per_million_tokens"
|
|
9272
|
+
}
|
|
9273
|
+
},
|
|
8572
9274
|
{
|
|
8573
9275
|
name: "eu.anthropic.claude-sonnet-4-20250514-v1:0",
|
|
8574
9276
|
displayName: "Claude Sonnet 4 (EU)",
|
|
@@ -8701,6 +9403,28 @@ const MODELS_BY_PROVIDER = {
|
|
|
8701
9403
|
unit: "per_million_tokens"
|
|
8702
9404
|
}
|
|
8703
9405
|
},
|
|
9406
|
+
{
|
|
9407
|
+
name: "global.anthropic.claude-opus-4-7",
|
|
9408
|
+
displayName: "Claude Opus 4.7 (Global)",
|
|
9409
|
+
maxInputTokens: 1e6,
|
|
9410
|
+
supportedFileTypes: ["pdf", "image"],
|
|
9411
|
+
reasoning: true,
|
|
9412
|
+
supportsTemperature: false,
|
|
9413
|
+
supportsToolCall: true,
|
|
9414
|
+
releaseDate: "2026-04-16",
|
|
9415
|
+
modalities: {
|
|
9416
|
+
input: ["text", "image", "pdf"],
|
|
9417
|
+
output: ["text"]
|
|
9418
|
+
},
|
|
9419
|
+
pricing: {
|
|
9420
|
+
inputPerM: 5,
|
|
9421
|
+
outputPerM: 25,
|
|
9422
|
+
cacheReadPerM: 0.5,
|
|
9423
|
+
cacheWritePerM: 6.25,
|
|
9424
|
+
currency: "USD",
|
|
9425
|
+
unit: "per_million_tokens"
|
|
9426
|
+
}
|
|
9427
|
+
},
|
|
8704
9428
|
{
|
|
8705
9429
|
name: "global.anthropic.claude-sonnet-4-20250514-v1:0",
|
|
8706
9430
|
displayName: "Claude Sonnet 4 (Global)",
|
|
@@ -9551,6 +10275,26 @@ const MODELS_BY_PROVIDER = {
|
|
|
9551
10275
|
unit: "per_million_tokens"
|
|
9552
10276
|
}
|
|
9553
10277
|
},
|
|
10278
|
+
{
|
|
10279
|
+
name: "qwen.qwen3-coder-next",
|
|
10280
|
+
displayName: "Qwen3 Coder Next",
|
|
10281
|
+
maxInputTokens: 131072,
|
|
10282
|
+
supportedFileTypes: [],
|
|
10283
|
+
reasoning: true,
|
|
10284
|
+
supportsTemperature: true,
|
|
10285
|
+
supportsToolCall: true,
|
|
10286
|
+
releaseDate: "2026-02-06",
|
|
10287
|
+
modalities: {
|
|
10288
|
+
input: ["text"],
|
|
10289
|
+
output: ["text"]
|
|
10290
|
+
},
|
|
10291
|
+
pricing: {
|
|
10292
|
+
inputPerM: 0.22,
|
|
10293
|
+
outputPerM: 1.8,
|
|
10294
|
+
currency: "USD",
|
|
10295
|
+
unit: "per_million_tokens"
|
|
10296
|
+
}
|
|
10297
|
+
},
|
|
9554
10298
|
{
|
|
9555
10299
|
name: "qwen.qwen3-next-80b-a3b",
|
|
9556
10300
|
displayName: "Qwen/Qwen3-Next-80B-A3B-Instruct",
|
|
@@ -9701,6 +10445,28 @@ const MODELS_BY_PROVIDER = {
|
|
|
9701
10445
|
unit: "per_million_tokens"
|
|
9702
10446
|
}
|
|
9703
10447
|
},
|
|
10448
|
+
{
|
|
10449
|
+
name: "us.anthropic.claude-opus-4-7",
|
|
10450
|
+
displayName: "Claude Opus 4.7 (US)",
|
|
10451
|
+
maxInputTokens: 1e6,
|
|
10452
|
+
supportedFileTypes: ["pdf", "image"],
|
|
10453
|
+
reasoning: true,
|
|
10454
|
+
supportsTemperature: false,
|
|
10455
|
+
supportsToolCall: true,
|
|
10456
|
+
releaseDate: "2026-04-16",
|
|
10457
|
+
modalities: {
|
|
10458
|
+
input: ["text", "image", "pdf"],
|
|
10459
|
+
output: ["text"]
|
|
10460
|
+
},
|
|
10461
|
+
pricing: {
|
|
10462
|
+
inputPerM: 5,
|
|
10463
|
+
outputPerM: 25,
|
|
10464
|
+
cacheReadPerM: 0.5,
|
|
10465
|
+
cacheWritePerM: 6.25,
|
|
10466
|
+
currency: "USD",
|
|
10467
|
+
unit: "per_million_tokens"
|
|
10468
|
+
}
|
|
10469
|
+
},
|
|
9704
10470
|
{
|
|
9705
10471
|
name: "us.anthropic.claude-sonnet-4-20250514-v1:0",
|
|
9706
10472
|
displayName: "Claude Sonnet 4 (US)",
|