@dexto/core 1.6.20 → 1.6.22
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/agent/DextoAgent.cjs +159 -51
- package/dist/agent/DextoAgent.d.ts +3 -1
- package/dist/agent/DextoAgent.d.ts.map +1 -1
- package/dist/agent/DextoAgent.js +162 -53
- package/dist/agent/types.d.ts +2 -0
- package/dist/agent/types.d.ts.map +1 -1
- package/dist/context/manager.cjs +144 -35
- package/dist/context/manager.d.ts +4 -0
- package/dist/context/manager.d.ts.map +1 -1
- package/dist/context/manager.js +146 -36
- package/dist/context/types.cjs +5 -0
- package/dist/context/types.d.ts +21 -1
- package/dist/context/types.d.ts.map +1 -1
- package/dist/context/types.js +4 -0
- package/dist/context/utils.cjs +85 -25
- package/dist/context/utils.d.ts +5 -3
- package/dist/context/utils.d.ts.map +1 -1
- package/dist/context/utils.js +84 -25
- package/dist/llm/executor/turn-executor.cjs +2 -2
- package/dist/llm/executor/turn-executor.d.ts +1 -1
- package/dist/llm/executor/turn-executor.d.ts.map +1 -1
- package/dist/llm/executor/turn-executor.js +2 -2
- package/dist/llm/formatters/vercel.cjs +3 -1
- package/dist/llm/formatters/vercel.d.ts.map +1 -1
- package/dist/llm/formatters/vercel.js +3 -1
- package/dist/llm/registry/index.cjs +43 -12
- package/dist/llm/registry/index.d.ts.map +1 -1
- package/dist/llm/registry/index.js +43 -12
- package/dist/llm/registry/models.generated.cjs +1270 -1324
- package/dist/llm/registry/models.generated.d.ts +617 -210
- package/dist/llm/registry/models.generated.d.ts.map +1 -1
- package/dist/llm/registry/models.generated.js +1270 -1324
- package/dist/llm/registry/sync.cjs +5 -0
- package/dist/llm/registry/sync.d.ts.map +1 -1
- package/dist/llm/registry/sync.js +5 -0
- package/dist/llm/types.cjs +1 -1
- package/dist/llm/types.d.ts +1 -1
- package/dist/llm/types.d.ts.map +1 -1
- package/dist/llm/types.js +1 -1
- package/dist/resources/handlers/filesystem-handler.cjs +55 -9
- package/dist/resources/handlers/filesystem-handler.d.ts.map +1 -1
- package/dist/resources/handlers/filesystem-handler.js +55 -9
- package/dist/resources/reference-parser.cjs +47 -12
- package/dist/resources/reference-parser.d.ts +6 -3
- package/dist/resources/reference-parser.d.ts.map +1 -1
- package/dist/resources/reference-parser.js +47 -12
- package/dist/utils/api-key-resolver.cjs +25 -0
- package/dist/utils/api-key-resolver.d.ts.map +1 -1
- package/dist/utils/api-key-resolver.js +25 -0
- package/package.json +1 -1
|
@@ -69,7 +69,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
69
69
|
name: "gpt-4-turbo",
|
|
70
70
|
displayName: "GPT-4 Turbo",
|
|
71
71
|
maxInputTokens: 128e3,
|
|
72
|
-
supportedFileTypes: ["pdf", "image"],
|
|
72
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
73
73
|
reasoning: false,
|
|
74
74
|
supportsTemperature: true,
|
|
75
75
|
supportsToolCall: true,
|
|
@@ -89,7 +89,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
89
89
|
name: "gpt-4.1",
|
|
90
90
|
displayName: "GPT-4.1",
|
|
91
91
|
maxInputTokens: 1047576,
|
|
92
|
-
supportedFileTypes: ["pdf", "image"],
|
|
92
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
93
93
|
reasoning: false,
|
|
94
94
|
supportsTemperature: true,
|
|
95
95
|
supportsToolCall: true,
|
|
@@ -110,7 +110,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
110
110
|
name: "gpt-4.1-mini",
|
|
111
111
|
displayName: "GPT-4.1 mini",
|
|
112
112
|
maxInputTokens: 1047576,
|
|
113
|
-
supportedFileTypes: ["pdf", "image"],
|
|
113
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
114
114
|
reasoning: false,
|
|
115
115
|
supportsTemperature: true,
|
|
116
116
|
supportsToolCall: true,
|
|
@@ -131,7 +131,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
131
131
|
name: "gpt-4.1-nano",
|
|
132
132
|
displayName: "GPT-4.1 nano",
|
|
133
133
|
maxInputTokens: 1047576,
|
|
134
|
-
supportedFileTypes: ["pdf", "image"],
|
|
134
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
135
135
|
reasoning: false,
|
|
136
136
|
supportsTemperature: true,
|
|
137
137
|
supportsToolCall: true,
|
|
@@ -152,7 +152,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
152
152
|
name: "gpt-4o",
|
|
153
153
|
displayName: "GPT-4o",
|
|
154
154
|
maxInputTokens: 128e3,
|
|
155
|
-
supportedFileTypes: ["pdf", "image"],
|
|
155
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
156
156
|
reasoning: false,
|
|
157
157
|
supportsTemperature: true,
|
|
158
158
|
supportsToolCall: true,
|
|
@@ -173,7 +173,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
173
173
|
name: "gpt-4o-2024-05-13",
|
|
174
174
|
displayName: "GPT-4o (2024-05-13)",
|
|
175
175
|
maxInputTokens: 128e3,
|
|
176
|
-
supportedFileTypes: ["pdf", "image"],
|
|
176
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
177
177
|
reasoning: false,
|
|
178
178
|
supportsTemperature: true,
|
|
179
179
|
supportsToolCall: true,
|
|
@@ -193,7 +193,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
193
193
|
name: "gpt-4o-2024-08-06",
|
|
194
194
|
displayName: "GPT-4o (2024-08-06)",
|
|
195
195
|
maxInputTokens: 128e3,
|
|
196
|
-
supportedFileTypes: ["pdf", "image"],
|
|
196
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
197
197
|
reasoning: false,
|
|
198
198
|
supportsTemperature: true,
|
|
199
199
|
supportsToolCall: true,
|
|
@@ -214,7 +214,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
214
214
|
name: "gpt-4o-2024-11-20",
|
|
215
215
|
displayName: "GPT-4o (2024-11-20)",
|
|
216
216
|
maxInputTokens: 128e3,
|
|
217
|
-
supportedFileTypes: ["pdf", "image"],
|
|
217
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
218
218
|
reasoning: false,
|
|
219
219
|
supportsTemperature: true,
|
|
220
220
|
supportsToolCall: true,
|
|
@@ -235,7 +235,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
235
235
|
name: "gpt-4o-mini",
|
|
236
236
|
displayName: "GPT-4o mini",
|
|
237
237
|
maxInputTokens: 128e3,
|
|
238
|
-
supportedFileTypes: ["pdf", "image"],
|
|
238
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
239
239
|
reasoning: false,
|
|
240
240
|
supportsTemperature: true,
|
|
241
241
|
supportsToolCall: true,
|
|
@@ -256,7 +256,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
256
256
|
name: "gpt-5",
|
|
257
257
|
displayName: "GPT-5",
|
|
258
258
|
maxInputTokens: 272e3,
|
|
259
|
-
supportedFileTypes: ["pdf", "image"],
|
|
259
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
260
260
|
reasoning: true,
|
|
261
261
|
supportsTemperature: false,
|
|
262
262
|
supportsToolCall: true,
|
|
@@ -277,7 +277,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
277
277
|
name: "gpt-5-chat-latest",
|
|
278
278
|
displayName: "GPT-5 Chat (latest)",
|
|
279
279
|
maxInputTokens: 272e3,
|
|
280
|
-
supportedFileTypes: ["pdf", "image"],
|
|
280
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
281
281
|
reasoning: true,
|
|
282
282
|
supportsTemperature: true,
|
|
283
283
|
supportsToolCall: false,
|
|
@@ -297,7 +297,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
297
297
|
name: "gpt-5-codex",
|
|
298
298
|
displayName: "GPT-5-Codex",
|
|
299
299
|
maxInputTokens: 272e3,
|
|
300
|
-
supportedFileTypes: ["image"],
|
|
300
|
+
supportedFileTypes: ["image", "document"],
|
|
301
301
|
reasoning: true,
|
|
302
302
|
supportsTemperature: false,
|
|
303
303
|
supportsToolCall: true,
|
|
@@ -318,7 +318,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
318
318
|
name: "gpt-5-mini",
|
|
319
319
|
displayName: "GPT-5 Mini",
|
|
320
320
|
maxInputTokens: 272e3,
|
|
321
|
-
supportedFileTypes: ["pdf", "image"],
|
|
321
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
322
322
|
reasoning: true,
|
|
323
323
|
supportsTemperature: false,
|
|
324
324
|
supportsToolCall: true,
|
|
@@ -340,7 +340,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
340
340
|
name: "gpt-5-nano",
|
|
341
341
|
displayName: "GPT-5 Nano",
|
|
342
342
|
maxInputTokens: 272e3,
|
|
343
|
-
supportedFileTypes: ["pdf", "image"],
|
|
343
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
344
344
|
reasoning: true,
|
|
345
345
|
supportsTemperature: false,
|
|
346
346
|
supportsToolCall: true,
|
|
@@ -361,7 +361,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
361
361
|
name: "gpt-5-pro",
|
|
362
362
|
displayName: "GPT-5 Pro",
|
|
363
363
|
maxInputTokens: 272e3,
|
|
364
|
-
supportedFileTypes: ["pdf", "image"],
|
|
364
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
365
365
|
reasoning: true,
|
|
366
366
|
supportsTemperature: false,
|
|
367
367
|
supportsToolCall: true,
|
|
@@ -381,7 +381,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
381
381
|
name: "gpt-5.1",
|
|
382
382
|
displayName: "GPT-5.1",
|
|
383
383
|
maxInputTokens: 272e3,
|
|
384
|
-
supportedFileTypes: ["pdf", "image"],
|
|
384
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
385
385
|
reasoning: true,
|
|
386
386
|
supportsTemperature: false,
|
|
387
387
|
supportsToolCall: true,
|
|
@@ -402,7 +402,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
402
402
|
name: "gpt-5.1-chat-latest",
|
|
403
403
|
displayName: "GPT-5.1 Chat",
|
|
404
404
|
maxInputTokens: 128e3,
|
|
405
|
-
supportedFileTypes: ["pdf", "image"],
|
|
405
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
406
406
|
reasoning: true,
|
|
407
407
|
supportsTemperature: false,
|
|
408
408
|
supportsToolCall: true,
|
|
@@ -423,7 +423,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
423
423
|
name: "gpt-5.1-codex",
|
|
424
424
|
displayName: "GPT-5.1 Codex",
|
|
425
425
|
maxInputTokens: 272e3,
|
|
426
|
-
supportedFileTypes: ["pdf", "image"],
|
|
426
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
427
427
|
reasoning: true,
|
|
428
428
|
supportsTemperature: false,
|
|
429
429
|
supportsToolCall: true,
|
|
@@ -444,7 +444,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
444
444
|
name: "gpt-5.1-codex-max",
|
|
445
445
|
displayName: "GPT-5.1 Codex Max",
|
|
446
446
|
maxInputTokens: 272e3,
|
|
447
|
-
supportedFileTypes: ["pdf", "image"],
|
|
447
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
448
448
|
reasoning: true,
|
|
449
449
|
supportsTemperature: false,
|
|
450
450
|
supportsToolCall: true,
|
|
@@ -465,7 +465,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
465
465
|
name: "gpt-5.1-codex-mini",
|
|
466
466
|
displayName: "GPT-5.1 Codex mini",
|
|
467
467
|
maxInputTokens: 272e3,
|
|
468
|
-
supportedFileTypes: ["pdf", "image"],
|
|
468
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
469
469
|
reasoning: true,
|
|
470
470
|
supportsTemperature: false,
|
|
471
471
|
supportsToolCall: true,
|
|
@@ -486,7 +486,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
486
486
|
name: "gpt-5.2",
|
|
487
487
|
displayName: "GPT-5.2",
|
|
488
488
|
maxInputTokens: 272e3,
|
|
489
|
-
supportedFileTypes: ["pdf", "image"],
|
|
489
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
490
490
|
reasoning: true,
|
|
491
491
|
supportsTemperature: false,
|
|
492
492
|
supportsToolCall: true,
|
|
@@ -507,7 +507,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
507
507
|
name: "gpt-5.2-chat-latest",
|
|
508
508
|
displayName: "GPT-5.2 Chat",
|
|
509
509
|
maxInputTokens: 128e3,
|
|
510
|
-
supportedFileTypes: ["pdf", "image"],
|
|
510
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
511
511
|
reasoning: true,
|
|
512
512
|
supportsTemperature: false,
|
|
513
513
|
supportsToolCall: true,
|
|
@@ -528,7 +528,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
528
528
|
name: "gpt-5.2-codex",
|
|
529
529
|
displayName: "GPT-5.2 Codex",
|
|
530
530
|
maxInputTokens: 272e3,
|
|
531
|
-
supportedFileTypes: ["pdf", "image"],
|
|
531
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
532
532
|
reasoning: true,
|
|
533
533
|
supportsTemperature: false,
|
|
534
534
|
supportsToolCall: true,
|
|
@@ -549,7 +549,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
549
549
|
name: "gpt-5.2-pro",
|
|
550
550
|
displayName: "GPT-5.2 Pro",
|
|
551
551
|
maxInputTokens: 272e3,
|
|
552
|
-
supportedFileTypes: ["pdf", "image"],
|
|
552
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
553
553
|
reasoning: true,
|
|
554
554
|
supportsTemperature: false,
|
|
555
555
|
supportsToolCall: true,
|
|
@@ -565,11 +565,32 @@ const MODELS_BY_PROVIDER = {
|
|
|
565
565
|
unit: "per_million_tokens"
|
|
566
566
|
}
|
|
567
567
|
},
|
|
568
|
+
{
|
|
569
|
+
name: "gpt-5.3-chat-latest",
|
|
570
|
+
displayName: "GPT-5.3 Chat (latest)",
|
|
571
|
+
maxInputTokens: 128e3,
|
|
572
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
573
|
+
reasoning: false,
|
|
574
|
+
supportsTemperature: true,
|
|
575
|
+
supportsToolCall: true,
|
|
576
|
+
releaseDate: "2026-03-03",
|
|
577
|
+
modalities: {
|
|
578
|
+
input: ["text", "image"],
|
|
579
|
+
output: ["text"]
|
|
580
|
+
},
|
|
581
|
+
pricing: {
|
|
582
|
+
inputPerM: 1.75,
|
|
583
|
+
outputPerM: 14,
|
|
584
|
+
cacheReadPerM: 0.175,
|
|
585
|
+
currency: "USD",
|
|
586
|
+
unit: "per_million_tokens"
|
|
587
|
+
}
|
|
588
|
+
},
|
|
568
589
|
{
|
|
569
590
|
name: "gpt-5.3-codex",
|
|
570
591
|
displayName: "GPT-5.3 Codex",
|
|
571
592
|
maxInputTokens: 272e3,
|
|
572
|
-
supportedFileTypes: ["pdf", "image"],
|
|
593
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
573
594
|
reasoning: true,
|
|
574
595
|
supportsTemperature: false,
|
|
575
596
|
supportsToolCall: true,
|
|
@@ -590,7 +611,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
590
611
|
name: "gpt-5.3-codex-spark",
|
|
591
612
|
displayName: "GPT-5.3 Codex Spark",
|
|
592
613
|
maxInputTokens: 1e5,
|
|
593
|
-
supportedFileTypes: ["pdf", "image"],
|
|
614
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
594
615
|
reasoning: true,
|
|
595
616
|
supportsTemperature: false,
|
|
596
617
|
supportsToolCall: true,
|
|
@@ -607,11 +628,102 @@ const MODELS_BY_PROVIDER = {
|
|
|
607
628
|
unit: "per_million_tokens"
|
|
608
629
|
}
|
|
609
630
|
},
|
|
631
|
+
{
|
|
632
|
+
name: "gpt-5.4",
|
|
633
|
+
displayName: "GPT-5.4",
|
|
634
|
+
maxInputTokens: 922e3,
|
|
635
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
636
|
+
reasoning: true,
|
|
637
|
+
supportsTemperature: false,
|
|
638
|
+
supportsToolCall: true,
|
|
639
|
+
releaseDate: "2026-03-05",
|
|
640
|
+
modalities: {
|
|
641
|
+
input: ["text", "image", "pdf"],
|
|
642
|
+
output: ["text"]
|
|
643
|
+
},
|
|
644
|
+
pricing: {
|
|
645
|
+
inputPerM: 2.5,
|
|
646
|
+
outputPerM: 15,
|
|
647
|
+
cacheReadPerM: 0.25,
|
|
648
|
+
contextOver200kPerM: {
|
|
649
|
+
inputPerM: 5,
|
|
650
|
+
outputPerM: 22.5
|
|
651
|
+
},
|
|
652
|
+
currency: "USD",
|
|
653
|
+
unit: "per_million_tokens"
|
|
654
|
+
}
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
name: "gpt-5.4-mini",
|
|
658
|
+
displayName: "GPT-5.4 mini",
|
|
659
|
+
maxInputTokens: 272e3,
|
|
660
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
661
|
+
reasoning: true,
|
|
662
|
+
supportsTemperature: false,
|
|
663
|
+
supportsToolCall: true,
|
|
664
|
+
releaseDate: "2026-03-17",
|
|
665
|
+
modalities: {
|
|
666
|
+
input: ["text", "image"],
|
|
667
|
+
output: ["text"]
|
|
668
|
+
},
|
|
669
|
+
pricing: {
|
|
670
|
+
inputPerM: 0.75,
|
|
671
|
+
outputPerM: 4.5,
|
|
672
|
+
cacheReadPerM: 0.075,
|
|
673
|
+
currency: "USD",
|
|
674
|
+
unit: "per_million_tokens"
|
|
675
|
+
}
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
name: "gpt-5.4-nano",
|
|
679
|
+
displayName: "GPT-5.4 nano",
|
|
680
|
+
maxInputTokens: 272e3,
|
|
681
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
682
|
+
reasoning: true,
|
|
683
|
+
supportsTemperature: false,
|
|
684
|
+
supportsToolCall: true,
|
|
685
|
+
releaseDate: "2026-03-17",
|
|
686
|
+
modalities: {
|
|
687
|
+
input: ["text", "image"],
|
|
688
|
+
output: ["text"]
|
|
689
|
+
},
|
|
690
|
+
pricing: {
|
|
691
|
+
inputPerM: 0.2,
|
|
692
|
+
outputPerM: 1.25,
|
|
693
|
+
cacheReadPerM: 0.02,
|
|
694
|
+
currency: "USD",
|
|
695
|
+
unit: "per_million_tokens"
|
|
696
|
+
}
|
|
697
|
+
},
|
|
698
|
+
{
|
|
699
|
+
name: "gpt-5.4-pro",
|
|
700
|
+
displayName: "GPT-5.4 Pro",
|
|
701
|
+
maxInputTokens: 922e3,
|
|
702
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
703
|
+
reasoning: true,
|
|
704
|
+
supportsTemperature: false,
|
|
705
|
+
supportsToolCall: true,
|
|
706
|
+
releaseDate: "2026-03-05",
|
|
707
|
+
modalities: {
|
|
708
|
+
input: ["text", "image"],
|
|
709
|
+
output: ["text"]
|
|
710
|
+
},
|
|
711
|
+
pricing: {
|
|
712
|
+
inputPerM: 30,
|
|
713
|
+
outputPerM: 180,
|
|
714
|
+
contextOver200kPerM: {
|
|
715
|
+
inputPerM: 60,
|
|
716
|
+
outputPerM: 270
|
|
717
|
+
},
|
|
718
|
+
currency: "USD",
|
|
719
|
+
unit: "per_million_tokens"
|
|
720
|
+
}
|
|
721
|
+
},
|
|
610
722
|
{
|
|
611
723
|
name: "o1",
|
|
612
724
|
displayName: "o1",
|
|
613
725
|
maxInputTokens: 2e5,
|
|
614
|
-
supportedFileTypes: ["pdf", "image"],
|
|
726
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
615
727
|
reasoning: true,
|
|
616
728
|
supportsTemperature: false,
|
|
617
729
|
supportsToolCall: true,
|
|
@@ -674,7 +786,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
674
786
|
name: "o1-pro",
|
|
675
787
|
displayName: "o1-pro",
|
|
676
788
|
maxInputTokens: 2e5,
|
|
677
|
-
supportedFileTypes: ["pdf", "image"],
|
|
789
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
678
790
|
reasoning: true,
|
|
679
791
|
supportsTemperature: false,
|
|
680
792
|
supportsToolCall: true,
|
|
@@ -694,7 +806,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
694
806
|
name: "o3",
|
|
695
807
|
displayName: "o3",
|
|
696
808
|
maxInputTokens: 2e5,
|
|
697
|
-
supportedFileTypes: ["pdf", "image"],
|
|
809
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
698
810
|
reasoning: true,
|
|
699
811
|
supportsTemperature: false,
|
|
700
812
|
supportsToolCall: true,
|
|
@@ -715,7 +827,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
715
827
|
name: "o3-deep-research",
|
|
716
828
|
displayName: "o3-deep-research",
|
|
717
829
|
maxInputTokens: 2e5,
|
|
718
|
-
supportedFileTypes: ["pdf", "image"],
|
|
830
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
719
831
|
reasoning: true,
|
|
720
832
|
supportsTemperature: false,
|
|
721
833
|
supportsToolCall: true,
|
|
@@ -757,7 +869,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
757
869
|
name: "o3-pro",
|
|
758
870
|
displayName: "o3-pro",
|
|
759
871
|
maxInputTokens: 2e5,
|
|
760
|
-
supportedFileTypes: ["pdf", "image"],
|
|
872
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
761
873
|
reasoning: true,
|
|
762
874
|
supportsTemperature: false,
|
|
763
875
|
supportsToolCall: true,
|
|
@@ -777,7 +889,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
777
889
|
name: "o4-mini",
|
|
778
890
|
displayName: "o4-mini",
|
|
779
891
|
maxInputTokens: 2e5,
|
|
780
|
-
supportedFileTypes: ["pdf", "image"],
|
|
892
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
781
893
|
reasoning: true,
|
|
782
894
|
supportsTemperature: false,
|
|
783
895
|
supportsToolCall: true,
|
|
@@ -798,7 +910,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
798
910
|
name: "o4-mini-deep-research",
|
|
799
911
|
displayName: "o4-mini-deep-research",
|
|
800
912
|
maxInputTokens: 2e5,
|
|
801
|
-
supportedFileTypes: ["pdf", "image"],
|
|
913
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
802
914
|
reasoning: true,
|
|
803
915
|
supportsTemperature: false,
|
|
804
916
|
supportsToolCall: true,
|
|
@@ -1196,7 +1308,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1196
1308
|
{
|
|
1197
1309
|
name: "claude-opus-4-6",
|
|
1198
1310
|
displayName: "Claude Opus 4.6",
|
|
1199
|
-
maxInputTokens:
|
|
1311
|
+
maxInputTokens: 1e6,
|
|
1200
1312
|
supportedFileTypes: ["pdf", "image"],
|
|
1201
1313
|
reasoning: true,
|
|
1202
1314
|
supportsTemperature: true,
|
|
@@ -1211,10 +1323,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
1211
1323
|
outputPerM: 25,
|
|
1212
1324
|
cacheReadPerM: 0.5,
|
|
1213
1325
|
cacheWritePerM: 6.25,
|
|
1214
|
-
contextOver200kPerM: {
|
|
1215
|
-
inputPerM: 10,
|
|
1216
|
-
outputPerM: 37.5
|
|
1217
|
-
},
|
|
1218
1326
|
currency: "USD",
|
|
1219
1327
|
unit: "per_million_tokens"
|
|
1220
1328
|
}
|
|
@@ -1310,7 +1418,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1310
1418
|
{
|
|
1311
1419
|
name: "claude-sonnet-4-6",
|
|
1312
1420
|
displayName: "Claude Sonnet 4.6",
|
|
1313
|
-
maxInputTokens:
|
|
1421
|
+
maxInputTokens: 1e6,
|
|
1314
1422
|
supportedFileTypes: ["pdf", "image"],
|
|
1315
1423
|
reasoning: true,
|
|
1316
1424
|
supportsTemperature: true,
|
|
@@ -1325,10 +1433,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
1325
1433
|
outputPerM: 15,
|
|
1326
1434
|
cacheReadPerM: 0.3,
|
|
1327
1435
|
cacheWritePerM: 3.75,
|
|
1328
|
-
contextOver200kPerM: {
|
|
1329
|
-
inputPerM: 6,
|
|
1330
|
-
outputPerM: 22.5
|
|
1331
|
-
},
|
|
1332
1436
|
currency: "USD",
|
|
1333
1437
|
unit: "per_million_tokens"
|
|
1334
1438
|
}
|
|
@@ -1339,7 +1443,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1339
1443
|
name: "gemini-1.5-flash",
|
|
1340
1444
|
displayName: "Gemini 1.5 Flash",
|
|
1341
1445
|
maxInputTokens: 1e6,
|
|
1342
|
-
supportedFileTypes: ["image", "audio"],
|
|
1446
|
+
supportedFileTypes: ["image", "audio", "video", "document"],
|
|
1343
1447
|
reasoning: false,
|
|
1344
1448
|
supportsTemperature: true,
|
|
1345
1449
|
supportsToolCall: true,
|
|
@@ -1360,7 +1464,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1360
1464
|
name: "gemini-1.5-flash-8b",
|
|
1361
1465
|
displayName: "Gemini 1.5 Flash-8B",
|
|
1362
1466
|
maxInputTokens: 1e6,
|
|
1363
|
-
supportedFileTypes: ["image", "audio"],
|
|
1467
|
+
supportedFileTypes: ["image", "audio", "video", "document"],
|
|
1364
1468
|
reasoning: false,
|
|
1365
1469
|
supportsTemperature: true,
|
|
1366
1470
|
supportsToolCall: true,
|
|
@@ -1381,7 +1485,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1381
1485
|
name: "gemini-1.5-pro",
|
|
1382
1486
|
displayName: "Gemini 1.5 Pro",
|
|
1383
1487
|
maxInputTokens: 1e6,
|
|
1384
|
-
supportedFileTypes: ["image", "audio"],
|
|
1488
|
+
supportedFileTypes: ["image", "audio", "video", "document"],
|
|
1385
1489
|
reasoning: false,
|
|
1386
1490
|
supportsTemperature: true,
|
|
1387
1491
|
supportsToolCall: true,
|
|
@@ -1402,7 +1506,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1402
1506
|
name: "gemini-2.0-flash",
|
|
1403
1507
|
displayName: "Gemini 2.0 Flash",
|
|
1404
1508
|
maxInputTokens: 1048576,
|
|
1405
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1509
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1406
1510
|
reasoning: false,
|
|
1407
1511
|
supportsTemperature: true,
|
|
1408
1512
|
supportsToolCall: true,
|
|
@@ -1423,7 +1527,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1423
1527
|
name: "gemini-2.0-flash-lite",
|
|
1424
1528
|
displayName: "Gemini 2.0 Flash Lite",
|
|
1425
1529
|
maxInputTokens: 1048576,
|
|
1426
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1530
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1427
1531
|
reasoning: false,
|
|
1428
1532
|
supportsTemperature: true,
|
|
1429
1533
|
supportsToolCall: true,
|
|
@@ -1443,7 +1547,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1443
1547
|
name: "gemini-2.5-flash",
|
|
1444
1548
|
displayName: "Gemini 2.5 Flash",
|
|
1445
1549
|
maxInputTokens: 1048576,
|
|
1446
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1550
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1447
1551
|
reasoning: true,
|
|
1448
1552
|
supportsTemperature: true,
|
|
1449
1553
|
supportsToolCall: true,
|
|
@@ -1465,7 +1569,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1465
1569
|
name: "gemini-2.5-flash-image",
|
|
1466
1570
|
displayName: "Gemini 2.5 Flash Image",
|
|
1467
1571
|
maxInputTokens: 32768,
|
|
1468
|
-
supportedFileTypes: ["image"],
|
|
1572
|
+
supportedFileTypes: ["image", "document"],
|
|
1469
1573
|
reasoning: true,
|
|
1470
1574
|
supportsTemperature: true,
|
|
1471
1575
|
supportsToolCall: false,
|
|
@@ -1486,7 +1590,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1486
1590
|
name: "gemini-2.5-flash-image-preview",
|
|
1487
1591
|
displayName: "Gemini 2.5 Flash Image (Preview)",
|
|
1488
1592
|
maxInputTokens: 32768,
|
|
1489
|
-
supportedFileTypes: ["image"],
|
|
1593
|
+
supportedFileTypes: ["image", "document"],
|
|
1490
1594
|
reasoning: true,
|
|
1491
1595
|
supportsTemperature: true,
|
|
1492
1596
|
supportsToolCall: false,
|
|
@@ -1507,7 +1611,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1507
1611
|
name: "gemini-2.5-flash-lite",
|
|
1508
1612
|
displayName: "Gemini 2.5 Flash Lite",
|
|
1509
1613
|
maxInputTokens: 1048576,
|
|
1510
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1614
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1511
1615
|
reasoning: true,
|
|
1512
1616
|
supportsTemperature: true,
|
|
1513
1617
|
supportsToolCall: true,
|
|
@@ -1528,7 +1632,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1528
1632
|
name: "gemini-2.5-flash-lite-preview-06-17",
|
|
1529
1633
|
displayName: "Gemini 2.5 Flash Lite Preview 06-17",
|
|
1530
1634
|
maxInputTokens: 1048576,
|
|
1531
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1635
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1532
1636
|
reasoning: true,
|
|
1533
1637
|
supportsTemperature: true,
|
|
1534
1638
|
supportsToolCall: true,
|
|
@@ -1550,7 +1654,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1550
1654
|
name: "gemini-2.5-flash-lite-preview-09-2025",
|
|
1551
1655
|
displayName: "Gemini 2.5 Flash Lite Preview 09-25",
|
|
1552
1656
|
maxInputTokens: 1048576,
|
|
1553
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1657
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1554
1658
|
reasoning: true,
|
|
1555
1659
|
supportsTemperature: true,
|
|
1556
1660
|
supportsToolCall: true,
|
|
@@ -1571,7 +1675,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1571
1675
|
name: "gemini-2.5-flash-preview-04-17",
|
|
1572
1676
|
displayName: "Gemini 2.5 Flash Preview 04-17",
|
|
1573
1677
|
maxInputTokens: 1048576,
|
|
1574
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1678
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1575
1679
|
reasoning: true,
|
|
1576
1680
|
supportsTemperature: true,
|
|
1577
1681
|
supportsToolCall: true,
|
|
@@ -1592,7 +1696,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1592
1696
|
name: "gemini-2.5-flash-preview-05-20",
|
|
1593
1697
|
displayName: "Gemini 2.5 Flash Preview 05-20",
|
|
1594
1698
|
maxInputTokens: 1048576,
|
|
1595
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1699
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1596
1700
|
reasoning: true,
|
|
1597
1701
|
supportsTemperature: true,
|
|
1598
1702
|
supportsToolCall: true,
|
|
@@ -1613,7 +1717,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1613
1717
|
name: "gemini-2.5-flash-preview-09-2025",
|
|
1614
1718
|
displayName: "Gemini 2.5 Flash Preview 09-25",
|
|
1615
1719
|
maxInputTokens: 1048576,
|
|
1616
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1720
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1617
1721
|
reasoning: true,
|
|
1618
1722
|
supportsTemperature: true,
|
|
1619
1723
|
supportsToolCall: true,
|
|
@@ -1655,7 +1759,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1655
1759
|
name: "gemini-2.5-pro",
|
|
1656
1760
|
displayName: "Gemini 2.5 Pro",
|
|
1657
1761
|
maxInputTokens: 1048576,
|
|
1658
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1762
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1659
1763
|
reasoning: true,
|
|
1660
1764
|
supportsTemperature: true,
|
|
1661
1765
|
supportsToolCall: true,
|
|
@@ -1676,7 +1780,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1676
1780
|
name: "gemini-2.5-pro-preview-05-06",
|
|
1677
1781
|
displayName: "Gemini 2.5 Pro Preview 05-06",
|
|
1678
1782
|
maxInputTokens: 1048576,
|
|
1679
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1783
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1680
1784
|
reasoning: true,
|
|
1681
1785
|
supportsTemperature: true,
|
|
1682
1786
|
supportsToolCall: true,
|
|
@@ -1697,7 +1801,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1697
1801
|
name: "gemini-2.5-pro-preview-06-05",
|
|
1698
1802
|
displayName: "Gemini 2.5 Pro Preview 06-05",
|
|
1699
1803
|
maxInputTokens: 1048576,
|
|
1700
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1804
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1701
1805
|
reasoning: true,
|
|
1702
1806
|
supportsTemperature: true,
|
|
1703
1807
|
supportsToolCall: true,
|
|
@@ -1738,7 +1842,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1738
1842
|
name: "gemini-3-flash-preview",
|
|
1739
1843
|
displayName: "Gemini 3 Flash Preview",
|
|
1740
1844
|
maxInputTokens: 1048576,
|
|
1741
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1845
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1742
1846
|
reasoning: true,
|
|
1743
1847
|
supportsTemperature: true,
|
|
1744
1848
|
supportsToolCall: true,
|
|
@@ -1764,7 +1868,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1764
1868
|
name: "gemini-3-pro-preview",
|
|
1765
1869
|
displayName: "Gemini 3 Pro Preview",
|
|
1766
1870
|
maxInputTokens: 1e6,
|
|
1767
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1871
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1768
1872
|
reasoning: true,
|
|
1769
1873
|
supportsTemperature: true,
|
|
1770
1874
|
supportsToolCall: true,
|
|
@@ -1785,11 +1889,53 @@ const MODELS_BY_PROVIDER = {
|
|
|
1785
1889
|
unit: "per_million_tokens"
|
|
1786
1890
|
}
|
|
1787
1891
|
},
|
|
1892
|
+
{
|
|
1893
|
+
name: "gemini-3.1-flash-image-preview",
|
|
1894
|
+
displayName: "Gemini 3.1 Flash Image (Preview)",
|
|
1895
|
+
maxInputTokens: 131072,
|
|
1896
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
1897
|
+
reasoning: true,
|
|
1898
|
+
supportsTemperature: true,
|
|
1899
|
+
supportsToolCall: false,
|
|
1900
|
+
releaseDate: "2026-02-26",
|
|
1901
|
+
modalities: {
|
|
1902
|
+
input: ["text", "image", "pdf"],
|
|
1903
|
+
output: ["text", "image"]
|
|
1904
|
+
},
|
|
1905
|
+
pricing: {
|
|
1906
|
+
inputPerM: 0.25,
|
|
1907
|
+
outputPerM: 60,
|
|
1908
|
+
currency: "USD",
|
|
1909
|
+
unit: "per_million_tokens"
|
|
1910
|
+
}
|
|
1911
|
+
},
|
|
1912
|
+
{
|
|
1913
|
+
name: "gemini-3.1-flash-lite-preview",
|
|
1914
|
+
displayName: "Gemini 3.1 Flash Lite Preview",
|
|
1915
|
+
maxInputTokens: 1048576,
|
|
1916
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1917
|
+
reasoning: true,
|
|
1918
|
+
supportsTemperature: true,
|
|
1919
|
+
supportsToolCall: true,
|
|
1920
|
+
releaseDate: "2026-03-03",
|
|
1921
|
+
modalities: {
|
|
1922
|
+
input: ["text", "image", "video", "audio", "pdf"],
|
|
1923
|
+
output: ["text"]
|
|
1924
|
+
},
|
|
1925
|
+
pricing: {
|
|
1926
|
+
inputPerM: 0.25,
|
|
1927
|
+
outputPerM: 1.5,
|
|
1928
|
+
cacheReadPerM: 0.025,
|
|
1929
|
+
cacheWritePerM: 1,
|
|
1930
|
+
currency: "USD",
|
|
1931
|
+
unit: "per_million_tokens"
|
|
1932
|
+
}
|
|
1933
|
+
},
|
|
1788
1934
|
{
|
|
1789
1935
|
name: "gemini-3.1-pro-preview",
|
|
1790
1936
|
displayName: "Gemini 3.1 Pro Preview",
|
|
1791
1937
|
maxInputTokens: 1048576,
|
|
1792
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1938
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1793
1939
|
reasoning: true,
|
|
1794
1940
|
supportsTemperature: true,
|
|
1795
1941
|
supportsToolCall: true,
|
|
@@ -1814,7 +1960,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1814
1960
|
name: "gemini-3.1-pro-preview-customtools",
|
|
1815
1961
|
displayName: "Gemini 3.1 Pro Preview Custom Tools",
|
|
1816
1962
|
maxInputTokens: 1048576,
|
|
1817
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1963
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1818
1964
|
reasoning: true,
|
|
1819
1965
|
supportsTemperature: true,
|
|
1820
1966
|
supportsToolCall: true,
|
|
@@ -1859,7 +2005,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1859
2005
|
name: "gemini-flash-latest",
|
|
1860
2006
|
displayName: "Gemini Flash Latest",
|
|
1861
2007
|
maxInputTokens: 1048576,
|
|
1862
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
2008
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1863
2009
|
reasoning: true,
|
|
1864
2010
|
supportsTemperature: true,
|
|
1865
2011
|
supportsToolCall: true,
|
|
@@ -1881,7 +2027,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1881
2027
|
name: "gemini-flash-lite-latest",
|
|
1882
2028
|
displayName: "Gemini Flash-Lite Latest",
|
|
1883
2029
|
maxInputTokens: 1048576,
|
|
1884
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
2030
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1885
2031
|
reasoning: true,
|
|
1886
2032
|
supportsTemperature: true,
|
|
1887
2033
|
supportsToolCall: true,
|
|
@@ -1902,7 +2048,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1902
2048
|
name: "gemini-live-2.5-flash",
|
|
1903
2049
|
displayName: "Gemini Live 2.5 Flash",
|
|
1904
2050
|
maxInputTokens: 128e3,
|
|
1905
|
-
supportedFileTypes: ["image", "audio"],
|
|
2051
|
+
supportedFileTypes: ["image", "audio", "video", "document"],
|
|
1906
2052
|
reasoning: true,
|
|
1907
2053
|
supportsTemperature: true,
|
|
1908
2054
|
supportsToolCall: true,
|
|
@@ -1924,7 +2070,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1924
2070
|
name: "gemini-live-2.5-flash-preview-native-audio",
|
|
1925
2071
|
displayName: "Gemini Live 2.5 Flash Preview Native Audio",
|
|
1926
2072
|
maxInputTokens: 131072,
|
|
1927
|
-
supportedFileTypes: ["audio"],
|
|
2073
|
+
supportedFileTypes: ["audio", "video", "document"],
|
|
1928
2074
|
reasoning: true,
|
|
1929
2075
|
supportsTemperature: false,
|
|
1930
2076
|
supportsToolCall: true,
|
|
@@ -1944,6 +2090,66 @@ const MODELS_BY_PROVIDER = {
|
|
|
1944
2090
|
}
|
|
1945
2091
|
],
|
|
1946
2092
|
groq: [
|
|
2093
|
+
{
|
|
2094
|
+
name: "allam-2-7b",
|
|
2095
|
+
displayName: "ALLaM-2-7b",
|
|
2096
|
+
maxInputTokens: 4096,
|
|
2097
|
+
supportedFileTypes: [],
|
|
2098
|
+
reasoning: false,
|
|
2099
|
+
supportsTemperature: true,
|
|
2100
|
+
supportsToolCall: false,
|
|
2101
|
+
releaseDate: "2024-09",
|
|
2102
|
+
modalities: {
|
|
2103
|
+
input: ["text"],
|
|
2104
|
+
output: ["text"]
|
|
2105
|
+
},
|
|
2106
|
+
pricing: {
|
|
2107
|
+
inputPerM: 0,
|
|
2108
|
+
outputPerM: 0,
|
|
2109
|
+
currency: "USD",
|
|
2110
|
+
unit: "per_million_tokens"
|
|
2111
|
+
}
|
|
2112
|
+
},
|
|
2113
|
+
{
|
|
2114
|
+
name: "canopylabs/orpheus-arabic-saudi",
|
|
2115
|
+
displayName: "Orpheus Arabic Saudi",
|
|
2116
|
+
maxInputTokens: 4e3,
|
|
2117
|
+
supportedFileTypes: [],
|
|
2118
|
+
reasoning: false,
|
|
2119
|
+
supportsTemperature: true,
|
|
2120
|
+
supportsToolCall: false,
|
|
2121
|
+
releaseDate: "2025-12-16",
|
|
2122
|
+
modalities: {
|
|
2123
|
+
input: ["text"],
|
|
2124
|
+
output: ["audio"]
|
|
2125
|
+
},
|
|
2126
|
+
pricing: {
|
|
2127
|
+
inputPerM: 40,
|
|
2128
|
+
outputPerM: 0,
|
|
2129
|
+
currency: "USD",
|
|
2130
|
+
unit: "per_million_tokens"
|
|
2131
|
+
}
|
|
2132
|
+
},
|
|
2133
|
+
{
|
|
2134
|
+
name: "canopylabs/orpheus-v1-english",
|
|
2135
|
+
displayName: "Orpheus V1 English",
|
|
2136
|
+
maxInputTokens: 4e3,
|
|
2137
|
+
supportedFileTypes: [],
|
|
2138
|
+
reasoning: false,
|
|
2139
|
+
supportsTemperature: true,
|
|
2140
|
+
supportsToolCall: false,
|
|
2141
|
+
releaseDate: "2025-12-19",
|
|
2142
|
+
modalities: {
|
|
2143
|
+
input: ["text"],
|
|
2144
|
+
output: ["audio"]
|
|
2145
|
+
},
|
|
2146
|
+
pricing: {
|
|
2147
|
+
inputPerM: 0,
|
|
2148
|
+
outputPerM: 0,
|
|
2149
|
+
currency: "USD",
|
|
2150
|
+
unit: "per_million_tokens"
|
|
2151
|
+
}
|
|
2152
|
+
},
|
|
1947
2153
|
{
|
|
1948
2154
|
name: "deepseek-r1-distill-llama-70b",
|
|
1949
2155
|
displayName: "DeepSeek R1 Distill Llama 70B",
|
|
@@ -1986,6 +2192,46 @@ const MODELS_BY_PROVIDER = {
|
|
|
1986
2192
|
unit: "per_million_tokens"
|
|
1987
2193
|
}
|
|
1988
2194
|
},
|
|
2195
|
+
{
|
|
2196
|
+
name: "groq/compound",
|
|
2197
|
+
displayName: "Compound",
|
|
2198
|
+
maxInputTokens: 131072,
|
|
2199
|
+
supportedFileTypes: [],
|
|
2200
|
+
reasoning: true,
|
|
2201
|
+
supportsTemperature: true,
|
|
2202
|
+
supportsToolCall: true,
|
|
2203
|
+
releaseDate: "2025-09-04",
|
|
2204
|
+
modalities: {
|
|
2205
|
+
input: ["text"],
|
|
2206
|
+
output: ["text"]
|
|
2207
|
+
},
|
|
2208
|
+
pricing: {
|
|
2209
|
+
inputPerM: 0,
|
|
2210
|
+
outputPerM: 0,
|
|
2211
|
+
currency: "USD",
|
|
2212
|
+
unit: "per_million_tokens"
|
|
2213
|
+
}
|
|
2214
|
+
},
|
|
2215
|
+
{
|
|
2216
|
+
name: "groq/compound-mini",
|
|
2217
|
+
displayName: "Compound Mini",
|
|
2218
|
+
maxInputTokens: 131072,
|
|
2219
|
+
supportedFileTypes: [],
|
|
2220
|
+
reasoning: true,
|
|
2221
|
+
supportsTemperature: true,
|
|
2222
|
+
supportsToolCall: true,
|
|
2223
|
+
releaseDate: "2025-09-04",
|
|
2224
|
+
modalities: {
|
|
2225
|
+
input: ["text"],
|
|
2226
|
+
output: ["text"]
|
|
2227
|
+
},
|
|
2228
|
+
pricing: {
|
|
2229
|
+
inputPerM: 0,
|
|
2230
|
+
outputPerM: 0,
|
|
2231
|
+
currency: "USD",
|
|
2232
|
+
unit: "per_million_tokens"
|
|
2233
|
+
}
|
|
2234
|
+
},
|
|
1989
2235
|
{
|
|
1990
2236
|
name: "llama-3.1-8b-instant",
|
|
1991
2237
|
displayName: "Llama 3.1 8B Instant",
|
|
@@ -2099,6 +2345,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
2099
2345
|
supportsTemperature: true,
|
|
2100
2346
|
supportsToolCall: true,
|
|
2101
2347
|
releaseDate: "2025-04-05",
|
|
2348
|
+
status: "deprecated",
|
|
2102
2349
|
modalities: {
|
|
2103
2350
|
input: ["text", "image"],
|
|
2104
2351
|
output: ["text"]
|
|
@@ -2139,6 +2386,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
2139
2386
|
supportsTemperature: true,
|
|
2140
2387
|
supportsToolCall: false,
|
|
2141
2388
|
releaseDate: "2025-04-05",
|
|
2389
|
+
status: "deprecated",
|
|
2142
2390
|
modalities: {
|
|
2143
2391
|
input: ["text", "image"],
|
|
2144
2392
|
output: ["text"]
|
|
@@ -2151,14 +2399,54 @@ const MODELS_BY_PROVIDER = {
|
|
|
2151
2399
|
}
|
|
2152
2400
|
},
|
|
2153
2401
|
{
|
|
2154
|
-
name: "
|
|
2155
|
-
displayName: "
|
|
2156
|
-
maxInputTokens:
|
|
2402
|
+
name: "meta-llama/llama-prompt-guard-2-22m",
|
|
2403
|
+
displayName: "Llama Prompt Guard 2 22M",
|
|
2404
|
+
maxInputTokens: 512,
|
|
2157
2405
|
supportedFileTypes: [],
|
|
2158
2406
|
reasoning: false,
|
|
2159
2407
|
supportsTemperature: true,
|
|
2160
|
-
supportsToolCall:
|
|
2161
|
-
releaseDate: "
|
|
2408
|
+
supportsToolCall: false,
|
|
2409
|
+
releaseDate: "2024-10-01",
|
|
2410
|
+
modalities: {
|
|
2411
|
+
input: ["text"],
|
|
2412
|
+
output: ["text"]
|
|
2413
|
+
},
|
|
2414
|
+
pricing: {
|
|
2415
|
+
inputPerM: 0.03,
|
|
2416
|
+
outputPerM: 0.03,
|
|
2417
|
+
currency: "USD",
|
|
2418
|
+
unit: "per_million_tokens"
|
|
2419
|
+
}
|
|
2420
|
+
},
|
|
2421
|
+
{
|
|
2422
|
+
name: "meta-llama/llama-prompt-guard-2-86m",
|
|
2423
|
+
displayName: "Llama Prompt Guard 2 86M",
|
|
2424
|
+
maxInputTokens: 512,
|
|
2425
|
+
supportedFileTypes: [],
|
|
2426
|
+
reasoning: false,
|
|
2427
|
+
supportsTemperature: true,
|
|
2428
|
+
supportsToolCall: false,
|
|
2429
|
+
releaseDate: "2024-10-01",
|
|
2430
|
+
modalities: {
|
|
2431
|
+
input: ["text"],
|
|
2432
|
+
output: ["text"]
|
|
2433
|
+
},
|
|
2434
|
+
pricing: {
|
|
2435
|
+
inputPerM: 0.04,
|
|
2436
|
+
outputPerM: 0.04,
|
|
2437
|
+
currency: "USD",
|
|
2438
|
+
unit: "per_million_tokens"
|
|
2439
|
+
}
|
|
2440
|
+
},
|
|
2441
|
+
{
|
|
2442
|
+
name: "mistral-saba-24b",
|
|
2443
|
+
displayName: "Mistral Saba 24B",
|
|
2444
|
+
maxInputTokens: 32768,
|
|
2445
|
+
supportedFileTypes: [],
|
|
2446
|
+
reasoning: false,
|
|
2447
|
+
supportsTemperature: true,
|
|
2448
|
+
supportsToolCall: true,
|
|
2449
|
+
releaseDate: "2025-02-06",
|
|
2162
2450
|
status: "deprecated",
|
|
2163
2451
|
modalities: {
|
|
2164
2452
|
input: ["text"],
|
|
@@ -2252,6 +2540,27 @@ const MODELS_BY_PROVIDER = {
|
|
|
2252
2540
|
unit: "per_million_tokens"
|
|
2253
2541
|
}
|
|
2254
2542
|
},
|
|
2543
|
+
{
|
|
2544
|
+
name: "openai/gpt-oss-safeguard-20b",
|
|
2545
|
+
displayName: "Safety GPT OSS 20B",
|
|
2546
|
+
maxInputTokens: 131072,
|
|
2547
|
+
supportedFileTypes: [],
|
|
2548
|
+
reasoning: true,
|
|
2549
|
+
supportsTemperature: true,
|
|
2550
|
+
supportsToolCall: true,
|
|
2551
|
+
releaseDate: "2025-03-05",
|
|
2552
|
+
modalities: {
|
|
2553
|
+
input: ["text"],
|
|
2554
|
+
output: ["text"]
|
|
2555
|
+
},
|
|
2556
|
+
pricing: {
|
|
2557
|
+
inputPerM: 0.075,
|
|
2558
|
+
outputPerM: 0.3,
|
|
2559
|
+
cacheReadPerM: 0.037,
|
|
2560
|
+
currency: "USD",
|
|
2561
|
+
unit: "per_million_tokens"
|
|
2562
|
+
}
|
|
2563
|
+
},
|
|
2255
2564
|
{
|
|
2256
2565
|
name: "qwen-qwq-32b",
|
|
2257
2566
|
displayName: "Qwen QwQ 32B",
|
|
@@ -2292,6 +2601,46 @@ const MODELS_BY_PROVIDER = {
|
|
|
2292
2601
|
currency: "USD",
|
|
2293
2602
|
unit: "per_million_tokens"
|
|
2294
2603
|
}
|
|
2604
|
+
},
|
|
2605
|
+
{
|
|
2606
|
+
name: "whisper-large-v3",
|
|
2607
|
+
displayName: "Whisper Large V3",
|
|
2608
|
+
maxInputTokens: 448,
|
|
2609
|
+
supportedFileTypes: ["audio"],
|
|
2610
|
+
reasoning: false,
|
|
2611
|
+
supportsTemperature: true,
|
|
2612
|
+
supportsToolCall: false,
|
|
2613
|
+
releaseDate: "2023-09-01",
|
|
2614
|
+
modalities: {
|
|
2615
|
+
input: ["audio"],
|
|
2616
|
+
output: ["text"]
|
|
2617
|
+
},
|
|
2618
|
+
pricing: {
|
|
2619
|
+
inputPerM: 0,
|
|
2620
|
+
outputPerM: 0,
|
|
2621
|
+
currency: "USD",
|
|
2622
|
+
unit: "per_million_tokens"
|
|
2623
|
+
}
|
|
2624
|
+
},
|
|
2625
|
+
{
|
|
2626
|
+
name: "whisper-large-v3-turbo",
|
|
2627
|
+
displayName: "Whisper Large v3 Turbo",
|
|
2628
|
+
maxInputTokens: 448,
|
|
2629
|
+
supportedFileTypes: ["audio"],
|
|
2630
|
+
reasoning: false,
|
|
2631
|
+
supportsTemperature: true,
|
|
2632
|
+
supportsToolCall: false,
|
|
2633
|
+
releaseDate: "2024-10-01",
|
|
2634
|
+
modalities: {
|
|
2635
|
+
input: ["audio"],
|
|
2636
|
+
output: ["text"]
|
|
2637
|
+
},
|
|
2638
|
+
pricing: {
|
|
2639
|
+
inputPerM: 0,
|
|
2640
|
+
outputPerM: 0,
|
|
2641
|
+
currency: "USD",
|
|
2642
|
+
unit: "per_million_tokens"
|
|
2643
|
+
}
|
|
2295
2644
|
}
|
|
2296
2645
|
],
|
|
2297
2646
|
xai: [
|
|
@@ -2700,6 +3049,81 @@ const MODELS_BY_PROVIDER = {
|
|
|
2700
3049
|
unit: "per_million_tokens"
|
|
2701
3050
|
}
|
|
2702
3051
|
},
|
|
3052
|
+
{
|
|
3053
|
+
name: "grok-4.20-0309-non-reasoning",
|
|
3054
|
+
displayName: "Grok 4.20 (Non-Reasoning)",
|
|
3055
|
+
maxInputTokens: 2e6,
|
|
3056
|
+
supportedFileTypes: ["image"],
|
|
3057
|
+
reasoning: false,
|
|
3058
|
+
supportsTemperature: true,
|
|
3059
|
+
supportsToolCall: true,
|
|
3060
|
+
releaseDate: "2026-03-09",
|
|
3061
|
+
modalities: {
|
|
3062
|
+
input: ["text", "image"],
|
|
3063
|
+
output: ["text"]
|
|
3064
|
+
},
|
|
3065
|
+
pricing: {
|
|
3066
|
+
inputPerM: 2,
|
|
3067
|
+
outputPerM: 6,
|
|
3068
|
+
cacheReadPerM: 0.2,
|
|
3069
|
+
contextOver200kPerM: {
|
|
3070
|
+
inputPerM: 4,
|
|
3071
|
+
outputPerM: 12
|
|
3072
|
+
},
|
|
3073
|
+
currency: "USD",
|
|
3074
|
+
unit: "per_million_tokens"
|
|
3075
|
+
}
|
|
3076
|
+
},
|
|
3077
|
+
{
|
|
3078
|
+
name: "grok-4.20-0309-reasoning",
|
|
3079
|
+
displayName: "Grok 4.20 (Reasoning)",
|
|
3080
|
+
maxInputTokens: 2e6,
|
|
3081
|
+
supportedFileTypes: ["image"],
|
|
3082
|
+
reasoning: true,
|
|
3083
|
+
supportsTemperature: true,
|
|
3084
|
+
supportsToolCall: true,
|
|
3085
|
+
releaseDate: "2026-03-09",
|
|
3086
|
+
modalities: {
|
|
3087
|
+
input: ["text", "image"],
|
|
3088
|
+
output: ["text"]
|
|
3089
|
+
},
|
|
3090
|
+
pricing: {
|
|
3091
|
+
inputPerM: 2,
|
|
3092
|
+
outputPerM: 6,
|
|
3093
|
+
cacheReadPerM: 0.2,
|
|
3094
|
+
contextOver200kPerM: {
|
|
3095
|
+
inputPerM: 4,
|
|
3096
|
+
outputPerM: 12
|
|
3097
|
+
},
|
|
3098
|
+
currency: "USD",
|
|
3099
|
+
unit: "per_million_tokens"
|
|
3100
|
+
}
|
|
3101
|
+
},
|
|
3102
|
+
{
|
|
3103
|
+
name: "grok-4.20-multi-agent-0309",
|
|
3104
|
+
displayName: "Grok 4.20 Multi-Agent",
|
|
3105
|
+
maxInputTokens: 2e6,
|
|
3106
|
+
supportedFileTypes: ["image"],
|
|
3107
|
+
reasoning: true,
|
|
3108
|
+
supportsTemperature: true,
|
|
3109
|
+
supportsToolCall: false,
|
|
3110
|
+
releaseDate: "2026-03-09",
|
|
3111
|
+
modalities: {
|
|
3112
|
+
input: ["text", "image"],
|
|
3113
|
+
output: ["text"]
|
|
3114
|
+
},
|
|
3115
|
+
pricing: {
|
|
3116
|
+
inputPerM: 2,
|
|
3117
|
+
outputPerM: 6,
|
|
3118
|
+
cacheReadPerM: 0.2,
|
|
3119
|
+
contextOver200kPerM: {
|
|
3120
|
+
inputPerM: 4,
|
|
3121
|
+
outputPerM: 12
|
|
3122
|
+
},
|
|
3123
|
+
currency: "USD",
|
|
3124
|
+
unit: "per_million_tokens"
|
|
3125
|
+
}
|
|
3126
|
+
},
|
|
2703
3127
|
{
|
|
2704
3128
|
name: "grok-beta",
|
|
2705
3129
|
displayName: "Grok Beta",
|
|
@@ -2770,7 +3194,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
2770
3194
|
displayName: "Command A",
|
|
2771
3195
|
maxInputTokens: 256e3,
|
|
2772
3196
|
supportedFileTypes: [],
|
|
2773
|
-
reasoning:
|
|
3197
|
+
reasoning: false,
|
|
2774
3198
|
supportsTemperature: true,
|
|
2775
3199
|
supportsToolCall: true,
|
|
2776
3200
|
releaseDate: "2025-03-13",
|
|
@@ -2851,7 +3275,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
2851
3275
|
displayName: "Command R",
|
|
2852
3276
|
maxInputTokens: 128e3,
|
|
2853
3277
|
supportedFileTypes: [],
|
|
2854
|
-
reasoning:
|
|
3278
|
+
reasoning: false,
|
|
2855
3279
|
supportsTemperature: true,
|
|
2856
3280
|
supportsToolCall: true,
|
|
2857
3281
|
releaseDate: "2024-08-30",
|
|
@@ -2871,7 +3295,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
2871
3295
|
displayName: "Command R+",
|
|
2872
3296
|
maxInputTokens: 128e3,
|
|
2873
3297
|
supportedFileTypes: [],
|
|
2874
|
-
reasoning:
|
|
3298
|
+
reasoning: false,
|
|
2875
3299
|
supportsTemperature: true,
|
|
2876
3300
|
supportsToolCall: true,
|
|
2877
3301
|
releaseDate: "2024-08-30",
|
|
@@ -3012,6 +3436,50 @@ const MODELS_BY_PROVIDER = {
|
|
|
3012
3436
|
currency: "USD",
|
|
3013
3437
|
unit: "per_million_tokens"
|
|
3014
3438
|
}
|
|
3439
|
+
},
|
|
3440
|
+
{
|
|
3441
|
+
name: "MiniMax-M2.7",
|
|
3442
|
+
displayName: "MiniMax-M2.7",
|
|
3443
|
+
maxInputTokens: 204800,
|
|
3444
|
+
supportedFileTypes: [],
|
|
3445
|
+
reasoning: true,
|
|
3446
|
+
supportsTemperature: true,
|
|
3447
|
+
supportsToolCall: true,
|
|
3448
|
+
releaseDate: "2026-03-18",
|
|
3449
|
+
modalities: {
|
|
3450
|
+
input: ["text"],
|
|
3451
|
+
output: ["text"]
|
|
3452
|
+
},
|
|
3453
|
+
pricing: {
|
|
3454
|
+
inputPerM: 0.3,
|
|
3455
|
+
outputPerM: 1.2,
|
|
3456
|
+
cacheReadPerM: 0.06,
|
|
3457
|
+
cacheWritePerM: 0.375,
|
|
3458
|
+
currency: "USD",
|
|
3459
|
+
unit: "per_million_tokens"
|
|
3460
|
+
}
|
|
3461
|
+
},
|
|
3462
|
+
{
|
|
3463
|
+
name: "MiniMax-M2.7-highspeed",
|
|
3464
|
+
displayName: "MiniMax-M2.7-highspeed",
|
|
3465
|
+
maxInputTokens: 204800,
|
|
3466
|
+
supportedFileTypes: [],
|
|
3467
|
+
reasoning: true,
|
|
3468
|
+
supportsTemperature: true,
|
|
3469
|
+
supportsToolCall: true,
|
|
3470
|
+
releaseDate: "2026-03-18",
|
|
3471
|
+
modalities: {
|
|
3472
|
+
input: ["text"],
|
|
3473
|
+
output: ["text"]
|
|
3474
|
+
},
|
|
3475
|
+
pricing: {
|
|
3476
|
+
inputPerM: 0.6,
|
|
3477
|
+
outputPerM: 2.4,
|
|
3478
|
+
cacheReadPerM: 0.06,
|
|
3479
|
+
cacheWritePerM: 0.375,
|
|
3480
|
+
currency: "USD",
|
|
3481
|
+
unit: "per_million_tokens"
|
|
3482
|
+
}
|
|
3015
3483
|
}
|
|
3016
3484
|
],
|
|
3017
3485
|
glm: [
|
|
@@ -3085,7 +3553,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
3085
3553
|
name: "glm-4.5v",
|
|
3086
3554
|
displayName: "GLM-4.5V",
|
|
3087
3555
|
maxInputTokens: 64e3,
|
|
3088
|
-
supportedFileTypes: ["image"],
|
|
3556
|
+
supportedFileTypes: ["image", "video"],
|
|
3089
3557
|
reasoning: true,
|
|
3090
3558
|
supportsTemperature: true,
|
|
3091
3559
|
supportsToolCall: true,
|
|
@@ -3127,7 +3595,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
3127
3595
|
name: "glm-4.6v",
|
|
3128
3596
|
displayName: "GLM-4.6V",
|
|
3129
3597
|
maxInputTokens: 128e3,
|
|
3130
|
-
supportedFileTypes: ["image"],
|
|
3598
|
+
supportedFileTypes: ["image", "video"],
|
|
3131
3599
|
reasoning: true,
|
|
3132
3600
|
supportsTemperature: true,
|
|
3133
3601
|
supportsToolCall: true,
|
|
@@ -3192,6 +3660,28 @@ const MODELS_BY_PROVIDER = {
|
|
|
3192
3660
|
unit: "per_million_tokens"
|
|
3193
3661
|
}
|
|
3194
3662
|
},
|
|
3663
|
+
{
|
|
3664
|
+
name: "glm-4.7-flashx",
|
|
3665
|
+
displayName: "GLM-4.7-FlashX",
|
|
3666
|
+
maxInputTokens: 2e5,
|
|
3667
|
+
supportedFileTypes: [],
|
|
3668
|
+
reasoning: true,
|
|
3669
|
+
supportsTemperature: true,
|
|
3670
|
+
supportsToolCall: true,
|
|
3671
|
+
releaseDate: "2026-01-19",
|
|
3672
|
+
modalities: {
|
|
3673
|
+
input: ["text"],
|
|
3674
|
+
output: ["text"]
|
|
3675
|
+
},
|
|
3676
|
+
pricing: {
|
|
3677
|
+
inputPerM: 0.07,
|
|
3678
|
+
outputPerM: 0.4,
|
|
3679
|
+
cacheReadPerM: 0.01,
|
|
3680
|
+
cacheWritePerM: 0,
|
|
3681
|
+
currency: "USD",
|
|
3682
|
+
unit: "per_million_tokens"
|
|
3683
|
+
}
|
|
3684
|
+
},
|
|
3195
3685
|
{
|
|
3196
3686
|
name: "glm-5",
|
|
3197
3687
|
displayName: "GLM-5",
|
|
@@ -3220,26 +3710,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
3220
3710
|
}
|
|
3221
3711
|
],
|
|
3222
3712
|
openrouter: [
|
|
3223
|
-
{
|
|
3224
|
-
name: "allenai/molmo-2-8b:free",
|
|
3225
|
-
displayName: "Molmo2 8B (free)",
|
|
3226
|
-
maxInputTokens: 36864,
|
|
3227
|
-
supportedFileTypes: ["image"],
|
|
3228
|
-
reasoning: true,
|
|
3229
|
-
supportsTemperature: true,
|
|
3230
|
-
supportsToolCall: false,
|
|
3231
|
-
releaseDate: "2026-01-09",
|
|
3232
|
-
modalities: {
|
|
3233
|
-
input: ["text", "image", "video"],
|
|
3234
|
-
output: ["text"]
|
|
3235
|
-
},
|
|
3236
|
-
pricing: {
|
|
3237
|
-
inputPerM: 0,
|
|
3238
|
-
outputPerM: 0,
|
|
3239
|
-
currency: "USD",
|
|
3240
|
-
unit: "per_million_tokens"
|
|
3241
|
-
}
|
|
3242
|
-
},
|
|
3243
3713
|
{
|
|
3244
3714
|
name: "anthropic/claude-3.5-haiku",
|
|
3245
3715
|
displayName: "Claude Haiku 3.5",
|
|
@@ -3637,14 +4107,14 @@ const MODELS_BY_PROVIDER = {
|
|
|
3637
4107
|
}
|
|
3638
4108
|
},
|
|
3639
4109
|
{
|
|
3640
|
-
name: "
|
|
3641
|
-
displayName: "
|
|
3642
|
-
maxInputTokens:
|
|
4110
|
+
name: "deepseek/deepseek-chat-v3-0324",
|
|
4111
|
+
displayName: "DeepSeek V3 0324",
|
|
4112
|
+
maxInputTokens: 16384,
|
|
3643
4113
|
supportedFileTypes: [],
|
|
3644
4114
|
reasoning: false,
|
|
3645
4115
|
supportsTemperature: true,
|
|
3646
|
-
supportsToolCall:
|
|
3647
|
-
releaseDate: "2025-
|
|
4116
|
+
supportsToolCall: false,
|
|
4117
|
+
releaseDate: "2025-03-24",
|
|
3648
4118
|
modalities: {
|
|
3649
4119
|
input: ["text"],
|
|
3650
4120
|
output: ["text"]
|
|
@@ -3657,174 +4127,34 @@ const MODELS_BY_PROVIDER = {
|
|
|
3657
4127
|
}
|
|
3658
4128
|
},
|
|
3659
4129
|
{
|
|
3660
|
-
name: "
|
|
3661
|
-
displayName: "
|
|
3662
|
-
maxInputTokens:
|
|
4130
|
+
name: "deepseek/deepseek-chat-v3.1",
|
|
4131
|
+
displayName: "DeepSeek-V3.1",
|
|
4132
|
+
maxInputTokens: 163840,
|
|
3663
4133
|
supportedFileTypes: [],
|
|
3664
4134
|
reasoning: true,
|
|
3665
4135
|
supportsTemperature: true,
|
|
3666
4136
|
supportsToolCall: true,
|
|
3667
|
-
releaseDate: "2025-
|
|
4137
|
+
releaseDate: "2025-08-21",
|
|
3668
4138
|
modalities: {
|
|
3669
4139
|
input: ["text"],
|
|
3670
4140
|
output: ["text"]
|
|
3671
4141
|
},
|
|
3672
4142
|
pricing: {
|
|
3673
|
-
inputPerM: 0,
|
|
3674
|
-
outputPerM: 0,
|
|
4143
|
+
inputPerM: 0.2,
|
|
4144
|
+
outputPerM: 0.8,
|
|
3675
4145
|
currency: "USD",
|
|
3676
4146
|
unit: "per_million_tokens"
|
|
3677
4147
|
}
|
|
3678
4148
|
},
|
|
3679
4149
|
{
|
|
3680
|
-
name: "deepseek/deepseek-
|
|
3681
|
-
displayName: "DeepSeek
|
|
3682
|
-
maxInputTokens:
|
|
4150
|
+
name: "deepseek/deepseek-r1-distill-llama-70b",
|
|
4151
|
+
displayName: "DeepSeek R1 Distill Llama 70B",
|
|
4152
|
+
maxInputTokens: 8192,
|
|
3683
4153
|
supportedFileTypes: [],
|
|
3684
|
-
reasoning:
|
|
4154
|
+
reasoning: true,
|
|
3685
4155
|
supportsTemperature: true,
|
|
3686
4156
|
supportsToolCall: false,
|
|
3687
|
-
releaseDate: "2025-
|
|
3688
|
-
modalities: {
|
|
3689
|
-
input: ["text"],
|
|
3690
|
-
output: ["text"]
|
|
3691
|
-
},
|
|
3692
|
-
pricing: {
|
|
3693
|
-
inputPerM: 0,
|
|
3694
|
-
outputPerM: 0,
|
|
3695
|
-
currency: "USD",
|
|
3696
|
-
unit: "per_million_tokens"
|
|
3697
|
-
}
|
|
3698
|
-
},
|
|
3699
|
-
{
|
|
3700
|
-
name: "deepseek/deepseek-chat-v3.1",
|
|
3701
|
-
displayName: "DeepSeek-V3.1",
|
|
3702
|
-
maxInputTokens: 163840,
|
|
3703
|
-
supportedFileTypes: [],
|
|
3704
|
-
reasoning: true,
|
|
3705
|
-
supportsTemperature: true,
|
|
3706
|
-
supportsToolCall: true,
|
|
3707
|
-
releaseDate: "2025-08-21",
|
|
3708
|
-
modalities: {
|
|
3709
|
-
input: ["text"],
|
|
3710
|
-
output: ["text"]
|
|
3711
|
-
},
|
|
3712
|
-
pricing: {
|
|
3713
|
-
inputPerM: 0.2,
|
|
3714
|
-
outputPerM: 0.8,
|
|
3715
|
-
currency: "USD",
|
|
3716
|
-
unit: "per_million_tokens"
|
|
3717
|
-
}
|
|
3718
|
-
},
|
|
3719
|
-
{
|
|
3720
|
-
name: "deepseek/deepseek-r1-0528-qwen3-8b:free",
|
|
3721
|
-
displayName: "Deepseek R1 0528 Qwen3 8B (free)",
|
|
3722
|
-
maxInputTokens: 131072,
|
|
3723
|
-
supportedFileTypes: [],
|
|
3724
|
-
reasoning: true,
|
|
3725
|
-
supportsTemperature: true,
|
|
3726
|
-
supportsToolCall: true,
|
|
3727
|
-
releaseDate: "2025-05-29",
|
|
3728
|
-
modalities: {
|
|
3729
|
-
input: ["text"],
|
|
3730
|
-
output: ["text"]
|
|
3731
|
-
},
|
|
3732
|
-
pricing: {
|
|
3733
|
-
inputPerM: 0,
|
|
3734
|
-
outputPerM: 0,
|
|
3735
|
-
currency: "USD",
|
|
3736
|
-
unit: "per_million_tokens"
|
|
3737
|
-
}
|
|
3738
|
-
},
|
|
3739
|
-
{
|
|
3740
|
-
name: "deepseek/deepseek-r1-0528:free",
|
|
3741
|
-
displayName: "R1 0528 (free)",
|
|
3742
|
-
maxInputTokens: 163840,
|
|
3743
|
-
supportedFileTypes: [],
|
|
3744
|
-
reasoning: true,
|
|
3745
|
-
supportsTemperature: true,
|
|
3746
|
-
supportsToolCall: false,
|
|
3747
|
-
releaseDate: "2025-05-28",
|
|
3748
|
-
modalities: {
|
|
3749
|
-
input: ["text"],
|
|
3750
|
-
output: ["text"]
|
|
3751
|
-
},
|
|
3752
|
-
pricing: {
|
|
3753
|
-
inputPerM: 0,
|
|
3754
|
-
outputPerM: 0,
|
|
3755
|
-
currency: "USD",
|
|
3756
|
-
unit: "per_million_tokens"
|
|
3757
|
-
}
|
|
3758
|
-
},
|
|
3759
|
-
{
|
|
3760
|
-
name: "deepseek/deepseek-r1-distill-llama-70b",
|
|
3761
|
-
displayName: "DeepSeek R1 Distill Llama 70B",
|
|
3762
|
-
maxInputTokens: 8192,
|
|
3763
|
-
supportedFileTypes: [],
|
|
3764
|
-
reasoning: true,
|
|
3765
|
-
supportsTemperature: true,
|
|
3766
|
-
supportsToolCall: false,
|
|
3767
|
-
releaseDate: "2025-01-23",
|
|
3768
|
-
modalities: {
|
|
3769
|
-
input: ["text"],
|
|
3770
|
-
output: ["text"]
|
|
3771
|
-
},
|
|
3772
|
-
pricing: {
|
|
3773
|
-
inputPerM: 0,
|
|
3774
|
-
outputPerM: 0,
|
|
3775
|
-
currency: "USD",
|
|
3776
|
-
unit: "per_million_tokens"
|
|
3777
|
-
}
|
|
3778
|
-
},
|
|
3779
|
-
{
|
|
3780
|
-
name: "deepseek/deepseek-r1-distill-qwen-14b",
|
|
3781
|
-
displayName: "DeepSeek R1 Distill Qwen 14B",
|
|
3782
|
-
maxInputTokens: 64e3,
|
|
3783
|
-
supportedFileTypes: [],
|
|
3784
|
-
reasoning: true,
|
|
3785
|
-
supportsTemperature: true,
|
|
3786
|
-
supportsToolCall: false,
|
|
3787
|
-
releaseDate: "2025-01-29",
|
|
3788
|
-
modalities: {
|
|
3789
|
-
input: ["text"],
|
|
3790
|
-
output: ["text"]
|
|
3791
|
-
},
|
|
3792
|
-
pricing: {
|
|
3793
|
-
inputPerM: 0,
|
|
3794
|
-
outputPerM: 0,
|
|
3795
|
-
currency: "USD",
|
|
3796
|
-
unit: "per_million_tokens"
|
|
3797
|
-
}
|
|
3798
|
-
},
|
|
3799
|
-
{
|
|
3800
|
-
name: "deepseek/deepseek-r1:free",
|
|
3801
|
-
displayName: "R1 (free)",
|
|
3802
|
-
maxInputTokens: 163840,
|
|
3803
|
-
supportedFileTypes: [],
|
|
3804
|
-
reasoning: true,
|
|
3805
|
-
supportsTemperature: true,
|
|
3806
|
-
supportsToolCall: true,
|
|
3807
|
-
releaseDate: "2025-01-20",
|
|
3808
|
-
modalities: {
|
|
3809
|
-
input: ["text"],
|
|
3810
|
-
output: ["text"]
|
|
3811
|
-
},
|
|
3812
|
-
pricing: {
|
|
3813
|
-
inputPerM: 0,
|
|
3814
|
-
outputPerM: 0,
|
|
3815
|
-
currency: "USD",
|
|
3816
|
-
unit: "per_million_tokens"
|
|
3817
|
-
}
|
|
3818
|
-
},
|
|
3819
|
-
{
|
|
3820
|
-
name: "deepseek/deepseek-v3-base:free",
|
|
3821
|
-
displayName: "DeepSeek V3 Base (free)",
|
|
3822
|
-
maxInputTokens: 163840,
|
|
3823
|
-
supportedFileTypes: [],
|
|
3824
|
-
reasoning: false,
|
|
3825
|
-
supportsTemperature: true,
|
|
3826
|
-
supportsToolCall: false,
|
|
3827
|
-
releaseDate: "2025-03-29",
|
|
4157
|
+
releaseDate: "2025-01-23",
|
|
3828
4158
|
modalities: {
|
|
3829
4159
|
input: ["text"],
|
|
3830
4160
|
output: ["text"]
|
|
@@ -3916,31 +4246,11 @@ const MODELS_BY_PROVIDER = {
|
|
|
3916
4246
|
unit: "per_million_tokens"
|
|
3917
4247
|
}
|
|
3918
4248
|
},
|
|
3919
|
-
{
|
|
3920
|
-
name: "featherless/qwerky-72b",
|
|
3921
|
-
displayName: "Qwerky 72B",
|
|
3922
|
-
maxInputTokens: 32768,
|
|
3923
|
-
supportedFileTypes: [],
|
|
3924
|
-
reasoning: false,
|
|
3925
|
-
supportsTemperature: true,
|
|
3926
|
-
supportsToolCall: false,
|
|
3927
|
-
releaseDate: "2025-03-20",
|
|
3928
|
-
modalities: {
|
|
3929
|
-
input: ["text"],
|
|
3930
|
-
output: ["text"]
|
|
3931
|
-
},
|
|
3932
|
-
pricing: {
|
|
3933
|
-
inputPerM: 0,
|
|
3934
|
-
outputPerM: 0,
|
|
3935
|
-
currency: "USD",
|
|
3936
|
-
unit: "per_million_tokens"
|
|
3937
|
-
}
|
|
3938
|
-
},
|
|
3939
4249
|
{
|
|
3940
4250
|
name: "google/gemini-2.0-flash-001",
|
|
3941
4251
|
displayName: "Gemini 2.0 Flash",
|
|
3942
4252
|
maxInputTokens: 1048576,
|
|
3943
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
4253
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
3944
4254
|
reasoning: false,
|
|
3945
4255
|
supportsTemperature: true,
|
|
3946
4256
|
supportsToolCall: true,
|
|
@@ -3957,31 +4267,11 @@ const MODELS_BY_PROVIDER = {
|
|
|
3957
4267
|
unit: "per_million_tokens"
|
|
3958
4268
|
}
|
|
3959
4269
|
},
|
|
3960
|
-
{
|
|
3961
|
-
name: "google/gemini-2.0-flash-exp:free",
|
|
3962
|
-
displayName: "Gemini 2.0 Flash Experimental (free)",
|
|
3963
|
-
maxInputTokens: 1048576,
|
|
3964
|
-
supportedFileTypes: ["image"],
|
|
3965
|
-
reasoning: false,
|
|
3966
|
-
supportsTemperature: true,
|
|
3967
|
-
supportsToolCall: true,
|
|
3968
|
-
releaseDate: "2024-12-11",
|
|
3969
|
-
modalities: {
|
|
3970
|
-
input: ["text", "image"],
|
|
3971
|
-
output: ["text"]
|
|
3972
|
-
},
|
|
3973
|
-
pricing: {
|
|
3974
|
-
inputPerM: 0,
|
|
3975
|
-
outputPerM: 0,
|
|
3976
|
-
currency: "USD",
|
|
3977
|
-
unit: "per_million_tokens"
|
|
3978
|
-
}
|
|
3979
|
-
},
|
|
3980
4270
|
{
|
|
3981
4271
|
name: "google/gemini-2.5-flash",
|
|
3982
4272
|
displayName: "Gemini 2.5 Flash",
|
|
3983
4273
|
maxInputTokens: 1048576,
|
|
3984
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
4274
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
3985
4275
|
reasoning: true,
|
|
3986
4276
|
supportsTemperature: true,
|
|
3987
4277
|
supportsToolCall: true,
|
|
@@ -4002,7 +4292,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
4002
4292
|
name: "google/gemini-2.5-flash-lite",
|
|
4003
4293
|
displayName: "Gemini 2.5 Flash Lite",
|
|
4004
4294
|
maxInputTokens: 1048576,
|
|
4005
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
4295
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
4006
4296
|
reasoning: true,
|
|
4007
4297
|
supportsTemperature: true,
|
|
4008
4298
|
supportsToolCall: true,
|
|
@@ -4023,7 +4313,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
4023
4313
|
name: "google/gemini-2.5-flash-lite-preview-09-2025",
|
|
4024
4314
|
displayName: "Gemini 2.5 Flash Lite Preview 09-25",
|
|
4025
4315
|
maxInputTokens: 1048576,
|
|
4026
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
4316
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
4027
4317
|
reasoning: true,
|
|
4028
4318
|
supportsTemperature: true,
|
|
4029
4319
|
supportsToolCall: true,
|
|
@@ -4044,7 +4334,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
4044
4334
|
name: "google/gemini-2.5-flash-preview-09-2025",
|
|
4045
4335
|
displayName: "Gemini 2.5 Flash Preview 09-25",
|
|
4046
4336
|
maxInputTokens: 1048576,
|
|
4047
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
4337
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
4048
4338
|
reasoning: true,
|
|
4049
4339
|
supportsTemperature: true,
|
|
4050
4340
|
supportsToolCall: true,
|
|
@@ -4065,7 +4355,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
4065
4355
|
name: "google/gemini-2.5-pro",
|
|
4066
4356
|
displayName: "Gemini 2.5 Pro",
|
|
4067
4357
|
maxInputTokens: 1048576,
|
|
4068
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
4358
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
4069
4359
|
reasoning: true,
|
|
4070
4360
|
supportsTemperature: true,
|
|
4071
4361
|
supportsToolCall: true,
|
|
@@ -4086,7 +4376,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
4086
4376
|
name: "google/gemini-2.5-pro-preview-05-06",
|
|
4087
4377
|
displayName: "Gemini 2.5 Pro Preview 05-06",
|
|
4088
4378
|
maxInputTokens: 1048576,
|
|
4089
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
4379
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
4090
4380
|
reasoning: true,
|
|
4091
4381
|
supportsTemperature: true,
|
|
4092
4382
|
supportsToolCall: true,
|
|
@@ -4107,7 +4397,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
4107
4397
|
name: "google/gemini-2.5-pro-preview-06-05",
|
|
4108
4398
|
displayName: "Gemini 2.5 Pro Preview 06-05",
|
|
4109
4399
|
maxInputTokens: 1048576,
|
|
4110
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
4400
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
4111
4401
|
reasoning: true,
|
|
4112
4402
|
supportsTemperature: true,
|
|
4113
4403
|
supportsToolCall: true,
|
|
@@ -4128,7 +4418,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
4128
4418
|
name: "google/gemini-3-flash-preview",
|
|
4129
4419
|
displayName: "Gemini 3 Flash Preview",
|
|
4130
4420
|
maxInputTokens: 1048576,
|
|
4131
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
4421
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
4132
4422
|
reasoning: true,
|
|
4133
4423
|
supportsTemperature: true,
|
|
4134
4424
|
supportsToolCall: true,
|
|
@@ -4153,7 +4443,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
4153
4443
|
name: "google/gemini-3-pro-preview",
|
|
4154
4444
|
displayName: "Gemini 3 Pro Preview",
|
|
4155
4445
|
maxInputTokens: 105e4,
|
|
4156
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
4446
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
4157
4447
|
reasoning: true,
|
|
4158
4448
|
supportsTemperature: true,
|
|
4159
4449
|
supportsToolCall: true,
|
|
@@ -4173,11 +4463,36 @@ const MODELS_BY_PROVIDER = {
|
|
|
4173
4463
|
unit: "per_million_tokens"
|
|
4174
4464
|
}
|
|
4175
4465
|
},
|
|
4466
|
+
{
|
|
4467
|
+
name: "google/gemini-3.1-flash-lite-preview",
|
|
4468
|
+
displayName: "Gemini 3.1 Flash Lite Preview",
|
|
4469
|
+
maxInputTokens: 1048576,
|
|
4470
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
4471
|
+
reasoning: true,
|
|
4472
|
+
supportsTemperature: true,
|
|
4473
|
+
supportsToolCall: true,
|
|
4474
|
+
releaseDate: "2026-03-03",
|
|
4475
|
+
modalities: {
|
|
4476
|
+
input: ["text", "image", "video", "pdf", "audio"],
|
|
4477
|
+
output: ["text"]
|
|
4478
|
+
},
|
|
4479
|
+
pricing: {
|
|
4480
|
+
inputPerM: 0.25,
|
|
4481
|
+
outputPerM: 1.5,
|
|
4482
|
+
cacheReadPerM: 0.025,
|
|
4483
|
+
cacheWritePerM: 0.083,
|
|
4484
|
+
reasoningPerM: 1.5,
|
|
4485
|
+
inputAudioPerM: 0.5,
|
|
4486
|
+
outputAudioPerM: 0.5,
|
|
4487
|
+
currency: "USD",
|
|
4488
|
+
unit: "per_million_tokens"
|
|
4489
|
+
}
|
|
4490
|
+
},
|
|
4176
4491
|
{
|
|
4177
4492
|
name: "google/gemini-3.1-pro-preview",
|
|
4178
4493
|
displayName: "Gemini 3.1 Pro Preview",
|
|
4179
4494
|
maxInputTokens: 1048576,
|
|
4180
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
4495
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
4181
4496
|
reasoning: true,
|
|
4182
4497
|
supportsTemperature: true,
|
|
4183
4498
|
supportsToolCall: true,
|
|
@@ -4206,7 +4521,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
4206
4521
|
name: "google/gemini-3.1-pro-preview-customtools",
|
|
4207
4522
|
displayName: "Gemini 3.1 Pro Preview Custom Tools",
|
|
4208
4523
|
maxInputTokens: 1048576,
|
|
4209
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
4524
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
4210
4525
|
reasoning: true,
|
|
4211
4526
|
supportsTemperature: true,
|
|
4212
4527
|
supportsToolCall: true,
|
|
@@ -4255,7 +4570,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
4255
4570
|
name: "google/gemma-3-12b-it",
|
|
4256
4571
|
displayName: "Gemma 3 12B",
|
|
4257
4572
|
maxInputTokens: 131072,
|
|
4258
|
-
supportedFileTypes: ["image"],
|
|
4573
|
+
supportedFileTypes: ["image", "document"],
|
|
4259
4574
|
reasoning: false,
|
|
4260
4575
|
supportsTemperature: true,
|
|
4261
4576
|
supportsToolCall: false,
|
|
@@ -4275,7 +4590,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
4275
4590
|
name: "google/gemma-3-12b-it:free",
|
|
4276
4591
|
displayName: "Gemma 3 12B (free)",
|
|
4277
4592
|
maxInputTokens: 32768,
|
|
4278
|
-
supportedFileTypes: ["image"],
|
|
4593
|
+
supportedFileTypes: ["image", "document"],
|
|
4279
4594
|
reasoning: false,
|
|
4280
4595
|
supportsTemperature: true,
|
|
4281
4596
|
supportsToolCall: false,
|
|
@@ -4295,7 +4610,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
4295
4610
|
name: "google/gemma-3-27b-it",
|
|
4296
4611
|
displayName: "Gemma 3 27B",
|
|
4297
4612
|
maxInputTokens: 96e3,
|
|
4298
|
-
supportedFileTypes: ["image"],
|
|
4613
|
+
supportedFileTypes: ["image", "document"],
|
|
4299
4614
|
reasoning: false,
|
|
4300
4615
|
supportsTemperature: true,
|
|
4301
4616
|
supportsToolCall: true,
|
|
@@ -4315,7 +4630,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
4315
4630
|
name: "google/gemma-3-27b-it:free",
|
|
4316
4631
|
displayName: "Gemma 3 27B (free)",
|
|
4317
4632
|
maxInputTokens: 131072,
|
|
4318
|
-
supportedFileTypes: ["image"],
|
|
4633
|
+
supportedFileTypes: ["image", "document"],
|
|
4319
4634
|
reasoning: false,
|
|
4320
4635
|
supportsTemperature: true,
|
|
4321
4636
|
supportsToolCall: true,
|
|
@@ -4335,7 +4650,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
4335
4650
|
name: "google/gemma-3-4b-it",
|
|
4336
4651
|
displayName: "Gemma 3 4B",
|
|
4337
4652
|
maxInputTokens: 96e3,
|
|
4338
|
-
supportedFileTypes: ["image"],
|
|
4653
|
+
supportedFileTypes: ["image", "document"],
|
|
4339
4654
|
reasoning: false,
|
|
4340
4655
|
supportsTemperature: true,
|
|
4341
4656
|
supportsToolCall: false,
|
|
@@ -4355,7 +4670,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
4355
4670
|
name: "google/gemma-3-4b-it:free",
|
|
4356
4671
|
displayName: "Gemma 3 4B (free)",
|
|
4357
4672
|
maxInputTokens: 32768,
|
|
4358
|
-
supportedFileTypes: ["image"],
|
|
4673
|
+
supportedFileTypes: ["image", "document"],
|
|
4359
4674
|
reasoning: false,
|
|
4360
4675
|
supportsTemperature: true,
|
|
4361
4676
|
supportsToolCall: false,
|
|
@@ -4432,51 +4747,74 @@ const MODELS_BY_PROVIDER = {
|
|
|
4432
4747
|
}
|
|
4433
4748
|
},
|
|
4434
4749
|
{
|
|
4435
|
-
name: "
|
|
4436
|
-
displayName: "
|
|
4437
|
-
maxInputTokens:
|
|
4750
|
+
name: "inception/mercury",
|
|
4751
|
+
displayName: "Mercury",
|
|
4752
|
+
maxInputTokens: 128e3,
|
|
4438
4753
|
supportedFileTypes: [],
|
|
4439
4754
|
reasoning: false,
|
|
4440
4755
|
supportsTemperature: true,
|
|
4441
4756
|
supportsToolCall: true,
|
|
4442
|
-
releaseDate: "2025-
|
|
4757
|
+
releaseDate: "2025-06-26",
|
|
4443
4758
|
modalities: {
|
|
4444
4759
|
input: ["text"],
|
|
4445
4760
|
output: ["text"]
|
|
4446
4761
|
},
|
|
4447
4762
|
pricing: {
|
|
4448
|
-
inputPerM: 0,
|
|
4449
|
-
outputPerM: 0,
|
|
4763
|
+
inputPerM: 0.25,
|
|
4764
|
+
outputPerM: 0.75,
|
|
4765
|
+
cacheReadPerM: 0.025,
|
|
4450
4766
|
currency: "USD",
|
|
4451
4767
|
unit: "per_million_tokens"
|
|
4452
4768
|
}
|
|
4453
4769
|
},
|
|
4454
4770
|
{
|
|
4455
|
-
name: "
|
|
4456
|
-
displayName: "
|
|
4457
|
-
maxInputTokens:
|
|
4771
|
+
name: "inception/mercury-2",
|
|
4772
|
+
displayName: "Mercury 2",
|
|
4773
|
+
maxInputTokens: 128e3,
|
|
4774
|
+
supportedFileTypes: [],
|
|
4775
|
+
reasoning: true,
|
|
4776
|
+
supportsTemperature: true,
|
|
4777
|
+
supportsToolCall: true,
|
|
4778
|
+
releaseDate: "2026-03-04",
|
|
4779
|
+
modalities: {
|
|
4780
|
+
input: ["text"],
|
|
4781
|
+
output: ["text"]
|
|
4782
|
+
},
|
|
4783
|
+
pricing: {
|
|
4784
|
+
inputPerM: 0.25,
|
|
4785
|
+
outputPerM: 0.75,
|
|
4786
|
+
cacheReadPerM: 0.025,
|
|
4787
|
+
currency: "USD",
|
|
4788
|
+
unit: "per_million_tokens"
|
|
4789
|
+
}
|
|
4790
|
+
},
|
|
4791
|
+
{
|
|
4792
|
+
name: "inception/mercury-coder",
|
|
4793
|
+
displayName: "Mercury Coder",
|
|
4794
|
+
maxInputTokens: 128e3,
|
|
4458
4795
|
supportedFileTypes: [],
|
|
4459
4796
|
reasoning: false,
|
|
4460
4797
|
supportsTemperature: true,
|
|
4461
|
-
supportsToolCall:
|
|
4462
|
-
releaseDate: "
|
|
4798
|
+
supportsToolCall: true,
|
|
4799
|
+
releaseDate: "2025-04-30",
|
|
4463
4800
|
modalities: {
|
|
4464
4801
|
input: ["text"],
|
|
4465
4802
|
output: ["text"]
|
|
4466
4803
|
},
|
|
4467
4804
|
pricing: {
|
|
4468
|
-
inputPerM: 0,
|
|
4469
|
-
outputPerM: 0,
|
|
4805
|
+
inputPerM: 0.25,
|
|
4806
|
+
outputPerM: 0.75,
|
|
4807
|
+
cacheReadPerM: 0.025,
|
|
4470
4808
|
currency: "USD",
|
|
4471
4809
|
unit: "per_million_tokens"
|
|
4472
4810
|
}
|
|
4473
4811
|
},
|
|
4474
4812
|
{
|
|
4475
|
-
name: "liquid/lfm-2.5-1.2b-
|
|
4476
|
-
displayName: "LFM2.5-1.2B-
|
|
4813
|
+
name: "liquid/lfm-2.5-1.2b-instruct:free",
|
|
4814
|
+
displayName: "LFM2.5-1.2B-Instruct (free)",
|
|
4477
4815
|
maxInputTokens: 131072,
|
|
4478
4816
|
supportedFileTypes: [],
|
|
4479
|
-
reasoning:
|
|
4817
|
+
reasoning: false,
|
|
4480
4818
|
supportsTemperature: true,
|
|
4481
4819
|
supportsToolCall: false,
|
|
4482
4820
|
releaseDate: "2026-01-20",
|
|
@@ -4492,14 +4830,14 @@ const MODELS_BY_PROVIDER = {
|
|
|
4492
4830
|
}
|
|
4493
4831
|
},
|
|
4494
4832
|
{
|
|
4495
|
-
name: "
|
|
4496
|
-
displayName: "
|
|
4833
|
+
name: "liquid/lfm-2.5-1.2b-thinking:free",
|
|
4834
|
+
displayName: "LFM2.5-1.2B-Thinking (free)",
|
|
4497
4835
|
maxInputTokens: 131072,
|
|
4498
4836
|
supportedFileTypes: [],
|
|
4499
|
-
reasoning:
|
|
4837
|
+
reasoning: true,
|
|
4500
4838
|
supportsTemperature: true,
|
|
4501
4839
|
supportsToolCall: false,
|
|
4502
|
-
releaseDate: "
|
|
4840
|
+
releaseDate: "2026-01-20",
|
|
4503
4841
|
modalities: {
|
|
4504
4842
|
input: ["text"],
|
|
4505
4843
|
output: ["text"]
|
|
@@ -4572,81 +4910,41 @@ const MODELS_BY_PROVIDER = {
|
|
|
4572
4910
|
}
|
|
4573
4911
|
},
|
|
4574
4912
|
{
|
|
4575
|
-
name: "
|
|
4576
|
-
displayName: "
|
|
4577
|
-
maxInputTokens:
|
|
4913
|
+
name: "minimax/minimax-01",
|
|
4914
|
+
displayName: "MiniMax-01",
|
|
4915
|
+
maxInputTokens: 1e6,
|
|
4578
4916
|
supportedFileTypes: ["image"],
|
|
4579
|
-
reasoning:
|
|
4917
|
+
reasoning: true,
|
|
4580
4918
|
supportsTemperature: true,
|
|
4581
4919
|
supportsToolCall: true,
|
|
4582
|
-
releaseDate: "2025-
|
|
4920
|
+
releaseDate: "2025-01-15",
|
|
4583
4921
|
modalities: {
|
|
4584
4922
|
input: ["text", "image"],
|
|
4585
4923
|
output: ["text"]
|
|
4586
4924
|
},
|
|
4587
4925
|
pricing: {
|
|
4588
|
-
inputPerM: 0,
|
|
4589
|
-
outputPerM:
|
|
4926
|
+
inputPerM: 0.2,
|
|
4927
|
+
outputPerM: 1.1,
|
|
4590
4928
|
currency: "USD",
|
|
4591
4929
|
unit: "per_million_tokens"
|
|
4592
4930
|
}
|
|
4593
4931
|
},
|
|
4594
4932
|
{
|
|
4595
|
-
name: "
|
|
4596
|
-
displayName: "
|
|
4597
|
-
maxInputTokens:
|
|
4933
|
+
name: "minimax/minimax-m1",
|
|
4934
|
+
displayName: "MiniMax M1",
|
|
4935
|
+
maxInputTokens: 1e6,
|
|
4598
4936
|
supportedFileTypes: [],
|
|
4599
4937
|
reasoning: true,
|
|
4600
4938
|
supportsTemperature: true,
|
|
4601
4939
|
supportsToolCall: true,
|
|
4602
|
-
releaseDate: "2025-
|
|
4940
|
+
releaseDate: "2025-06-17",
|
|
4603
4941
|
modalities: {
|
|
4604
4942
|
input: ["text"],
|
|
4605
4943
|
output: ["text"]
|
|
4606
4944
|
},
|
|
4607
4945
|
pricing: {
|
|
4608
|
-
inputPerM: 0,
|
|
4609
|
-
outputPerM:
|
|
4610
|
-
currency: "USD",
|
|
4611
|
-
unit: "per_million_tokens"
|
|
4612
|
-
}
|
|
4613
|
-
},
|
|
4614
|
-
{
|
|
4615
|
-
name: "minimax/minimax-01",
|
|
4616
|
-
displayName: "MiniMax-01",
|
|
4617
|
-
maxInputTokens: 1e6,
|
|
4618
|
-
supportedFileTypes: ["image"],
|
|
4619
|
-
reasoning: true,
|
|
4620
|
-
supportsTemperature: true,
|
|
4621
|
-
supportsToolCall: true,
|
|
4622
|
-
releaseDate: "2025-01-15",
|
|
4623
|
-
modalities: {
|
|
4624
|
-
input: ["text", "image"],
|
|
4625
|
-
output: ["text"]
|
|
4626
|
-
},
|
|
4627
|
-
pricing: {
|
|
4628
|
-
inputPerM: 0.2,
|
|
4629
|
-
outputPerM: 1.1,
|
|
4630
|
-
currency: "USD",
|
|
4631
|
-
unit: "per_million_tokens"
|
|
4632
|
-
}
|
|
4633
|
-
},
|
|
4634
|
-
{
|
|
4635
|
-
name: "minimax/minimax-m1",
|
|
4636
|
-
displayName: "MiniMax M1",
|
|
4637
|
-
maxInputTokens: 1e6,
|
|
4638
|
-
supportedFileTypes: [],
|
|
4639
|
-
reasoning: true,
|
|
4640
|
-
supportsTemperature: true,
|
|
4641
|
-
supportsToolCall: true,
|
|
4642
|
-
releaseDate: "2025-06-17",
|
|
4643
|
-
modalities: {
|
|
4644
|
-
input: ["text"],
|
|
4645
|
-
output: ["text"]
|
|
4646
|
-
},
|
|
4647
|
-
pricing: {
|
|
4648
|
-
inputPerM: 0.4,
|
|
4649
|
-
outputPerM: 2.2,
|
|
4946
|
+
inputPerM: 0.4,
|
|
4947
|
+
outputPerM: 2.2,
|
|
4650
4948
|
currency: "USD",
|
|
4651
4949
|
unit: "per_million_tokens"
|
|
4652
4950
|
}
|
|
@@ -4727,48 +5025,50 @@ const MODELS_BY_PROVIDER = {
|
|
|
4727
5025
|
}
|
|
4728
5026
|
},
|
|
4729
5027
|
{
|
|
4730
|
-
name: "
|
|
4731
|
-
displayName: "
|
|
4732
|
-
maxInputTokens:
|
|
5028
|
+
name: "minimax/minimax-m2.7",
|
|
5029
|
+
displayName: "MiniMax M2.7",
|
|
5030
|
+
maxInputTokens: 204800,
|
|
4733
5031
|
supportedFileTypes: [],
|
|
4734
|
-
reasoning:
|
|
5032
|
+
reasoning: true,
|
|
4735
5033
|
supportsTemperature: true,
|
|
4736
5034
|
supportsToolCall: true,
|
|
4737
|
-
releaseDate: "
|
|
5035
|
+
releaseDate: "2026-03-18",
|
|
4738
5036
|
modalities: {
|
|
4739
5037
|
input: ["text"],
|
|
4740
5038
|
output: ["text"]
|
|
4741
5039
|
},
|
|
4742
5040
|
pricing: {
|
|
4743
5041
|
inputPerM: 0.3,
|
|
4744
|
-
outputPerM:
|
|
5042
|
+
outputPerM: 1.2,
|
|
5043
|
+
cacheReadPerM: 0.06,
|
|
5044
|
+
cacheWritePerM: 0.375,
|
|
4745
5045
|
currency: "USD",
|
|
4746
5046
|
unit: "per_million_tokens"
|
|
4747
5047
|
}
|
|
4748
5048
|
},
|
|
4749
5049
|
{
|
|
4750
|
-
name: "mistralai/
|
|
4751
|
-
displayName: "
|
|
4752
|
-
maxInputTokens:
|
|
5050
|
+
name: "mistralai/codestral-2508",
|
|
5051
|
+
displayName: "Codestral 2508",
|
|
5052
|
+
maxInputTokens: 256e3,
|
|
4753
5053
|
supportedFileTypes: [],
|
|
4754
5054
|
reasoning: false,
|
|
4755
5055
|
supportsTemperature: true,
|
|
4756
5056
|
supportsToolCall: true,
|
|
4757
|
-
releaseDate: "2025-
|
|
5057
|
+
releaseDate: "2025-08-01",
|
|
4758
5058
|
modalities: {
|
|
4759
5059
|
input: ["text"],
|
|
4760
5060
|
output: ["text"]
|
|
4761
5061
|
},
|
|
4762
5062
|
pricing: {
|
|
4763
|
-
inputPerM: 0.
|
|
4764
|
-
outputPerM: 0.
|
|
5063
|
+
inputPerM: 0.3,
|
|
5064
|
+
outputPerM: 0.9,
|
|
4765
5065
|
currency: "USD",
|
|
4766
5066
|
unit: "per_million_tokens"
|
|
4767
5067
|
}
|
|
4768
5068
|
},
|
|
4769
5069
|
{
|
|
4770
|
-
name: "mistralai/devstral-2512
|
|
4771
|
-
displayName: "Devstral 2 2512
|
|
5070
|
+
name: "mistralai/devstral-2512",
|
|
5071
|
+
displayName: "Devstral 2 2512",
|
|
4772
5072
|
maxInputTokens: 262144,
|
|
4773
5073
|
supportedFileTypes: [],
|
|
4774
5074
|
reasoning: false,
|
|
@@ -4780,8 +5080,8 @@ const MODELS_BY_PROVIDER = {
|
|
|
4780
5080
|
output: ["text"]
|
|
4781
5081
|
},
|
|
4782
5082
|
pricing: {
|
|
4783
|
-
inputPerM: 0,
|
|
4784
|
-
outputPerM: 0,
|
|
5083
|
+
inputPerM: 0.15,
|
|
5084
|
+
outputPerM: 0.6,
|
|
4785
5085
|
currency: "USD",
|
|
4786
5086
|
unit: "per_million_tokens"
|
|
4787
5087
|
}
|
|
@@ -4826,26 +5126,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
4826
5126
|
unit: "per_million_tokens"
|
|
4827
5127
|
}
|
|
4828
5128
|
},
|
|
4829
|
-
{
|
|
4830
|
-
name: "mistralai/devstral-small-2505:free",
|
|
4831
|
-
displayName: "Devstral Small 2505 (free)",
|
|
4832
|
-
maxInputTokens: 32768,
|
|
4833
|
-
supportedFileTypes: [],
|
|
4834
|
-
reasoning: false,
|
|
4835
|
-
supportsTemperature: true,
|
|
4836
|
-
supportsToolCall: true,
|
|
4837
|
-
releaseDate: "2025-05-21",
|
|
4838
|
-
modalities: {
|
|
4839
|
-
input: ["text"],
|
|
4840
|
-
output: ["text"]
|
|
4841
|
-
},
|
|
4842
|
-
pricing: {
|
|
4843
|
-
inputPerM: 0,
|
|
4844
|
-
outputPerM: 0,
|
|
4845
|
-
currency: "USD",
|
|
4846
|
-
unit: "per_million_tokens"
|
|
4847
|
-
}
|
|
4848
|
-
},
|
|
4849
5129
|
{
|
|
4850
5130
|
name: "mistralai/devstral-small-2507",
|
|
4851
5131
|
displayName: "Devstral Small 1.1",
|
|
@@ -4866,26 +5146,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
4866
5146
|
unit: "per_million_tokens"
|
|
4867
5147
|
}
|
|
4868
5148
|
},
|
|
4869
|
-
{
|
|
4870
|
-
name: "mistralai/mistral-7b-instruct:free",
|
|
4871
|
-
displayName: "Mistral 7B Instruct (free)",
|
|
4872
|
-
maxInputTokens: 32768,
|
|
4873
|
-
supportedFileTypes: [],
|
|
4874
|
-
reasoning: false,
|
|
4875
|
-
supportsTemperature: true,
|
|
4876
|
-
supportsToolCall: true,
|
|
4877
|
-
releaseDate: "2024-05-27",
|
|
4878
|
-
modalities: {
|
|
4879
|
-
input: ["text"],
|
|
4880
|
-
output: ["text"]
|
|
4881
|
-
},
|
|
4882
|
-
pricing: {
|
|
4883
|
-
inputPerM: 0,
|
|
4884
|
-
outputPerM: 0,
|
|
4885
|
-
currency: "USD",
|
|
4886
|
-
unit: "per_million_tokens"
|
|
4887
|
-
}
|
|
4888
|
-
},
|
|
4889
5149
|
{
|
|
4890
5150
|
name: "mistralai/mistral-medium-3",
|
|
4891
5151
|
displayName: "Mistral Medium 3",
|
|
@@ -4927,21 +5187,21 @@ const MODELS_BY_PROVIDER = {
|
|
|
4927
5187
|
}
|
|
4928
5188
|
},
|
|
4929
5189
|
{
|
|
4930
|
-
name: "mistralai/mistral-
|
|
4931
|
-
displayName: "Mistral
|
|
4932
|
-
maxInputTokens:
|
|
4933
|
-
supportedFileTypes: [],
|
|
4934
|
-
reasoning:
|
|
5190
|
+
name: "mistralai/mistral-small-2603",
|
|
5191
|
+
displayName: "Mistral Small 4",
|
|
5192
|
+
maxInputTokens: 262144,
|
|
5193
|
+
supportedFileTypes: ["image"],
|
|
5194
|
+
reasoning: true,
|
|
4935
5195
|
supportsTemperature: true,
|
|
4936
5196
|
supportsToolCall: true,
|
|
4937
|
-
releaseDate: "
|
|
5197
|
+
releaseDate: "2026-03-16",
|
|
4938
5198
|
modalities: {
|
|
4939
|
-
input: ["text"],
|
|
5199
|
+
input: ["text", "image"],
|
|
4940
5200
|
output: ["text"]
|
|
4941
5201
|
},
|
|
4942
5202
|
pricing: {
|
|
4943
|
-
inputPerM: 0,
|
|
4944
|
-
outputPerM: 0,
|
|
5203
|
+
inputPerM: 0.15,
|
|
5204
|
+
outputPerM: 0.6,
|
|
4945
5205
|
currency: "USD",
|
|
4946
5206
|
unit: "per_million_tokens"
|
|
4947
5207
|
}
|
|
@@ -4986,46 +5246,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
4986
5246
|
unit: "per_million_tokens"
|
|
4987
5247
|
}
|
|
4988
5248
|
},
|
|
4989
|
-
{
|
|
4990
|
-
name: "mistralai/mistral-small-3.2-24b-instruct:free",
|
|
4991
|
-
displayName: "Mistral Small 3.2 24B (free)",
|
|
4992
|
-
maxInputTokens: 96e3,
|
|
4993
|
-
supportedFileTypes: ["image"],
|
|
4994
|
-
reasoning: false,
|
|
4995
|
-
supportsTemperature: true,
|
|
4996
|
-
supportsToolCall: true,
|
|
4997
|
-
releaseDate: "2025-06-20",
|
|
4998
|
-
modalities: {
|
|
4999
|
-
input: ["text", "image"],
|
|
5000
|
-
output: ["text"]
|
|
5001
|
-
},
|
|
5002
|
-
pricing: {
|
|
5003
|
-
inputPerM: 0,
|
|
5004
|
-
outputPerM: 0,
|
|
5005
|
-
currency: "USD",
|
|
5006
|
-
unit: "per_million_tokens"
|
|
5007
|
-
}
|
|
5008
|
-
},
|
|
5009
|
-
{
|
|
5010
|
-
name: "moonshotai/kimi-dev-72b:free",
|
|
5011
|
-
displayName: "Kimi Dev 72b (free)",
|
|
5012
|
-
maxInputTokens: 131072,
|
|
5013
|
-
supportedFileTypes: [],
|
|
5014
|
-
reasoning: false,
|
|
5015
|
-
supportsTemperature: true,
|
|
5016
|
-
supportsToolCall: true,
|
|
5017
|
-
releaseDate: "2025-06-16",
|
|
5018
|
-
modalities: {
|
|
5019
|
-
input: ["text"],
|
|
5020
|
-
output: ["text"]
|
|
5021
|
-
},
|
|
5022
|
-
pricing: {
|
|
5023
|
-
inputPerM: 0,
|
|
5024
|
-
outputPerM: 0,
|
|
5025
|
-
currency: "USD",
|
|
5026
|
-
unit: "per_million_tokens"
|
|
5027
|
-
}
|
|
5028
|
-
},
|
|
5029
5249
|
{
|
|
5030
5250
|
name: "moonshotai/kimi-k2",
|
|
5031
5251
|
displayName: "Kimi K2",
|
|
@@ -5135,7 +5355,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5135
5355
|
name: "moonshotai/kimi-k2.5",
|
|
5136
5356
|
displayName: "Kimi K2.5",
|
|
5137
5357
|
maxInputTokens: 262144,
|
|
5138
|
-
supportedFileTypes: ["image"],
|
|
5358
|
+
supportedFileTypes: ["image", "video"],
|
|
5139
5359
|
reasoning: true,
|
|
5140
5360
|
supportsTemperature: true,
|
|
5141
5361
|
supportsToolCall: true,
|
|
@@ -5156,26 +5376,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
5156
5376
|
unit: "per_million_tokens"
|
|
5157
5377
|
}
|
|
5158
5378
|
},
|
|
5159
|
-
{
|
|
5160
|
-
name: "nousresearch/deephermes-3-llama-3-8b-preview",
|
|
5161
|
-
displayName: "DeepHermes 3 Llama 3 8B Preview",
|
|
5162
|
-
maxInputTokens: 131072,
|
|
5163
|
-
supportedFileTypes: [],
|
|
5164
|
-
reasoning: true,
|
|
5165
|
-
supportsTemperature: true,
|
|
5166
|
-
supportsToolCall: true,
|
|
5167
|
-
releaseDate: "2025-02-28",
|
|
5168
|
-
modalities: {
|
|
5169
|
-
input: ["text"],
|
|
5170
|
-
output: ["text"]
|
|
5171
|
-
},
|
|
5172
|
-
pricing: {
|
|
5173
|
-
inputPerM: 0,
|
|
5174
|
-
outputPerM: 0,
|
|
5175
|
-
currency: "USD",
|
|
5176
|
-
unit: "per_million_tokens"
|
|
5177
|
-
}
|
|
5178
|
-
},
|
|
5179
5379
|
{
|
|
5180
5380
|
name: "nousresearch/hermes-3-llama-3.1-405b:free",
|
|
5181
5381
|
displayName: "Hermes 3 405B Instruct (free)",
|
|
@@ -5256,6 +5456,46 @@ const MODELS_BY_PROVIDER = {
|
|
|
5256
5456
|
unit: "per_million_tokens"
|
|
5257
5457
|
}
|
|
5258
5458
|
},
|
|
5459
|
+
{
|
|
5460
|
+
name: "nvidia/nemotron-3-super-120b-a12b",
|
|
5461
|
+
displayName: "Nemotron 3 Super",
|
|
5462
|
+
maxInputTokens: 262144,
|
|
5463
|
+
supportedFileTypes: [],
|
|
5464
|
+
reasoning: true,
|
|
5465
|
+
supportsTemperature: true,
|
|
5466
|
+
supportsToolCall: true,
|
|
5467
|
+
releaseDate: "2026-03-11",
|
|
5468
|
+
modalities: {
|
|
5469
|
+
input: ["text"],
|
|
5470
|
+
output: ["text"]
|
|
5471
|
+
},
|
|
5472
|
+
pricing: {
|
|
5473
|
+
inputPerM: 0.1,
|
|
5474
|
+
outputPerM: 0.5,
|
|
5475
|
+
currency: "USD",
|
|
5476
|
+
unit: "per_million_tokens"
|
|
5477
|
+
}
|
|
5478
|
+
},
|
|
5479
|
+
{
|
|
5480
|
+
name: "nvidia/nemotron-3-super-120b-a12b:free",
|
|
5481
|
+
displayName: "Nemotron 3 Super (free)",
|
|
5482
|
+
maxInputTokens: 262144,
|
|
5483
|
+
supportedFileTypes: [],
|
|
5484
|
+
reasoning: true,
|
|
5485
|
+
supportsTemperature: true,
|
|
5486
|
+
supportsToolCall: true,
|
|
5487
|
+
releaseDate: "2026-03-11",
|
|
5488
|
+
modalities: {
|
|
5489
|
+
input: ["text"],
|
|
5490
|
+
output: ["text"]
|
|
5491
|
+
},
|
|
5492
|
+
pricing: {
|
|
5493
|
+
inputPerM: 0,
|
|
5494
|
+
outputPerM: 0,
|
|
5495
|
+
currency: "USD",
|
|
5496
|
+
unit: "per_million_tokens"
|
|
5497
|
+
}
|
|
5498
|
+
},
|
|
5259
5499
|
{
|
|
5260
5500
|
name: "nvidia/nemotron-nano-12b-v2-vl:free",
|
|
5261
5501
|
displayName: "Nemotron Nano 12B 2 VL (free)",
|
|
@@ -5320,7 +5560,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5320
5560
|
name: "openai/gpt-4.1",
|
|
5321
5561
|
displayName: "GPT-4.1",
|
|
5322
5562
|
maxInputTokens: 1047576,
|
|
5323
|
-
supportedFileTypes: ["image"],
|
|
5563
|
+
supportedFileTypes: ["image", "document"],
|
|
5324
5564
|
reasoning: false,
|
|
5325
5565
|
supportsTemperature: true,
|
|
5326
5566
|
supportsToolCall: true,
|
|
@@ -5341,7 +5581,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5341
5581
|
name: "openai/gpt-4.1-mini",
|
|
5342
5582
|
displayName: "GPT-4.1 Mini",
|
|
5343
5583
|
maxInputTokens: 1047576,
|
|
5344
|
-
supportedFileTypes: ["image"],
|
|
5584
|
+
supportedFileTypes: ["image", "document"],
|
|
5345
5585
|
reasoning: false,
|
|
5346
5586
|
supportsTemperature: true,
|
|
5347
5587
|
supportsToolCall: true,
|
|
@@ -5362,7 +5602,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5362
5602
|
name: "openai/gpt-4o-mini",
|
|
5363
5603
|
displayName: "GPT-4o-mini",
|
|
5364
5604
|
maxInputTokens: 128e3,
|
|
5365
|
-
supportedFileTypes: ["image"],
|
|
5605
|
+
supportedFileTypes: ["image", "document"],
|
|
5366
5606
|
reasoning: false,
|
|
5367
5607
|
supportsTemperature: true,
|
|
5368
5608
|
supportsToolCall: true,
|
|
@@ -5383,7 +5623,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5383
5623
|
name: "openai/gpt-5",
|
|
5384
5624
|
displayName: "GPT-5",
|
|
5385
5625
|
maxInputTokens: 4e5,
|
|
5386
|
-
supportedFileTypes: ["image"],
|
|
5626
|
+
supportedFileTypes: ["image", "document"],
|
|
5387
5627
|
reasoning: true,
|
|
5388
5628
|
supportsTemperature: true,
|
|
5389
5629
|
supportsToolCall: true,
|
|
@@ -5403,7 +5643,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5403
5643
|
name: "openai/gpt-5-chat",
|
|
5404
5644
|
displayName: "GPT-5 Chat (latest)",
|
|
5405
5645
|
maxInputTokens: 4e5,
|
|
5406
|
-
supportedFileTypes: ["image"],
|
|
5646
|
+
supportedFileTypes: ["image", "document"],
|
|
5407
5647
|
reasoning: true,
|
|
5408
5648
|
supportsTemperature: true,
|
|
5409
5649
|
supportsToolCall: false,
|
|
@@ -5423,7 +5663,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5423
5663
|
name: "openai/gpt-5-codex",
|
|
5424
5664
|
displayName: "GPT-5 Codex",
|
|
5425
5665
|
maxInputTokens: 4e5,
|
|
5426
|
-
supportedFileTypes: ["image"],
|
|
5666
|
+
supportedFileTypes: ["image", "document"],
|
|
5427
5667
|
reasoning: true,
|
|
5428
5668
|
supportsTemperature: true,
|
|
5429
5669
|
supportsToolCall: true,
|
|
@@ -5444,7 +5684,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5444
5684
|
name: "openai/gpt-5-image",
|
|
5445
5685
|
displayName: "GPT-5 Image",
|
|
5446
5686
|
maxInputTokens: 4e5,
|
|
5447
|
-
supportedFileTypes: ["pdf", "image"],
|
|
5687
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
5448
5688
|
reasoning: true,
|
|
5449
5689
|
supportsTemperature: true,
|
|
5450
5690
|
supportsToolCall: true,
|
|
@@ -5465,7 +5705,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5465
5705
|
name: "openai/gpt-5-mini",
|
|
5466
5706
|
displayName: "GPT-5 Mini",
|
|
5467
5707
|
maxInputTokens: 4e5,
|
|
5468
|
-
supportedFileTypes: ["image"],
|
|
5708
|
+
supportedFileTypes: ["image", "document"],
|
|
5469
5709
|
reasoning: true,
|
|
5470
5710
|
supportsTemperature: true,
|
|
5471
5711
|
supportsToolCall: true,
|
|
@@ -5485,7 +5725,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5485
5725
|
name: "openai/gpt-5-nano",
|
|
5486
5726
|
displayName: "GPT-5 Nano",
|
|
5487
5727
|
maxInputTokens: 4e5,
|
|
5488
|
-
supportedFileTypes: ["image"],
|
|
5728
|
+
supportedFileTypes: ["image", "document"],
|
|
5489
5729
|
reasoning: true,
|
|
5490
5730
|
supportsTemperature: true,
|
|
5491
5731
|
supportsToolCall: true,
|
|
@@ -5505,7 +5745,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5505
5745
|
name: "openai/gpt-5-pro",
|
|
5506
5746
|
displayName: "GPT-5 Pro",
|
|
5507
5747
|
maxInputTokens: 4e5,
|
|
5508
|
-
supportedFileTypes: ["image"],
|
|
5748
|
+
supportedFileTypes: ["image", "document"],
|
|
5509
5749
|
reasoning: true,
|
|
5510
5750
|
supportsTemperature: false,
|
|
5511
5751
|
supportsToolCall: true,
|
|
@@ -5525,7 +5765,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5525
5765
|
name: "openai/gpt-5.1",
|
|
5526
5766
|
displayName: "GPT-5.1",
|
|
5527
5767
|
maxInputTokens: 4e5,
|
|
5528
|
-
supportedFileTypes: ["image"],
|
|
5768
|
+
supportedFileTypes: ["image", "document"],
|
|
5529
5769
|
reasoning: true,
|
|
5530
5770
|
supportsTemperature: true,
|
|
5531
5771
|
supportsToolCall: true,
|
|
@@ -5546,7 +5786,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5546
5786
|
name: "openai/gpt-5.1-chat",
|
|
5547
5787
|
displayName: "GPT-5.1 Chat",
|
|
5548
5788
|
maxInputTokens: 128e3,
|
|
5549
|
-
supportedFileTypes: ["image"],
|
|
5789
|
+
supportedFileTypes: ["image", "document"],
|
|
5550
5790
|
reasoning: true,
|
|
5551
5791
|
supportsTemperature: true,
|
|
5552
5792
|
supportsToolCall: true,
|
|
@@ -5567,7 +5807,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5567
5807
|
name: "openai/gpt-5.1-codex",
|
|
5568
5808
|
displayName: "GPT-5.1-Codex",
|
|
5569
5809
|
maxInputTokens: 4e5,
|
|
5570
|
-
supportedFileTypes: ["image"],
|
|
5810
|
+
supportedFileTypes: ["image", "document"],
|
|
5571
5811
|
reasoning: true,
|
|
5572
5812
|
supportsTemperature: true,
|
|
5573
5813
|
supportsToolCall: true,
|
|
@@ -5588,7 +5828,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5588
5828
|
name: "openai/gpt-5.1-codex-max",
|
|
5589
5829
|
displayName: "GPT-5.1-Codex-Max",
|
|
5590
5830
|
maxInputTokens: 4e5,
|
|
5591
|
-
supportedFileTypes: ["image"],
|
|
5831
|
+
supportedFileTypes: ["image", "document"],
|
|
5592
5832
|
reasoning: true,
|
|
5593
5833
|
supportsTemperature: true,
|
|
5594
5834
|
supportsToolCall: true,
|
|
@@ -5609,7 +5849,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5609
5849
|
name: "openai/gpt-5.1-codex-mini",
|
|
5610
5850
|
displayName: "GPT-5.1-Codex-Mini",
|
|
5611
5851
|
maxInputTokens: 4e5,
|
|
5612
|
-
supportedFileTypes: ["image"],
|
|
5852
|
+
supportedFileTypes: ["image", "document"],
|
|
5613
5853
|
reasoning: true,
|
|
5614
5854
|
supportsTemperature: true,
|
|
5615
5855
|
supportsToolCall: true,
|
|
@@ -5630,7 +5870,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5630
5870
|
name: "openai/gpt-5.2",
|
|
5631
5871
|
displayName: "GPT-5.2",
|
|
5632
5872
|
maxInputTokens: 4e5,
|
|
5633
|
-
supportedFileTypes: ["image"],
|
|
5873
|
+
supportedFileTypes: ["image", "document"],
|
|
5634
5874
|
reasoning: true,
|
|
5635
5875
|
supportsTemperature: false,
|
|
5636
5876
|
supportsToolCall: true,
|
|
@@ -5651,7 +5891,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5651
5891
|
name: "openai/gpt-5.2-chat",
|
|
5652
5892
|
displayName: "GPT-5.2 Chat",
|
|
5653
5893
|
maxInputTokens: 128e3,
|
|
5654
|
-
supportedFileTypes: ["image"],
|
|
5894
|
+
supportedFileTypes: ["image", "document"],
|
|
5655
5895
|
reasoning: true,
|
|
5656
5896
|
supportsTemperature: false,
|
|
5657
5897
|
supportsToolCall: true,
|
|
@@ -5672,7 +5912,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5672
5912
|
name: "openai/gpt-5.2-codex",
|
|
5673
5913
|
displayName: "GPT-5.2-Codex",
|
|
5674
5914
|
maxInputTokens: 4e5,
|
|
5675
|
-
supportedFileTypes: ["image"],
|
|
5915
|
+
supportedFileTypes: ["image", "document"],
|
|
5676
5916
|
reasoning: true,
|
|
5677
5917
|
supportsTemperature: true,
|
|
5678
5918
|
supportsToolCall: true,
|
|
@@ -5693,7 +5933,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5693
5933
|
name: "openai/gpt-5.2-pro",
|
|
5694
5934
|
displayName: "GPT-5.2 Pro",
|
|
5695
5935
|
maxInputTokens: 4e5,
|
|
5696
|
-
supportedFileTypes: ["image"],
|
|
5936
|
+
supportedFileTypes: ["image", "document"],
|
|
5697
5937
|
reasoning: true,
|
|
5698
5938
|
supportsTemperature: false,
|
|
5699
5939
|
supportsToolCall: true,
|
|
@@ -5710,197 +5950,165 @@ const MODELS_BY_PROVIDER = {
|
|
|
5710
5950
|
}
|
|
5711
5951
|
},
|
|
5712
5952
|
{
|
|
5713
|
-
name: "openai/gpt-
|
|
5714
|
-
displayName: "GPT
|
|
5715
|
-
maxInputTokens:
|
|
5716
|
-
supportedFileTypes: [],
|
|
5953
|
+
name: "openai/gpt-5.3-codex",
|
|
5954
|
+
displayName: "GPT-5.3-Codex",
|
|
5955
|
+
maxInputTokens: 4e5,
|
|
5956
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
5717
5957
|
reasoning: true,
|
|
5718
|
-
supportsTemperature:
|
|
5958
|
+
supportsTemperature: false,
|
|
5719
5959
|
supportsToolCall: true,
|
|
5720
|
-
releaseDate: "
|
|
5960
|
+
releaseDate: "2026-02-24",
|
|
5721
5961
|
modalities: {
|
|
5722
|
-
input: ["text"],
|
|
5962
|
+
input: ["text", "image", "pdf"],
|
|
5723
5963
|
output: ["text"]
|
|
5724
5964
|
},
|
|
5725
5965
|
pricing: {
|
|
5726
|
-
inputPerM:
|
|
5727
|
-
outputPerM:
|
|
5966
|
+
inputPerM: 1.75,
|
|
5967
|
+
outputPerM: 14,
|
|
5968
|
+
cacheReadPerM: 0.175,
|
|
5728
5969
|
currency: "USD",
|
|
5729
5970
|
unit: "per_million_tokens"
|
|
5730
5971
|
}
|
|
5731
5972
|
},
|
|
5732
5973
|
{
|
|
5733
|
-
name: "openai/gpt-
|
|
5734
|
-
displayName: "GPT
|
|
5735
|
-
maxInputTokens:
|
|
5736
|
-
supportedFileTypes: [],
|
|
5974
|
+
name: "openai/gpt-5.4",
|
|
5975
|
+
displayName: "GPT-5.4",
|
|
5976
|
+
maxInputTokens: 922e3,
|
|
5977
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
5737
5978
|
reasoning: true,
|
|
5738
|
-
supportsTemperature:
|
|
5979
|
+
supportsTemperature: false,
|
|
5739
5980
|
supportsToolCall: true,
|
|
5740
|
-
releaseDate: "
|
|
5981
|
+
releaseDate: "2026-03-05",
|
|
5741
5982
|
modalities: {
|
|
5742
|
-
input: ["text"],
|
|
5983
|
+
input: ["text", "image", "pdf"],
|
|
5743
5984
|
output: ["text"]
|
|
5744
5985
|
},
|
|
5745
5986
|
pricing: {
|
|
5746
|
-
inputPerM:
|
|
5747
|
-
outputPerM:
|
|
5987
|
+
inputPerM: 2.5,
|
|
5988
|
+
outputPerM: 15,
|
|
5989
|
+
cacheReadPerM: 0.25,
|
|
5990
|
+
contextOver200kPerM: {
|
|
5991
|
+
inputPerM: 5,
|
|
5992
|
+
outputPerM: 22.5
|
|
5993
|
+
},
|
|
5748
5994
|
currency: "USD",
|
|
5749
5995
|
unit: "per_million_tokens"
|
|
5750
5996
|
}
|
|
5751
5997
|
},
|
|
5752
5998
|
{
|
|
5753
|
-
name: "openai/gpt-
|
|
5754
|
-
displayName: "
|
|
5755
|
-
maxInputTokens:
|
|
5756
|
-
supportedFileTypes: [],
|
|
5999
|
+
name: "openai/gpt-5.4-mini",
|
|
6000
|
+
displayName: "GPT-5.4 Mini",
|
|
6001
|
+
maxInputTokens: 4e5,
|
|
6002
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
5757
6003
|
reasoning: true,
|
|
5758
6004
|
supportsTemperature: true,
|
|
5759
6005
|
supportsToolCall: true,
|
|
5760
|
-
releaseDate: "
|
|
6006
|
+
releaseDate: "2026-03-17",
|
|
5761
6007
|
modalities: {
|
|
5762
|
-
input: ["text"],
|
|
6008
|
+
input: ["text", "image", "pdf"],
|
|
5763
6009
|
output: ["text"]
|
|
5764
6010
|
},
|
|
5765
6011
|
pricing: {
|
|
5766
|
-
inputPerM:
|
|
5767
|
-
outputPerM:
|
|
6012
|
+
inputPerM: 75e-8,
|
|
6013
|
+
outputPerM: 45e-7,
|
|
6014
|
+
cacheReadPerM: 75e-9,
|
|
5768
6015
|
currency: "USD",
|
|
5769
6016
|
unit: "per_million_tokens"
|
|
5770
6017
|
}
|
|
5771
6018
|
},
|
|
5772
6019
|
{
|
|
5773
|
-
name: "openai/gpt-
|
|
5774
|
-
displayName: "GPT
|
|
5775
|
-
maxInputTokens:
|
|
5776
|
-
supportedFileTypes: [],
|
|
5777
|
-
reasoning:
|
|
6020
|
+
name: "openai/gpt-5.4-nano",
|
|
6021
|
+
displayName: "GPT-5.4 Nano",
|
|
6022
|
+
maxInputTokens: 4e5,
|
|
6023
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
6024
|
+
reasoning: false,
|
|
5778
6025
|
supportsTemperature: true,
|
|
5779
6026
|
supportsToolCall: true,
|
|
5780
|
-
releaseDate: "
|
|
6027
|
+
releaseDate: "2026-03-17",
|
|
5781
6028
|
modalities: {
|
|
5782
|
-
input: ["text"],
|
|
6029
|
+
input: ["text", "image", "pdf"],
|
|
5783
6030
|
output: ["text"]
|
|
5784
6031
|
},
|
|
5785
6032
|
pricing: {
|
|
5786
|
-
inputPerM:
|
|
5787
|
-
outputPerM:
|
|
6033
|
+
inputPerM: 2e-7,
|
|
6034
|
+
outputPerM: 125e-8,
|
|
6035
|
+
cacheReadPerM: 2e-8,
|
|
5788
6036
|
currency: "USD",
|
|
5789
6037
|
unit: "per_million_tokens"
|
|
5790
6038
|
}
|
|
5791
6039
|
},
|
|
5792
6040
|
{
|
|
5793
|
-
name: "openai/gpt-
|
|
5794
|
-
displayName: "
|
|
5795
|
-
maxInputTokens:
|
|
5796
|
-
supportedFileTypes: [],
|
|
6041
|
+
name: "openai/gpt-5.4-pro",
|
|
6042
|
+
displayName: "GPT-5.4 Pro",
|
|
6043
|
+
maxInputTokens: 922e3,
|
|
6044
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
5797
6045
|
reasoning: true,
|
|
5798
|
-
supportsTemperature:
|
|
6046
|
+
supportsTemperature: false,
|
|
5799
6047
|
supportsToolCall: true,
|
|
5800
|
-
releaseDate: "
|
|
6048
|
+
releaseDate: "2026-03-05",
|
|
5801
6049
|
modalities: {
|
|
5802
|
-
input: ["text"],
|
|
6050
|
+
input: ["text", "image", "pdf"],
|
|
5803
6051
|
output: ["text"]
|
|
5804
6052
|
},
|
|
5805
6053
|
pricing: {
|
|
5806
|
-
inputPerM:
|
|
5807
|
-
outputPerM:
|
|
6054
|
+
inputPerM: 30,
|
|
6055
|
+
outputPerM: 180,
|
|
6056
|
+
cacheReadPerM: 30,
|
|
5808
6057
|
currency: "USD",
|
|
5809
6058
|
unit: "per_million_tokens"
|
|
5810
6059
|
}
|
|
5811
6060
|
},
|
|
5812
6061
|
{
|
|
5813
|
-
name: "openai/gpt-oss-
|
|
5814
|
-
displayName: "GPT OSS
|
|
6062
|
+
name: "openai/gpt-oss-120b",
|
|
6063
|
+
displayName: "GPT OSS 120B",
|
|
5815
6064
|
maxInputTokens: 131072,
|
|
5816
6065
|
supportedFileTypes: [],
|
|
5817
6066
|
reasoning: true,
|
|
5818
6067
|
supportsTemperature: true,
|
|
5819
6068
|
supportsToolCall: true,
|
|
5820
|
-
releaseDate: "2025-
|
|
6069
|
+
releaseDate: "2025-08-05",
|
|
5821
6070
|
modalities: {
|
|
5822
6071
|
input: ["text"],
|
|
5823
6072
|
output: ["text"]
|
|
5824
6073
|
},
|
|
5825
6074
|
pricing: {
|
|
5826
|
-
inputPerM: 0.
|
|
5827
|
-
outputPerM: 0.
|
|
5828
|
-
currency: "USD",
|
|
5829
|
-
unit: "per_million_tokens"
|
|
5830
|
-
}
|
|
5831
|
-
},
|
|
5832
|
-
{
|
|
5833
|
-
name: "openai/o4-mini",
|
|
5834
|
-
displayName: "o4 Mini",
|
|
5835
|
-
maxInputTokens: 2e5,
|
|
5836
|
-
supportedFileTypes: ["image"],
|
|
5837
|
-
reasoning: true,
|
|
5838
|
-
supportsTemperature: true,
|
|
5839
|
-
supportsToolCall: true,
|
|
5840
|
-
releaseDate: "2025-04-16",
|
|
5841
|
-
modalities: {
|
|
5842
|
-
input: ["text", "image"],
|
|
5843
|
-
output: ["text"]
|
|
5844
|
-
},
|
|
5845
|
-
pricing: {
|
|
5846
|
-
inputPerM: 1.1,
|
|
5847
|
-
outputPerM: 4.4,
|
|
5848
|
-
cacheReadPerM: 0.28,
|
|
6075
|
+
inputPerM: 0.072,
|
|
6076
|
+
outputPerM: 0.28,
|
|
5849
6077
|
currency: "USD",
|
|
5850
6078
|
unit: "per_million_tokens"
|
|
5851
6079
|
}
|
|
5852
6080
|
},
|
|
5853
6081
|
{
|
|
5854
|
-
name: "
|
|
5855
|
-
displayName: "
|
|
5856
|
-
maxInputTokens:
|
|
6082
|
+
name: "openai/gpt-oss-120b:exacto",
|
|
6083
|
+
displayName: "GPT OSS 120B (exacto)",
|
|
6084
|
+
maxInputTokens: 131072,
|
|
5857
6085
|
supportedFileTypes: [],
|
|
5858
6086
|
reasoning: true,
|
|
5859
6087
|
supportsTemperature: true,
|
|
5860
6088
|
supportsToolCall: true,
|
|
5861
|
-
releaseDate: "
|
|
6089
|
+
releaseDate: "2025-08-05",
|
|
5862
6090
|
modalities: {
|
|
5863
6091
|
input: ["text"],
|
|
5864
6092
|
output: ["text"]
|
|
5865
6093
|
},
|
|
5866
6094
|
pricing: {
|
|
5867
|
-
inputPerM: 0,
|
|
5868
|
-
outputPerM: 0,
|
|
5869
|
-
currency: "USD",
|
|
5870
|
-
unit: "per_million_tokens"
|
|
5871
|
-
}
|
|
5872
|
-
},
|
|
5873
|
-
{
|
|
5874
|
-
name: "openrouter/sherlock-dash-alpha",
|
|
5875
|
-
displayName: "Sherlock Dash Alpha",
|
|
5876
|
-
maxInputTokens: 184e4,
|
|
5877
|
-
supportedFileTypes: ["image"],
|
|
5878
|
-
reasoning: false,
|
|
5879
|
-
supportsTemperature: true,
|
|
5880
|
-
supportsToolCall: true,
|
|
5881
|
-
releaseDate: "2025-11-15",
|
|
5882
|
-
modalities: {
|
|
5883
|
-
input: ["text", "image"],
|
|
5884
|
-
output: ["text"]
|
|
5885
|
-
},
|
|
5886
|
-
pricing: {
|
|
5887
|
-
inputPerM: 0,
|
|
5888
|
-
outputPerM: 0,
|
|
6095
|
+
inputPerM: 0.05,
|
|
6096
|
+
outputPerM: 0.24,
|
|
5889
6097
|
currency: "USD",
|
|
5890
6098
|
unit: "per_million_tokens"
|
|
5891
6099
|
}
|
|
5892
6100
|
},
|
|
5893
6101
|
{
|
|
5894
|
-
name: "
|
|
5895
|
-
displayName: "
|
|
5896
|
-
maxInputTokens:
|
|
5897
|
-
supportedFileTypes: [
|
|
6102
|
+
name: "openai/gpt-oss-120b:free",
|
|
6103
|
+
displayName: "gpt-oss-120b (free)",
|
|
6104
|
+
maxInputTokens: 131072,
|
|
6105
|
+
supportedFileTypes: [],
|
|
5898
6106
|
reasoning: true,
|
|
5899
6107
|
supportsTemperature: true,
|
|
5900
6108
|
supportsToolCall: true,
|
|
5901
|
-
releaseDate: "2025-
|
|
6109
|
+
releaseDate: "2025-08-05",
|
|
5902
6110
|
modalities: {
|
|
5903
|
-
input: ["text"
|
|
6111
|
+
input: ["text"],
|
|
5904
6112
|
output: ["text"]
|
|
5905
6113
|
},
|
|
5906
6114
|
pricing: {
|
|
@@ -5911,116 +6119,36 @@ const MODELS_BY_PROVIDER = {
|
|
|
5911
6119
|
}
|
|
5912
6120
|
},
|
|
5913
6121
|
{
|
|
5914
|
-
name: "
|
|
5915
|
-
displayName: "
|
|
6122
|
+
name: "openai/gpt-oss-20b",
|
|
6123
|
+
displayName: "GPT OSS 20B",
|
|
5916
6124
|
maxInputTokens: 131072,
|
|
5917
6125
|
supportedFileTypes: [],
|
|
5918
6126
|
reasoning: true,
|
|
5919
6127
|
supportsTemperature: true,
|
|
5920
6128
|
supportsToolCall: true,
|
|
5921
|
-
releaseDate: "2025-
|
|
6129
|
+
releaseDate: "2025-08-05",
|
|
5922
6130
|
modalities: {
|
|
5923
6131
|
input: ["text"],
|
|
5924
6132
|
output: ["text"]
|
|
5925
6133
|
},
|
|
5926
6134
|
pricing: {
|
|
5927
|
-
inputPerM: 0.
|
|
5928
|
-
outputPerM:
|
|
6135
|
+
inputPerM: 0.05,
|
|
6136
|
+
outputPerM: 0.2,
|
|
5929
6137
|
currency: "USD",
|
|
5930
6138
|
unit: "per_million_tokens"
|
|
5931
6139
|
}
|
|
5932
6140
|
},
|
|
5933
6141
|
{
|
|
5934
|
-
name: "
|
|
5935
|
-
displayName: "
|
|
5936
|
-
maxInputTokens:
|
|
6142
|
+
name: "openai/gpt-oss-20b:free",
|
|
6143
|
+
displayName: "gpt-oss-20b (free)",
|
|
6144
|
+
maxInputTokens: 131072,
|
|
5937
6145
|
supportedFileTypes: [],
|
|
5938
|
-
reasoning:
|
|
5939
|
-
supportsTemperature: true,
|
|
5940
|
-
supportsToolCall: false,
|
|
5941
|
-
releaseDate: "2024-11-11",
|
|
5942
|
-
modalities: {
|
|
5943
|
-
input: ["text"],
|
|
5944
|
-
output: ["text"]
|
|
5945
|
-
},
|
|
5946
|
-
pricing: {
|
|
5947
|
-
inputPerM: 0,
|
|
5948
|
-
outputPerM: 0,
|
|
5949
|
-
currency: "USD",
|
|
5950
|
-
unit: "per_million_tokens"
|
|
5951
|
-
}
|
|
5952
|
-
},
|
|
5953
|
-
{
|
|
5954
|
-
name: "qwen/qwen-2.5-vl-7b-instruct:free",
|
|
5955
|
-
displayName: "Qwen2.5-VL 7B Instruct (free)",
|
|
5956
|
-
maxInputTokens: 32768,
|
|
5957
|
-
supportedFileTypes: ["image"],
|
|
5958
|
-
reasoning: false,
|
|
5959
|
-
supportsTemperature: true,
|
|
5960
|
-
supportsToolCall: true,
|
|
5961
|
-
releaseDate: "2024-08-28",
|
|
5962
|
-
modalities: {
|
|
5963
|
-
input: ["text", "image"],
|
|
5964
|
-
output: ["text"]
|
|
5965
|
-
},
|
|
5966
|
-
pricing: {
|
|
5967
|
-
inputPerM: 0,
|
|
5968
|
-
outputPerM: 0,
|
|
5969
|
-
currency: "USD",
|
|
5970
|
-
unit: "per_million_tokens"
|
|
5971
|
-
}
|
|
5972
|
-
},
|
|
5973
|
-
{
|
|
5974
|
-
name: "qwen/qwen2.5-vl-32b-instruct:free",
|
|
5975
|
-
displayName: "Qwen2.5 VL 32B Instruct (free)",
|
|
5976
|
-
maxInputTokens: 8192,
|
|
5977
|
-
supportedFileTypes: ["image"],
|
|
5978
|
-
reasoning: false,
|
|
5979
|
-
supportsTemperature: true,
|
|
5980
|
-
supportsToolCall: true,
|
|
5981
|
-
releaseDate: "2025-03-24",
|
|
5982
|
-
modalities: {
|
|
5983
|
-
input: ["text", "image", "video"],
|
|
5984
|
-
output: ["text"]
|
|
5985
|
-
},
|
|
5986
|
-
pricing: {
|
|
5987
|
-
inputPerM: 0,
|
|
5988
|
-
outputPerM: 0,
|
|
5989
|
-
currency: "USD",
|
|
5990
|
-
unit: "per_million_tokens"
|
|
5991
|
-
}
|
|
5992
|
-
},
|
|
5993
|
-
{
|
|
5994
|
-
name: "qwen/qwen2.5-vl-72b-instruct",
|
|
5995
|
-
displayName: "Qwen2.5 VL 72B Instruct",
|
|
5996
|
-
maxInputTokens: 32768,
|
|
5997
|
-
supportedFileTypes: ["image"],
|
|
5998
|
-
reasoning: false,
|
|
5999
|
-
supportsTemperature: true,
|
|
6000
|
-
supportsToolCall: false,
|
|
6001
|
-
releaseDate: "2025-02-01",
|
|
6002
|
-
modalities: {
|
|
6003
|
-
input: ["text", "image"],
|
|
6004
|
-
output: ["text"]
|
|
6005
|
-
},
|
|
6006
|
-
pricing: {
|
|
6007
|
-
inputPerM: 0,
|
|
6008
|
-
outputPerM: 0,
|
|
6009
|
-
currency: "USD",
|
|
6010
|
-
unit: "per_million_tokens"
|
|
6011
|
-
}
|
|
6012
|
-
},
|
|
6013
|
-
{
|
|
6014
|
-
name: "qwen/qwen2.5-vl-72b-instruct:free",
|
|
6015
|
-
displayName: "Qwen2.5 VL 72B Instruct (free)",
|
|
6016
|
-
maxInputTokens: 32768,
|
|
6017
|
-
supportedFileTypes: ["image"],
|
|
6018
|
-
reasoning: false,
|
|
6146
|
+
reasoning: true,
|
|
6019
6147
|
supportsTemperature: true,
|
|
6020
6148
|
supportsToolCall: true,
|
|
6021
|
-
releaseDate: "2025-
|
|
6149
|
+
releaseDate: "2025-08-05",
|
|
6022
6150
|
modalities: {
|
|
6023
|
-
input: ["text"
|
|
6151
|
+
input: ["text"],
|
|
6024
6152
|
output: ["text"]
|
|
6025
6153
|
},
|
|
6026
6154
|
pricing: {
|
|
@@ -6031,56 +6159,57 @@ const MODELS_BY_PROVIDER = {
|
|
|
6031
6159
|
}
|
|
6032
6160
|
},
|
|
6033
6161
|
{
|
|
6034
|
-
name: "
|
|
6035
|
-
displayName: "
|
|
6036
|
-
maxInputTokens:
|
|
6162
|
+
name: "openai/gpt-oss-safeguard-20b",
|
|
6163
|
+
displayName: "GPT OSS Safeguard 20B",
|
|
6164
|
+
maxInputTokens: 131072,
|
|
6037
6165
|
supportedFileTypes: [],
|
|
6038
6166
|
reasoning: true,
|
|
6039
6167
|
supportsTemperature: true,
|
|
6040
6168
|
supportsToolCall: true,
|
|
6041
|
-
releaseDate: "2025-
|
|
6169
|
+
releaseDate: "2025-10-29",
|
|
6042
6170
|
modalities: {
|
|
6043
6171
|
input: ["text"],
|
|
6044
6172
|
output: ["text"]
|
|
6045
6173
|
},
|
|
6046
6174
|
pricing: {
|
|
6047
|
-
inputPerM: 0,
|
|
6048
|
-
outputPerM: 0,
|
|
6175
|
+
inputPerM: 0.075,
|
|
6176
|
+
outputPerM: 0.3,
|
|
6049
6177
|
currency: "USD",
|
|
6050
6178
|
unit: "per_million_tokens"
|
|
6051
6179
|
}
|
|
6052
6180
|
},
|
|
6053
6181
|
{
|
|
6054
|
-
name: "
|
|
6055
|
-
displayName: "
|
|
6056
|
-
maxInputTokens:
|
|
6057
|
-
supportedFileTypes: [],
|
|
6058
|
-
reasoning:
|
|
6182
|
+
name: "openai/o4-mini",
|
|
6183
|
+
displayName: "o4 Mini",
|
|
6184
|
+
maxInputTokens: 2e5,
|
|
6185
|
+
supportedFileTypes: ["image", "document"],
|
|
6186
|
+
reasoning: true,
|
|
6059
6187
|
supportsTemperature: true,
|
|
6060
6188
|
supportsToolCall: true,
|
|
6061
|
-
releaseDate: "2025-04-
|
|
6189
|
+
releaseDate: "2025-04-16",
|
|
6062
6190
|
modalities: {
|
|
6063
|
-
input: ["text"],
|
|
6191
|
+
input: ["text", "image"],
|
|
6064
6192
|
output: ["text"]
|
|
6065
6193
|
},
|
|
6066
6194
|
pricing: {
|
|
6067
|
-
inputPerM:
|
|
6068
|
-
outputPerM:
|
|
6195
|
+
inputPerM: 1.1,
|
|
6196
|
+
outputPerM: 4.4,
|
|
6197
|
+
cacheReadPerM: 0.28,
|
|
6069
6198
|
currency: "USD",
|
|
6070
6199
|
unit: "per_million_tokens"
|
|
6071
6200
|
}
|
|
6072
6201
|
},
|
|
6073
6202
|
{
|
|
6074
|
-
name: "
|
|
6075
|
-
displayName: "
|
|
6076
|
-
maxInputTokens:
|
|
6077
|
-
supportedFileTypes: [],
|
|
6078
|
-
reasoning:
|
|
6203
|
+
name: "openrouter/free",
|
|
6204
|
+
displayName: "Free Models Router",
|
|
6205
|
+
maxInputTokens: 2e5,
|
|
6206
|
+
supportedFileTypes: ["image"],
|
|
6207
|
+
reasoning: true,
|
|
6079
6208
|
supportsTemperature: true,
|
|
6080
6209
|
supportsToolCall: true,
|
|
6081
|
-
releaseDate: "
|
|
6210
|
+
releaseDate: "2026-02-01",
|
|
6082
6211
|
modalities: {
|
|
6083
|
-
input: ["text"],
|
|
6212
|
+
input: ["text", "image"],
|
|
6084
6213
|
output: ["text"]
|
|
6085
6214
|
},
|
|
6086
6215
|
pricing: {
|
|
@@ -6091,34 +6220,34 @@ const MODELS_BY_PROVIDER = {
|
|
|
6091
6220
|
}
|
|
6092
6221
|
},
|
|
6093
6222
|
{
|
|
6094
|
-
name: "
|
|
6095
|
-
displayName: "
|
|
6096
|
-
maxInputTokens:
|
|
6223
|
+
name: "prime-intellect/intellect-3",
|
|
6224
|
+
displayName: "Intellect 3",
|
|
6225
|
+
maxInputTokens: 131072,
|
|
6097
6226
|
supportedFileTypes: [],
|
|
6098
6227
|
reasoning: true,
|
|
6099
6228
|
supportsTemperature: true,
|
|
6100
6229
|
supportsToolCall: true,
|
|
6101
|
-
releaseDate: "2025-
|
|
6230
|
+
releaseDate: "2025-01-15",
|
|
6102
6231
|
modalities: {
|
|
6103
6232
|
input: ["text"],
|
|
6104
6233
|
output: ["text"]
|
|
6105
6234
|
},
|
|
6106
6235
|
pricing: {
|
|
6107
|
-
inputPerM: 0.
|
|
6108
|
-
outputPerM:
|
|
6236
|
+
inputPerM: 0.2,
|
|
6237
|
+
outputPerM: 1.1,
|
|
6109
6238
|
currency: "USD",
|
|
6110
6239
|
unit: "per_million_tokens"
|
|
6111
6240
|
}
|
|
6112
6241
|
},
|
|
6113
6242
|
{
|
|
6114
|
-
name: "qwen/
|
|
6115
|
-
displayName: "
|
|
6116
|
-
maxInputTokens:
|
|
6243
|
+
name: "qwen/qwen-2.5-coder-32b-instruct",
|
|
6244
|
+
displayName: "Qwen2.5 Coder 32B Instruct",
|
|
6245
|
+
maxInputTokens: 32768,
|
|
6117
6246
|
supportedFileTypes: [],
|
|
6118
|
-
reasoning:
|
|
6247
|
+
reasoning: false,
|
|
6119
6248
|
supportsTemperature: true,
|
|
6120
|
-
supportsToolCall:
|
|
6121
|
-
releaseDate: "
|
|
6249
|
+
supportsToolCall: false,
|
|
6250
|
+
releaseDate: "2024-11-11",
|
|
6122
6251
|
modalities: {
|
|
6123
6252
|
input: ["text"],
|
|
6124
6253
|
output: ["text"]
|
|
@@ -6131,114 +6260,114 @@ const MODELS_BY_PROVIDER = {
|
|
|
6131
6260
|
}
|
|
6132
6261
|
},
|
|
6133
6262
|
{
|
|
6134
|
-
name: "qwen/
|
|
6135
|
-
displayName: "
|
|
6136
|
-
maxInputTokens:
|
|
6137
|
-
supportedFileTypes: [],
|
|
6263
|
+
name: "qwen/qwen2.5-vl-72b-instruct",
|
|
6264
|
+
displayName: "Qwen2.5 VL 72B Instruct",
|
|
6265
|
+
maxInputTokens: 32768,
|
|
6266
|
+
supportedFileTypes: ["image"],
|
|
6138
6267
|
reasoning: false,
|
|
6139
6268
|
supportsTemperature: true,
|
|
6140
|
-
supportsToolCall:
|
|
6141
|
-
releaseDate: "2025-
|
|
6269
|
+
supportsToolCall: false,
|
|
6270
|
+
releaseDate: "2025-02-01",
|
|
6142
6271
|
modalities: {
|
|
6143
|
-
input: ["text"],
|
|
6272
|
+
input: ["text", "image"],
|
|
6144
6273
|
output: ["text"]
|
|
6145
6274
|
},
|
|
6146
6275
|
pricing: {
|
|
6147
|
-
inputPerM: 0
|
|
6148
|
-
outputPerM: 0
|
|
6276
|
+
inputPerM: 0,
|
|
6277
|
+
outputPerM: 0,
|
|
6149
6278
|
currency: "USD",
|
|
6150
6279
|
unit: "per_million_tokens"
|
|
6151
6280
|
}
|
|
6152
6281
|
},
|
|
6153
6282
|
{
|
|
6154
|
-
name: "qwen/qwen3-
|
|
6155
|
-
displayName: "Qwen3
|
|
6156
|
-
maxInputTokens:
|
|
6283
|
+
name: "qwen/qwen3-235b-a22b-07-25",
|
|
6284
|
+
displayName: "Qwen3 235B A22B Instruct 2507",
|
|
6285
|
+
maxInputTokens: 262144,
|
|
6157
6286
|
supportedFileTypes: [],
|
|
6158
|
-
reasoning:
|
|
6287
|
+
reasoning: false,
|
|
6159
6288
|
supportsTemperature: true,
|
|
6160
6289
|
supportsToolCall: true,
|
|
6161
|
-
releaseDate: "2025-
|
|
6290
|
+
releaseDate: "2025-04-28",
|
|
6162
6291
|
modalities: {
|
|
6163
6292
|
input: ["text"],
|
|
6164
6293
|
output: ["text"]
|
|
6165
6294
|
},
|
|
6166
6295
|
pricing: {
|
|
6167
|
-
inputPerM: 0.
|
|
6168
|
-
outputPerM: 0.
|
|
6296
|
+
inputPerM: 0.15,
|
|
6297
|
+
outputPerM: 0.85,
|
|
6169
6298
|
currency: "USD",
|
|
6170
6299
|
unit: "per_million_tokens"
|
|
6171
6300
|
}
|
|
6172
6301
|
},
|
|
6173
6302
|
{
|
|
6174
|
-
name: "qwen/qwen3-
|
|
6175
|
-
displayName: "Qwen3
|
|
6176
|
-
maxInputTokens:
|
|
6303
|
+
name: "qwen/qwen3-235b-a22b-thinking-2507",
|
|
6304
|
+
displayName: "Qwen3 235B A22B Thinking 2507",
|
|
6305
|
+
maxInputTokens: 262144,
|
|
6177
6306
|
supportedFileTypes: [],
|
|
6178
6307
|
reasoning: true,
|
|
6179
6308
|
supportsTemperature: true,
|
|
6180
6309
|
supportsToolCall: true,
|
|
6181
|
-
releaseDate: "2025-
|
|
6310
|
+
releaseDate: "2025-07-25",
|
|
6182
6311
|
modalities: {
|
|
6183
6312
|
input: ["text"],
|
|
6184
6313
|
output: ["text"]
|
|
6185
6314
|
},
|
|
6186
6315
|
pricing: {
|
|
6187
|
-
inputPerM: 0,
|
|
6188
|
-
outputPerM: 0,
|
|
6316
|
+
inputPerM: 0.078,
|
|
6317
|
+
outputPerM: 0.312,
|
|
6189
6318
|
currency: "USD",
|
|
6190
6319
|
unit: "per_million_tokens"
|
|
6191
6320
|
}
|
|
6192
6321
|
},
|
|
6193
6322
|
{
|
|
6194
|
-
name: "qwen/qwen3-
|
|
6195
|
-
displayName: "Qwen3
|
|
6196
|
-
maxInputTokens:
|
|
6323
|
+
name: "qwen/qwen3-30b-a3b-instruct-2507",
|
|
6324
|
+
displayName: "Qwen3 30B A3B Instruct 2507",
|
|
6325
|
+
maxInputTokens: 262e3,
|
|
6197
6326
|
supportedFileTypes: [],
|
|
6198
|
-
reasoning:
|
|
6327
|
+
reasoning: false,
|
|
6199
6328
|
supportsTemperature: true,
|
|
6200
6329
|
supportsToolCall: true,
|
|
6201
|
-
releaseDate: "2025-
|
|
6330
|
+
releaseDate: "2025-07-29",
|
|
6202
6331
|
modalities: {
|
|
6203
6332
|
input: ["text"],
|
|
6204
6333
|
output: ["text"]
|
|
6205
6334
|
},
|
|
6206
6335
|
pricing: {
|
|
6207
|
-
inputPerM: 0,
|
|
6208
|
-
outputPerM: 0,
|
|
6336
|
+
inputPerM: 0.2,
|
|
6337
|
+
outputPerM: 0.8,
|
|
6209
6338
|
currency: "USD",
|
|
6210
6339
|
unit: "per_million_tokens"
|
|
6211
6340
|
}
|
|
6212
6341
|
},
|
|
6213
6342
|
{
|
|
6214
|
-
name: "qwen/qwen3-
|
|
6215
|
-
displayName: "Qwen3
|
|
6216
|
-
maxInputTokens:
|
|
6343
|
+
name: "qwen/qwen3-30b-a3b-thinking-2507",
|
|
6344
|
+
displayName: "Qwen3 30B A3B Thinking 2507",
|
|
6345
|
+
maxInputTokens: 262e3,
|
|
6217
6346
|
supportedFileTypes: [],
|
|
6218
6347
|
reasoning: true,
|
|
6219
6348
|
supportsTemperature: true,
|
|
6220
6349
|
supportsToolCall: true,
|
|
6221
|
-
releaseDate: "2025-
|
|
6350
|
+
releaseDate: "2025-07-29",
|
|
6222
6351
|
modalities: {
|
|
6223
6352
|
input: ["text"],
|
|
6224
6353
|
output: ["text"]
|
|
6225
6354
|
},
|
|
6226
6355
|
pricing: {
|
|
6227
|
-
inputPerM: 0,
|
|
6228
|
-
outputPerM: 0,
|
|
6356
|
+
inputPerM: 0.2,
|
|
6357
|
+
outputPerM: 0.8,
|
|
6229
6358
|
currency: "USD",
|
|
6230
6359
|
unit: "per_million_tokens"
|
|
6231
6360
|
}
|
|
6232
6361
|
},
|
|
6233
6362
|
{
|
|
6234
|
-
name: "qwen/qwen3-
|
|
6235
|
-
displayName: "Qwen3
|
|
6363
|
+
name: "qwen/qwen3-4b:free",
|
|
6364
|
+
displayName: "Qwen3 4B (free)",
|
|
6236
6365
|
maxInputTokens: 40960,
|
|
6237
6366
|
supportedFileTypes: [],
|
|
6238
6367
|
reasoning: true,
|
|
6239
6368
|
supportsTemperature: true,
|
|
6240
6369
|
supportsToolCall: true,
|
|
6241
|
-
releaseDate: "2025-04-
|
|
6370
|
+
releaseDate: "2025-04-30",
|
|
6242
6371
|
modalities: {
|
|
6243
6372
|
input: ["text"],
|
|
6244
6373
|
output: ["text"]
|
|
@@ -6434,7 +6563,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
6434
6563
|
name: "qwen/qwen3.5-397b-a17b",
|
|
6435
6564
|
displayName: "Qwen3.5 397B A17B",
|
|
6436
6565
|
maxInputTokens: 262144,
|
|
6437
|
-
supportedFileTypes: ["image"],
|
|
6566
|
+
supportedFileTypes: ["image", "video"],
|
|
6438
6567
|
reasoning: true,
|
|
6439
6568
|
supportsTemperature: true,
|
|
6440
6569
|
supportsToolCall: true,
|
|
@@ -6454,7 +6583,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
6454
6583
|
name: "qwen/qwen3.5-plus-02-15",
|
|
6455
6584
|
displayName: "Qwen3.5 Plus 2026-02-15",
|
|
6456
6585
|
maxInputTokens: 1e6,
|
|
6457
|
-
supportedFileTypes: ["image"],
|
|
6586
|
+
supportedFileTypes: ["image", "video"],
|
|
6458
6587
|
reasoning: true,
|
|
6459
6588
|
supportsTemperature: true,
|
|
6460
6589
|
supportsToolCall: true,
|
|
@@ -6471,54 +6600,14 @@ const MODELS_BY_PROVIDER = {
|
|
|
6471
6600
|
}
|
|
6472
6601
|
},
|
|
6473
6602
|
{
|
|
6474
|
-
name: "qwen/
|
|
6475
|
-
displayName: "
|
|
6476
|
-
maxInputTokens:
|
|
6477
|
-
supportedFileTypes: [],
|
|
6478
|
-
reasoning: true,
|
|
6479
|
-
supportsTemperature: true,
|
|
6480
|
-
supportsToolCall: true,
|
|
6481
|
-
releaseDate: "2025-03-05",
|
|
6482
|
-
modalities: {
|
|
6483
|
-
input: ["text"],
|
|
6484
|
-
output: ["text"]
|
|
6485
|
-
},
|
|
6486
|
-
pricing: {
|
|
6487
|
-
inputPerM: 0,
|
|
6488
|
-
outputPerM: 0,
|
|
6489
|
-
currency: "USD",
|
|
6490
|
-
unit: "per_million_tokens"
|
|
6491
|
-
}
|
|
6492
|
-
},
|
|
6493
|
-
{
|
|
6494
|
-
name: "rekaai/reka-flash-3",
|
|
6495
|
-
displayName: "Reka Flash 3",
|
|
6496
|
-
maxInputTokens: 32768,
|
|
6497
|
-
supportedFileTypes: [],
|
|
6498
|
-
reasoning: true,
|
|
6499
|
-
supportsTemperature: true,
|
|
6500
|
-
supportsToolCall: true,
|
|
6501
|
-
releaseDate: "2025-03-12",
|
|
6502
|
-
modalities: {
|
|
6503
|
-
input: ["text"],
|
|
6504
|
-
output: ["text"]
|
|
6505
|
-
},
|
|
6506
|
-
pricing: {
|
|
6507
|
-
inputPerM: 0,
|
|
6508
|
-
outputPerM: 0,
|
|
6509
|
-
currency: "USD",
|
|
6510
|
-
unit: "per_million_tokens"
|
|
6511
|
-
}
|
|
6512
|
-
},
|
|
6513
|
-
{
|
|
6514
|
-
name: "sarvamai/sarvam-m:free",
|
|
6515
|
-
displayName: "Sarvam-M (free)",
|
|
6516
|
-
maxInputTokens: 32768,
|
|
6603
|
+
name: "qwen/qwen3.6-plus-preview:free",
|
|
6604
|
+
displayName: "Qwen3.6 Plus Preview (free)",
|
|
6605
|
+
maxInputTokens: 1e6,
|
|
6517
6606
|
supportedFileTypes: [],
|
|
6518
6607
|
reasoning: true,
|
|
6519
6608
|
supportsTemperature: true,
|
|
6520
6609
|
supportsToolCall: true,
|
|
6521
|
-
releaseDate: "
|
|
6610
|
+
releaseDate: "2026-03-30",
|
|
6522
6611
|
modalities: {
|
|
6523
6612
|
input: ["text"],
|
|
6524
6613
|
output: ["text"]
|
|
@@ -6631,66 +6720,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
6631
6720
|
unit: "per_million_tokens"
|
|
6632
6721
|
}
|
|
6633
6722
|
},
|
|
6634
|
-
{
|
|
6635
|
-
name: "thudm/glm-z1-32b:free",
|
|
6636
|
-
displayName: "GLM Z1 32B (free)",
|
|
6637
|
-
maxInputTokens: 32768,
|
|
6638
|
-
supportedFileTypes: [],
|
|
6639
|
-
reasoning: true,
|
|
6640
|
-
supportsTemperature: true,
|
|
6641
|
-
supportsToolCall: true,
|
|
6642
|
-
releaseDate: "2025-04-17",
|
|
6643
|
-
modalities: {
|
|
6644
|
-
input: ["text"],
|
|
6645
|
-
output: ["text"]
|
|
6646
|
-
},
|
|
6647
|
-
pricing: {
|
|
6648
|
-
inputPerM: 0,
|
|
6649
|
-
outputPerM: 0,
|
|
6650
|
-
currency: "USD",
|
|
6651
|
-
unit: "per_million_tokens"
|
|
6652
|
-
}
|
|
6653
|
-
},
|
|
6654
|
-
{
|
|
6655
|
-
name: "tngtech/deepseek-r1t2-chimera:free",
|
|
6656
|
-
displayName: "DeepSeek R1T2 Chimera (free)",
|
|
6657
|
-
maxInputTokens: 163840,
|
|
6658
|
-
supportedFileTypes: [],
|
|
6659
|
-
reasoning: true,
|
|
6660
|
-
supportsTemperature: true,
|
|
6661
|
-
supportsToolCall: false,
|
|
6662
|
-
releaseDate: "2025-07-08",
|
|
6663
|
-
modalities: {
|
|
6664
|
-
input: ["text"],
|
|
6665
|
-
output: ["text"]
|
|
6666
|
-
},
|
|
6667
|
-
pricing: {
|
|
6668
|
-
inputPerM: 0,
|
|
6669
|
-
outputPerM: 0,
|
|
6670
|
-
currency: "USD",
|
|
6671
|
-
unit: "per_million_tokens"
|
|
6672
|
-
}
|
|
6673
|
-
},
|
|
6674
|
-
{
|
|
6675
|
-
name: "tngtech/tng-r1t-chimera:free",
|
|
6676
|
-
displayName: "R1T Chimera (free)",
|
|
6677
|
-
maxInputTokens: 163840,
|
|
6678
|
-
supportedFileTypes: [],
|
|
6679
|
-
reasoning: true,
|
|
6680
|
-
supportsTemperature: true,
|
|
6681
|
-
supportsToolCall: true,
|
|
6682
|
-
releaseDate: "2025-11-26",
|
|
6683
|
-
modalities: {
|
|
6684
|
-
input: ["text"],
|
|
6685
|
-
output: ["text"]
|
|
6686
|
-
},
|
|
6687
|
-
pricing: {
|
|
6688
|
-
inputPerM: 0,
|
|
6689
|
-
outputPerM: 0,
|
|
6690
|
-
currency: "USD",
|
|
6691
|
-
unit: "per_million_tokens"
|
|
6692
|
-
}
|
|
6693
|
-
},
|
|
6694
6723
|
{
|
|
6695
6724
|
name: "x-ai/grok-3",
|
|
6696
6725
|
displayName: "Grok 3",
|
|
@@ -6845,6 +6874,58 @@ const MODELS_BY_PROVIDER = {
|
|
|
6845
6874
|
unit: "per_million_tokens"
|
|
6846
6875
|
}
|
|
6847
6876
|
},
|
|
6877
|
+
{
|
|
6878
|
+
name: "x-ai/grok-4.20-beta",
|
|
6879
|
+
displayName: "Grok 4.20 Beta",
|
|
6880
|
+
maxInputTokens: 2e6,
|
|
6881
|
+
supportedFileTypes: ["image"],
|
|
6882
|
+
reasoning: true,
|
|
6883
|
+
supportsTemperature: true,
|
|
6884
|
+
supportsToolCall: true,
|
|
6885
|
+
releaseDate: "2026-03-12",
|
|
6886
|
+
status: "beta",
|
|
6887
|
+
modalities: {
|
|
6888
|
+
input: ["text", "image"],
|
|
6889
|
+
output: ["text"]
|
|
6890
|
+
},
|
|
6891
|
+
pricing: {
|
|
6892
|
+
inputPerM: 2,
|
|
6893
|
+
outputPerM: 6,
|
|
6894
|
+
cacheReadPerM: 0.2,
|
|
6895
|
+
contextOver200kPerM: {
|
|
6896
|
+
inputPerM: 4,
|
|
6897
|
+
outputPerM: 12
|
|
6898
|
+
},
|
|
6899
|
+
currency: "USD",
|
|
6900
|
+
unit: "per_million_tokens"
|
|
6901
|
+
}
|
|
6902
|
+
},
|
|
6903
|
+
{
|
|
6904
|
+
name: "x-ai/grok-4.20-multi-agent-beta",
|
|
6905
|
+
displayName: "Grok 4.20 Multi - Agent Beta",
|
|
6906
|
+
maxInputTokens: 2e6,
|
|
6907
|
+
supportedFileTypes: ["image"],
|
|
6908
|
+
reasoning: true,
|
|
6909
|
+
supportsTemperature: true,
|
|
6910
|
+
supportsToolCall: false,
|
|
6911
|
+
releaseDate: "2026-03-12",
|
|
6912
|
+
status: "beta",
|
|
6913
|
+
modalities: {
|
|
6914
|
+
input: ["text", "image"],
|
|
6915
|
+
output: ["text"]
|
|
6916
|
+
},
|
|
6917
|
+
pricing: {
|
|
6918
|
+
inputPerM: 2,
|
|
6919
|
+
outputPerM: 6,
|
|
6920
|
+
cacheReadPerM: 0.2,
|
|
6921
|
+
contextOver200kPerM: {
|
|
6922
|
+
inputPerM: 4,
|
|
6923
|
+
outputPerM: 12
|
|
6924
|
+
},
|
|
6925
|
+
currency: "USD",
|
|
6926
|
+
unit: "per_million_tokens"
|
|
6927
|
+
}
|
|
6928
|
+
},
|
|
6848
6929
|
{
|
|
6849
6930
|
name: "x-ai/grok-code-fast-1",
|
|
6850
6931
|
displayName: "Grok Code Fast 1",
|
|
@@ -6887,6 +6968,54 @@ const MODELS_BY_PROVIDER = {
|
|
|
6887
6968
|
unit: "per_million_tokens"
|
|
6888
6969
|
}
|
|
6889
6970
|
},
|
|
6971
|
+
{
|
|
6972
|
+
name: "xiaomi/mimo-v2-omni",
|
|
6973
|
+
displayName: "MiMo-V2-Omni",
|
|
6974
|
+
maxInputTokens: 262144,
|
|
6975
|
+
supportedFileTypes: ["image", "audio", "video"],
|
|
6976
|
+
reasoning: true,
|
|
6977
|
+
supportsTemperature: true,
|
|
6978
|
+
supportsToolCall: true,
|
|
6979
|
+
releaseDate: "2026-03-18",
|
|
6980
|
+
modalities: {
|
|
6981
|
+
input: ["text", "image", "video", "audio"],
|
|
6982
|
+
output: ["text"]
|
|
6983
|
+
},
|
|
6984
|
+
interleaved: {
|
|
6985
|
+
field: "reasoning_details"
|
|
6986
|
+
},
|
|
6987
|
+
supportsInterleaved: true,
|
|
6988
|
+
pricing: {
|
|
6989
|
+
inputPerM: 0.4,
|
|
6990
|
+
outputPerM: 2,
|
|
6991
|
+
currency: "USD",
|
|
6992
|
+
unit: "per_million_tokens"
|
|
6993
|
+
}
|
|
6994
|
+
},
|
|
6995
|
+
{
|
|
6996
|
+
name: "xiaomi/mimo-v2-pro",
|
|
6997
|
+
displayName: "MiMo-V2-Pro",
|
|
6998
|
+
maxInputTokens: 1048576,
|
|
6999
|
+
supportedFileTypes: [],
|
|
7000
|
+
reasoning: true,
|
|
7001
|
+
supportsTemperature: true,
|
|
7002
|
+
supportsToolCall: true,
|
|
7003
|
+
releaseDate: "2026-03-18",
|
|
7004
|
+
modalities: {
|
|
7005
|
+
input: ["text"],
|
|
7006
|
+
output: ["text"]
|
|
7007
|
+
},
|
|
7008
|
+
interleaved: {
|
|
7009
|
+
field: "reasoning_details"
|
|
7010
|
+
},
|
|
7011
|
+
supportsInterleaved: true,
|
|
7012
|
+
pricing: {
|
|
7013
|
+
inputPerM: 1,
|
|
7014
|
+
outputPerM: 3,
|
|
7015
|
+
currency: "USD",
|
|
7016
|
+
unit: "per_million_tokens"
|
|
7017
|
+
}
|
|
7018
|
+
},
|
|
6890
7019
|
{
|
|
6891
7020
|
name: "z-ai/glm-4.5",
|
|
6892
7021
|
displayName: "GLM 4.5",
|
|
@@ -6951,7 +7080,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
6951
7080
|
name: "z-ai/glm-4.5v",
|
|
6952
7081
|
displayName: "GLM 4.5V",
|
|
6953
7082
|
maxInputTokens: 64e3,
|
|
6954
|
-
supportedFileTypes: ["image"],
|
|
7083
|
+
supportedFileTypes: ["image", "video"],
|
|
6955
7084
|
reasoning: true,
|
|
6956
7085
|
supportsTemperature: true,
|
|
6957
7086
|
supportsToolCall: true,
|
|
@@ -7091,7 +7220,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7091
7220
|
name: "claude-3-5-haiku@20241022",
|
|
7092
7221
|
displayName: "Claude Haiku 3.5",
|
|
7093
7222
|
maxInputTokens: 2e5,
|
|
7094
|
-
supportedFileTypes: ["pdf", "image"],
|
|
7223
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
7095
7224
|
reasoning: false,
|
|
7096
7225
|
supportsTemperature: true,
|
|
7097
7226
|
supportsToolCall: true,
|
|
@@ -7113,7 +7242,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7113
7242
|
name: "claude-3-5-sonnet@20241022",
|
|
7114
7243
|
displayName: "Claude Sonnet 3.5 v2",
|
|
7115
7244
|
maxInputTokens: 2e5,
|
|
7116
|
-
supportedFileTypes: ["pdf", "image"],
|
|
7245
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
7117
7246
|
reasoning: false,
|
|
7118
7247
|
supportsTemperature: true,
|
|
7119
7248
|
supportsToolCall: true,
|
|
@@ -7135,7 +7264,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7135
7264
|
name: "claude-3-7-sonnet@20250219",
|
|
7136
7265
|
displayName: "Claude Sonnet 3.7",
|
|
7137
7266
|
maxInputTokens: 2e5,
|
|
7138
|
-
supportedFileTypes: ["pdf", "image"],
|
|
7267
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
7139
7268
|
reasoning: true,
|
|
7140
7269
|
supportsTemperature: true,
|
|
7141
7270
|
supportsToolCall: true,
|
|
@@ -7157,7 +7286,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7157
7286
|
name: "claude-haiku-4-5@20251001",
|
|
7158
7287
|
displayName: "Claude Haiku 4.5",
|
|
7159
7288
|
maxInputTokens: 2e5,
|
|
7160
|
-
supportedFileTypes: ["pdf", "image"],
|
|
7289
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
7161
7290
|
reasoning: true,
|
|
7162
7291
|
supportsTemperature: true,
|
|
7163
7292
|
supportsToolCall: true,
|
|
@@ -7179,7 +7308,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7179
7308
|
name: "claude-opus-4-1@20250805",
|
|
7180
7309
|
displayName: "Claude Opus 4.1",
|
|
7181
7310
|
maxInputTokens: 2e5,
|
|
7182
|
-
supportedFileTypes: ["pdf", "image"],
|
|
7311
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
7183
7312
|
reasoning: true,
|
|
7184
7313
|
supportsTemperature: true,
|
|
7185
7314
|
supportsToolCall: true,
|
|
@@ -7201,7 +7330,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7201
7330
|
name: "claude-opus-4-5@20251101",
|
|
7202
7331
|
displayName: "Claude Opus 4.5",
|
|
7203
7332
|
maxInputTokens: 2e5,
|
|
7204
|
-
supportedFileTypes: ["pdf", "image"],
|
|
7333
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
7205
7334
|
reasoning: true,
|
|
7206
7335
|
supportsTemperature: true,
|
|
7207
7336
|
supportsToolCall: true,
|
|
@@ -7223,7 +7352,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7223
7352
|
name: "claude-opus-4-6@default",
|
|
7224
7353
|
displayName: "Claude Opus 4.6",
|
|
7225
7354
|
maxInputTokens: 1e6,
|
|
7226
|
-
supportedFileTypes: ["pdf", "image"],
|
|
7355
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
7227
7356
|
reasoning: true,
|
|
7228
7357
|
supportsTemperature: true,
|
|
7229
7358
|
supportsToolCall: true,
|
|
@@ -7249,7 +7378,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7249
7378
|
name: "claude-opus-4@20250514",
|
|
7250
7379
|
displayName: "Claude Opus 4",
|
|
7251
7380
|
maxInputTokens: 2e5,
|
|
7252
|
-
supportedFileTypes: ["pdf", "image"],
|
|
7381
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
7253
7382
|
reasoning: true,
|
|
7254
7383
|
supportsTemperature: true,
|
|
7255
7384
|
supportsToolCall: true,
|
|
@@ -7271,7 +7400,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7271
7400
|
name: "claude-sonnet-4-5@20250929",
|
|
7272
7401
|
displayName: "Claude Sonnet 4.5",
|
|
7273
7402
|
maxInputTokens: 2e5,
|
|
7274
|
-
supportedFileTypes: ["pdf", "image"],
|
|
7403
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
7275
7404
|
reasoning: true,
|
|
7276
7405
|
supportsTemperature: true,
|
|
7277
7406
|
supportsToolCall: true,
|
|
@@ -7293,7 +7422,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7293
7422
|
name: "claude-sonnet-4-6@default",
|
|
7294
7423
|
displayName: "Claude Sonnet 4.6",
|
|
7295
7424
|
maxInputTokens: 2e5,
|
|
7296
|
-
supportedFileTypes: ["pdf", "image"],
|
|
7425
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
7297
7426
|
reasoning: true,
|
|
7298
7427
|
supportsTemperature: true,
|
|
7299
7428
|
supportsToolCall: true,
|
|
@@ -7319,7 +7448,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7319
7448
|
name: "claude-sonnet-4@20250514",
|
|
7320
7449
|
displayName: "Claude Sonnet 4",
|
|
7321
7450
|
maxInputTokens: 2e5,
|
|
7322
|
-
supportedFileTypes: ["pdf", "image"],
|
|
7451
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
7323
7452
|
reasoning: true,
|
|
7324
7453
|
supportsTemperature: true,
|
|
7325
7454
|
supportsToolCall: true,
|
|
@@ -7341,7 +7470,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7341
7470
|
name: "deepseek-ai/deepseek-v3.1-maas",
|
|
7342
7471
|
displayName: "DeepSeek V3.1",
|
|
7343
7472
|
maxInputTokens: 163840,
|
|
7344
|
-
supportedFileTypes: ["pdf"],
|
|
7473
|
+
supportedFileTypes: ["pdf", "document"],
|
|
7345
7474
|
reasoning: true,
|
|
7346
7475
|
supportsTemperature: true,
|
|
7347
7476
|
supportsToolCall: true,
|
|
@@ -7365,7 +7494,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7365
7494
|
name: "gemini-2.0-flash",
|
|
7366
7495
|
displayName: "Gemini 2.0 Flash",
|
|
7367
7496
|
maxInputTokens: 1048576,
|
|
7368
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7497
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7369
7498
|
reasoning: false,
|
|
7370
7499
|
supportsTemperature: true,
|
|
7371
7500
|
supportsToolCall: true,
|
|
@@ -7386,7 +7515,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7386
7515
|
name: "gemini-2.0-flash-lite",
|
|
7387
7516
|
displayName: "Gemini 2.0 Flash Lite",
|
|
7388
7517
|
maxInputTokens: 1048576,
|
|
7389
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7518
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7390
7519
|
reasoning: false,
|
|
7391
7520
|
supportsTemperature: true,
|
|
7392
7521
|
supportsToolCall: true,
|
|
@@ -7406,7 +7535,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7406
7535
|
name: "gemini-2.5-flash",
|
|
7407
7536
|
displayName: "Gemini 2.5 Flash",
|
|
7408
7537
|
maxInputTokens: 1048576,
|
|
7409
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7538
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7410
7539
|
reasoning: true,
|
|
7411
7540
|
supportsTemperature: true,
|
|
7412
7541
|
supportsToolCall: true,
|
|
@@ -7428,7 +7557,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7428
7557
|
name: "gemini-2.5-flash-lite",
|
|
7429
7558
|
displayName: "Gemini 2.5 Flash Lite",
|
|
7430
7559
|
maxInputTokens: 1048576,
|
|
7431
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7560
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7432
7561
|
reasoning: true,
|
|
7433
7562
|
supportsTemperature: true,
|
|
7434
7563
|
supportsToolCall: true,
|
|
@@ -7449,7 +7578,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7449
7578
|
name: "gemini-2.5-flash-lite-preview-06-17",
|
|
7450
7579
|
displayName: "Gemini 2.5 Flash Lite Preview 06-17",
|
|
7451
7580
|
maxInputTokens: 65536,
|
|
7452
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7581
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7453
7582
|
reasoning: true,
|
|
7454
7583
|
supportsTemperature: true,
|
|
7455
7584
|
supportsToolCall: true,
|
|
@@ -7470,7 +7599,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7470
7599
|
name: "gemini-2.5-flash-lite-preview-09-2025",
|
|
7471
7600
|
displayName: "Gemini 2.5 Flash Lite Preview 09-25",
|
|
7472
7601
|
maxInputTokens: 1048576,
|
|
7473
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7602
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7474
7603
|
reasoning: true,
|
|
7475
7604
|
supportsTemperature: true,
|
|
7476
7605
|
supportsToolCall: true,
|
|
@@ -7491,7 +7620,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7491
7620
|
name: "gemini-2.5-flash-preview-04-17",
|
|
7492
7621
|
displayName: "Gemini 2.5 Flash Preview 04-17",
|
|
7493
7622
|
maxInputTokens: 1048576,
|
|
7494
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7623
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7495
7624
|
reasoning: true,
|
|
7496
7625
|
supportsTemperature: true,
|
|
7497
7626
|
supportsToolCall: true,
|
|
@@ -7512,7 +7641,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7512
7641
|
name: "gemini-2.5-flash-preview-05-20",
|
|
7513
7642
|
displayName: "Gemini 2.5 Flash Preview 05-20",
|
|
7514
7643
|
maxInputTokens: 1048576,
|
|
7515
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7644
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7516
7645
|
reasoning: true,
|
|
7517
7646
|
supportsTemperature: true,
|
|
7518
7647
|
supportsToolCall: true,
|
|
@@ -7533,7 +7662,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7533
7662
|
name: "gemini-2.5-flash-preview-09-2025",
|
|
7534
7663
|
displayName: "Gemini 2.5 Flash Preview 09-25",
|
|
7535
7664
|
maxInputTokens: 1048576,
|
|
7536
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7665
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7537
7666
|
reasoning: true,
|
|
7538
7667
|
supportsTemperature: true,
|
|
7539
7668
|
supportsToolCall: true,
|
|
@@ -7555,7 +7684,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7555
7684
|
name: "gemini-2.5-pro",
|
|
7556
7685
|
displayName: "Gemini 2.5 Pro",
|
|
7557
7686
|
maxInputTokens: 1048576,
|
|
7558
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7687
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7559
7688
|
reasoning: true,
|
|
7560
7689
|
supportsTemperature: true,
|
|
7561
7690
|
supportsToolCall: true,
|
|
@@ -7576,7 +7705,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7576
7705
|
name: "gemini-2.5-pro-preview-05-06",
|
|
7577
7706
|
displayName: "Gemini 2.5 Pro Preview 05-06",
|
|
7578
7707
|
maxInputTokens: 1048576,
|
|
7579
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7708
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7580
7709
|
reasoning: true,
|
|
7581
7710
|
supportsTemperature: true,
|
|
7582
7711
|
supportsToolCall: true,
|
|
@@ -7597,7 +7726,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7597
7726
|
name: "gemini-2.5-pro-preview-06-05",
|
|
7598
7727
|
displayName: "Gemini 2.5 Pro Preview 06-05",
|
|
7599
7728
|
maxInputTokens: 1048576,
|
|
7600
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7729
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7601
7730
|
reasoning: true,
|
|
7602
7731
|
supportsTemperature: true,
|
|
7603
7732
|
supportsToolCall: true,
|
|
@@ -7618,7 +7747,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7618
7747
|
name: "gemini-3-flash-preview",
|
|
7619
7748
|
displayName: "Gemini 3 Flash Preview",
|
|
7620
7749
|
maxInputTokens: 1048576,
|
|
7621
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7750
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7622
7751
|
reasoning: true,
|
|
7623
7752
|
supportsTemperature: true,
|
|
7624
7753
|
supportsToolCall: true,
|
|
@@ -7644,7 +7773,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7644
7773
|
name: "gemini-3-pro-preview",
|
|
7645
7774
|
displayName: "Gemini 3 Pro Preview",
|
|
7646
7775
|
maxInputTokens: 1048576,
|
|
7647
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7776
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7648
7777
|
reasoning: true,
|
|
7649
7778
|
supportsTemperature: true,
|
|
7650
7779
|
supportsToolCall: true,
|
|
@@ -7669,7 +7798,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7669
7798
|
name: "gemini-3.1-pro-preview",
|
|
7670
7799
|
displayName: "Gemini 3.1 Pro Preview",
|
|
7671
7800
|
maxInputTokens: 1048576,
|
|
7672
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7801
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7673
7802
|
reasoning: true,
|
|
7674
7803
|
supportsTemperature: true,
|
|
7675
7804
|
supportsToolCall: true,
|
|
@@ -7694,7 +7823,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7694
7823
|
name: "gemini-3.1-pro-preview-customtools",
|
|
7695
7824
|
displayName: "Gemini 3.1 Pro Preview Custom Tools",
|
|
7696
7825
|
maxInputTokens: 1048576,
|
|
7697
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7826
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7698
7827
|
reasoning: true,
|
|
7699
7828
|
supportsTemperature: true,
|
|
7700
7829
|
supportsToolCall: true,
|
|
@@ -7739,7 +7868,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7739
7868
|
name: "gemini-flash-latest",
|
|
7740
7869
|
displayName: "Gemini Flash Latest",
|
|
7741
7870
|
maxInputTokens: 1048576,
|
|
7742
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7871
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7743
7872
|
reasoning: true,
|
|
7744
7873
|
supportsTemperature: true,
|
|
7745
7874
|
supportsToolCall: true,
|
|
@@ -7761,7 +7890,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7761
7890
|
name: "gemini-flash-lite-latest",
|
|
7762
7891
|
displayName: "Gemini Flash-Lite Latest",
|
|
7763
7892
|
maxInputTokens: 1048576,
|
|
7764
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7893
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7765
7894
|
reasoning: true,
|
|
7766
7895
|
supportsTemperature: true,
|
|
7767
7896
|
supportsToolCall: true,
|
|
@@ -7806,7 +7935,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7806
7935
|
name: "meta/llama-4-maverick-17b-128e-instruct-maas",
|
|
7807
7936
|
displayName: "Llama 4 Maverick 17B 128E Instruct",
|
|
7808
7937
|
maxInputTokens: 524288,
|
|
7809
|
-
supportedFileTypes: ["image"],
|
|
7938
|
+
supportedFileTypes: ["image", "document"],
|
|
7810
7939
|
reasoning: false,
|
|
7811
7940
|
supportsTemperature: true,
|
|
7812
7941
|
supportsToolCall: true,
|
|
@@ -7894,7 +8023,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7894
8023
|
name: "zai-org/glm-4.7-maas",
|
|
7895
8024
|
displayName: "GLM-4.7",
|
|
7896
8025
|
maxInputTokens: 2e5,
|
|
7897
|
-
supportedFileTypes: ["pdf"],
|
|
8026
|
+
supportedFileTypes: ["pdf", "document"],
|
|
7898
8027
|
reasoning: true,
|
|
7899
8028
|
supportsTemperature: true,
|
|
7900
8029
|
supportsToolCall: true,
|
|
@@ -7921,7 +8050,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7921
8050
|
{
|
|
7922
8051
|
name: "zai-org/glm-5-maas",
|
|
7923
8052
|
displayName: "GLM-5",
|
|
7924
|
-
maxInputTokens:
|
|
8053
|
+
maxInputTokens: 202752,
|
|
7925
8054
|
supportedFileTypes: [],
|
|
7926
8055
|
reasoning: true,
|
|
7927
8056
|
supportsTemperature: true,
|
|
@@ -7949,51 +8078,11 @@ const MODELS_BY_PROVIDER = {
|
|
|
7949
8078
|
}
|
|
7950
8079
|
],
|
|
7951
8080
|
bedrock: [
|
|
7952
|
-
{
|
|
7953
|
-
name: "ai21.jamba-1-5-large-v1:0",
|
|
7954
|
-
displayName: "Jamba 1.5 Large",
|
|
7955
|
-
maxInputTokens: 256e3,
|
|
7956
|
-
supportedFileTypes: [],
|
|
7957
|
-
reasoning: false,
|
|
7958
|
-
supportsTemperature: true,
|
|
7959
|
-
supportsToolCall: true,
|
|
7960
|
-
releaseDate: "2024-08-15",
|
|
7961
|
-
modalities: {
|
|
7962
|
-
input: ["text"],
|
|
7963
|
-
output: ["text"]
|
|
7964
|
-
},
|
|
7965
|
-
pricing: {
|
|
7966
|
-
inputPerM: 2,
|
|
7967
|
-
outputPerM: 8,
|
|
7968
|
-
currency: "USD",
|
|
7969
|
-
unit: "per_million_tokens"
|
|
7970
|
-
}
|
|
7971
|
-
},
|
|
7972
|
-
{
|
|
7973
|
-
name: "ai21.jamba-1-5-mini-v1:0",
|
|
7974
|
-
displayName: "Jamba 1.5 Mini",
|
|
7975
|
-
maxInputTokens: 256e3,
|
|
7976
|
-
supportedFileTypes: [],
|
|
7977
|
-
reasoning: false,
|
|
7978
|
-
supportsTemperature: true,
|
|
7979
|
-
supportsToolCall: true,
|
|
7980
|
-
releaseDate: "2024-08-15",
|
|
7981
|
-
modalities: {
|
|
7982
|
-
input: ["text"],
|
|
7983
|
-
output: ["text"]
|
|
7984
|
-
},
|
|
7985
|
-
pricing: {
|
|
7986
|
-
inputPerM: 0.2,
|
|
7987
|
-
outputPerM: 0.4,
|
|
7988
|
-
currency: "USD",
|
|
7989
|
-
unit: "per_million_tokens"
|
|
7990
|
-
}
|
|
7991
|
-
},
|
|
7992
8081
|
{
|
|
7993
8082
|
name: "amazon.nova-2-lite-v1:0",
|
|
7994
8083
|
displayName: "Nova 2 Lite",
|
|
7995
8084
|
maxInputTokens: 128e3,
|
|
7996
|
-
supportedFileTypes: ["image"],
|
|
8085
|
+
supportedFileTypes: ["image", "video"],
|
|
7997
8086
|
reasoning: false,
|
|
7998
8087
|
supportsTemperature: true,
|
|
7999
8088
|
supportsToolCall: true,
|
|
@@ -8013,7 +8102,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
8013
8102
|
name: "amazon.nova-lite-v1:0",
|
|
8014
8103
|
displayName: "Nova Lite",
|
|
8015
8104
|
maxInputTokens: 3e5,
|
|
8016
|
-
supportedFileTypes: ["image"],
|
|
8105
|
+
supportedFileTypes: ["image", "video"],
|
|
8017
8106
|
reasoning: false,
|
|
8018
8107
|
supportsTemperature: true,
|
|
8019
8108
|
supportsToolCall: true,
|
|
@@ -8055,7 +8144,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
8055
8144
|
name: "amazon.nova-premier-v1:0",
|
|
8056
8145
|
displayName: "Nova Premier",
|
|
8057
8146
|
maxInputTokens: 1e6,
|
|
8058
|
-
supportedFileTypes: ["image"],
|
|
8147
|
+
supportedFileTypes: ["image", "video"],
|
|
8059
8148
|
reasoning: true,
|
|
8060
8149
|
supportsTemperature: true,
|
|
8061
8150
|
supportsToolCall: true,
|
|
@@ -8075,7 +8164,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
8075
8164
|
name: "amazon.nova-pro-v1:0",
|
|
8076
8165
|
displayName: "Nova Pro",
|
|
8077
8166
|
maxInputTokens: 3e5,
|
|
8078
|
-
supportedFileTypes: ["image"],
|
|
8167
|
+
supportedFileTypes: ["image", "video"],
|
|
8079
8168
|
reasoning: false,
|
|
8080
8169
|
supportsTemperature: true,
|
|
8081
8170
|
supportsToolCall: true,
|
|
@@ -8092,46 +8181,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
8092
8181
|
unit: "per_million_tokens"
|
|
8093
8182
|
}
|
|
8094
8183
|
},
|
|
8095
|
-
{
|
|
8096
|
-
name: "amazon.titan-text-express-v1",
|
|
8097
|
-
displayName: "Titan Text G1 - Express",
|
|
8098
|
-
maxInputTokens: 128e3,
|
|
8099
|
-
supportedFileTypes: [],
|
|
8100
|
-
reasoning: false,
|
|
8101
|
-
supportsTemperature: true,
|
|
8102
|
-
supportsToolCall: true,
|
|
8103
|
-
releaseDate: "2024-12-01",
|
|
8104
|
-
modalities: {
|
|
8105
|
-
input: ["text"],
|
|
8106
|
-
output: ["text"]
|
|
8107
|
-
},
|
|
8108
|
-
pricing: {
|
|
8109
|
-
inputPerM: 0.2,
|
|
8110
|
-
outputPerM: 0.6,
|
|
8111
|
-
currency: "USD",
|
|
8112
|
-
unit: "per_million_tokens"
|
|
8113
|
-
}
|
|
8114
|
-
},
|
|
8115
|
-
{
|
|
8116
|
-
name: "amazon.titan-text-express-v1:0:8k",
|
|
8117
|
-
displayName: "Titan Text G1 - Express",
|
|
8118
|
-
maxInputTokens: 128e3,
|
|
8119
|
-
supportedFileTypes: [],
|
|
8120
|
-
reasoning: false,
|
|
8121
|
-
supportsTemperature: true,
|
|
8122
|
-
supportsToolCall: true,
|
|
8123
|
-
releaseDate: "2024-12-01",
|
|
8124
|
-
modalities: {
|
|
8125
|
-
input: ["text"],
|
|
8126
|
-
output: ["text"]
|
|
8127
|
-
},
|
|
8128
|
-
pricing: {
|
|
8129
|
-
inputPerM: 0.2,
|
|
8130
|
-
outputPerM: 0.6,
|
|
8131
|
-
currency: "USD",
|
|
8132
|
-
unit: "per_million_tokens"
|
|
8133
|
-
}
|
|
8134
|
-
},
|
|
8135
8184
|
{
|
|
8136
8185
|
name: "anthropic.claude-3-5-haiku-20241022-v1:0",
|
|
8137
8186
|
displayName: "Claude Haiku 3.5",
|
|
@@ -8240,46 +8289,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
8240
8289
|
unit: "per_million_tokens"
|
|
8241
8290
|
}
|
|
8242
8291
|
},
|
|
8243
|
-
{
|
|
8244
|
-
name: "anthropic.claude-3-opus-20240229-v1:0",
|
|
8245
|
-
displayName: "Claude Opus 3",
|
|
8246
|
-
maxInputTokens: 2e5,
|
|
8247
|
-
supportedFileTypes: ["pdf", "image"],
|
|
8248
|
-
reasoning: false,
|
|
8249
|
-
supportsTemperature: true,
|
|
8250
|
-
supportsToolCall: true,
|
|
8251
|
-
releaseDate: "2024-02-29",
|
|
8252
|
-
modalities: {
|
|
8253
|
-
input: ["text", "image", "pdf"],
|
|
8254
|
-
output: ["text"]
|
|
8255
|
-
},
|
|
8256
|
-
pricing: {
|
|
8257
|
-
inputPerM: 15,
|
|
8258
|
-
outputPerM: 75,
|
|
8259
|
-
currency: "USD",
|
|
8260
|
-
unit: "per_million_tokens"
|
|
8261
|
-
}
|
|
8262
|
-
},
|
|
8263
|
-
{
|
|
8264
|
-
name: "anthropic.claude-3-sonnet-20240229-v1:0",
|
|
8265
|
-
displayName: "Claude Sonnet 3",
|
|
8266
|
-
maxInputTokens: 2e5,
|
|
8267
|
-
supportedFileTypes: ["pdf", "image"],
|
|
8268
|
-
reasoning: false,
|
|
8269
|
-
supportsTemperature: true,
|
|
8270
|
-
supportsToolCall: true,
|
|
8271
|
-
releaseDate: "2024-03-04",
|
|
8272
|
-
modalities: {
|
|
8273
|
-
input: ["text", "image", "pdf"],
|
|
8274
|
-
output: ["text"]
|
|
8275
|
-
},
|
|
8276
|
-
pricing: {
|
|
8277
|
-
inputPerM: 3,
|
|
8278
|
-
outputPerM: 15,
|
|
8279
|
-
currency: "USD",
|
|
8280
|
-
unit: "per_million_tokens"
|
|
8281
|
-
}
|
|
8282
|
-
},
|
|
8283
8292
|
{
|
|
8284
8293
|
name: "anthropic.claude-haiku-4-5-20251001-v1:0",
|
|
8285
8294
|
displayName: "Claude Haiku 4.5",
|
|
@@ -8302,26 +8311,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
8302
8311
|
unit: "per_million_tokens"
|
|
8303
8312
|
}
|
|
8304
8313
|
},
|
|
8305
|
-
{
|
|
8306
|
-
name: "anthropic.claude-instant-v1",
|
|
8307
|
-
displayName: "Claude Instant",
|
|
8308
|
-
maxInputTokens: 1e5,
|
|
8309
|
-
supportedFileTypes: [],
|
|
8310
|
-
reasoning: false,
|
|
8311
|
-
supportsTemperature: true,
|
|
8312
|
-
supportsToolCall: false,
|
|
8313
|
-
releaseDate: "2023-03-01",
|
|
8314
|
-
modalities: {
|
|
8315
|
-
input: ["text"],
|
|
8316
|
-
output: ["text"]
|
|
8317
|
-
},
|
|
8318
|
-
pricing: {
|
|
8319
|
-
inputPerM: 0.8,
|
|
8320
|
-
outputPerM: 2.4,
|
|
8321
|
-
currency: "USD",
|
|
8322
|
-
unit: "per_million_tokens"
|
|
8323
|
-
}
|
|
8324
|
-
},
|
|
8325
8314
|
{
|
|
8326
8315
|
name: "anthropic.claude-opus-4-1-20250805-v1:0",
|
|
8327
8316
|
displayName: "Claude Opus 4.1",
|
|
@@ -8406,10 +8395,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
8406
8395
|
outputPerM: 25,
|
|
8407
8396
|
cacheReadPerM: 0.5,
|
|
8408
8397
|
cacheWritePerM: 6.25,
|
|
8409
|
-
contextOver200kPerM: {
|
|
8410
|
-
inputPerM: 10,
|
|
8411
|
-
outputPerM: 37.5
|
|
8412
|
-
},
|
|
8413
8398
|
currency: "USD",
|
|
8414
8399
|
unit: "per_million_tokens"
|
|
8415
8400
|
}
|
|
@@ -8450,157 +8435,33 @@ const MODELS_BY_PROVIDER = {
|
|
|
8450
8435
|
output: ["text"]
|
|
8451
8436
|
},
|
|
8452
8437
|
pricing: {
|
|
8453
|
-
inputPerM: 3,
|
|
8454
|
-
outputPerM: 15,
|
|
8455
|
-
cacheReadPerM: 0.3,
|
|
8456
|
-
cacheWritePerM: 3.75,
|
|
8457
|
-
currency: "USD",
|
|
8458
|
-
unit: "per_million_tokens"
|
|
8459
|
-
},
|
|
8460
|
-
default: true
|
|
8461
|
-
},
|
|
8462
|
-
{
|
|
8463
|
-
name: "anthropic.claude-sonnet-4-6",
|
|
8464
|
-
displayName: "Claude Sonnet 4.6",
|
|
8465
|
-
maxInputTokens: 2e5,
|
|
8466
|
-
supportedFileTypes: ["pdf", "image"],
|
|
8467
|
-
reasoning: true,
|
|
8468
|
-
supportsTemperature: true,
|
|
8469
|
-
supportsToolCall: true,
|
|
8470
|
-
releaseDate: "2026-02-17",
|
|
8471
|
-
modalities: {
|
|
8472
|
-
input: ["text", "image", "pdf"],
|
|
8473
|
-
output: ["text"]
|
|
8474
|
-
},
|
|
8475
|
-
pricing: {
|
|
8476
|
-
inputPerM: 3,
|
|
8477
|
-
outputPerM: 15,
|
|
8478
|
-
cacheReadPerM: 0.3,
|
|
8479
|
-
cacheWritePerM: 3.75,
|
|
8480
|
-
contextOver200kPerM: {
|
|
8481
|
-
inputPerM: 6,
|
|
8482
|
-
outputPerM: 22.5
|
|
8483
|
-
},
|
|
8484
|
-
currency: "USD",
|
|
8485
|
-
unit: "per_million_tokens"
|
|
8486
|
-
}
|
|
8487
|
-
},
|
|
8488
|
-
{
|
|
8489
|
-
name: "anthropic.claude-v2",
|
|
8490
|
-
displayName: "Claude 2",
|
|
8491
|
-
maxInputTokens: 1e5,
|
|
8492
|
-
supportedFileTypes: [],
|
|
8493
|
-
reasoning: false,
|
|
8494
|
-
supportsTemperature: true,
|
|
8495
|
-
supportsToolCall: false,
|
|
8496
|
-
releaseDate: "2023-07-11",
|
|
8497
|
-
modalities: {
|
|
8498
|
-
input: ["text"],
|
|
8499
|
-
output: ["text"]
|
|
8500
|
-
},
|
|
8501
|
-
pricing: {
|
|
8502
|
-
inputPerM: 8,
|
|
8503
|
-
outputPerM: 24,
|
|
8504
|
-
currency: "USD",
|
|
8505
|
-
unit: "per_million_tokens"
|
|
8506
|
-
}
|
|
8507
|
-
},
|
|
8508
|
-
{
|
|
8509
|
-
name: "anthropic.claude-v2:1",
|
|
8510
|
-
displayName: "Claude 2.1",
|
|
8511
|
-
maxInputTokens: 2e5,
|
|
8512
|
-
supportedFileTypes: [],
|
|
8513
|
-
reasoning: false,
|
|
8514
|
-
supportsTemperature: true,
|
|
8515
|
-
supportsToolCall: false,
|
|
8516
|
-
releaseDate: "2023-11-21",
|
|
8517
|
-
modalities: {
|
|
8518
|
-
input: ["text"],
|
|
8519
|
-
output: ["text"]
|
|
8520
|
-
},
|
|
8521
|
-
pricing: {
|
|
8522
|
-
inputPerM: 8,
|
|
8523
|
-
outputPerM: 24,
|
|
8524
|
-
currency: "USD",
|
|
8525
|
-
unit: "per_million_tokens"
|
|
8526
|
-
}
|
|
8527
|
-
},
|
|
8528
|
-
{
|
|
8529
|
-
name: "cohere.command-light-text-v14",
|
|
8530
|
-
displayName: "Command Light",
|
|
8531
|
-
maxInputTokens: 4096,
|
|
8532
|
-
supportedFileTypes: [],
|
|
8533
|
-
reasoning: false,
|
|
8534
|
-
supportsTemperature: true,
|
|
8535
|
-
supportsToolCall: false,
|
|
8536
|
-
releaseDate: "2023-11-01",
|
|
8537
|
-
modalities: {
|
|
8538
|
-
input: ["text"],
|
|
8539
|
-
output: ["text"]
|
|
8540
|
-
},
|
|
8541
|
-
pricing: {
|
|
8542
|
-
inputPerM: 0.3,
|
|
8543
|
-
outputPerM: 0.6,
|
|
8544
|
-
currency: "USD",
|
|
8545
|
-
unit: "per_million_tokens"
|
|
8546
|
-
}
|
|
8547
|
-
},
|
|
8548
|
-
{
|
|
8549
|
-
name: "cohere.command-r-plus-v1:0",
|
|
8550
|
-
displayName: "Command R+",
|
|
8551
|
-
maxInputTokens: 128e3,
|
|
8552
|
-
supportedFileTypes: [],
|
|
8553
|
-
reasoning: false,
|
|
8554
|
-
supportsTemperature: true,
|
|
8555
|
-
supportsToolCall: true,
|
|
8556
|
-
releaseDate: "2024-04-04",
|
|
8557
|
-
modalities: {
|
|
8558
|
-
input: ["text"],
|
|
8559
|
-
output: ["text"]
|
|
8560
|
-
},
|
|
8561
|
-
pricing: {
|
|
8562
|
-
inputPerM: 3,
|
|
8563
|
-
outputPerM: 15,
|
|
8564
|
-
currency: "USD",
|
|
8565
|
-
unit: "per_million_tokens"
|
|
8566
|
-
}
|
|
8567
|
-
},
|
|
8568
|
-
{
|
|
8569
|
-
name: "cohere.command-r-v1:0",
|
|
8570
|
-
displayName: "Command R",
|
|
8571
|
-
maxInputTokens: 128e3,
|
|
8572
|
-
supportedFileTypes: [],
|
|
8573
|
-
reasoning: false,
|
|
8574
|
-
supportsTemperature: true,
|
|
8575
|
-
supportsToolCall: true,
|
|
8576
|
-
releaseDate: "2024-03-11",
|
|
8577
|
-
modalities: {
|
|
8578
|
-
input: ["text"],
|
|
8579
|
-
output: ["text"]
|
|
8580
|
-
},
|
|
8581
|
-
pricing: {
|
|
8582
|
-
inputPerM: 0.5,
|
|
8583
|
-
outputPerM: 1.5,
|
|
8438
|
+
inputPerM: 3,
|
|
8439
|
+
outputPerM: 15,
|
|
8440
|
+
cacheReadPerM: 0.3,
|
|
8441
|
+
cacheWritePerM: 3.75,
|
|
8584
8442
|
currency: "USD",
|
|
8585
8443
|
unit: "per_million_tokens"
|
|
8586
|
-
}
|
|
8444
|
+
},
|
|
8445
|
+
default: true
|
|
8587
8446
|
},
|
|
8588
8447
|
{
|
|
8589
|
-
name: "
|
|
8590
|
-
displayName: "
|
|
8591
|
-
maxInputTokens:
|
|
8592
|
-
supportedFileTypes: [],
|
|
8593
|
-
reasoning:
|
|
8448
|
+
name: "anthropic.claude-sonnet-4-6",
|
|
8449
|
+
displayName: "Claude Sonnet 4.6",
|
|
8450
|
+
maxInputTokens: 1e6,
|
|
8451
|
+
supportedFileTypes: ["pdf", "image"],
|
|
8452
|
+
reasoning: true,
|
|
8594
8453
|
supportsTemperature: true,
|
|
8595
|
-
supportsToolCall:
|
|
8596
|
-
releaseDate: "
|
|
8454
|
+
supportsToolCall: true,
|
|
8455
|
+
releaseDate: "2026-02-17",
|
|
8597
8456
|
modalities: {
|
|
8598
|
-
input: ["text"],
|
|
8457
|
+
input: ["text", "image", "pdf"],
|
|
8599
8458
|
output: ["text"]
|
|
8600
8459
|
},
|
|
8601
8460
|
pricing: {
|
|
8602
|
-
inputPerM:
|
|
8603
|
-
outputPerM:
|
|
8461
|
+
inputPerM: 3,
|
|
8462
|
+
outputPerM: 15,
|
|
8463
|
+
cacheReadPerM: 0.3,
|
|
8464
|
+
cacheWritePerM: 3.75,
|
|
8604
8465
|
currency: "USD",
|
|
8605
8466
|
unit: "per_million_tokens"
|
|
8606
8467
|
}
|
|
@@ -8646,14 +8507,14 @@ const MODELS_BY_PROVIDER = {
|
|
|
8646
8507
|
}
|
|
8647
8508
|
},
|
|
8648
8509
|
{
|
|
8649
|
-
name: "deepseek.v3.2
|
|
8510
|
+
name: "deepseek.v3.2",
|
|
8650
8511
|
displayName: "DeepSeek-V3.2",
|
|
8651
8512
|
maxInputTokens: 163840,
|
|
8652
8513
|
supportedFileTypes: [],
|
|
8653
8514
|
reasoning: true,
|
|
8654
8515
|
supportsTemperature: true,
|
|
8655
8516
|
supportsToolCall: true,
|
|
8656
|
-
releaseDate: "2026-02-
|
|
8517
|
+
releaseDate: "2026-02-06",
|
|
8657
8518
|
modalities: {
|
|
8658
8519
|
input: ["text"],
|
|
8659
8520
|
output: ["text"]
|
|
@@ -8727,10 +8588,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
8727
8588
|
outputPerM: 25,
|
|
8728
8589
|
cacheReadPerM: 0.5,
|
|
8729
8590
|
cacheWritePerM: 6.25,
|
|
8730
|
-
contextOver200kPerM: {
|
|
8731
|
-
inputPerM: 10,
|
|
8732
|
-
outputPerM: 37.5
|
|
8733
|
-
},
|
|
8734
8591
|
currency: "USD",
|
|
8735
8592
|
unit: "per_million_tokens"
|
|
8736
8593
|
}
|
|
@@ -8782,7 +8639,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
8782
8639
|
{
|
|
8783
8640
|
name: "eu.anthropic.claude-sonnet-4-6",
|
|
8784
8641
|
displayName: "Claude Sonnet 4.6 (EU)",
|
|
8785
|
-
maxInputTokens:
|
|
8642
|
+
maxInputTokens: 1e6,
|
|
8786
8643
|
supportedFileTypes: ["pdf", "image"],
|
|
8787
8644
|
reasoning: true,
|
|
8788
8645
|
supportsTemperature: true,
|
|
@@ -8797,10 +8654,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
8797
8654
|
outputPerM: 15,
|
|
8798
8655
|
cacheReadPerM: 0.3,
|
|
8799
8656
|
cacheWritePerM: 3.75,
|
|
8800
|
-
contextOver200kPerM: {
|
|
8801
|
-
inputPerM: 6,
|
|
8802
|
-
outputPerM: 22.5
|
|
8803
|
-
},
|
|
8804
8657
|
currency: "USD",
|
|
8805
8658
|
unit: "per_million_tokens"
|
|
8806
8659
|
}
|
|
@@ -8867,10 +8720,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
8867
8720
|
outputPerM: 25,
|
|
8868
8721
|
cacheReadPerM: 0.5,
|
|
8869
8722
|
cacheWritePerM: 6.25,
|
|
8870
|
-
contextOver200kPerM: {
|
|
8871
|
-
inputPerM: 10,
|
|
8872
|
-
outputPerM: 37.5
|
|
8873
|
-
},
|
|
8874
8723
|
currency: "USD",
|
|
8875
8724
|
unit: "per_million_tokens"
|
|
8876
8725
|
}
|
|
@@ -8922,7 +8771,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
8922
8771
|
{
|
|
8923
8772
|
name: "global.anthropic.claude-sonnet-4-6",
|
|
8924
8773
|
displayName: "Claude Sonnet 4.6 (Global)",
|
|
8925
|
-
maxInputTokens:
|
|
8774
|
+
maxInputTokens: 1e6,
|
|
8926
8775
|
supportedFileTypes: ["pdf", "image"],
|
|
8927
8776
|
reasoning: true,
|
|
8928
8777
|
supportsTemperature: true,
|
|
@@ -8937,10 +8786,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
8937
8786
|
outputPerM: 15,
|
|
8938
8787
|
cacheReadPerM: 0.3,
|
|
8939
8788
|
cacheWritePerM: 3.75,
|
|
8940
|
-
contextOver200kPerM: {
|
|
8941
|
-
inputPerM: 6,
|
|
8942
|
-
outputPerM: 22.5
|
|
8943
|
-
},
|
|
8944
8789
|
currency: "USD",
|
|
8945
8790
|
unit: "per_million_tokens"
|
|
8946
8791
|
}
|
|
@@ -9005,6 +8850,26 @@ const MODELS_BY_PROVIDER = {
|
|
|
9005
8850
|
unit: "per_million_tokens"
|
|
9006
8851
|
}
|
|
9007
8852
|
},
|
|
8853
|
+
{
|
|
8854
|
+
name: "meta.llama3-1-405b-instruct-v1:0",
|
|
8855
|
+
displayName: "Llama 3.1 405B Instruct",
|
|
8856
|
+
maxInputTokens: 128e3,
|
|
8857
|
+
supportedFileTypes: [],
|
|
8858
|
+
reasoning: false,
|
|
8859
|
+
supportsTemperature: true,
|
|
8860
|
+
supportsToolCall: true,
|
|
8861
|
+
releaseDate: "2024-07-23",
|
|
8862
|
+
modalities: {
|
|
8863
|
+
input: ["text"],
|
|
8864
|
+
output: ["text"]
|
|
8865
|
+
},
|
|
8866
|
+
pricing: {
|
|
8867
|
+
inputPerM: 2.4,
|
|
8868
|
+
outputPerM: 2.4,
|
|
8869
|
+
currency: "USD",
|
|
8870
|
+
unit: "per_million_tokens"
|
|
8871
|
+
}
|
|
8872
|
+
},
|
|
9008
8873
|
{
|
|
9009
8874
|
name: "meta.llama3-1-70b-instruct-v1:0",
|
|
9010
8875
|
displayName: "Llama 3.1 70B Instruct",
|
|
@@ -9145,46 +9010,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
9145
9010
|
unit: "per_million_tokens"
|
|
9146
9011
|
}
|
|
9147
9012
|
},
|
|
9148
|
-
{
|
|
9149
|
-
name: "meta.llama3-70b-instruct-v1:0",
|
|
9150
|
-
displayName: "Llama 3 70B Instruct",
|
|
9151
|
-
maxInputTokens: 8192,
|
|
9152
|
-
supportedFileTypes: [],
|
|
9153
|
-
reasoning: false,
|
|
9154
|
-
supportsTemperature: true,
|
|
9155
|
-
supportsToolCall: false,
|
|
9156
|
-
releaseDate: "2024-07-23",
|
|
9157
|
-
modalities: {
|
|
9158
|
-
input: ["text"],
|
|
9159
|
-
output: ["text"]
|
|
9160
|
-
},
|
|
9161
|
-
pricing: {
|
|
9162
|
-
inputPerM: 2.65,
|
|
9163
|
-
outputPerM: 3.5,
|
|
9164
|
-
currency: "USD",
|
|
9165
|
-
unit: "per_million_tokens"
|
|
9166
|
-
}
|
|
9167
|
-
},
|
|
9168
|
-
{
|
|
9169
|
-
name: "meta.llama3-8b-instruct-v1:0",
|
|
9170
|
-
displayName: "Llama 3 8B Instruct",
|
|
9171
|
-
maxInputTokens: 8192,
|
|
9172
|
-
supportedFileTypes: [],
|
|
9173
|
-
reasoning: false,
|
|
9174
|
-
supportsTemperature: true,
|
|
9175
|
-
supportsToolCall: false,
|
|
9176
|
-
releaseDate: "2024-07-23",
|
|
9177
|
-
modalities: {
|
|
9178
|
-
input: ["text"],
|
|
9179
|
-
output: ["text"]
|
|
9180
|
-
},
|
|
9181
|
-
pricing: {
|
|
9182
|
-
inputPerM: 0.3,
|
|
9183
|
-
outputPerM: 0.6,
|
|
9184
|
-
currency: "USD",
|
|
9185
|
-
unit: "per_million_tokens"
|
|
9186
|
-
}
|
|
9187
|
-
},
|
|
9188
9013
|
{
|
|
9189
9014
|
name: "meta.llama4-maverick-17b-instruct-v1:0",
|
|
9190
9015
|
displayName: "Llama 4 Maverick 17B Instruct",
|
|
@@ -9266,28 +9091,68 @@ const MODELS_BY_PROVIDER = {
|
|
|
9266
9091
|
}
|
|
9267
9092
|
},
|
|
9268
9093
|
{
|
|
9269
|
-
name: "
|
|
9270
|
-
displayName: "
|
|
9271
|
-
maxInputTokens:
|
|
9094
|
+
name: "minimax.minimax-m2.5",
|
|
9095
|
+
displayName: "MiniMax M2.5",
|
|
9096
|
+
maxInputTokens: 196608,
|
|
9097
|
+
supportedFileTypes: [],
|
|
9098
|
+
reasoning: true,
|
|
9099
|
+
supportsTemperature: true,
|
|
9100
|
+
supportsToolCall: true,
|
|
9101
|
+
releaseDate: "2026-03-18",
|
|
9102
|
+
modalities: {
|
|
9103
|
+
input: ["text"],
|
|
9104
|
+
output: ["text"]
|
|
9105
|
+
},
|
|
9106
|
+
pricing: {
|
|
9107
|
+
inputPerM: 0.3,
|
|
9108
|
+
outputPerM: 1.2,
|
|
9109
|
+
currency: "USD",
|
|
9110
|
+
unit: "per_million_tokens"
|
|
9111
|
+
}
|
|
9112
|
+
},
|
|
9113
|
+
{
|
|
9114
|
+
name: "mistral.devstral-2-123b",
|
|
9115
|
+
displayName: "Devstral 2 123B",
|
|
9116
|
+
maxInputTokens: 256e3,
|
|
9272
9117
|
supportedFileTypes: [],
|
|
9273
9118
|
reasoning: false,
|
|
9274
9119
|
supportsTemperature: true,
|
|
9275
9120
|
supportsToolCall: true,
|
|
9276
|
-
releaseDate: "
|
|
9121
|
+
releaseDate: "2026-02-17",
|
|
9277
9122
|
modalities: {
|
|
9278
9123
|
input: ["text"],
|
|
9279
9124
|
output: ["text"]
|
|
9280
9125
|
},
|
|
9281
9126
|
pricing: {
|
|
9282
|
-
inputPerM: 0.
|
|
9283
|
-
outputPerM:
|
|
9127
|
+
inputPerM: 0.4,
|
|
9128
|
+
outputPerM: 2,
|
|
9284
9129
|
currency: "USD",
|
|
9285
9130
|
unit: "per_million_tokens"
|
|
9286
9131
|
}
|
|
9287
9132
|
},
|
|
9288
9133
|
{
|
|
9289
|
-
name: "mistral.
|
|
9290
|
-
displayName: "
|
|
9134
|
+
name: "mistral.magistral-small-2509",
|
|
9135
|
+
displayName: "Magistral Small 1.2",
|
|
9136
|
+
maxInputTokens: 128e3,
|
|
9137
|
+
supportedFileTypes: ["image"],
|
|
9138
|
+
reasoning: true,
|
|
9139
|
+
supportsTemperature: true,
|
|
9140
|
+
supportsToolCall: true,
|
|
9141
|
+
releaseDate: "2025-12-02",
|
|
9142
|
+
modalities: {
|
|
9143
|
+
input: ["text", "image"],
|
|
9144
|
+
output: ["text"]
|
|
9145
|
+
},
|
|
9146
|
+
pricing: {
|
|
9147
|
+
inputPerM: 0.5,
|
|
9148
|
+
outputPerM: 1.5,
|
|
9149
|
+
currency: "USD",
|
|
9150
|
+
unit: "per_million_tokens"
|
|
9151
|
+
}
|
|
9152
|
+
},
|
|
9153
|
+
{
|
|
9154
|
+
name: "mistral.ministral-3-14b-instruct",
|
|
9155
|
+
displayName: "Ministral 14B 3.0",
|
|
9291
9156
|
maxInputTokens: 128e3,
|
|
9292
9157
|
supportedFileTypes: [],
|
|
9293
9158
|
reasoning: false,
|
|
@@ -9299,35 +9164,35 @@ const MODELS_BY_PROVIDER = {
|
|
|
9299
9164
|
output: ["text"]
|
|
9300
9165
|
},
|
|
9301
9166
|
pricing: {
|
|
9302
|
-
inputPerM: 0.
|
|
9303
|
-
outputPerM: 0.
|
|
9167
|
+
inputPerM: 0.2,
|
|
9168
|
+
outputPerM: 0.2,
|
|
9304
9169
|
currency: "USD",
|
|
9305
9170
|
unit: "per_million_tokens"
|
|
9306
9171
|
}
|
|
9307
9172
|
},
|
|
9308
9173
|
{
|
|
9309
|
-
name: "mistral.
|
|
9310
|
-
displayName: "
|
|
9311
|
-
maxInputTokens:
|
|
9312
|
-
supportedFileTypes: [],
|
|
9174
|
+
name: "mistral.ministral-3-3b-instruct",
|
|
9175
|
+
displayName: "Ministral 3 3B",
|
|
9176
|
+
maxInputTokens: 256e3,
|
|
9177
|
+
supportedFileTypes: ["image"],
|
|
9313
9178
|
reasoning: false,
|
|
9314
9179
|
supportsTemperature: true,
|
|
9315
9180
|
supportsToolCall: true,
|
|
9316
|
-
releaseDate: "2025-
|
|
9181
|
+
releaseDate: "2025-12-02",
|
|
9317
9182
|
modalities: {
|
|
9318
|
-
input: ["text"],
|
|
9183
|
+
input: ["text", "image"],
|
|
9319
9184
|
output: ["text"]
|
|
9320
9185
|
},
|
|
9321
9186
|
pricing: {
|
|
9322
|
-
inputPerM: 0.
|
|
9323
|
-
outputPerM: 0.
|
|
9187
|
+
inputPerM: 0.1,
|
|
9188
|
+
outputPerM: 0.1,
|
|
9324
9189
|
currency: "USD",
|
|
9325
9190
|
unit: "per_million_tokens"
|
|
9326
9191
|
}
|
|
9327
9192
|
},
|
|
9328
9193
|
{
|
|
9329
|
-
name: "mistral.
|
|
9330
|
-
displayName: "
|
|
9194
|
+
name: "mistral.ministral-3-8b-instruct",
|
|
9195
|
+
displayName: "Ministral 3 8B",
|
|
9331
9196
|
maxInputTokens: 128e3,
|
|
9332
9197
|
supportedFileTypes: [],
|
|
9333
9198
|
reasoning: false,
|
|
@@ -9338,6 +9203,26 @@ const MODELS_BY_PROVIDER = {
|
|
|
9338
9203
|
input: ["text"],
|
|
9339
9204
|
output: ["text"]
|
|
9340
9205
|
},
|
|
9206
|
+
pricing: {
|
|
9207
|
+
inputPerM: 0.15,
|
|
9208
|
+
outputPerM: 0.15,
|
|
9209
|
+
currency: "USD",
|
|
9210
|
+
unit: "per_million_tokens"
|
|
9211
|
+
}
|
|
9212
|
+
},
|
|
9213
|
+
{
|
|
9214
|
+
name: "mistral.mistral-large-3-675b-instruct",
|
|
9215
|
+
displayName: "Mistral Large 3",
|
|
9216
|
+
maxInputTokens: 256e3,
|
|
9217
|
+
supportedFileTypes: ["image"],
|
|
9218
|
+
reasoning: false,
|
|
9219
|
+
supportsTemperature: true,
|
|
9220
|
+
supportsToolCall: true,
|
|
9221
|
+
releaseDate: "2025-12-02",
|
|
9222
|
+
modalities: {
|
|
9223
|
+
input: ["text", "image"],
|
|
9224
|
+
output: ["text"]
|
|
9225
|
+
},
|
|
9341
9226
|
pricing: {
|
|
9342
9227
|
inputPerM: 0.5,
|
|
9343
9228
|
outputPerM: 1.5,
|
|
@@ -9346,21 +9231,21 @@ const MODELS_BY_PROVIDER = {
|
|
|
9346
9231
|
}
|
|
9347
9232
|
},
|
|
9348
9233
|
{
|
|
9349
|
-
name: "mistral.
|
|
9350
|
-
displayName: "
|
|
9351
|
-
maxInputTokens:
|
|
9352
|
-
supportedFileTypes: [],
|
|
9234
|
+
name: "mistral.pixtral-large-2502-v1:0",
|
|
9235
|
+
displayName: "Pixtral Large (25.02)",
|
|
9236
|
+
maxInputTokens: 128e3,
|
|
9237
|
+
supportedFileTypes: ["image"],
|
|
9353
9238
|
reasoning: false,
|
|
9354
9239
|
supportsTemperature: true,
|
|
9355
|
-
supportsToolCall:
|
|
9356
|
-
releaseDate: "2025-04-
|
|
9240
|
+
supportsToolCall: true,
|
|
9241
|
+
releaseDate: "2025-04-08",
|
|
9357
9242
|
modalities: {
|
|
9358
|
-
input: ["text"],
|
|
9243
|
+
input: ["text", "image"],
|
|
9359
9244
|
output: ["text"]
|
|
9360
9245
|
},
|
|
9361
9246
|
pricing: {
|
|
9362
|
-
inputPerM:
|
|
9363
|
-
outputPerM:
|
|
9247
|
+
inputPerM: 2,
|
|
9248
|
+
outputPerM: 6,
|
|
9364
9249
|
currency: "USD",
|
|
9365
9250
|
unit: "per_million_tokens"
|
|
9366
9251
|
}
|
|
@@ -9469,6 +9354,26 @@ const MODELS_BY_PROVIDER = {
|
|
|
9469
9354
|
unit: "per_million_tokens"
|
|
9470
9355
|
}
|
|
9471
9356
|
},
|
|
9357
|
+
{
|
|
9358
|
+
name: "nvidia.nemotron-nano-3-30b",
|
|
9359
|
+
displayName: "NVIDIA Nemotron Nano 3 30B",
|
|
9360
|
+
maxInputTokens: 128e3,
|
|
9361
|
+
supportedFileTypes: [],
|
|
9362
|
+
reasoning: true,
|
|
9363
|
+
supportsTemperature: true,
|
|
9364
|
+
supportsToolCall: true,
|
|
9365
|
+
releaseDate: "2025-12-23",
|
|
9366
|
+
modalities: {
|
|
9367
|
+
input: ["text"],
|
|
9368
|
+
output: ["text"]
|
|
9369
|
+
},
|
|
9370
|
+
pricing: {
|
|
9371
|
+
inputPerM: 0.06,
|
|
9372
|
+
outputPerM: 0.24,
|
|
9373
|
+
currency: "USD",
|
|
9374
|
+
unit: "per_million_tokens"
|
|
9375
|
+
}
|
|
9376
|
+
},
|
|
9472
9377
|
{
|
|
9473
9378
|
name: "nvidia.nemotron-nano-9b-v2",
|
|
9474
9379
|
displayName: "NVIDIA Nemotron Nano 9B v2",
|
|
@@ -9489,6 +9394,26 @@ const MODELS_BY_PROVIDER = {
|
|
|
9489
9394
|
unit: "per_million_tokens"
|
|
9490
9395
|
}
|
|
9491
9396
|
},
|
|
9397
|
+
{
|
|
9398
|
+
name: "nvidia.nemotron-super-3-120b",
|
|
9399
|
+
displayName: "NVIDIA Nemotron 3 Super 120B A12B",
|
|
9400
|
+
maxInputTokens: 262144,
|
|
9401
|
+
supportedFileTypes: [],
|
|
9402
|
+
reasoning: true,
|
|
9403
|
+
supportsTemperature: true,
|
|
9404
|
+
supportsToolCall: true,
|
|
9405
|
+
releaseDate: "2026-03-11",
|
|
9406
|
+
modalities: {
|
|
9407
|
+
input: ["text"],
|
|
9408
|
+
output: ["text"]
|
|
9409
|
+
},
|
|
9410
|
+
pricing: {
|
|
9411
|
+
inputPerM: 0.15,
|
|
9412
|
+
outputPerM: 0.65,
|
|
9413
|
+
currency: "USD",
|
|
9414
|
+
unit: "per_million_tokens"
|
|
9415
|
+
}
|
|
9416
|
+
},
|
|
9492
9417
|
{
|
|
9493
9418
|
name: "openai.gpt-oss-120b-1:0",
|
|
9494
9419
|
displayName: "gpt-oss-120b",
|
|
@@ -9795,10 +9720,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
9795
9720
|
outputPerM: 25,
|
|
9796
9721
|
cacheReadPerM: 0.5,
|
|
9797
9722
|
cacheWritePerM: 6.25,
|
|
9798
|
-
contextOver200kPerM: {
|
|
9799
|
-
inputPerM: 10,
|
|
9800
|
-
outputPerM: 37.5
|
|
9801
|
-
},
|
|
9802
9723
|
currency: "USD",
|
|
9803
9724
|
unit: "per_million_tokens"
|
|
9804
9725
|
}
|
|
@@ -9850,7 +9771,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
9850
9771
|
{
|
|
9851
9772
|
name: "us.anthropic.claude-sonnet-4-6",
|
|
9852
9773
|
displayName: "Claude Sonnet 4.6 (US)",
|
|
9853
|
-
maxInputTokens:
|
|
9774
|
+
maxInputTokens: 1e6,
|
|
9854
9775
|
supportedFileTypes: ["pdf", "image"],
|
|
9855
9776
|
reasoning: true,
|
|
9856
9777
|
supportsTemperature: true,
|
|
@@ -9865,10 +9786,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
9865
9786
|
outputPerM: 15,
|
|
9866
9787
|
cacheReadPerM: 0.3,
|
|
9867
9788
|
cacheWritePerM: 3.75,
|
|
9868
|
-
contextOver200kPerM: {
|
|
9869
|
-
inputPerM: 6,
|
|
9870
|
-
outputPerM: 22.5
|
|
9871
|
-
},
|
|
9872
9789
|
currency: "USD",
|
|
9873
9790
|
unit: "per_million_tokens"
|
|
9874
9791
|
}
|
|
@@ -9956,6 +9873,30 @@ const MODELS_BY_PROVIDER = {
|
|
|
9956
9873
|
currency: "USD",
|
|
9957
9874
|
unit: "per_million_tokens"
|
|
9958
9875
|
}
|
|
9876
|
+
},
|
|
9877
|
+
{
|
|
9878
|
+
name: "zai.glm-5",
|
|
9879
|
+
displayName: "GLM-5",
|
|
9880
|
+
maxInputTokens: 202752,
|
|
9881
|
+
supportedFileTypes: [],
|
|
9882
|
+
reasoning: true,
|
|
9883
|
+
supportsTemperature: true,
|
|
9884
|
+
supportsToolCall: true,
|
|
9885
|
+
releaseDate: "2026-03-18",
|
|
9886
|
+
modalities: {
|
|
9887
|
+
input: ["text"],
|
|
9888
|
+
output: ["text"]
|
|
9889
|
+
},
|
|
9890
|
+
interleaved: {
|
|
9891
|
+
field: "reasoning_content"
|
|
9892
|
+
},
|
|
9893
|
+
supportsInterleaved: true,
|
|
9894
|
+
pricing: {
|
|
9895
|
+
inputPerM: 1,
|
|
9896
|
+
outputPerM: 3.2,
|
|
9897
|
+
currency: "USD",
|
|
9898
|
+
unit: "per_million_tokens"
|
|
9899
|
+
}
|
|
9959
9900
|
}
|
|
9960
9901
|
],
|
|
9961
9902
|
local: [],
|
|
@@ -10017,7 +9958,12 @@ const MODELS_DEV_PROVIDER_METADATA_BY_PROVIDER = {
|
|
|
10017
9958
|
doc: "https://cloud.google.com/vertex-ai/generative-ai/docs/models"
|
|
10018
9959
|
},
|
|
10019
9960
|
bedrock: {
|
|
10020
|
-
env: [
|
|
9961
|
+
env: [
|
|
9962
|
+
"AWS_ACCESS_KEY_ID",
|
|
9963
|
+
"AWS_SECRET_ACCESS_KEY",
|
|
9964
|
+
"AWS_REGION",
|
|
9965
|
+
"AWS_BEARER_TOKEN_BEDROCK"
|
|
9966
|
+
],
|
|
10021
9967
|
npm: "@ai-sdk/amazon-bedrock",
|
|
10022
9968
|
doc: "https://docs.aws.amazon.com/bedrock/latest/userguide/models-supported.html"
|
|
10023
9969
|
}
|