@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
|
@@ -46,7 +46,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
46
46
|
name: "gpt-4-turbo",
|
|
47
47
|
displayName: "GPT-4 Turbo",
|
|
48
48
|
maxInputTokens: 128e3,
|
|
49
|
-
supportedFileTypes: ["pdf", "image"],
|
|
49
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
50
50
|
reasoning: false,
|
|
51
51
|
supportsTemperature: true,
|
|
52
52
|
supportsToolCall: true,
|
|
@@ -66,7 +66,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
66
66
|
name: "gpt-4.1",
|
|
67
67
|
displayName: "GPT-4.1",
|
|
68
68
|
maxInputTokens: 1047576,
|
|
69
|
-
supportedFileTypes: ["pdf", "image"],
|
|
69
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
70
70
|
reasoning: false,
|
|
71
71
|
supportsTemperature: true,
|
|
72
72
|
supportsToolCall: true,
|
|
@@ -87,7 +87,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
87
87
|
name: "gpt-4.1-mini",
|
|
88
88
|
displayName: "GPT-4.1 mini",
|
|
89
89
|
maxInputTokens: 1047576,
|
|
90
|
-
supportedFileTypes: ["pdf", "image"],
|
|
90
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
91
91
|
reasoning: false,
|
|
92
92
|
supportsTemperature: true,
|
|
93
93
|
supportsToolCall: true,
|
|
@@ -108,7 +108,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
108
108
|
name: "gpt-4.1-nano",
|
|
109
109
|
displayName: "GPT-4.1 nano",
|
|
110
110
|
maxInputTokens: 1047576,
|
|
111
|
-
supportedFileTypes: ["pdf", "image"],
|
|
111
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
112
112
|
reasoning: false,
|
|
113
113
|
supportsTemperature: true,
|
|
114
114
|
supportsToolCall: true,
|
|
@@ -129,7 +129,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
129
129
|
name: "gpt-4o",
|
|
130
130
|
displayName: "GPT-4o",
|
|
131
131
|
maxInputTokens: 128e3,
|
|
132
|
-
supportedFileTypes: ["pdf", "image"],
|
|
132
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
133
133
|
reasoning: false,
|
|
134
134
|
supportsTemperature: true,
|
|
135
135
|
supportsToolCall: true,
|
|
@@ -150,7 +150,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
150
150
|
name: "gpt-4o-2024-05-13",
|
|
151
151
|
displayName: "GPT-4o (2024-05-13)",
|
|
152
152
|
maxInputTokens: 128e3,
|
|
153
|
-
supportedFileTypes: ["pdf", "image"],
|
|
153
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
154
154
|
reasoning: false,
|
|
155
155
|
supportsTemperature: true,
|
|
156
156
|
supportsToolCall: true,
|
|
@@ -170,7 +170,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
170
170
|
name: "gpt-4o-2024-08-06",
|
|
171
171
|
displayName: "GPT-4o (2024-08-06)",
|
|
172
172
|
maxInputTokens: 128e3,
|
|
173
|
-
supportedFileTypes: ["pdf", "image"],
|
|
173
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
174
174
|
reasoning: false,
|
|
175
175
|
supportsTemperature: true,
|
|
176
176
|
supportsToolCall: true,
|
|
@@ -191,7 +191,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
191
191
|
name: "gpt-4o-2024-11-20",
|
|
192
192
|
displayName: "GPT-4o (2024-11-20)",
|
|
193
193
|
maxInputTokens: 128e3,
|
|
194
|
-
supportedFileTypes: ["pdf", "image"],
|
|
194
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
195
195
|
reasoning: false,
|
|
196
196
|
supportsTemperature: true,
|
|
197
197
|
supportsToolCall: true,
|
|
@@ -212,7 +212,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
212
212
|
name: "gpt-4o-mini",
|
|
213
213
|
displayName: "GPT-4o mini",
|
|
214
214
|
maxInputTokens: 128e3,
|
|
215
|
-
supportedFileTypes: ["pdf", "image"],
|
|
215
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
216
216
|
reasoning: false,
|
|
217
217
|
supportsTemperature: true,
|
|
218
218
|
supportsToolCall: true,
|
|
@@ -233,7 +233,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
233
233
|
name: "gpt-5",
|
|
234
234
|
displayName: "GPT-5",
|
|
235
235
|
maxInputTokens: 272e3,
|
|
236
|
-
supportedFileTypes: ["pdf", "image"],
|
|
236
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
237
237
|
reasoning: true,
|
|
238
238
|
supportsTemperature: false,
|
|
239
239
|
supportsToolCall: true,
|
|
@@ -254,7 +254,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
254
254
|
name: "gpt-5-chat-latest",
|
|
255
255
|
displayName: "GPT-5 Chat (latest)",
|
|
256
256
|
maxInputTokens: 272e3,
|
|
257
|
-
supportedFileTypes: ["pdf", "image"],
|
|
257
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
258
258
|
reasoning: true,
|
|
259
259
|
supportsTemperature: true,
|
|
260
260
|
supportsToolCall: false,
|
|
@@ -274,7 +274,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
274
274
|
name: "gpt-5-codex",
|
|
275
275
|
displayName: "GPT-5-Codex",
|
|
276
276
|
maxInputTokens: 272e3,
|
|
277
|
-
supportedFileTypes: ["image"],
|
|
277
|
+
supportedFileTypes: ["image", "document"],
|
|
278
278
|
reasoning: true,
|
|
279
279
|
supportsTemperature: false,
|
|
280
280
|
supportsToolCall: true,
|
|
@@ -295,7 +295,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
295
295
|
name: "gpt-5-mini",
|
|
296
296
|
displayName: "GPT-5 Mini",
|
|
297
297
|
maxInputTokens: 272e3,
|
|
298
|
-
supportedFileTypes: ["pdf", "image"],
|
|
298
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
299
299
|
reasoning: true,
|
|
300
300
|
supportsTemperature: false,
|
|
301
301
|
supportsToolCall: true,
|
|
@@ -317,7 +317,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
317
317
|
name: "gpt-5-nano",
|
|
318
318
|
displayName: "GPT-5 Nano",
|
|
319
319
|
maxInputTokens: 272e3,
|
|
320
|
-
supportedFileTypes: ["pdf", "image"],
|
|
320
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
321
321
|
reasoning: true,
|
|
322
322
|
supportsTemperature: false,
|
|
323
323
|
supportsToolCall: true,
|
|
@@ -338,7 +338,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
338
338
|
name: "gpt-5-pro",
|
|
339
339
|
displayName: "GPT-5 Pro",
|
|
340
340
|
maxInputTokens: 272e3,
|
|
341
|
-
supportedFileTypes: ["pdf", "image"],
|
|
341
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
342
342
|
reasoning: true,
|
|
343
343
|
supportsTemperature: false,
|
|
344
344
|
supportsToolCall: true,
|
|
@@ -358,7 +358,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
358
358
|
name: "gpt-5.1",
|
|
359
359
|
displayName: "GPT-5.1",
|
|
360
360
|
maxInputTokens: 272e3,
|
|
361
|
-
supportedFileTypes: ["pdf", "image"],
|
|
361
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
362
362
|
reasoning: true,
|
|
363
363
|
supportsTemperature: false,
|
|
364
364
|
supportsToolCall: true,
|
|
@@ -379,7 +379,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
379
379
|
name: "gpt-5.1-chat-latest",
|
|
380
380
|
displayName: "GPT-5.1 Chat",
|
|
381
381
|
maxInputTokens: 128e3,
|
|
382
|
-
supportedFileTypes: ["pdf", "image"],
|
|
382
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
383
383
|
reasoning: true,
|
|
384
384
|
supportsTemperature: false,
|
|
385
385
|
supportsToolCall: true,
|
|
@@ -400,7 +400,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
400
400
|
name: "gpt-5.1-codex",
|
|
401
401
|
displayName: "GPT-5.1 Codex",
|
|
402
402
|
maxInputTokens: 272e3,
|
|
403
|
-
supportedFileTypes: ["pdf", "image"],
|
|
403
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
404
404
|
reasoning: true,
|
|
405
405
|
supportsTemperature: false,
|
|
406
406
|
supportsToolCall: true,
|
|
@@ -421,7 +421,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
421
421
|
name: "gpt-5.1-codex-max",
|
|
422
422
|
displayName: "GPT-5.1 Codex Max",
|
|
423
423
|
maxInputTokens: 272e3,
|
|
424
|
-
supportedFileTypes: ["pdf", "image"],
|
|
424
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
425
425
|
reasoning: true,
|
|
426
426
|
supportsTemperature: false,
|
|
427
427
|
supportsToolCall: true,
|
|
@@ -442,7 +442,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
442
442
|
name: "gpt-5.1-codex-mini",
|
|
443
443
|
displayName: "GPT-5.1 Codex mini",
|
|
444
444
|
maxInputTokens: 272e3,
|
|
445
|
-
supportedFileTypes: ["pdf", "image"],
|
|
445
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
446
446
|
reasoning: true,
|
|
447
447
|
supportsTemperature: false,
|
|
448
448
|
supportsToolCall: true,
|
|
@@ -463,7 +463,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
463
463
|
name: "gpt-5.2",
|
|
464
464
|
displayName: "GPT-5.2",
|
|
465
465
|
maxInputTokens: 272e3,
|
|
466
|
-
supportedFileTypes: ["pdf", "image"],
|
|
466
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
467
467
|
reasoning: true,
|
|
468
468
|
supportsTemperature: false,
|
|
469
469
|
supportsToolCall: true,
|
|
@@ -484,7 +484,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
484
484
|
name: "gpt-5.2-chat-latest",
|
|
485
485
|
displayName: "GPT-5.2 Chat",
|
|
486
486
|
maxInputTokens: 128e3,
|
|
487
|
-
supportedFileTypes: ["pdf", "image"],
|
|
487
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
488
488
|
reasoning: true,
|
|
489
489
|
supportsTemperature: false,
|
|
490
490
|
supportsToolCall: true,
|
|
@@ -505,7 +505,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
505
505
|
name: "gpt-5.2-codex",
|
|
506
506
|
displayName: "GPT-5.2 Codex",
|
|
507
507
|
maxInputTokens: 272e3,
|
|
508
|
-
supportedFileTypes: ["pdf", "image"],
|
|
508
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
509
509
|
reasoning: true,
|
|
510
510
|
supportsTemperature: false,
|
|
511
511
|
supportsToolCall: true,
|
|
@@ -526,7 +526,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
526
526
|
name: "gpt-5.2-pro",
|
|
527
527
|
displayName: "GPT-5.2 Pro",
|
|
528
528
|
maxInputTokens: 272e3,
|
|
529
|
-
supportedFileTypes: ["pdf", "image"],
|
|
529
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
530
530
|
reasoning: true,
|
|
531
531
|
supportsTemperature: false,
|
|
532
532
|
supportsToolCall: true,
|
|
@@ -542,11 +542,32 @@ const MODELS_BY_PROVIDER = {
|
|
|
542
542
|
unit: "per_million_tokens"
|
|
543
543
|
}
|
|
544
544
|
},
|
|
545
|
+
{
|
|
546
|
+
name: "gpt-5.3-chat-latest",
|
|
547
|
+
displayName: "GPT-5.3 Chat (latest)",
|
|
548
|
+
maxInputTokens: 128e3,
|
|
549
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
550
|
+
reasoning: false,
|
|
551
|
+
supportsTemperature: true,
|
|
552
|
+
supportsToolCall: true,
|
|
553
|
+
releaseDate: "2026-03-03",
|
|
554
|
+
modalities: {
|
|
555
|
+
input: ["text", "image"],
|
|
556
|
+
output: ["text"]
|
|
557
|
+
},
|
|
558
|
+
pricing: {
|
|
559
|
+
inputPerM: 1.75,
|
|
560
|
+
outputPerM: 14,
|
|
561
|
+
cacheReadPerM: 0.175,
|
|
562
|
+
currency: "USD",
|
|
563
|
+
unit: "per_million_tokens"
|
|
564
|
+
}
|
|
565
|
+
},
|
|
545
566
|
{
|
|
546
567
|
name: "gpt-5.3-codex",
|
|
547
568
|
displayName: "GPT-5.3 Codex",
|
|
548
569
|
maxInputTokens: 272e3,
|
|
549
|
-
supportedFileTypes: ["pdf", "image"],
|
|
570
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
550
571
|
reasoning: true,
|
|
551
572
|
supportsTemperature: false,
|
|
552
573
|
supportsToolCall: true,
|
|
@@ -567,7 +588,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
567
588
|
name: "gpt-5.3-codex-spark",
|
|
568
589
|
displayName: "GPT-5.3 Codex Spark",
|
|
569
590
|
maxInputTokens: 1e5,
|
|
570
|
-
supportedFileTypes: ["pdf", "image"],
|
|
591
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
571
592
|
reasoning: true,
|
|
572
593
|
supportsTemperature: false,
|
|
573
594
|
supportsToolCall: true,
|
|
@@ -584,11 +605,102 @@ const MODELS_BY_PROVIDER = {
|
|
|
584
605
|
unit: "per_million_tokens"
|
|
585
606
|
}
|
|
586
607
|
},
|
|
608
|
+
{
|
|
609
|
+
name: "gpt-5.4",
|
|
610
|
+
displayName: "GPT-5.4",
|
|
611
|
+
maxInputTokens: 922e3,
|
|
612
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
613
|
+
reasoning: true,
|
|
614
|
+
supportsTemperature: false,
|
|
615
|
+
supportsToolCall: true,
|
|
616
|
+
releaseDate: "2026-03-05",
|
|
617
|
+
modalities: {
|
|
618
|
+
input: ["text", "image", "pdf"],
|
|
619
|
+
output: ["text"]
|
|
620
|
+
},
|
|
621
|
+
pricing: {
|
|
622
|
+
inputPerM: 2.5,
|
|
623
|
+
outputPerM: 15,
|
|
624
|
+
cacheReadPerM: 0.25,
|
|
625
|
+
contextOver200kPerM: {
|
|
626
|
+
inputPerM: 5,
|
|
627
|
+
outputPerM: 22.5
|
|
628
|
+
},
|
|
629
|
+
currency: "USD",
|
|
630
|
+
unit: "per_million_tokens"
|
|
631
|
+
}
|
|
632
|
+
},
|
|
633
|
+
{
|
|
634
|
+
name: "gpt-5.4-mini",
|
|
635
|
+
displayName: "GPT-5.4 mini",
|
|
636
|
+
maxInputTokens: 272e3,
|
|
637
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
638
|
+
reasoning: true,
|
|
639
|
+
supportsTemperature: false,
|
|
640
|
+
supportsToolCall: true,
|
|
641
|
+
releaseDate: "2026-03-17",
|
|
642
|
+
modalities: {
|
|
643
|
+
input: ["text", "image"],
|
|
644
|
+
output: ["text"]
|
|
645
|
+
},
|
|
646
|
+
pricing: {
|
|
647
|
+
inputPerM: 0.75,
|
|
648
|
+
outputPerM: 4.5,
|
|
649
|
+
cacheReadPerM: 0.075,
|
|
650
|
+
currency: "USD",
|
|
651
|
+
unit: "per_million_tokens"
|
|
652
|
+
}
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
name: "gpt-5.4-nano",
|
|
656
|
+
displayName: "GPT-5.4 nano",
|
|
657
|
+
maxInputTokens: 272e3,
|
|
658
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
659
|
+
reasoning: true,
|
|
660
|
+
supportsTemperature: false,
|
|
661
|
+
supportsToolCall: true,
|
|
662
|
+
releaseDate: "2026-03-17",
|
|
663
|
+
modalities: {
|
|
664
|
+
input: ["text", "image"],
|
|
665
|
+
output: ["text"]
|
|
666
|
+
},
|
|
667
|
+
pricing: {
|
|
668
|
+
inputPerM: 0.2,
|
|
669
|
+
outputPerM: 1.25,
|
|
670
|
+
cacheReadPerM: 0.02,
|
|
671
|
+
currency: "USD",
|
|
672
|
+
unit: "per_million_tokens"
|
|
673
|
+
}
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
name: "gpt-5.4-pro",
|
|
677
|
+
displayName: "GPT-5.4 Pro",
|
|
678
|
+
maxInputTokens: 922e3,
|
|
679
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
680
|
+
reasoning: true,
|
|
681
|
+
supportsTemperature: false,
|
|
682
|
+
supportsToolCall: true,
|
|
683
|
+
releaseDate: "2026-03-05",
|
|
684
|
+
modalities: {
|
|
685
|
+
input: ["text", "image"],
|
|
686
|
+
output: ["text"]
|
|
687
|
+
},
|
|
688
|
+
pricing: {
|
|
689
|
+
inputPerM: 30,
|
|
690
|
+
outputPerM: 180,
|
|
691
|
+
contextOver200kPerM: {
|
|
692
|
+
inputPerM: 60,
|
|
693
|
+
outputPerM: 270
|
|
694
|
+
},
|
|
695
|
+
currency: "USD",
|
|
696
|
+
unit: "per_million_tokens"
|
|
697
|
+
}
|
|
698
|
+
},
|
|
587
699
|
{
|
|
588
700
|
name: "o1",
|
|
589
701
|
displayName: "o1",
|
|
590
702
|
maxInputTokens: 2e5,
|
|
591
|
-
supportedFileTypes: ["pdf", "image"],
|
|
703
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
592
704
|
reasoning: true,
|
|
593
705
|
supportsTemperature: false,
|
|
594
706
|
supportsToolCall: true,
|
|
@@ -651,7 +763,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
651
763
|
name: "o1-pro",
|
|
652
764
|
displayName: "o1-pro",
|
|
653
765
|
maxInputTokens: 2e5,
|
|
654
|
-
supportedFileTypes: ["pdf", "image"],
|
|
766
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
655
767
|
reasoning: true,
|
|
656
768
|
supportsTemperature: false,
|
|
657
769
|
supportsToolCall: true,
|
|
@@ -671,7 +783,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
671
783
|
name: "o3",
|
|
672
784
|
displayName: "o3",
|
|
673
785
|
maxInputTokens: 2e5,
|
|
674
|
-
supportedFileTypes: ["pdf", "image"],
|
|
786
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
675
787
|
reasoning: true,
|
|
676
788
|
supportsTemperature: false,
|
|
677
789
|
supportsToolCall: true,
|
|
@@ -692,7 +804,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
692
804
|
name: "o3-deep-research",
|
|
693
805
|
displayName: "o3-deep-research",
|
|
694
806
|
maxInputTokens: 2e5,
|
|
695
|
-
supportedFileTypes: ["pdf", "image"],
|
|
807
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
696
808
|
reasoning: true,
|
|
697
809
|
supportsTemperature: false,
|
|
698
810
|
supportsToolCall: true,
|
|
@@ -734,7 +846,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
734
846
|
name: "o3-pro",
|
|
735
847
|
displayName: "o3-pro",
|
|
736
848
|
maxInputTokens: 2e5,
|
|
737
|
-
supportedFileTypes: ["pdf", "image"],
|
|
849
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
738
850
|
reasoning: true,
|
|
739
851
|
supportsTemperature: false,
|
|
740
852
|
supportsToolCall: true,
|
|
@@ -754,7 +866,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
754
866
|
name: "o4-mini",
|
|
755
867
|
displayName: "o4-mini",
|
|
756
868
|
maxInputTokens: 2e5,
|
|
757
|
-
supportedFileTypes: ["pdf", "image"],
|
|
869
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
758
870
|
reasoning: true,
|
|
759
871
|
supportsTemperature: false,
|
|
760
872
|
supportsToolCall: true,
|
|
@@ -775,7 +887,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
775
887
|
name: "o4-mini-deep-research",
|
|
776
888
|
displayName: "o4-mini-deep-research",
|
|
777
889
|
maxInputTokens: 2e5,
|
|
778
|
-
supportedFileTypes: ["pdf", "image"],
|
|
890
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
779
891
|
reasoning: true,
|
|
780
892
|
supportsTemperature: false,
|
|
781
893
|
supportsToolCall: true,
|
|
@@ -1173,7 +1285,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1173
1285
|
{
|
|
1174
1286
|
name: "claude-opus-4-6",
|
|
1175
1287
|
displayName: "Claude Opus 4.6",
|
|
1176
|
-
maxInputTokens:
|
|
1288
|
+
maxInputTokens: 1e6,
|
|
1177
1289
|
supportedFileTypes: ["pdf", "image"],
|
|
1178
1290
|
reasoning: true,
|
|
1179
1291
|
supportsTemperature: true,
|
|
@@ -1188,10 +1300,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
1188
1300
|
outputPerM: 25,
|
|
1189
1301
|
cacheReadPerM: 0.5,
|
|
1190
1302
|
cacheWritePerM: 6.25,
|
|
1191
|
-
contextOver200kPerM: {
|
|
1192
|
-
inputPerM: 10,
|
|
1193
|
-
outputPerM: 37.5
|
|
1194
|
-
},
|
|
1195
1303
|
currency: "USD",
|
|
1196
1304
|
unit: "per_million_tokens"
|
|
1197
1305
|
}
|
|
@@ -1287,7 +1395,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1287
1395
|
{
|
|
1288
1396
|
name: "claude-sonnet-4-6",
|
|
1289
1397
|
displayName: "Claude Sonnet 4.6",
|
|
1290
|
-
maxInputTokens:
|
|
1398
|
+
maxInputTokens: 1e6,
|
|
1291
1399
|
supportedFileTypes: ["pdf", "image"],
|
|
1292
1400
|
reasoning: true,
|
|
1293
1401
|
supportsTemperature: true,
|
|
@@ -1302,10 +1410,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
1302
1410
|
outputPerM: 15,
|
|
1303
1411
|
cacheReadPerM: 0.3,
|
|
1304
1412
|
cacheWritePerM: 3.75,
|
|
1305
|
-
contextOver200kPerM: {
|
|
1306
|
-
inputPerM: 6,
|
|
1307
|
-
outputPerM: 22.5
|
|
1308
|
-
},
|
|
1309
1413
|
currency: "USD",
|
|
1310
1414
|
unit: "per_million_tokens"
|
|
1311
1415
|
}
|
|
@@ -1316,7 +1420,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1316
1420
|
name: "gemini-1.5-flash",
|
|
1317
1421
|
displayName: "Gemini 1.5 Flash",
|
|
1318
1422
|
maxInputTokens: 1e6,
|
|
1319
|
-
supportedFileTypes: ["image", "audio"],
|
|
1423
|
+
supportedFileTypes: ["image", "audio", "video", "document"],
|
|
1320
1424
|
reasoning: false,
|
|
1321
1425
|
supportsTemperature: true,
|
|
1322
1426
|
supportsToolCall: true,
|
|
@@ -1337,7 +1441,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1337
1441
|
name: "gemini-1.5-flash-8b",
|
|
1338
1442
|
displayName: "Gemini 1.5 Flash-8B",
|
|
1339
1443
|
maxInputTokens: 1e6,
|
|
1340
|
-
supportedFileTypes: ["image", "audio"],
|
|
1444
|
+
supportedFileTypes: ["image", "audio", "video", "document"],
|
|
1341
1445
|
reasoning: false,
|
|
1342
1446
|
supportsTemperature: true,
|
|
1343
1447
|
supportsToolCall: true,
|
|
@@ -1358,7 +1462,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1358
1462
|
name: "gemini-1.5-pro",
|
|
1359
1463
|
displayName: "Gemini 1.5 Pro",
|
|
1360
1464
|
maxInputTokens: 1e6,
|
|
1361
|
-
supportedFileTypes: ["image", "audio"],
|
|
1465
|
+
supportedFileTypes: ["image", "audio", "video", "document"],
|
|
1362
1466
|
reasoning: false,
|
|
1363
1467
|
supportsTemperature: true,
|
|
1364
1468
|
supportsToolCall: true,
|
|
@@ -1379,7 +1483,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1379
1483
|
name: "gemini-2.0-flash",
|
|
1380
1484
|
displayName: "Gemini 2.0 Flash",
|
|
1381
1485
|
maxInputTokens: 1048576,
|
|
1382
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1486
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1383
1487
|
reasoning: false,
|
|
1384
1488
|
supportsTemperature: true,
|
|
1385
1489
|
supportsToolCall: true,
|
|
@@ -1400,7 +1504,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1400
1504
|
name: "gemini-2.0-flash-lite",
|
|
1401
1505
|
displayName: "Gemini 2.0 Flash Lite",
|
|
1402
1506
|
maxInputTokens: 1048576,
|
|
1403
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1507
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1404
1508
|
reasoning: false,
|
|
1405
1509
|
supportsTemperature: true,
|
|
1406
1510
|
supportsToolCall: true,
|
|
@@ -1420,7 +1524,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1420
1524
|
name: "gemini-2.5-flash",
|
|
1421
1525
|
displayName: "Gemini 2.5 Flash",
|
|
1422
1526
|
maxInputTokens: 1048576,
|
|
1423
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1527
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1424
1528
|
reasoning: true,
|
|
1425
1529
|
supportsTemperature: true,
|
|
1426
1530
|
supportsToolCall: true,
|
|
@@ -1442,7 +1546,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1442
1546
|
name: "gemini-2.5-flash-image",
|
|
1443
1547
|
displayName: "Gemini 2.5 Flash Image",
|
|
1444
1548
|
maxInputTokens: 32768,
|
|
1445
|
-
supportedFileTypes: ["image"],
|
|
1549
|
+
supportedFileTypes: ["image", "document"],
|
|
1446
1550
|
reasoning: true,
|
|
1447
1551
|
supportsTemperature: true,
|
|
1448
1552
|
supportsToolCall: false,
|
|
@@ -1463,7 +1567,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1463
1567
|
name: "gemini-2.5-flash-image-preview",
|
|
1464
1568
|
displayName: "Gemini 2.5 Flash Image (Preview)",
|
|
1465
1569
|
maxInputTokens: 32768,
|
|
1466
|
-
supportedFileTypes: ["image"],
|
|
1570
|
+
supportedFileTypes: ["image", "document"],
|
|
1467
1571
|
reasoning: true,
|
|
1468
1572
|
supportsTemperature: true,
|
|
1469
1573
|
supportsToolCall: false,
|
|
@@ -1484,7 +1588,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1484
1588
|
name: "gemini-2.5-flash-lite",
|
|
1485
1589
|
displayName: "Gemini 2.5 Flash Lite",
|
|
1486
1590
|
maxInputTokens: 1048576,
|
|
1487
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1591
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1488
1592
|
reasoning: true,
|
|
1489
1593
|
supportsTemperature: true,
|
|
1490
1594
|
supportsToolCall: true,
|
|
@@ -1505,7 +1609,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1505
1609
|
name: "gemini-2.5-flash-lite-preview-06-17",
|
|
1506
1610
|
displayName: "Gemini 2.5 Flash Lite Preview 06-17",
|
|
1507
1611
|
maxInputTokens: 1048576,
|
|
1508
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1612
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1509
1613
|
reasoning: true,
|
|
1510
1614
|
supportsTemperature: true,
|
|
1511
1615
|
supportsToolCall: true,
|
|
@@ -1527,7 +1631,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1527
1631
|
name: "gemini-2.5-flash-lite-preview-09-2025",
|
|
1528
1632
|
displayName: "Gemini 2.5 Flash Lite Preview 09-25",
|
|
1529
1633
|
maxInputTokens: 1048576,
|
|
1530
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1634
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1531
1635
|
reasoning: true,
|
|
1532
1636
|
supportsTemperature: true,
|
|
1533
1637
|
supportsToolCall: true,
|
|
@@ -1548,7 +1652,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1548
1652
|
name: "gemini-2.5-flash-preview-04-17",
|
|
1549
1653
|
displayName: "Gemini 2.5 Flash Preview 04-17",
|
|
1550
1654
|
maxInputTokens: 1048576,
|
|
1551
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1655
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1552
1656
|
reasoning: true,
|
|
1553
1657
|
supportsTemperature: true,
|
|
1554
1658
|
supportsToolCall: true,
|
|
@@ -1569,7 +1673,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1569
1673
|
name: "gemini-2.5-flash-preview-05-20",
|
|
1570
1674
|
displayName: "Gemini 2.5 Flash Preview 05-20",
|
|
1571
1675
|
maxInputTokens: 1048576,
|
|
1572
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1676
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1573
1677
|
reasoning: true,
|
|
1574
1678
|
supportsTemperature: true,
|
|
1575
1679
|
supportsToolCall: true,
|
|
@@ -1590,7 +1694,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1590
1694
|
name: "gemini-2.5-flash-preview-09-2025",
|
|
1591
1695
|
displayName: "Gemini 2.5 Flash Preview 09-25",
|
|
1592
1696
|
maxInputTokens: 1048576,
|
|
1593
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1697
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1594
1698
|
reasoning: true,
|
|
1595
1699
|
supportsTemperature: true,
|
|
1596
1700
|
supportsToolCall: true,
|
|
@@ -1632,7 +1736,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1632
1736
|
name: "gemini-2.5-pro",
|
|
1633
1737
|
displayName: "Gemini 2.5 Pro",
|
|
1634
1738
|
maxInputTokens: 1048576,
|
|
1635
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1739
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1636
1740
|
reasoning: true,
|
|
1637
1741
|
supportsTemperature: true,
|
|
1638
1742
|
supportsToolCall: true,
|
|
@@ -1653,7 +1757,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1653
1757
|
name: "gemini-2.5-pro-preview-05-06",
|
|
1654
1758
|
displayName: "Gemini 2.5 Pro Preview 05-06",
|
|
1655
1759
|
maxInputTokens: 1048576,
|
|
1656
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1760
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1657
1761
|
reasoning: true,
|
|
1658
1762
|
supportsTemperature: true,
|
|
1659
1763
|
supportsToolCall: true,
|
|
@@ -1674,7 +1778,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1674
1778
|
name: "gemini-2.5-pro-preview-06-05",
|
|
1675
1779
|
displayName: "Gemini 2.5 Pro Preview 06-05",
|
|
1676
1780
|
maxInputTokens: 1048576,
|
|
1677
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1781
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1678
1782
|
reasoning: true,
|
|
1679
1783
|
supportsTemperature: true,
|
|
1680
1784
|
supportsToolCall: true,
|
|
@@ -1715,7 +1819,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1715
1819
|
name: "gemini-3-flash-preview",
|
|
1716
1820
|
displayName: "Gemini 3 Flash Preview",
|
|
1717
1821
|
maxInputTokens: 1048576,
|
|
1718
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1822
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1719
1823
|
reasoning: true,
|
|
1720
1824
|
supportsTemperature: true,
|
|
1721
1825
|
supportsToolCall: true,
|
|
@@ -1741,7 +1845,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1741
1845
|
name: "gemini-3-pro-preview",
|
|
1742
1846
|
displayName: "Gemini 3 Pro Preview",
|
|
1743
1847
|
maxInputTokens: 1e6,
|
|
1744
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1848
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1745
1849
|
reasoning: true,
|
|
1746
1850
|
supportsTemperature: true,
|
|
1747
1851
|
supportsToolCall: true,
|
|
@@ -1762,11 +1866,53 @@ const MODELS_BY_PROVIDER = {
|
|
|
1762
1866
|
unit: "per_million_tokens"
|
|
1763
1867
|
}
|
|
1764
1868
|
},
|
|
1869
|
+
{
|
|
1870
|
+
name: "gemini-3.1-flash-image-preview",
|
|
1871
|
+
displayName: "Gemini 3.1 Flash Image (Preview)",
|
|
1872
|
+
maxInputTokens: 131072,
|
|
1873
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
1874
|
+
reasoning: true,
|
|
1875
|
+
supportsTemperature: true,
|
|
1876
|
+
supportsToolCall: false,
|
|
1877
|
+
releaseDate: "2026-02-26",
|
|
1878
|
+
modalities: {
|
|
1879
|
+
input: ["text", "image", "pdf"],
|
|
1880
|
+
output: ["text", "image"]
|
|
1881
|
+
},
|
|
1882
|
+
pricing: {
|
|
1883
|
+
inputPerM: 0.25,
|
|
1884
|
+
outputPerM: 60,
|
|
1885
|
+
currency: "USD",
|
|
1886
|
+
unit: "per_million_tokens"
|
|
1887
|
+
}
|
|
1888
|
+
},
|
|
1889
|
+
{
|
|
1890
|
+
name: "gemini-3.1-flash-lite-preview",
|
|
1891
|
+
displayName: "Gemini 3.1 Flash Lite Preview",
|
|
1892
|
+
maxInputTokens: 1048576,
|
|
1893
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1894
|
+
reasoning: true,
|
|
1895
|
+
supportsTemperature: true,
|
|
1896
|
+
supportsToolCall: true,
|
|
1897
|
+
releaseDate: "2026-03-03",
|
|
1898
|
+
modalities: {
|
|
1899
|
+
input: ["text", "image", "video", "audio", "pdf"],
|
|
1900
|
+
output: ["text"]
|
|
1901
|
+
},
|
|
1902
|
+
pricing: {
|
|
1903
|
+
inputPerM: 0.25,
|
|
1904
|
+
outputPerM: 1.5,
|
|
1905
|
+
cacheReadPerM: 0.025,
|
|
1906
|
+
cacheWritePerM: 1,
|
|
1907
|
+
currency: "USD",
|
|
1908
|
+
unit: "per_million_tokens"
|
|
1909
|
+
}
|
|
1910
|
+
},
|
|
1765
1911
|
{
|
|
1766
1912
|
name: "gemini-3.1-pro-preview",
|
|
1767
1913
|
displayName: "Gemini 3.1 Pro Preview",
|
|
1768
1914
|
maxInputTokens: 1048576,
|
|
1769
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1915
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1770
1916
|
reasoning: true,
|
|
1771
1917
|
supportsTemperature: true,
|
|
1772
1918
|
supportsToolCall: true,
|
|
@@ -1791,7 +1937,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1791
1937
|
name: "gemini-3.1-pro-preview-customtools",
|
|
1792
1938
|
displayName: "Gemini 3.1 Pro Preview Custom Tools",
|
|
1793
1939
|
maxInputTokens: 1048576,
|
|
1794
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1940
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1795
1941
|
reasoning: true,
|
|
1796
1942
|
supportsTemperature: true,
|
|
1797
1943
|
supportsToolCall: true,
|
|
@@ -1836,7 +1982,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1836
1982
|
name: "gemini-flash-latest",
|
|
1837
1983
|
displayName: "Gemini Flash Latest",
|
|
1838
1984
|
maxInputTokens: 1048576,
|
|
1839
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
1985
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1840
1986
|
reasoning: true,
|
|
1841
1987
|
supportsTemperature: true,
|
|
1842
1988
|
supportsToolCall: true,
|
|
@@ -1858,7 +2004,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1858
2004
|
name: "gemini-flash-lite-latest",
|
|
1859
2005
|
displayName: "Gemini Flash-Lite Latest",
|
|
1860
2006
|
maxInputTokens: 1048576,
|
|
1861
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
2007
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
1862
2008
|
reasoning: true,
|
|
1863
2009
|
supportsTemperature: true,
|
|
1864
2010
|
supportsToolCall: true,
|
|
@@ -1879,7 +2025,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1879
2025
|
name: "gemini-live-2.5-flash",
|
|
1880
2026
|
displayName: "Gemini Live 2.5 Flash",
|
|
1881
2027
|
maxInputTokens: 128e3,
|
|
1882
|
-
supportedFileTypes: ["image", "audio"],
|
|
2028
|
+
supportedFileTypes: ["image", "audio", "video", "document"],
|
|
1883
2029
|
reasoning: true,
|
|
1884
2030
|
supportsTemperature: true,
|
|
1885
2031
|
supportsToolCall: true,
|
|
@@ -1901,7 +2047,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
1901
2047
|
name: "gemini-live-2.5-flash-preview-native-audio",
|
|
1902
2048
|
displayName: "Gemini Live 2.5 Flash Preview Native Audio",
|
|
1903
2049
|
maxInputTokens: 131072,
|
|
1904
|
-
supportedFileTypes: ["audio"],
|
|
2050
|
+
supportedFileTypes: ["audio", "video", "document"],
|
|
1905
2051
|
reasoning: true,
|
|
1906
2052
|
supportsTemperature: false,
|
|
1907
2053
|
supportsToolCall: true,
|
|
@@ -1921,6 +2067,66 @@ const MODELS_BY_PROVIDER = {
|
|
|
1921
2067
|
}
|
|
1922
2068
|
],
|
|
1923
2069
|
groq: [
|
|
2070
|
+
{
|
|
2071
|
+
name: "allam-2-7b",
|
|
2072
|
+
displayName: "ALLaM-2-7b",
|
|
2073
|
+
maxInputTokens: 4096,
|
|
2074
|
+
supportedFileTypes: [],
|
|
2075
|
+
reasoning: false,
|
|
2076
|
+
supportsTemperature: true,
|
|
2077
|
+
supportsToolCall: false,
|
|
2078
|
+
releaseDate: "2024-09",
|
|
2079
|
+
modalities: {
|
|
2080
|
+
input: ["text"],
|
|
2081
|
+
output: ["text"]
|
|
2082
|
+
},
|
|
2083
|
+
pricing: {
|
|
2084
|
+
inputPerM: 0,
|
|
2085
|
+
outputPerM: 0,
|
|
2086
|
+
currency: "USD",
|
|
2087
|
+
unit: "per_million_tokens"
|
|
2088
|
+
}
|
|
2089
|
+
},
|
|
2090
|
+
{
|
|
2091
|
+
name: "canopylabs/orpheus-arabic-saudi",
|
|
2092
|
+
displayName: "Orpheus Arabic Saudi",
|
|
2093
|
+
maxInputTokens: 4e3,
|
|
2094
|
+
supportedFileTypes: [],
|
|
2095
|
+
reasoning: false,
|
|
2096
|
+
supportsTemperature: true,
|
|
2097
|
+
supportsToolCall: false,
|
|
2098
|
+
releaseDate: "2025-12-16",
|
|
2099
|
+
modalities: {
|
|
2100
|
+
input: ["text"],
|
|
2101
|
+
output: ["audio"]
|
|
2102
|
+
},
|
|
2103
|
+
pricing: {
|
|
2104
|
+
inputPerM: 40,
|
|
2105
|
+
outputPerM: 0,
|
|
2106
|
+
currency: "USD",
|
|
2107
|
+
unit: "per_million_tokens"
|
|
2108
|
+
}
|
|
2109
|
+
},
|
|
2110
|
+
{
|
|
2111
|
+
name: "canopylabs/orpheus-v1-english",
|
|
2112
|
+
displayName: "Orpheus V1 English",
|
|
2113
|
+
maxInputTokens: 4e3,
|
|
2114
|
+
supportedFileTypes: [],
|
|
2115
|
+
reasoning: false,
|
|
2116
|
+
supportsTemperature: true,
|
|
2117
|
+
supportsToolCall: false,
|
|
2118
|
+
releaseDate: "2025-12-19",
|
|
2119
|
+
modalities: {
|
|
2120
|
+
input: ["text"],
|
|
2121
|
+
output: ["audio"]
|
|
2122
|
+
},
|
|
2123
|
+
pricing: {
|
|
2124
|
+
inputPerM: 0,
|
|
2125
|
+
outputPerM: 0,
|
|
2126
|
+
currency: "USD",
|
|
2127
|
+
unit: "per_million_tokens"
|
|
2128
|
+
}
|
|
2129
|
+
},
|
|
1924
2130
|
{
|
|
1925
2131
|
name: "deepseek-r1-distill-llama-70b",
|
|
1926
2132
|
displayName: "DeepSeek R1 Distill Llama 70B",
|
|
@@ -1963,6 +2169,46 @@ const MODELS_BY_PROVIDER = {
|
|
|
1963
2169
|
unit: "per_million_tokens"
|
|
1964
2170
|
}
|
|
1965
2171
|
},
|
|
2172
|
+
{
|
|
2173
|
+
name: "groq/compound",
|
|
2174
|
+
displayName: "Compound",
|
|
2175
|
+
maxInputTokens: 131072,
|
|
2176
|
+
supportedFileTypes: [],
|
|
2177
|
+
reasoning: true,
|
|
2178
|
+
supportsTemperature: true,
|
|
2179
|
+
supportsToolCall: true,
|
|
2180
|
+
releaseDate: "2025-09-04",
|
|
2181
|
+
modalities: {
|
|
2182
|
+
input: ["text"],
|
|
2183
|
+
output: ["text"]
|
|
2184
|
+
},
|
|
2185
|
+
pricing: {
|
|
2186
|
+
inputPerM: 0,
|
|
2187
|
+
outputPerM: 0,
|
|
2188
|
+
currency: "USD",
|
|
2189
|
+
unit: "per_million_tokens"
|
|
2190
|
+
}
|
|
2191
|
+
},
|
|
2192
|
+
{
|
|
2193
|
+
name: "groq/compound-mini",
|
|
2194
|
+
displayName: "Compound Mini",
|
|
2195
|
+
maxInputTokens: 131072,
|
|
2196
|
+
supportedFileTypes: [],
|
|
2197
|
+
reasoning: true,
|
|
2198
|
+
supportsTemperature: true,
|
|
2199
|
+
supportsToolCall: true,
|
|
2200
|
+
releaseDate: "2025-09-04",
|
|
2201
|
+
modalities: {
|
|
2202
|
+
input: ["text"],
|
|
2203
|
+
output: ["text"]
|
|
2204
|
+
},
|
|
2205
|
+
pricing: {
|
|
2206
|
+
inputPerM: 0,
|
|
2207
|
+
outputPerM: 0,
|
|
2208
|
+
currency: "USD",
|
|
2209
|
+
unit: "per_million_tokens"
|
|
2210
|
+
}
|
|
2211
|
+
},
|
|
1966
2212
|
{
|
|
1967
2213
|
name: "llama-3.1-8b-instant",
|
|
1968
2214
|
displayName: "Llama 3.1 8B Instant",
|
|
@@ -2076,6 +2322,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
2076
2322
|
supportsTemperature: true,
|
|
2077
2323
|
supportsToolCall: true,
|
|
2078
2324
|
releaseDate: "2025-04-05",
|
|
2325
|
+
status: "deprecated",
|
|
2079
2326
|
modalities: {
|
|
2080
2327
|
input: ["text", "image"],
|
|
2081
2328
|
output: ["text"]
|
|
@@ -2116,6 +2363,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
2116
2363
|
supportsTemperature: true,
|
|
2117
2364
|
supportsToolCall: false,
|
|
2118
2365
|
releaseDate: "2025-04-05",
|
|
2366
|
+
status: "deprecated",
|
|
2119
2367
|
modalities: {
|
|
2120
2368
|
input: ["text", "image"],
|
|
2121
2369
|
output: ["text"]
|
|
@@ -2128,14 +2376,54 @@ const MODELS_BY_PROVIDER = {
|
|
|
2128
2376
|
}
|
|
2129
2377
|
},
|
|
2130
2378
|
{
|
|
2131
|
-
name: "
|
|
2132
|
-
displayName: "
|
|
2133
|
-
maxInputTokens:
|
|
2379
|
+
name: "meta-llama/llama-prompt-guard-2-22m",
|
|
2380
|
+
displayName: "Llama Prompt Guard 2 22M",
|
|
2381
|
+
maxInputTokens: 512,
|
|
2134
2382
|
supportedFileTypes: [],
|
|
2135
2383
|
reasoning: false,
|
|
2136
2384
|
supportsTemperature: true,
|
|
2137
|
-
supportsToolCall:
|
|
2138
|
-
releaseDate: "
|
|
2385
|
+
supportsToolCall: false,
|
|
2386
|
+
releaseDate: "2024-10-01",
|
|
2387
|
+
modalities: {
|
|
2388
|
+
input: ["text"],
|
|
2389
|
+
output: ["text"]
|
|
2390
|
+
},
|
|
2391
|
+
pricing: {
|
|
2392
|
+
inputPerM: 0.03,
|
|
2393
|
+
outputPerM: 0.03,
|
|
2394
|
+
currency: "USD",
|
|
2395
|
+
unit: "per_million_tokens"
|
|
2396
|
+
}
|
|
2397
|
+
},
|
|
2398
|
+
{
|
|
2399
|
+
name: "meta-llama/llama-prompt-guard-2-86m",
|
|
2400
|
+
displayName: "Llama Prompt Guard 2 86M",
|
|
2401
|
+
maxInputTokens: 512,
|
|
2402
|
+
supportedFileTypes: [],
|
|
2403
|
+
reasoning: false,
|
|
2404
|
+
supportsTemperature: true,
|
|
2405
|
+
supportsToolCall: false,
|
|
2406
|
+
releaseDate: "2024-10-01",
|
|
2407
|
+
modalities: {
|
|
2408
|
+
input: ["text"],
|
|
2409
|
+
output: ["text"]
|
|
2410
|
+
},
|
|
2411
|
+
pricing: {
|
|
2412
|
+
inputPerM: 0.04,
|
|
2413
|
+
outputPerM: 0.04,
|
|
2414
|
+
currency: "USD",
|
|
2415
|
+
unit: "per_million_tokens"
|
|
2416
|
+
}
|
|
2417
|
+
},
|
|
2418
|
+
{
|
|
2419
|
+
name: "mistral-saba-24b",
|
|
2420
|
+
displayName: "Mistral Saba 24B",
|
|
2421
|
+
maxInputTokens: 32768,
|
|
2422
|
+
supportedFileTypes: [],
|
|
2423
|
+
reasoning: false,
|
|
2424
|
+
supportsTemperature: true,
|
|
2425
|
+
supportsToolCall: true,
|
|
2426
|
+
releaseDate: "2025-02-06",
|
|
2139
2427
|
status: "deprecated",
|
|
2140
2428
|
modalities: {
|
|
2141
2429
|
input: ["text"],
|
|
@@ -2229,6 +2517,27 @@ const MODELS_BY_PROVIDER = {
|
|
|
2229
2517
|
unit: "per_million_tokens"
|
|
2230
2518
|
}
|
|
2231
2519
|
},
|
|
2520
|
+
{
|
|
2521
|
+
name: "openai/gpt-oss-safeguard-20b",
|
|
2522
|
+
displayName: "Safety GPT OSS 20B",
|
|
2523
|
+
maxInputTokens: 131072,
|
|
2524
|
+
supportedFileTypes: [],
|
|
2525
|
+
reasoning: true,
|
|
2526
|
+
supportsTemperature: true,
|
|
2527
|
+
supportsToolCall: true,
|
|
2528
|
+
releaseDate: "2025-03-05",
|
|
2529
|
+
modalities: {
|
|
2530
|
+
input: ["text"],
|
|
2531
|
+
output: ["text"]
|
|
2532
|
+
},
|
|
2533
|
+
pricing: {
|
|
2534
|
+
inputPerM: 0.075,
|
|
2535
|
+
outputPerM: 0.3,
|
|
2536
|
+
cacheReadPerM: 0.037,
|
|
2537
|
+
currency: "USD",
|
|
2538
|
+
unit: "per_million_tokens"
|
|
2539
|
+
}
|
|
2540
|
+
},
|
|
2232
2541
|
{
|
|
2233
2542
|
name: "qwen-qwq-32b",
|
|
2234
2543
|
displayName: "Qwen QwQ 32B",
|
|
@@ -2269,6 +2578,46 @@ const MODELS_BY_PROVIDER = {
|
|
|
2269
2578
|
currency: "USD",
|
|
2270
2579
|
unit: "per_million_tokens"
|
|
2271
2580
|
}
|
|
2581
|
+
},
|
|
2582
|
+
{
|
|
2583
|
+
name: "whisper-large-v3",
|
|
2584
|
+
displayName: "Whisper Large V3",
|
|
2585
|
+
maxInputTokens: 448,
|
|
2586
|
+
supportedFileTypes: ["audio"],
|
|
2587
|
+
reasoning: false,
|
|
2588
|
+
supportsTemperature: true,
|
|
2589
|
+
supportsToolCall: false,
|
|
2590
|
+
releaseDate: "2023-09-01",
|
|
2591
|
+
modalities: {
|
|
2592
|
+
input: ["audio"],
|
|
2593
|
+
output: ["text"]
|
|
2594
|
+
},
|
|
2595
|
+
pricing: {
|
|
2596
|
+
inputPerM: 0,
|
|
2597
|
+
outputPerM: 0,
|
|
2598
|
+
currency: "USD",
|
|
2599
|
+
unit: "per_million_tokens"
|
|
2600
|
+
}
|
|
2601
|
+
},
|
|
2602
|
+
{
|
|
2603
|
+
name: "whisper-large-v3-turbo",
|
|
2604
|
+
displayName: "Whisper Large v3 Turbo",
|
|
2605
|
+
maxInputTokens: 448,
|
|
2606
|
+
supportedFileTypes: ["audio"],
|
|
2607
|
+
reasoning: false,
|
|
2608
|
+
supportsTemperature: true,
|
|
2609
|
+
supportsToolCall: false,
|
|
2610
|
+
releaseDate: "2024-10-01",
|
|
2611
|
+
modalities: {
|
|
2612
|
+
input: ["audio"],
|
|
2613
|
+
output: ["text"]
|
|
2614
|
+
},
|
|
2615
|
+
pricing: {
|
|
2616
|
+
inputPerM: 0,
|
|
2617
|
+
outputPerM: 0,
|
|
2618
|
+
currency: "USD",
|
|
2619
|
+
unit: "per_million_tokens"
|
|
2620
|
+
}
|
|
2272
2621
|
}
|
|
2273
2622
|
],
|
|
2274
2623
|
xai: [
|
|
@@ -2677,6 +3026,81 @@ const MODELS_BY_PROVIDER = {
|
|
|
2677
3026
|
unit: "per_million_tokens"
|
|
2678
3027
|
}
|
|
2679
3028
|
},
|
|
3029
|
+
{
|
|
3030
|
+
name: "grok-4.20-0309-non-reasoning",
|
|
3031
|
+
displayName: "Grok 4.20 (Non-Reasoning)",
|
|
3032
|
+
maxInputTokens: 2e6,
|
|
3033
|
+
supportedFileTypes: ["image"],
|
|
3034
|
+
reasoning: false,
|
|
3035
|
+
supportsTemperature: true,
|
|
3036
|
+
supportsToolCall: true,
|
|
3037
|
+
releaseDate: "2026-03-09",
|
|
3038
|
+
modalities: {
|
|
3039
|
+
input: ["text", "image"],
|
|
3040
|
+
output: ["text"]
|
|
3041
|
+
},
|
|
3042
|
+
pricing: {
|
|
3043
|
+
inputPerM: 2,
|
|
3044
|
+
outputPerM: 6,
|
|
3045
|
+
cacheReadPerM: 0.2,
|
|
3046
|
+
contextOver200kPerM: {
|
|
3047
|
+
inputPerM: 4,
|
|
3048
|
+
outputPerM: 12
|
|
3049
|
+
},
|
|
3050
|
+
currency: "USD",
|
|
3051
|
+
unit: "per_million_tokens"
|
|
3052
|
+
}
|
|
3053
|
+
},
|
|
3054
|
+
{
|
|
3055
|
+
name: "grok-4.20-0309-reasoning",
|
|
3056
|
+
displayName: "Grok 4.20 (Reasoning)",
|
|
3057
|
+
maxInputTokens: 2e6,
|
|
3058
|
+
supportedFileTypes: ["image"],
|
|
3059
|
+
reasoning: true,
|
|
3060
|
+
supportsTemperature: true,
|
|
3061
|
+
supportsToolCall: true,
|
|
3062
|
+
releaseDate: "2026-03-09",
|
|
3063
|
+
modalities: {
|
|
3064
|
+
input: ["text", "image"],
|
|
3065
|
+
output: ["text"]
|
|
3066
|
+
},
|
|
3067
|
+
pricing: {
|
|
3068
|
+
inputPerM: 2,
|
|
3069
|
+
outputPerM: 6,
|
|
3070
|
+
cacheReadPerM: 0.2,
|
|
3071
|
+
contextOver200kPerM: {
|
|
3072
|
+
inputPerM: 4,
|
|
3073
|
+
outputPerM: 12
|
|
3074
|
+
},
|
|
3075
|
+
currency: "USD",
|
|
3076
|
+
unit: "per_million_tokens"
|
|
3077
|
+
}
|
|
3078
|
+
},
|
|
3079
|
+
{
|
|
3080
|
+
name: "grok-4.20-multi-agent-0309",
|
|
3081
|
+
displayName: "Grok 4.20 Multi-Agent",
|
|
3082
|
+
maxInputTokens: 2e6,
|
|
3083
|
+
supportedFileTypes: ["image"],
|
|
3084
|
+
reasoning: true,
|
|
3085
|
+
supportsTemperature: true,
|
|
3086
|
+
supportsToolCall: false,
|
|
3087
|
+
releaseDate: "2026-03-09",
|
|
3088
|
+
modalities: {
|
|
3089
|
+
input: ["text", "image"],
|
|
3090
|
+
output: ["text"]
|
|
3091
|
+
},
|
|
3092
|
+
pricing: {
|
|
3093
|
+
inputPerM: 2,
|
|
3094
|
+
outputPerM: 6,
|
|
3095
|
+
cacheReadPerM: 0.2,
|
|
3096
|
+
contextOver200kPerM: {
|
|
3097
|
+
inputPerM: 4,
|
|
3098
|
+
outputPerM: 12
|
|
3099
|
+
},
|
|
3100
|
+
currency: "USD",
|
|
3101
|
+
unit: "per_million_tokens"
|
|
3102
|
+
}
|
|
3103
|
+
},
|
|
2680
3104
|
{
|
|
2681
3105
|
name: "grok-beta",
|
|
2682
3106
|
displayName: "Grok Beta",
|
|
@@ -2747,7 +3171,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
2747
3171
|
displayName: "Command A",
|
|
2748
3172
|
maxInputTokens: 256e3,
|
|
2749
3173
|
supportedFileTypes: [],
|
|
2750
|
-
reasoning:
|
|
3174
|
+
reasoning: false,
|
|
2751
3175
|
supportsTemperature: true,
|
|
2752
3176
|
supportsToolCall: true,
|
|
2753
3177
|
releaseDate: "2025-03-13",
|
|
@@ -2828,7 +3252,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
2828
3252
|
displayName: "Command R",
|
|
2829
3253
|
maxInputTokens: 128e3,
|
|
2830
3254
|
supportedFileTypes: [],
|
|
2831
|
-
reasoning:
|
|
3255
|
+
reasoning: false,
|
|
2832
3256
|
supportsTemperature: true,
|
|
2833
3257
|
supportsToolCall: true,
|
|
2834
3258
|
releaseDate: "2024-08-30",
|
|
@@ -2848,7 +3272,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
2848
3272
|
displayName: "Command R+",
|
|
2849
3273
|
maxInputTokens: 128e3,
|
|
2850
3274
|
supportedFileTypes: [],
|
|
2851
|
-
reasoning:
|
|
3275
|
+
reasoning: false,
|
|
2852
3276
|
supportsTemperature: true,
|
|
2853
3277
|
supportsToolCall: true,
|
|
2854
3278
|
releaseDate: "2024-08-30",
|
|
@@ -2989,6 +3413,50 @@ const MODELS_BY_PROVIDER = {
|
|
|
2989
3413
|
currency: "USD",
|
|
2990
3414
|
unit: "per_million_tokens"
|
|
2991
3415
|
}
|
|
3416
|
+
},
|
|
3417
|
+
{
|
|
3418
|
+
name: "MiniMax-M2.7",
|
|
3419
|
+
displayName: "MiniMax-M2.7",
|
|
3420
|
+
maxInputTokens: 204800,
|
|
3421
|
+
supportedFileTypes: [],
|
|
3422
|
+
reasoning: true,
|
|
3423
|
+
supportsTemperature: true,
|
|
3424
|
+
supportsToolCall: true,
|
|
3425
|
+
releaseDate: "2026-03-18",
|
|
3426
|
+
modalities: {
|
|
3427
|
+
input: ["text"],
|
|
3428
|
+
output: ["text"]
|
|
3429
|
+
},
|
|
3430
|
+
pricing: {
|
|
3431
|
+
inputPerM: 0.3,
|
|
3432
|
+
outputPerM: 1.2,
|
|
3433
|
+
cacheReadPerM: 0.06,
|
|
3434
|
+
cacheWritePerM: 0.375,
|
|
3435
|
+
currency: "USD",
|
|
3436
|
+
unit: "per_million_tokens"
|
|
3437
|
+
}
|
|
3438
|
+
},
|
|
3439
|
+
{
|
|
3440
|
+
name: "MiniMax-M2.7-highspeed",
|
|
3441
|
+
displayName: "MiniMax-M2.7-highspeed",
|
|
3442
|
+
maxInputTokens: 204800,
|
|
3443
|
+
supportedFileTypes: [],
|
|
3444
|
+
reasoning: true,
|
|
3445
|
+
supportsTemperature: true,
|
|
3446
|
+
supportsToolCall: true,
|
|
3447
|
+
releaseDate: "2026-03-18",
|
|
3448
|
+
modalities: {
|
|
3449
|
+
input: ["text"],
|
|
3450
|
+
output: ["text"]
|
|
3451
|
+
},
|
|
3452
|
+
pricing: {
|
|
3453
|
+
inputPerM: 0.6,
|
|
3454
|
+
outputPerM: 2.4,
|
|
3455
|
+
cacheReadPerM: 0.06,
|
|
3456
|
+
cacheWritePerM: 0.375,
|
|
3457
|
+
currency: "USD",
|
|
3458
|
+
unit: "per_million_tokens"
|
|
3459
|
+
}
|
|
2992
3460
|
}
|
|
2993
3461
|
],
|
|
2994
3462
|
glm: [
|
|
@@ -3062,7 +3530,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
3062
3530
|
name: "glm-4.5v",
|
|
3063
3531
|
displayName: "GLM-4.5V",
|
|
3064
3532
|
maxInputTokens: 64e3,
|
|
3065
|
-
supportedFileTypes: ["image"],
|
|
3533
|
+
supportedFileTypes: ["image", "video"],
|
|
3066
3534
|
reasoning: true,
|
|
3067
3535
|
supportsTemperature: true,
|
|
3068
3536
|
supportsToolCall: true,
|
|
@@ -3104,7 +3572,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
3104
3572
|
name: "glm-4.6v",
|
|
3105
3573
|
displayName: "GLM-4.6V",
|
|
3106
3574
|
maxInputTokens: 128e3,
|
|
3107
|
-
supportedFileTypes: ["image"],
|
|
3575
|
+
supportedFileTypes: ["image", "video"],
|
|
3108
3576
|
reasoning: true,
|
|
3109
3577
|
supportsTemperature: true,
|
|
3110
3578
|
supportsToolCall: true,
|
|
@@ -3169,6 +3637,28 @@ const MODELS_BY_PROVIDER = {
|
|
|
3169
3637
|
unit: "per_million_tokens"
|
|
3170
3638
|
}
|
|
3171
3639
|
},
|
|
3640
|
+
{
|
|
3641
|
+
name: "glm-4.7-flashx",
|
|
3642
|
+
displayName: "GLM-4.7-FlashX",
|
|
3643
|
+
maxInputTokens: 2e5,
|
|
3644
|
+
supportedFileTypes: [],
|
|
3645
|
+
reasoning: true,
|
|
3646
|
+
supportsTemperature: true,
|
|
3647
|
+
supportsToolCall: true,
|
|
3648
|
+
releaseDate: "2026-01-19",
|
|
3649
|
+
modalities: {
|
|
3650
|
+
input: ["text"],
|
|
3651
|
+
output: ["text"]
|
|
3652
|
+
},
|
|
3653
|
+
pricing: {
|
|
3654
|
+
inputPerM: 0.07,
|
|
3655
|
+
outputPerM: 0.4,
|
|
3656
|
+
cacheReadPerM: 0.01,
|
|
3657
|
+
cacheWritePerM: 0,
|
|
3658
|
+
currency: "USD",
|
|
3659
|
+
unit: "per_million_tokens"
|
|
3660
|
+
}
|
|
3661
|
+
},
|
|
3172
3662
|
{
|
|
3173
3663
|
name: "glm-5",
|
|
3174
3664
|
displayName: "GLM-5",
|
|
@@ -3197,26 +3687,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
3197
3687
|
}
|
|
3198
3688
|
],
|
|
3199
3689
|
openrouter: [
|
|
3200
|
-
{
|
|
3201
|
-
name: "allenai/molmo-2-8b:free",
|
|
3202
|
-
displayName: "Molmo2 8B (free)",
|
|
3203
|
-
maxInputTokens: 36864,
|
|
3204
|
-
supportedFileTypes: ["image"],
|
|
3205
|
-
reasoning: true,
|
|
3206
|
-
supportsTemperature: true,
|
|
3207
|
-
supportsToolCall: false,
|
|
3208
|
-
releaseDate: "2026-01-09",
|
|
3209
|
-
modalities: {
|
|
3210
|
-
input: ["text", "image", "video"],
|
|
3211
|
-
output: ["text"]
|
|
3212
|
-
},
|
|
3213
|
-
pricing: {
|
|
3214
|
-
inputPerM: 0,
|
|
3215
|
-
outputPerM: 0,
|
|
3216
|
-
currency: "USD",
|
|
3217
|
-
unit: "per_million_tokens"
|
|
3218
|
-
}
|
|
3219
|
-
},
|
|
3220
3690
|
{
|
|
3221
3691
|
name: "anthropic/claude-3.5-haiku",
|
|
3222
3692
|
displayName: "Claude Haiku 3.5",
|
|
@@ -3614,14 +4084,14 @@ const MODELS_BY_PROVIDER = {
|
|
|
3614
4084
|
}
|
|
3615
4085
|
},
|
|
3616
4086
|
{
|
|
3617
|
-
name: "
|
|
3618
|
-
displayName: "
|
|
3619
|
-
maxInputTokens:
|
|
4087
|
+
name: "deepseek/deepseek-chat-v3-0324",
|
|
4088
|
+
displayName: "DeepSeek V3 0324",
|
|
4089
|
+
maxInputTokens: 16384,
|
|
3620
4090
|
supportedFileTypes: [],
|
|
3621
4091
|
reasoning: false,
|
|
3622
4092
|
supportsTemperature: true,
|
|
3623
|
-
supportsToolCall:
|
|
3624
|
-
releaseDate: "2025-
|
|
4093
|
+
supportsToolCall: false,
|
|
4094
|
+
releaseDate: "2025-03-24",
|
|
3625
4095
|
modalities: {
|
|
3626
4096
|
input: ["text"],
|
|
3627
4097
|
output: ["text"]
|
|
@@ -3634,174 +4104,34 @@ const MODELS_BY_PROVIDER = {
|
|
|
3634
4104
|
}
|
|
3635
4105
|
},
|
|
3636
4106
|
{
|
|
3637
|
-
name: "
|
|
3638
|
-
displayName: "
|
|
3639
|
-
maxInputTokens:
|
|
4107
|
+
name: "deepseek/deepseek-chat-v3.1",
|
|
4108
|
+
displayName: "DeepSeek-V3.1",
|
|
4109
|
+
maxInputTokens: 163840,
|
|
3640
4110
|
supportedFileTypes: [],
|
|
3641
4111
|
reasoning: true,
|
|
3642
4112
|
supportsTemperature: true,
|
|
3643
4113
|
supportsToolCall: true,
|
|
3644
|
-
releaseDate: "2025-
|
|
4114
|
+
releaseDate: "2025-08-21",
|
|
3645
4115
|
modalities: {
|
|
3646
4116
|
input: ["text"],
|
|
3647
4117
|
output: ["text"]
|
|
3648
4118
|
},
|
|
3649
4119
|
pricing: {
|
|
3650
|
-
inputPerM: 0,
|
|
3651
|
-
outputPerM: 0,
|
|
4120
|
+
inputPerM: 0.2,
|
|
4121
|
+
outputPerM: 0.8,
|
|
3652
4122
|
currency: "USD",
|
|
3653
4123
|
unit: "per_million_tokens"
|
|
3654
4124
|
}
|
|
3655
4125
|
},
|
|
3656
4126
|
{
|
|
3657
|
-
name: "deepseek/deepseek-
|
|
3658
|
-
displayName: "DeepSeek
|
|
3659
|
-
maxInputTokens:
|
|
4127
|
+
name: "deepseek/deepseek-r1-distill-llama-70b",
|
|
4128
|
+
displayName: "DeepSeek R1 Distill Llama 70B",
|
|
4129
|
+
maxInputTokens: 8192,
|
|
3660
4130
|
supportedFileTypes: [],
|
|
3661
|
-
reasoning:
|
|
4131
|
+
reasoning: true,
|
|
3662
4132
|
supportsTemperature: true,
|
|
3663
4133
|
supportsToolCall: false,
|
|
3664
|
-
releaseDate: "2025-
|
|
3665
|
-
modalities: {
|
|
3666
|
-
input: ["text"],
|
|
3667
|
-
output: ["text"]
|
|
3668
|
-
},
|
|
3669
|
-
pricing: {
|
|
3670
|
-
inputPerM: 0,
|
|
3671
|
-
outputPerM: 0,
|
|
3672
|
-
currency: "USD",
|
|
3673
|
-
unit: "per_million_tokens"
|
|
3674
|
-
}
|
|
3675
|
-
},
|
|
3676
|
-
{
|
|
3677
|
-
name: "deepseek/deepseek-chat-v3.1",
|
|
3678
|
-
displayName: "DeepSeek-V3.1",
|
|
3679
|
-
maxInputTokens: 163840,
|
|
3680
|
-
supportedFileTypes: [],
|
|
3681
|
-
reasoning: true,
|
|
3682
|
-
supportsTemperature: true,
|
|
3683
|
-
supportsToolCall: true,
|
|
3684
|
-
releaseDate: "2025-08-21",
|
|
3685
|
-
modalities: {
|
|
3686
|
-
input: ["text"],
|
|
3687
|
-
output: ["text"]
|
|
3688
|
-
},
|
|
3689
|
-
pricing: {
|
|
3690
|
-
inputPerM: 0.2,
|
|
3691
|
-
outputPerM: 0.8,
|
|
3692
|
-
currency: "USD",
|
|
3693
|
-
unit: "per_million_tokens"
|
|
3694
|
-
}
|
|
3695
|
-
},
|
|
3696
|
-
{
|
|
3697
|
-
name: "deepseek/deepseek-r1-0528-qwen3-8b:free",
|
|
3698
|
-
displayName: "Deepseek R1 0528 Qwen3 8B (free)",
|
|
3699
|
-
maxInputTokens: 131072,
|
|
3700
|
-
supportedFileTypes: [],
|
|
3701
|
-
reasoning: true,
|
|
3702
|
-
supportsTemperature: true,
|
|
3703
|
-
supportsToolCall: true,
|
|
3704
|
-
releaseDate: "2025-05-29",
|
|
3705
|
-
modalities: {
|
|
3706
|
-
input: ["text"],
|
|
3707
|
-
output: ["text"]
|
|
3708
|
-
},
|
|
3709
|
-
pricing: {
|
|
3710
|
-
inputPerM: 0,
|
|
3711
|
-
outputPerM: 0,
|
|
3712
|
-
currency: "USD",
|
|
3713
|
-
unit: "per_million_tokens"
|
|
3714
|
-
}
|
|
3715
|
-
},
|
|
3716
|
-
{
|
|
3717
|
-
name: "deepseek/deepseek-r1-0528:free",
|
|
3718
|
-
displayName: "R1 0528 (free)",
|
|
3719
|
-
maxInputTokens: 163840,
|
|
3720
|
-
supportedFileTypes: [],
|
|
3721
|
-
reasoning: true,
|
|
3722
|
-
supportsTemperature: true,
|
|
3723
|
-
supportsToolCall: false,
|
|
3724
|
-
releaseDate: "2025-05-28",
|
|
3725
|
-
modalities: {
|
|
3726
|
-
input: ["text"],
|
|
3727
|
-
output: ["text"]
|
|
3728
|
-
},
|
|
3729
|
-
pricing: {
|
|
3730
|
-
inputPerM: 0,
|
|
3731
|
-
outputPerM: 0,
|
|
3732
|
-
currency: "USD",
|
|
3733
|
-
unit: "per_million_tokens"
|
|
3734
|
-
}
|
|
3735
|
-
},
|
|
3736
|
-
{
|
|
3737
|
-
name: "deepseek/deepseek-r1-distill-llama-70b",
|
|
3738
|
-
displayName: "DeepSeek R1 Distill Llama 70B",
|
|
3739
|
-
maxInputTokens: 8192,
|
|
3740
|
-
supportedFileTypes: [],
|
|
3741
|
-
reasoning: true,
|
|
3742
|
-
supportsTemperature: true,
|
|
3743
|
-
supportsToolCall: false,
|
|
3744
|
-
releaseDate: "2025-01-23",
|
|
3745
|
-
modalities: {
|
|
3746
|
-
input: ["text"],
|
|
3747
|
-
output: ["text"]
|
|
3748
|
-
},
|
|
3749
|
-
pricing: {
|
|
3750
|
-
inputPerM: 0,
|
|
3751
|
-
outputPerM: 0,
|
|
3752
|
-
currency: "USD",
|
|
3753
|
-
unit: "per_million_tokens"
|
|
3754
|
-
}
|
|
3755
|
-
},
|
|
3756
|
-
{
|
|
3757
|
-
name: "deepseek/deepseek-r1-distill-qwen-14b",
|
|
3758
|
-
displayName: "DeepSeek R1 Distill Qwen 14B",
|
|
3759
|
-
maxInputTokens: 64e3,
|
|
3760
|
-
supportedFileTypes: [],
|
|
3761
|
-
reasoning: true,
|
|
3762
|
-
supportsTemperature: true,
|
|
3763
|
-
supportsToolCall: false,
|
|
3764
|
-
releaseDate: "2025-01-29",
|
|
3765
|
-
modalities: {
|
|
3766
|
-
input: ["text"],
|
|
3767
|
-
output: ["text"]
|
|
3768
|
-
},
|
|
3769
|
-
pricing: {
|
|
3770
|
-
inputPerM: 0,
|
|
3771
|
-
outputPerM: 0,
|
|
3772
|
-
currency: "USD",
|
|
3773
|
-
unit: "per_million_tokens"
|
|
3774
|
-
}
|
|
3775
|
-
},
|
|
3776
|
-
{
|
|
3777
|
-
name: "deepseek/deepseek-r1:free",
|
|
3778
|
-
displayName: "R1 (free)",
|
|
3779
|
-
maxInputTokens: 163840,
|
|
3780
|
-
supportedFileTypes: [],
|
|
3781
|
-
reasoning: true,
|
|
3782
|
-
supportsTemperature: true,
|
|
3783
|
-
supportsToolCall: true,
|
|
3784
|
-
releaseDate: "2025-01-20",
|
|
3785
|
-
modalities: {
|
|
3786
|
-
input: ["text"],
|
|
3787
|
-
output: ["text"]
|
|
3788
|
-
},
|
|
3789
|
-
pricing: {
|
|
3790
|
-
inputPerM: 0,
|
|
3791
|
-
outputPerM: 0,
|
|
3792
|
-
currency: "USD",
|
|
3793
|
-
unit: "per_million_tokens"
|
|
3794
|
-
}
|
|
3795
|
-
},
|
|
3796
|
-
{
|
|
3797
|
-
name: "deepseek/deepseek-v3-base:free",
|
|
3798
|
-
displayName: "DeepSeek V3 Base (free)",
|
|
3799
|
-
maxInputTokens: 163840,
|
|
3800
|
-
supportedFileTypes: [],
|
|
3801
|
-
reasoning: false,
|
|
3802
|
-
supportsTemperature: true,
|
|
3803
|
-
supportsToolCall: false,
|
|
3804
|
-
releaseDate: "2025-03-29",
|
|
4134
|
+
releaseDate: "2025-01-23",
|
|
3805
4135
|
modalities: {
|
|
3806
4136
|
input: ["text"],
|
|
3807
4137
|
output: ["text"]
|
|
@@ -3893,31 +4223,11 @@ const MODELS_BY_PROVIDER = {
|
|
|
3893
4223
|
unit: "per_million_tokens"
|
|
3894
4224
|
}
|
|
3895
4225
|
},
|
|
3896
|
-
{
|
|
3897
|
-
name: "featherless/qwerky-72b",
|
|
3898
|
-
displayName: "Qwerky 72B",
|
|
3899
|
-
maxInputTokens: 32768,
|
|
3900
|
-
supportedFileTypes: [],
|
|
3901
|
-
reasoning: false,
|
|
3902
|
-
supportsTemperature: true,
|
|
3903
|
-
supportsToolCall: false,
|
|
3904
|
-
releaseDate: "2025-03-20",
|
|
3905
|
-
modalities: {
|
|
3906
|
-
input: ["text"],
|
|
3907
|
-
output: ["text"]
|
|
3908
|
-
},
|
|
3909
|
-
pricing: {
|
|
3910
|
-
inputPerM: 0,
|
|
3911
|
-
outputPerM: 0,
|
|
3912
|
-
currency: "USD",
|
|
3913
|
-
unit: "per_million_tokens"
|
|
3914
|
-
}
|
|
3915
|
-
},
|
|
3916
4226
|
{
|
|
3917
4227
|
name: "google/gemini-2.0-flash-001",
|
|
3918
4228
|
displayName: "Gemini 2.0 Flash",
|
|
3919
4229
|
maxInputTokens: 1048576,
|
|
3920
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
4230
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
3921
4231
|
reasoning: false,
|
|
3922
4232
|
supportsTemperature: true,
|
|
3923
4233
|
supportsToolCall: true,
|
|
@@ -3934,31 +4244,11 @@ const MODELS_BY_PROVIDER = {
|
|
|
3934
4244
|
unit: "per_million_tokens"
|
|
3935
4245
|
}
|
|
3936
4246
|
},
|
|
3937
|
-
{
|
|
3938
|
-
name: "google/gemini-2.0-flash-exp:free",
|
|
3939
|
-
displayName: "Gemini 2.0 Flash Experimental (free)",
|
|
3940
|
-
maxInputTokens: 1048576,
|
|
3941
|
-
supportedFileTypes: ["image"],
|
|
3942
|
-
reasoning: false,
|
|
3943
|
-
supportsTemperature: true,
|
|
3944
|
-
supportsToolCall: true,
|
|
3945
|
-
releaseDate: "2024-12-11",
|
|
3946
|
-
modalities: {
|
|
3947
|
-
input: ["text", "image"],
|
|
3948
|
-
output: ["text"]
|
|
3949
|
-
},
|
|
3950
|
-
pricing: {
|
|
3951
|
-
inputPerM: 0,
|
|
3952
|
-
outputPerM: 0,
|
|
3953
|
-
currency: "USD",
|
|
3954
|
-
unit: "per_million_tokens"
|
|
3955
|
-
}
|
|
3956
|
-
},
|
|
3957
4247
|
{
|
|
3958
4248
|
name: "google/gemini-2.5-flash",
|
|
3959
4249
|
displayName: "Gemini 2.5 Flash",
|
|
3960
4250
|
maxInputTokens: 1048576,
|
|
3961
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
4251
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
3962
4252
|
reasoning: true,
|
|
3963
4253
|
supportsTemperature: true,
|
|
3964
4254
|
supportsToolCall: true,
|
|
@@ -3979,7 +4269,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
3979
4269
|
name: "google/gemini-2.5-flash-lite",
|
|
3980
4270
|
displayName: "Gemini 2.5 Flash Lite",
|
|
3981
4271
|
maxInputTokens: 1048576,
|
|
3982
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
4272
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
3983
4273
|
reasoning: true,
|
|
3984
4274
|
supportsTemperature: true,
|
|
3985
4275
|
supportsToolCall: true,
|
|
@@ -4000,7 +4290,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
4000
4290
|
name: "google/gemini-2.5-flash-lite-preview-09-2025",
|
|
4001
4291
|
displayName: "Gemini 2.5 Flash Lite Preview 09-25",
|
|
4002
4292
|
maxInputTokens: 1048576,
|
|
4003
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
4293
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
4004
4294
|
reasoning: true,
|
|
4005
4295
|
supportsTemperature: true,
|
|
4006
4296
|
supportsToolCall: true,
|
|
@@ -4021,7 +4311,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
4021
4311
|
name: "google/gemini-2.5-flash-preview-09-2025",
|
|
4022
4312
|
displayName: "Gemini 2.5 Flash Preview 09-25",
|
|
4023
4313
|
maxInputTokens: 1048576,
|
|
4024
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
4314
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
4025
4315
|
reasoning: true,
|
|
4026
4316
|
supportsTemperature: true,
|
|
4027
4317
|
supportsToolCall: true,
|
|
@@ -4042,7 +4332,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
4042
4332
|
name: "google/gemini-2.5-pro",
|
|
4043
4333
|
displayName: "Gemini 2.5 Pro",
|
|
4044
4334
|
maxInputTokens: 1048576,
|
|
4045
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
4335
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
4046
4336
|
reasoning: true,
|
|
4047
4337
|
supportsTemperature: true,
|
|
4048
4338
|
supportsToolCall: true,
|
|
@@ -4063,7 +4353,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
4063
4353
|
name: "google/gemini-2.5-pro-preview-05-06",
|
|
4064
4354
|
displayName: "Gemini 2.5 Pro Preview 05-06",
|
|
4065
4355
|
maxInputTokens: 1048576,
|
|
4066
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
4356
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
4067
4357
|
reasoning: true,
|
|
4068
4358
|
supportsTemperature: true,
|
|
4069
4359
|
supportsToolCall: true,
|
|
@@ -4084,7 +4374,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
4084
4374
|
name: "google/gemini-2.5-pro-preview-06-05",
|
|
4085
4375
|
displayName: "Gemini 2.5 Pro Preview 06-05",
|
|
4086
4376
|
maxInputTokens: 1048576,
|
|
4087
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
4377
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
4088
4378
|
reasoning: true,
|
|
4089
4379
|
supportsTemperature: true,
|
|
4090
4380
|
supportsToolCall: true,
|
|
@@ -4105,7 +4395,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
4105
4395
|
name: "google/gemini-3-flash-preview",
|
|
4106
4396
|
displayName: "Gemini 3 Flash Preview",
|
|
4107
4397
|
maxInputTokens: 1048576,
|
|
4108
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
4398
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
4109
4399
|
reasoning: true,
|
|
4110
4400
|
supportsTemperature: true,
|
|
4111
4401
|
supportsToolCall: true,
|
|
@@ -4130,7 +4420,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
4130
4420
|
name: "google/gemini-3-pro-preview",
|
|
4131
4421
|
displayName: "Gemini 3 Pro Preview",
|
|
4132
4422
|
maxInputTokens: 105e4,
|
|
4133
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
4423
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
4134
4424
|
reasoning: true,
|
|
4135
4425
|
supportsTemperature: true,
|
|
4136
4426
|
supportsToolCall: true,
|
|
@@ -4150,11 +4440,36 @@ const MODELS_BY_PROVIDER = {
|
|
|
4150
4440
|
unit: "per_million_tokens"
|
|
4151
4441
|
}
|
|
4152
4442
|
},
|
|
4443
|
+
{
|
|
4444
|
+
name: "google/gemini-3.1-flash-lite-preview",
|
|
4445
|
+
displayName: "Gemini 3.1 Flash Lite Preview",
|
|
4446
|
+
maxInputTokens: 1048576,
|
|
4447
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
4448
|
+
reasoning: true,
|
|
4449
|
+
supportsTemperature: true,
|
|
4450
|
+
supportsToolCall: true,
|
|
4451
|
+
releaseDate: "2026-03-03",
|
|
4452
|
+
modalities: {
|
|
4453
|
+
input: ["text", "image", "video", "pdf", "audio"],
|
|
4454
|
+
output: ["text"]
|
|
4455
|
+
},
|
|
4456
|
+
pricing: {
|
|
4457
|
+
inputPerM: 0.25,
|
|
4458
|
+
outputPerM: 1.5,
|
|
4459
|
+
cacheReadPerM: 0.025,
|
|
4460
|
+
cacheWritePerM: 0.083,
|
|
4461
|
+
reasoningPerM: 1.5,
|
|
4462
|
+
inputAudioPerM: 0.5,
|
|
4463
|
+
outputAudioPerM: 0.5,
|
|
4464
|
+
currency: "USD",
|
|
4465
|
+
unit: "per_million_tokens"
|
|
4466
|
+
}
|
|
4467
|
+
},
|
|
4153
4468
|
{
|
|
4154
4469
|
name: "google/gemini-3.1-pro-preview",
|
|
4155
4470
|
displayName: "Gemini 3.1 Pro Preview",
|
|
4156
4471
|
maxInputTokens: 1048576,
|
|
4157
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
4472
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
4158
4473
|
reasoning: true,
|
|
4159
4474
|
supportsTemperature: true,
|
|
4160
4475
|
supportsToolCall: true,
|
|
@@ -4183,7 +4498,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
4183
4498
|
name: "google/gemini-3.1-pro-preview-customtools",
|
|
4184
4499
|
displayName: "Gemini 3.1 Pro Preview Custom Tools",
|
|
4185
4500
|
maxInputTokens: 1048576,
|
|
4186
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
4501
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
4187
4502
|
reasoning: true,
|
|
4188
4503
|
supportsTemperature: true,
|
|
4189
4504
|
supportsToolCall: true,
|
|
@@ -4232,7 +4547,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
4232
4547
|
name: "google/gemma-3-12b-it",
|
|
4233
4548
|
displayName: "Gemma 3 12B",
|
|
4234
4549
|
maxInputTokens: 131072,
|
|
4235
|
-
supportedFileTypes: ["image"],
|
|
4550
|
+
supportedFileTypes: ["image", "document"],
|
|
4236
4551
|
reasoning: false,
|
|
4237
4552
|
supportsTemperature: true,
|
|
4238
4553
|
supportsToolCall: false,
|
|
@@ -4252,7 +4567,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
4252
4567
|
name: "google/gemma-3-12b-it:free",
|
|
4253
4568
|
displayName: "Gemma 3 12B (free)",
|
|
4254
4569
|
maxInputTokens: 32768,
|
|
4255
|
-
supportedFileTypes: ["image"],
|
|
4570
|
+
supportedFileTypes: ["image", "document"],
|
|
4256
4571
|
reasoning: false,
|
|
4257
4572
|
supportsTemperature: true,
|
|
4258
4573
|
supportsToolCall: false,
|
|
@@ -4272,7 +4587,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
4272
4587
|
name: "google/gemma-3-27b-it",
|
|
4273
4588
|
displayName: "Gemma 3 27B",
|
|
4274
4589
|
maxInputTokens: 96e3,
|
|
4275
|
-
supportedFileTypes: ["image"],
|
|
4590
|
+
supportedFileTypes: ["image", "document"],
|
|
4276
4591
|
reasoning: false,
|
|
4277
4592
|
supportsTemperature: true,
|
|
4278
4593
|
supportsToolCall: true,
|
|
@@ -4292,7 +4607,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
4292
4607
|
name: "google/gemma-3-27b-it:free",
|
|
4293
4608
|
displayName: "Gemma 3 27B (free)",
|
|
4294
4609
|
maxInputTokens: 131072,
|
|
4295
|
-
supportedFileTypes: ["image"],
|
|
4610
|
+
supportedFileTypes: ["image", "document"],
|
|
4296
4611
|
reasoning: false,
|
|
4297
4612
|
supportsTemperature: true,
|
|
4298
4613
|
supportsToolCall: true,
|
|
@@ -4312,7 +4627,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
4312
4627
|
name: "google/gemma-3-4b-it",
|
|
4313
4628
|
displayName: "Gemma 3 4B",
|
|
4314
4629
|
maxInputTokens: 96e3,
|
|
4315
|
-
supportedFileTypes: ["image"],
|
|
4630
|
+
supportedFileTypes: ["image", "document"],
|
|
4316
4631
|
reasoning: false,
|
|
4317
4632
|
supportsTemperature: true,
|
|
4318
4633
|
supportsToolCall: false,
|
|
@@ -4332,7 +4647,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
4332
4647
|
name: "google/gemma-3-4b-it:free",
|
|
4333
4648
|
displayName: "Gemma 3 4B (free)",
|
|
4334
4649
|
maxInputTokens: 32768,
|
|
4335
|
-
supportedFileTypes: ["image"],
|
|
4650
|
+
supportedFileTypes: ["image", "document"],
|
|
4336
4651
|
reasoning: false,
|
|
4337
4652
|
supportsTemperature: true,
|
|
4338
4653
|
supportsToolCall: false,
|
|
@@ -4409,51 +4724,74 @@ const MODELS_BY_PROVIDER = {
|
|
|
4409
4724
|
}
|
|
4410
4725
|
},
|
|
4411
4726
|
{
|
|
4412
|
-
name: "
|
|
4413
|
-
displayName: "
|
|
4414
|
-
maxInputTokens:
|
|
4727
|
+
name: "inception/mercury",
|
|
4728
|
+
displayName: "Mercury",
|
|
4729
|
+
maxInputTokens: 128e3,
|
|
4415
4730
|
supportedFileTypes: [],
|
|
4416
4731
|
reasoning: false,
|
|
4417
4732
|
supportsTemperature: true,
|
|
4418
4733
|
supportsToolCall: true,
|
|
4419
|
-
releaseDate: "2025-
|
|
4734
|
+
releaseDate: "2025-06-26",
|
|
4420
4735
|
modalities: {
|
|
4421
4736
|
input: ["text"],
|
|
4422
4737
|
output: ["text"]
|
|
4423
4738
|
},
|
|
4424
4739
|
pricing: {
|
|
4425
|
-
inputPerM: 0,
|
|
4426
|
-
outputPerM: 0,
|
|
4740
|
+
inputPerM: 0.25,
|
|
4741
|
+
outputPerM: 0.75,
|
|
4742
|
+
cacheReadPerM: 0.025,
|
|
4427
4743
|
currency: "USD",
|
|
4428
4744
|
unit: "per_million_tokens"
|
|
4429
4745
|
}
|
|
4430
4746
|
},
|
|
4431
4747
|
{
|
|
4432
|
-
name: "
|
|
4433
|
-
displayName: "
|
|
4434
|
-
maxInputTokens:
|
|
4748
|
+
name: "inception/mercury-2",
|
|
4749
|
+
displayName: "Mercury 2",
|
|
4750
|
+
maxInputTokens: 128e3,
|
|
4751
|
+
supportedFileTypes: [],
|
|
4752
|
+
reasoning: true,
|
|
4753
|
+
supportsTemperature: true,
|
|
4754
|
+
supportsToolCall: true,
|
|
4755
|
+
releaseDate: "2026-03-04",
|
|
4756
|
+
modalities: {
|
|
4757
|
+
input: ["text"],
|
|
4758
|
+
output: ["text"]
|
|
4759
|
+
},
|
|
4760
|
+
pricing: {
|
|
4761
|
+
inputPerM: 0.25,
|
|
4762
|
+
outputPerM: 0.75,
|
|
4763
|
+
cacheReadPerM: 0.025,
|
|
4764
|
+
currency: "USD",
|
|
4765
|
+
unit: "per_million_tokens"
|
|
4766
|
+
}
|
|
4767
|
+
},
|
|
4768
|
+
{
|
|
4769
|
+
name: "inception/mercury-coder",
|
|
4770
|
+
displayName: "Mercury Coder",
|
|
4771
|
+
maxInputTokens: 128e3,
|
|
4435
4772
|
supportedFileTypes: [],
|
|
4436
4773
|
reasoning: false,
|
|
4437
4774
|
supportsTemperature: true,
|
|
4438
|
-
supportsToolCall:
|
|
4439
|
-
releaseDate: "
|
|
4775
|
+
supportsToolCall: true,
|
|
4776
|
+
releaseDate: "2025-04-30",
|
|
4440
4777
|
modalities: {
|
|
4441
4778
|
input: ["text"],
|
|
4442
4779
|
output: ["text"]
|
|
4443
4780
|
},
|
|
4444
4781
|
pricing: {
|
|
4445
|
-
inputPerM: 0,
|
|
4446
|
-
outputPerM: 0,
|
|
4782
|
+
inputPerM: 0.25,
|
|
4783
|
+
outputPerM: 0.75,
|
|
4784
|
+
cacheReadPerM: 0.025,
|
|
4447
4785
|
currency: "USD",
|
|
4448
4786
|
unit: "per_million_tokens"
|
|
4449
4787
|
}
|
|
4450
4788
|
},
|
|
4451
4789
|
{
|
|
4452
|
-
name: "liquid/lfm-2.5-1.2b-
|
|
4453
|
-
displayName: "LFM2.5-1.2B-
|
|
4790
|
+
name: "liquid/lfm-2.5-1.2b-instruct:free",
|
|
4791
|
+
displayName: "LFM2.5-1.2B-Instruct (free)",
|
|
4454
4792
|
maxInputTokens: 131072,
|
|
4455
4793
|
supportedFileTypes: [],
|
|
4456
|
-
reasoning:
|
|
4794
|
+
reasoning: false,
|
|
4457
4795
|
supportsTemperature: true,
|
|
4458
4796
|
supportsToolCall: false,
|
|
4459
4797
|
releaseDate: "2026-01-20",
|
|
@@ -4469,14 +4807,14 @@ const MODELS_BY_PROVIDER = {
|
|
|
4469
4807
|
}
|
|
4470
4808
|
},
|
|
4471
4809
|
{
|
|
4472
|
-
name: "
|
|
4473
|
-
displayName: "
|
|
4810
|
+
name: "liquid/lfm-2.5-1.2b-thinking:free",
|
|
4811
|
+
displayName: "LFM2.5-1.2B-Thinking (free)",
|
|
4474
4812
|
maxInputTokens: 131072,
|
|
4475
4813
|
supportedFileTypes: [],
|
|
4476
|
-
reasoning:
|
|
4814
|
+
reasoning: true,
|
|
4477
4815
|
supportsTemperature: true,
|
|
4478
4816
|
supportsToolCall: false,
|
|
4479
|
-
releaseDate: "
|
|
4817
|
+
releaseDate: "2026-01-20",
|
|
4480
4818
|
modalities: {
|
|
4481
4819
|
input: ["text"],
|
|
4482
4820
|
output: ["text"]
|
|
@@ -4549,81 +4887,41 @@ const MODELS_BY_PROVIDER = {
|
|
|
4549
4887
|
}
|
|
4550
4888
|
},
|
|
4551
4889
|
{
|
|
4552
|
-
name: "
|
|
4553
|
-
displayName: "
|
|
4554
|
-
maxInputTokens:
|
|
4890
|
+
name: "minimax/minimax-01",
|
|
4891
|
+
displayName: "MiniMax-01",
|
|
4892
|
+
maxInputTokens: 1e6,
|
|
4555
4893
|
supportedFileTypes: ["image"],
|
|
4556
|
-
reasoning:
|
|
4894
|
+
reasoning: true,
|
|
4557
4895
|
supportsTemperature: true,
|
|
4558
4896
|
supportsToolCall: true,
|
|
4559
|
-
releaseDate: "2025-
|
|
4897
|
+
releaseDate: "2025-01-15",
|
|
4560
4898
|
modalities: {
|
|
4561
4899
|
input: ["text", "image"],
|
|
4562
4900
|
output: ["text"]
|
|
4563
4901
|
},
|
|
4564
4902
|
pricing: {
|
|
4565
|
-
inputPerM: 0,
|
|
4566
|
-
outputPerM:
|
|
4903
|
+
inputPerM: 0.2,
|
|
4904
|
+
outputPerM: 1.1,
|
|
4567
4905
|
currency: "USD",
|
|
4568
4906
|
unit: "per_million_tokens"
|
|
4569
4907
|
}
|
|
4570
4908
|
},
|
|
4571
4909
|
{
|
|
4572
|
-
name: "
|
|
4573
|
-
displayName: "
|
|
4574
|
-
maxInputTokens:
|
|
4910
|
+
name: "minimax/minimax-m1",
|
|
4911
|
+
displayName: "MiniMax M1",
|
|
4912
|
+
maxInputTokens: 1e6,
|
|
4575
4913
|
supportedFileTypes: [],
|
|
4576
4914
|
reasoning: true,
|
|
4577
4915
|
supportsTemperature: true,
|
|
4578
4916
|
supportsToolCall: true,
|
|
4579
|
-
releaseDate: "2025-
|
|
4917
|
+
releaseDate: "2025-06-17",
|
|
4580
4918
|
modalities: {
|
|
4581
4919
|
input: ["text"],
|
|
4582
4920
|
output: ["text"]
|
|
4583
4921
|
},
|
|
4584
4922
|
pricing: {
|
|
4585
|
-
inputPerM: 0,
|
|
4586
|
-
outputPerM:
|
|
4587
|
-
currency: "USD",
|
|
4588
|
-
unit: "per_million_tokens"
|
|
4589
|
-
}
|
|
4590
|
-
},
|
|
4591
|
-
{
|
|
4592
|
-
name: "minimax/minimax-01",
|
|
4593
|
-
displayName: "MiniMax-01",
|
|
4594
|
-
maxInputTokens: 1e6,
|
|
4595
|
-
supportedFileTypes: ["image"],
|
|
4596
|
-
reasoning: true,
|
|
4597
|
-
supportsTemperature: true,
|
|
4598
|
-
supportsToolCall: true,
|
|
4599
|
-
releaseDate: "2025-01-15",
|
|
4600
|
-
modalities: {
|
|
4601
|
-
input: ["text", "image"],
|
|
4602
|
-
output: ["text"]
|
|
4603
|
-
},
|
|
4604
|
-
pricing: {
|
|
4605
|
-
inputPerM: 0.2,
|
|
4606
|
-
outputPerM: 1.1,
|
|
4607
|
-
currency: "USD",
|
|
4608
|
-
unit: "per_million_tokens"
|
|
4609
|
-
}
|
|
4610
|
-
},
|
|
4611
|
-
{
|
|
4612
|
-
name: "minimax/minimax-m1",
|
|
4613
|
-
displayName: "MiniMax M1",
|
|
4614
|
-
maxInputTokens: 1e6,
|
|
4615
|
-
supportedFileTypes: [],
|
|
4616
|
-
reasoning: true,
|
|
4617
|
-
supportsTemperature: true,
|
|
4618
|
-
supportsToolCall: true,
|
|
4619
|
-
releaseDate: "2025-06-17",
|
|
4620
|
-
modalities: {
|
|
4621
|
-
input: ["text"],
|
|
4622
|
-
output: ["text"]
|
|
4623
|
-
},
|
|
4624
|
-
pricing: {
|
|
4625
|
-
inputPerM: 0.4,
|
|
4626
|
-
outputPerM: 2.2,
|
|
4923
|
+
inputPerM: 0.4,
|
|
4924
|
+
outputPerM: 2.2,
|
|
4627
4925
|
currency: "USD",
|
|
4628
4926
|
unit: "per_million_tokens"
|
|
4629
4927
|
}
|
|
@@ -4704,48 +5002,50 @@ const MODELS_BY_PROVIDER = {
|
|
|
4704
5002
|
}
|
|
4705
5003
|
},
|
|
4706
5004
|
{
|
|
4707
|
-
name: "
|
|
4708
|
-
displayName: "
|
|
4709
|
-
maxInputTokens:
|
|
5005
|
+
name: "minimax/minimax-m2.7",
|
|
5006
|
+
displayName: "MiniMax M2.7",
|
|
5007
|
+
maxInputTokens: 204800,
|
|
4710
5008
|
supportedFileTypes: [],
|
|
4711
|
-
reasoning:
|
|
5009
|
+
reasoning: true,
|
|
4712
5010
|
supportsTemperature: true,
|
|
4713
5011
|
supportsToolCall: true,
|
|
4714
|
-
releaseDate: "
|
|
5012
|
+
releaseDate: "2026-03-18",
|
|
4715
5013
|
modalities: {
|
|
4716
5014
|
input: ["text"],
|
|
4717
5015
|
output: ["text"]
|
|
4718
5016
|
},
|
|
4719
5017
|
pricing: {
|
|
4720
5018
|
inputPerM: 0.3,
|
|
4721
|
-
outputPerM:
|
|
5019
|
+
outputPerM: 1.2,
|
|
5020
|
+
cacheReadPerM: 0.06,
|
|
5021
|
+
cacheWritePerM: 0.375,
|
|
4722
5022
|
currency: "USD",
|
|
4723
5023
|
unit: "per_million_tokens"
|
|
4724
5024
|
}
|
|
4725
5025
|
},
|
|
4726
5026
|
{
|
|
4727
|
-
name: "mistralai/
|
|
4728
|
-
displayName: "
|
|
4729
|
-
maxInputTokens:
|
|
5027
|
+
name: "mistralai/codestral-2508",
|
|
5028
|
+
displayName: "Codestral 2508",
|
|
5029
|
+
maxInputTokens: 256e3,
|
|
4730
5030
|
supportedFileTypes: [],
|
|
4731
5031
|
reasoning: false,
|
|
4732
5032
|
supportsTemperature: true,
|
|
4733
5033
|
supportsToolCall: true,
|
|
4734
|
-
releaseDate: "2025-
|
|
5034
|
+
releaseDate: "2025-08-01",
|
|
4735
5035
|
modalities: {
|
|
4736
5036
|
input: ["text"],
|
|
4737
5037
|
output: ["text"]
|
|
4738
5038
|
},
|
|
4739
5039
|
pricing: {
|
|
4740
|
-
inputPerM: 0.
|
|
4741
|
-
outputPerM: 0.
|
|
5040
|
+
inputPerM: 0.3,
|
|
5041
|
+
outputPerM: 0.9,
|
|
4742
5042
|
currency: "USD",
|
|
4743
5043
|
unit: "per_million_tokens"
|
|
4744
5044
|
}
|
|
4745
5045
|
},
|
|
4746
5046
|
{
|
|
4747
|
-
name: "mistralai/devstral-2512
|
|
4748
|
-
displayName: "Devstral 2 2512
|
|
5047
|
+
name: "mistralai/devstral-2512",
|
|
5048
|
+
displayName: "Devstral 2 2512",
|
|
4749
5049
|
maxInputTokens: 262144,
|
|
4750
5050
|
supportedFileTypes: [],
|
|
4751
5051
|
reasoning: false,
|
|
@@ -4757,8 +5057,8 @@ const MODELS_BY_PROVIDER = {
|
|
|
4757
5057
|
output: ["text"]
|
|
4758
5058
|
},
|
|
4759
5059
|
pricing: {
|
|
4760
|
-
inputPerM: 0,
|
|
4761
|
-
outputPerM: 0,
|
|
5060
|
+
inputPerM: 0.15,
|
|
5061
|
+
outputPerM: 0.6,
|
|
4762
5062
|
currency: "USD",
|
|
4763
5063
|
unit: "per_million_tokens"
|
|
4764
5064
|
}
|
|
@@ -4803,26 +5103,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
4803
5103
|
unit: "per_million_tokens"
|
|
4804
5104
|
}
|
|
4805
5105
|
},
|
|
4806
|
-
{
|
|
4807
|
-
name: "mistralai/devstral-small-2505:free",
|
|
4808
|
-
displayName: "Devstral Small 2505 (free)",
|
|
4809
|
-
maxInputTokens: 32768,
|
|
4810
|
-
supportedFileTypes: [],
|
|
4811
|
-
reasoning: false,
|
|
4812
|
-
supportsTemperature: true,
|
|
4813
|
-
supportsToolCall: true,
|
|
4814
|
-
releaseDate: "2025-05-21",
|
|
4815
|
-
modalities: {
|
|
4816
|
-
input: ["text"],
|
|
4817
|
-
output: ["text"]
|
|
4818
|
-
},
|
|
4819
|
-
pricing: {
|
|
4820
|
-
inputPerM: 0,
|
|
4821
|
-
outputPerM: 0,
|
|
4822
|
-
currency: "USD",
|
|
4823
|
-
unit: "per_million_tokens"
|
|
4824
|
-
}
|
|
4825
|
-
},
|
|
4826
5106
|
{
|
|
4827
5107
|
name: "mistralai/devstral-small-2507",
|
|
4828
5108
|
displayName: "Devstral Small 1.1",
|
|
@@ -4843,26 +5123,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
4843
5123
|
unit: "per_million_tokens"
|
|
4844
5124
|
}
|
|
4845
5125
|
},
|
|
4846
|
-
{
|
|
4847
|
-
name: "mistralai/mistral-7b-instruct:free",
|
|
4848
|
-
displayName: "Mistral 7B Instruct (free)",
|
|
4849
|
-
maxInputTokens: 32768,
|
|
4850
|
-
supportedFileTypes: [],
|
|
4851
|
-
reasoning: false,
|
|
4852
|
-
supportsTemperature: true,
|
|
4853
|
-
supportsToolCall: true,
|
|
4854
|
-
releaseDate: "2024-05-27",
|
|
4855
|
-
modalities: {
|
|
4856
|
-
input: ["text"],
|
|
4857
|
-
output: ["text"]
|
|
4858
|
-
},
|
|
4859
|
-
pricing: {
|
|
4860
|
-
inputPerM: 0,
|
|
4861
|
-
outputPerM: 0,
|
|
4862
|
-
currency: "USD",
|
|
4863
|
-
unit: "per_million_tokens"
|
|
4864
|
-
}
|
|
4865
|
-
},
|
|
4866
5126
|
{
|
|
4867
5127
|
name: "mistralai/mistral-medium-3",
|
|
4868
5128
|
displayName: "Mistral Medium 3",
|
|
@@ -4904,21 +5164,21 @@ const MODELS_BY_PROVIDER = {
|
|
|
4904
5164
|
}
|
|
4905
5165
|
},
|
|
4906
5166
|
{
|
|
4907
|
-
name: "mistralai/mistral-
|
|
4908
|
-
displayName: "Mistral
|
|
4909
|
-
maxInputTokens:
|
|
4910
|
-
supportedFileTypes: [],
|
|
4911
|
-
reasoning:
|
|
5167
|
+
name: "mistralai/mistral-small-2603",
|
|
5168
|
+
displayName: "Mistral Small 4",
|
|
5169
|
+
maxInputTokens: 262144,
|
|
5170
|
+
supportedFileTypes: ["image"],
|
|
5171
|
+
reasoning: true,
|
|
4912
5172
|
supportsTemperature: true,
|
|
4913
5173
|
supportsToolCall: true,
|
|
4914
|
-
releaseDate: "
|
|
5174
|
+
releaseDate: "2026-03-16",
|
|
4915
5175
|
modalities: {
|
|
4916
|
-
input: ["text"],
|
|
5176
|
+
input: ["text", "image"],
|
|
4917
5177
|
output: ["text"]
|
|
4918
5178
|
},
|
|
4919
5179
|
pricing: {
|
|
4920
|
-
inputPerM: 0,
|
|
4921
|
-
outputPerM: 0,
|
|
5180
|
+
inputPerM: 0.15,
|
|
5181
|
+
outputPerM: 0.6,
|
|
4922
5182
|
currency: "USD",
|
|
4923
5183
|
unit: "per_million_tokens"
|
|
4924
5184
|
}
|
|
@@ -4963,46 +5223,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
4963
5223
|
unit: "per_million_tokens"
|
|
4964
5224
|
}
|
|
4965
5225
|
},
|
|
4966
|
-
{
|
|
4967
|
-
name: "mistralai/mistral-small-3.2-24b-instruct:free",
|
|
4968
|
-
displayName: "Mistral Small 3.2 24B (free)",
|
|
4969
|
-
maxInputTokens: 96e3,
|
|
4970
|
-
supportedFileTypes: ["image"],
|
|
4971
|
-
reasoning: false,
|
|
4972
|
-
supportsTemperature: true,
|
|
4973
|
-
supportsToolCall: true,
|
|
4974
|
-
releaseDate: "2025-06-20",
|
|
4975
|
-
modalities: {
|
|
4976
|
-
input: ["text", "image"],
|
|
4977
|
-
output: ["text"]
|
|
4978
|
-
},
|
|
4979
|
-
pricing: {
|
|
4980
|
-
inputPerM: 0,
|
|
4981
|
-
outputPerM: 0,
|
|
4982
|
-
currency: "USD",
|
|
4983
|
-
unit: "per_million_tokens"
|
|
4984
|
-
}
|
|
4985
|
-
},
|
|
4986
|
-
{
|
|
4987
|
-
name: "moonshotai/kimi-dev-72b:free",
|
|
4988
|
-
displayName: "Kimi Dev 72b (free)",
|
|
4989
|
-
maxInputTokens: 131072,
|
|
4990
|
-
supportedFileTypes: [],
|
|
4991
|
-
reasoning: false,
|
|
4992
|
-
supportsTemperature: true,
|
|
4993
|
-
supportsToolCall: true,
|
|
4994
|
-
releaseDate: "2025-06-16",
|
|
4995
|
-
modalities: {
|
|
4996
|
-
input: ["text"],
|
|
4997
|
-
output: ["text"]
|
|
4998
|
-
},
|
|
4999
|
-
pricing: {
|
|
5000
|
-
inputPerM: 0,
|
|
5001
|
-
outputPerM: 0,
|
|
5002
|
-
currency: "USD",
|
|
5003
|
-
unit: "per_million_tokens"
|
|
5004
|
-
}
|
|
5005
|
-
},
|
|
5006
5226
|
{
|
|
5007
5227
|
name: "moonshotai/kimi-k2",
|
|
5008
5228
|
displayName: "Kimi K2",
|
|
@@ -5112,7 +5332,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5112
5332
|
name: "moonshotai/kimi-k2.5",
|
|
5113
5333
|
displayName: "Kimi K2.5",
|
|
5114
5334
|
maxInputTokens: 262144,
|
|
5115
|
-
supportedFileTypes: ["image"],
|
|
5335
|
+
supportedFileTypes: ["image", "video"],
|
|
5116
5336
|
reasoning: true,
|
|
5117
5337
|
supportsTemperature: true,
|
|
5118
5338
|
supportsToolCall: true,
|
|
@@ -5133,26 +5353,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
5133
5353
|
unit: "per_million_tokens"
|
|
5134
5354
|
}
|
|
5135
5355
|
},
|
|
5136
|
-
{
|
|
5137
|
-
name: "nousresearch/deephermes-3-llama-3-8b-preview",
|
|
5138
|
-
displayName: "DeepHermes 3 Llama 3 8B Preview",
|
|
5139
|
-
maxInputTokens: 131072,
|
|
5140
|
-
supportedFileTypes: [],
|
|
5141
|
-
reasoning: true,
|
|
5142
|
-
supportsTemperature: true,
|
|
5143
|
-
supportsToolCall: true,
|
|
5144
|
-
releaseDate: "2025-02-28",
|
|
5145
|
-
modalities: {
|
|
5146
|
-
input: ["text"],
|
|
5147
|
-
output: ["text"]
|
|
5148
|
-
},
|
|
5149
|
-
pricing: {
|
|
5150
|
-
inputPerM: 0,
|
|
5151
|
-
outputPerM: 0,
|
|
5152
|
-
currency: "USD",
|
|
5153
|
-
unit: "per_million_tokens"
|
|
5154
|
-
}
|
|
5155
|
-
},
|
|
5156
5356
|
{
|
|
5157
5357
|
name: "nousresearch/hermes-3-llama-3.1-405b:free",
|
|
5158
5358
|
displayName: "Hermes 3 405B Instruct (free)",
|
|
@@ -5233,6 +5433,46 @@ const MODELS_BY_PROVIDER = {
|
|
|
5233
5433
|
unit: "per_million_tokens"
|
|
5234
5434
|
}
|
|
5235
5435
|
},
|
|
5436
|
+
{
|
|
5437
|
+
name: "nvidia/nemotron-3-super-120b-a12b",
|
|
5438
|
+
displayName: "Nemotron 3 Super",
|
|
5439
|
+
maxInputTokens: 262144,
|
|
5440
|
+
supportedFileTypes: [],
|
|
5441
|
+
reasoning: true,
|
|
5442
|
+
supportsTemperature: true,
|
|
5443
|
+
supportsToolCall: true,
|
|
5444
|
+
releaseDate: "2026-03-11",
|
|
5445
|
+
modalities: {
|
|
5446
|
+
input: ["text"],
|
|
5447
|
+
output: ["text"]
|
|
5448
|
+
},
|
|
5449
|
+
pricing: {
|
|
5450
|
+
inputPerM: 0.1,
|
|
5451
|
+
outputPerM: 0.5,
|
|
5452
|
+
currency: "USD",
|
|
5453
|
+
unit: "per_million_tokens"
|
|
5454
|
+
}
|
|
5455
|
+
},
|
|
5456
|
+
{
|
|
5457
|
+
name: "nvidia/nemotron-3-super-120b-a12b:free",
|
|
5458
|
+
displayName: "Nemotron 3 Super (free)",
|
|
5459
|
+
maxInputTokens: 262144,
|
|
5460
|
+
supportedFileTypes: [],
|
|
5461
|
+
reasoning: true,
|
|
5462
|
+
supportsTemperature: true,
|
|
5463
|
+
supportsToolCall: true,
|
|
5464
|
+
releaseDate: "2026-03-11",
|
|
5465
|
+
modalities: {
|
|
5466
|
+
input: ["text"],
|
|
5467
|
+
output: ["text"]
|
|
5468
|
+
},
|
|
5469
|
+
pricing: {
|
|
5470
|
+
inputPerM: 0,
|
|
5471
|
+
outputPerM: 0,
|
|
5472
|
+
currency: "USD",
|
|
5473
|
+
unit: "per_million_tokens"
|
|
5474
|
+
}
|
|
5475
|
+
},
|
|
5236
5476
|
{
|
|
5237
5477
|
name: "nvidia/nemotron-nano-12b-v2-vl:free",
|
|
5238
5478
|
displayName: "Nemotron Nano 12B 2 VL (free)",
|
|
@@ -5297,7 +5537,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5297
5537
|
name: "openai/gpt-4.1",
|
|
5298
5538
|
displayName: "GPT-4.1",
|
|
5299
5539
|
maxInputTokens: 1047576,
|
|
5300
|
-
supportedFileTypes: ["image"],
|
|
5540
|
+
supportedFileTypes: ["image", "document"],
|
|
5301
5541
|
reasoning: false,
|
|
5302
5542
|
supportsTemperature: true,
|
|
5303
5543
|
supportsToolCall: true,
|
|
@@ -5318,7 +5558,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5318
5558
|
name: "openai/gpt-4.1-mini",
|
|
5319
5559
|
displayName: "GPT-4.1 Mini",
|
|
5320
5560
|
maxInputTokens: 1047576,
|
|
5321
|
-
supportedFileTypes: ["image"],
|
|
5561
|
+
supportedFileTypes: ["image", "document"],
|
|
5322
5562
|
reasoning: false,
|
|
5323
5563
|
supportsTemperature: true,
|
|
5324
5564
|
supportsToolCall: true,
|
|
@@ -5339,7 +5579,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5339
5579
|
name: "openai/gpt-4o-mini",
|
|
5340
5580
|
displayName: "GPT-4o-mini",
|
|
5341
5581
|
maxInputTokens: 128e3,
|
|
5342
|
-
supportedFileTypes: ["image"],
|
|
5582
|
+
supportedFileTypes: ["image", "document"],
|
|
5343
5583
|
reasoning: false,
|
|
5344
5584
|
supportsTemperature: true,
|
|
5345
5585
|
supportsToolCall: true,
|
|
@@ -5360,7 +5600,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5360
5600
|
name: "openai/gpt-5",
|
|
5361
5601
|
displayName: "GPT-5",
|
|
5362
5602
|
maxInputTokens: 4e5,
|
|
5363
|
-
supportedFileTypes: ["image"],
|
|
5603
|
+
supportedFileTypes: ["image", "document"],
|
|
5364
5604
|
reasoning: true,
|
|
5365
5605
|
supportsTemperature: true,
|
|
5366
5606
|
supportsToolCall: true,
|
|
@@ -5380,7 +5620,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5380
5620
|
name: "openai/gpt-5-chat",
|
|
5381
5621
|
displayName: "GPT-5 Chat (latest)",
|
|
5382
5622
|
maxInputTokens: 4e5,
|
|
5383
|
-
supportedFileTypes: ["image"],
|
|
5623
|
+
supportedFileTypes: ["image", "document"],
|
|
5384
5624
|
reasoning: true,
|
|
5385
5625
|
supportsTemperature: true,
|
|
5386
5626
|
supportsToolCall: false,
|
|
@@ -5400,7 +5640,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5400
5640
|
name: "openai/gpt-5-codex",
|
|
5401
5641
|
displayName: "GPT-5 Codex",
|
|
5402
5642
|
maxInputTokens: 4e5,
|
|
5403
|
-
supportedFileTypes: ["image"],
|
|
5643
|
+
supportedFileTypes: ["image", "document"],
|
|
5404
5644
|
reasoning: true,
|
|
5405
5645
|
supportsTemperature: true,
|
|
5406
5646
|
supportsToolCall: true,
|
|
@@ -5421,7 +5661,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5421
5661
|
name: "openai/gpt-5-image",
|
|
5422
5662
|
displayName: "GPT-5 Image",
|
|
5423
5663
|
maxInputTokens: 4e5,
|
|
5424
|
-
supportedFileTypes: ["pdf", "image"],
|
|
5664
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
5425
5665
|
reasoning: true,
|
|
5426
5666
|
supportsTemperature: true,
|
|
5427
5667
|
supportsToolCall: true,
|
|
@@ -5442,7 +5682,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5442
5682
|
name: "openai/gpt-5-mini",
|
|
5443
5683
|
displayName: "GPT-5 Mini",
|
|
5444
5684
|
maxInputTokens: 4e5,
|
|
5445
|
-
supportedFileTypes: ["image"],
|
|
5685
|
+
supportedFileTypes: ["image", "document"],
|
|
5446
5686
|
reasoning: true,
|
|
5447
5687
|
supportsTemperature: true,
|
|
5448
5688
|
supportsToolCall: true,
|
|
@@ -5462,7 +5702,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5462
5702
|
name: "openai/gpt-5-nano",
|
|
5463
5703
|
displayName: "GPT-5 Nano",
|
|
5464
5704
|
maxInputTokens: 4e5,
|
|
5465
|
-
supportedFileTypes: ["image"],
|
|
5705
|
+
supportedFileTypes: ["image", "document"],
|
|
5466
5706
|
reasoning: true,
|
|
5467
5707
|
supportsTemperature: true,
|
|
5468
5708
|
supportsToolCall: true,
|
|
@@ -5482,7 +5722,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5482
5722
|
name: "openai/gpt-5-pro",
|
|
5483
5723
|
displayName: "GPT-5 Pro",
|
|
5484
5724
|
maxInputTokens: 4e5,
|
|
5485
|
-
supportedFileTypes: ["image"],
|
|
5725
|
+
supportedFileTypes: ["image", "document"],
|
|
5486
5726
|
reasoning: true,
|
|
5487
5727
|
supportsTemperature: false,
|
|
5488
5728
|
supportsToolCall: true,
|
|
@@ -5502,7 +5742,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5502
5742
|
name: "openai/gpt-5.1",
|
|
5503
5743
|
displayName: "GPT-5.1",
|
|
5504
5744
|
maxInputTokens: 4e5,
|
|
5505
|
-
supportedFileTypes: ["image"],
|
|
5745
|
+
supportedFileTypes: ["image", "document"],
|
|
5506
5746
|
reasoning: true,
|
|
5507
5747
|
supportsTemperature: true,
|
|
5508
5748
|
supportsToolCall: true,
|
|
@@ -5523,7 +5763,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5523
5763
|
name: "openai/gpt-5.1-chat",
|
|
5524
5764
|
displayName: "GPT-5.1 Chat",
|
|
5525
5765
|
maxInputTokens: 128e3,
|
|
5526
|
-
supportedFileTypes: ["image"],
|
|
5766
|
+
supportedFileTypes: ["image", "document"],
|
|
5527
5767
|
reasoning: true,
|
|
5528
5768
|
supportsTemperature: true,
|
|
5529
5769
|
supportsToolCall: true,
|
|
@@ -5544,7 +5784,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5544
5784
|
name: "openai/gpt-5.1-codex",
|
|
5545
5785
|
displayName: "GPT-5.1-Codex",
|
|
5546
5786
|
maxInputTokens: 4e5,
|
|
5547
|
-
supportedFileTypes: ["image"],
|
|
5787
|
+
supportedFileTypes: ["image", "document"],
|
|
5548
5788
|
reasoning: true,
|
|
5549
5789
|
supportsTemperature: true,
|
|
5550
5790
|
supportsToolCall: true,
|
|
@@ -5565,7 +5805,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5565
5805
|
name: "openai/gpt-5.1-codex-max",
|
|
5566
5806
|
displayName: "GPT-5.1-Codex-Max",
|
|
5567
5807
|
maxInputTokens: 4e5,
|
|
5568
|
-
supportedFileTypes: ["image"],
|
|
5808
|
+
supportedFileTypes: ["image", "document"],
|
|
5569
5809
|
reasoning: true,
|
|
5570
5810
|
supportsTemperature: true,
|
|
5571
5811
|
supportsToolCall: true,
|
|
@@ -5586,7 +5826,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5586
5826
|
name: "openai/gpt-5.1-codex-mini",
|
|
5587
5827
|
displayName: "GPT-5.1-Codex-Mini",
|
|
5588
5828
|
maxInputTokens: 4e5,
|
|
5589
|
-
supportedFileTypes: ["image"],
|
|
5829
|
+
supportedFileTypes: ["image", "document"],
|
|
5590
5830
|
reasoning: true,
|
|
5591
5831
|
supportsTemperature: true,
|
|
5592
5832
|
supportsToolCall: true,
|
|
@@ -5607,7 +5847,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5607
5847
|
name: "openai/gpt-5.2",
|
|
5608
5848
|
displayName: "GPT-5.2",
|
|
5609
5849
|
maxInputTokens: 4e5,
|
|
5610
|
-
supportedFileTypes: ["image"],
|
|
5850
|
+
supportedFileTypes: ["image", "document"],
|
|
5611
5851
|
reasoning: true,
|
|
5612
5852
|
supportsTemperature: false,
|
|
5613
5853
|
supportsToolCall: true,
|
|
@@ -5628,7 +5868,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5628
5868
|
name: "openai/gpt-5.2-chat",
|
|
5629
5869
|
displayName: "GPT-5.2 Chat",
|
|
5630
5870
|
maxInputTokens: 128e3,
|
|
5631
|
-
supportedFileTypes: ["image"],
|
|
5871
|
+
supportedFileTypes: ["image", "document"],
|
|
5632
5872
|
reasoning: true,
|
|
5633
5873
|
supportsTemperature: false,
|
|
5634
5874
|
supportsToolCall: true,
|
|
@@ -5649,7 +5889,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5649
5889
|
name: "openai/gpt-5.2-codex",
|
|
5650
5890
|
displayName: "GPT-5.2-Codex",
|
|
5651
5891
|
maxInputTokens: 4e5,
|
|
5652
|
-
supportedFileTypes: ["image"],
|
|
5892
|
+
supportedFileTypes: ["image", "document"],
|
|
5653
5893
|
reasoning: true,
|
|
5654
5894
|
supportsTemperature: true,
|
|
5655
5895
|
supportsToolCall: true,
|
|
@@ -5670,7 +5910,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
5670
5910
|
name: "openai/gpt-5.2-pro",
|
|
5671
5911
|
displayName: "GPT-5.2 Pro",
|
|
5672
5912
|
maxInputTokens: 4e5,
|
|
5673
|
-
supportedFileTypes: ["image"],
|
|
5913
|
+
supportedFileTypes: ["image", "document"],
|
|
5674
5914
|
reasoning: true,
|
|
5675
5915
|
supportsTemperature: false,
|
|
5676
5916
|
supportsToolCall: true,
|
|
@@ -5687,197 +5927,165 @@ const MODELS_BY_PROVIDER = {
|
|
|
5687
5927
|
}
|
|
5688
5928
|
},
|
|
5689
5929
|
{
|
|
5690
|
-
name: "openai/gpt-
|
|
5691
|
-
displayName: "GPT
|
|
5692
|
-
maxInputTokens:
|
|
5693
|
-
supportedFileTypes: [],
|
|
5930
|
+
name: "openai/gpt-5.3-codex",
|
|
5931
|
+
displayName: "GPT-5.3-Codex",
|
|
5932
|
+
maxInputTokens: 4e5,
|
|
5933
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
5694
5934
|
reasoning: true,
|
|
5695
|
-
supportsTemperature:
|
|
5935
|
+
supportsTemperature: false,
|
|
5696
5936
|
supportsToolCall: true,
|
|
5697
|
-
releaseDate: "
|
|
5937
|
+
releaseDate: "2026-02-24",
|
|
5698
5938
|
modalities: {
|
|
5699
|
-
input: ["text"],
|
|
5939
|
+
input: ["text", "image", "pdf"],
|
|
5700
5940
|
output: ["text"]
|
|
5701
5941
|
},
|
|
5702
5942
|
pricing: {
|
|
5703
|
-
inputPerM:
|
|
5704
|
-
outputPerM:
|
|
5943
|
+
inputPerM: 1.75,
|
|
5944
|
+
outputPerM: 14,
|
|
5945
|
+
cacheReadPerM: 0.175,
|
|
5705
5946
|
currency: "USD",
|
|
5706
5947
|
unit: "per_million_tokens"
|
|
5707
5948
|
}
|
|
5708
5949
|
},
|
|
5709
5950
|
{
|
|
5710
|
-
name: "openai/gpt-
|
|
5711
|
-
displayName: "GPT
|
|
5712
|
-
maxInputTokens:
|
|
5713
|
-
supportedFileTypes: [],
|
|
5951
|
+
name: "openai/gpt-5.4",
|
|
5952
|
+
displayName: "GPT-5.4",
|
|
5953
|
+
maxInputTokens: 922e3,
|
|
5954
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
5714
5955
|
reasoning: true,
|
|
5715
|
-
supportsTemperature:
|
|
5956
|
+
supportsTemperature: false,
|
|
5716
5957
|
supportsToolCall: true,
|
|
5717
|
-
releaseDate: "
|
|
5958
|
+
releaseDate: "2026-03-05",
|
|
5718
5959
|
modalities: {
|
|
5719
|
-
input: ["text"],
|
|
5960
|
+
input: ["text", "image", "pdf"],
|
|
5720
5961
|
output: ["text"]
|
|
5721
5962
|
},
|
|
5722
5963
|
pricing: {
|
|
5723
|
-
inputPerM:
|
|
5724
|
-
outputPerM:
|
|
5964
|
+
inputPerM: 2.5,
|
|
5965
|
+
outputPerM: 15,
|
|
5966
|
+
cacheReadPerM: 0.25,
|
|
5967
|
+
contextOver200kPerM: {
|
|
5968
|
+
inputPerM: 5,
|
|
5969
|
+
outputPerM: 22.5
|
|
5970
|
+
},
|
|
5725
5971
|
currency: "USD",
|
|
5726
5972
|
unit: "per_million_tokens"
|
|
5727
5973
|
}
|
|
5728
5974
|
},
|
|
5729
5975
|
{
|
|
5730
|
-
name: "openai/gpt-
|
|
5731
|
-
displayName: "
|
|
5732
|
-
maxInputTokens:
|
|
5733
|
-
supportedFileTypes: [],
|
|
5976
|
+
name: "openai/gpt-5.4-mini",
|
|
5977
|
+
displayName: "GPT-5.4 Mini",
|
|
5978
|
+
maxInputTokens: 4e5,
|
|
5979
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
5734
5980
|
reasoning: true,
|
|
5735
5981
|
supportsTemperature: true,
|
|
5736
5982
|
supportsToolCall: true,
|
|
5737
|
-
releaseDate: "
|
|
5983
|
+
releaseDate: "2026-03-17",
|
|
5738
5984
|
modalities: {
|
|
5739
|
-
input: ["text"],
|
|
5985
|
+
input: ["text", "image", "pdf"],
|
|
5740
5986
|
output: ["text"]
|
|
5741
5987
|
},
|
|
5742
5988
|
pricing: {
|
|
5743
|
-
inputPerM:
|
|
5744
|
-
outputPerM:
|
|
5989
|
+
inputPerM: 75e-8,
|
|
5990
|
+
outputPerM: 45e-7,
|
|
5991
|
+
cacheReadPerM: 75e-9,
|
|
5745
5992
|
currency: "USD",
|
|
5746
5993
|
unit: "per_million_tokens"
|
|
5747
5994
|
}
|
|
5748
5995
|
},
|
|
5749
5996
|
{
|
|
5750
|
-
name: "openai/gpt-
|
|
5751
|
-
displayName: "GPT
|
|
5752
|
-
maxInputTokens:
|
|
5753
|
-
supportedFileTypes: [],
|
|
5754
|
-
reasoning:
|
|
5997
|
+
name: "openai/gpt-5.4-nano",
|
|
5998
|
+
displayName: "GPT-5.4 Nano",
|
|
5999
|
+
maxInputTokens: 4e5,
|
|
6000
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
6001
|
+
reasoning: false,
|
|
5755
6002
|
supportsTemperature: true,
|
|
5756
6003
|
supportsToolCall: true,
|
|
5757
|
-
releaseDate: "
|
|
6004
|
+
releaseDate: "2026-03-17",
|
|
5758
6005
|
modalities: {
|
|
5759
|
-
input: ["text"],
|
|
6006
|
+
input: ["text", "image", "pdf"],
|
|
5760
6007
|
output: ["text"]
|
|
5761
6008
|
},
|
|
5762
6009
|
pricing: {
|
|
5763
|
-
inputPerM:
|
|
5764
|
-
outputPerM:
|
|
6010
|
+
inputPerM: 2e-7,
|
|
6011
|
+
outputPerM: 125e-8,
|
|
6012
|
+
cacheReadPerM: 2e-8,
|
|
5765
6013
|
currency: "USD",
|
|
5766
6014
|
unit: "per_million_tokens"
|
|
5767
6015
|
}
|
|
5768
6016
|
},
|
|
5769
6017
|
{
|
|
5770
|
-
name: "openai/gpt-
|
|
5771
|
-
displayName: "
|
|
5772
|
-
maxInputTokens:
|
|
5773
|
-
supportedFileTypes: [],
|
|
6018
|
+
name: "openai/gpt-5.4-pro",
|
|
6019
|
+
displayName: "GPT-5.4 Pro",
|
|
6020
|
+
maxInputTokens: 922e3,
|
|
6021
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
5774
6022
|
reasoning: true,
|
|
5775
|
-
supportsTemperature:
|
|
6023
|
+
supportsTemperature: false,
|
|
5776
6024
|
supportsToolCall: true,
|
|
5777
|
-
releaseDate: "
|
|
6025
|
+
releaseDate: "2026-03-05",
|
|
5778
6026
|
modalities: {
|
|
5779
|
-
input: ["text"],
|
|
6027
|
+
input: ["text", "image", "pdf"],
|
|
5780
6028
|
output: ["text"]
|
|
5781
6029
|
},
|
|
5782
6030
|
pricing: {
|
|
5783
|
-
inputPerM:
|
|
5784
|
-
outputPerM:
|
|
6031
|
+
inputPerM: 30,
|
|
6032
|
+
outputPerM: 180,
|
|
6033
|
+
cacheReadPerM: 30,
|
|
5785
6034
|
currency: "USD",
|
|
5786
6035
|
unit: "per_million_tokens"
|
|
5787
6036
|
}
|
|
5788
6037
|
},
|
|
5789
6038
|
{
|
|
5790
|
-
name: "openai/gpt-oss-
|
|
5791
|
-
displayName: "GPT OSS
|
|
6039
|
+
name: "openai/gpt-oss-120b",
|
|
6040
|
+
displayName: "GPT OSS 120B",
|
|
5792
6041
|
maxInputTokens: 131072,
|
|
5793
6042
|
supportedFileTypes: [],
|
|
5794
6043
|
reasoning: true,
|
|
5795
6044
|
supportsTemperature: true,
|
|
5796
6045
|
supportsToolCall: true,
|
|
5797
|
-
releaseDate: "2025-
|
|
6046
|
+
releaseDate: "2025-08-05",
|
|
5798
6047
|
modalities: {
|
|
5799
6048
|
input: ["text"],
|
|
5800
6049
|
output: ["text"]
|
|
5801
6050
|
},
|
|
5802
6051
|
pricing: {
|
|
5803
|
-
inputPerM: 0.
|
|
5804
|
-
outputPerM: 0.
|
|
5805
|
-
currency: "USD",
|
|
5806
|
-
unit: "per_million_tokens"
|
|
5807
|
-
}
|
|
5808
|
-
},
|
|
5809
|
-
{
|
|
5810
|
-
name: "openai/o4-mini",
|
|
5811
|
-
displayName: "o4 Mini",
|
|
5812
|
-
maxInputTokens: 2e5,
|
|
5813
|
-
supportedFileTypes: ["image"],
|
|
5814
|
-
reasoning: true,
|
|
5815
|
-
supportsTemperature: true,
|
|
5816
|
-
supportsToolCall: true,
|
|
5817
|
-
releaseDate: "2025-04-16",
|
|
5818
|
-
modalities: {
|
|
5819
|
-
input: ["text", "image"],
|
|
5820
|
-
output: ["text"]
|
|
5821
|
-
},
|
|
5822
|
-
pricing: {
|
|
5823
|
-
inputPerM: 1.1,
|
|
5824
|
-
outputPerM: 4.4,
|
|
5825
|
-
cacheReadPerM: 0.28,
|
|
6052
|
+
inputPerM: 0.072,
|
|
6053
|
+
outputPerM: 0.28,
|
|
5826
6054
|
currency: "USD",
|
|
5827
6055
|
unit: "per_million_tokens"
|
|
5828
6056
|
}
|
|
5829
6057
|
},
|
|
5830
6058
|
{
|
|
5831
|
-
name: "
|
|
5832
|
-
displayName: "
|
|
5833
|
-
maxInputTokens:
|
|
6059
|
+
name: "openai/gpt-oss-120b:exacto",
|
|
6060
|
+
displayName: "GPT OSS 120B (exacto)",
|
|
6061
|
+
maxInputTokens: 131072,
|
|
5834
6062
|
supportedFileTypes: [],
|
|
5835
6063
|
reasoning: true,
|
|
5836
6064
|
supportsTemperature: true,
|
|
5837
6065
|
supportsToolCall: true,
|
|
5838
|
-
releaseDate: "
|
|
6066
|
+
releaseDate: "2025-08-05",
|
|
5839
6067
|
modalities: {
|
|
5840
6068
|
input: ["text"],
|
|
5841
6069
|
output: ["text"]
|
|
5842
6070
|
},
|
|
5843
6071
|
pricing: {
|
|
5844
|
-
inputPerM: 0,
|
|
5845
|
-
outputPerM: 0,
|
|
5846
|
-
currency: "USD",
|
|
5847
|
-
unit: "per_million_tokens"
|
|
5848
|
-
}
|
|
5849
|
-
},
|
|
5850
|
-
{
|
|
5851
|
-
name: "openrouter/sherlock-dash-alpha",
|
|
5852
|
-
displayName: "Sherlock Dash Alpha",
|
|
5853
|
-
maxInputTokens: 184e4,
|
|
5854
|
-
supportedFileTypes: ["image"],
|
|
5855
|
-
reasoning: false,
|
|
5856
|
-
supportsTemperature: true,
|
|
5857
|
-
supportsToolCall: true,
|
|
5858
|
-
releaseDate: "2025-11-15",
|
|
5859
|
-
modalities: {
|
|
5860
|
-
input: ["text", "image"],
|
|
5861
|
-
output: ["text"]
|
|
5862
|
-
},
|
|
5863
|
-
pricing: {
|
|
5864
|
-
inputPerM: 0,
|
|
5865
|
-
outputPerM: 0,
|
|
6072
|
+
inputPerM: 0.05,
|
|
6073
|
+
outputPerM: 0.24,
|
|
5866
6074
|
currency: "USD",
|
|
5867
6075
|
unit: "per_million_tokens"
|
|
5868
6076
|
}
|
|
5869
6077
|
},
|
|
5870
6078
|
{
|
|
5871
|
-
name: "
|
|
5872
|
-
displayName: "
|
|
5873
|
-
maxInputTokens:
|
|
5874
|
-
supportedFileTypes: [
|
|
6079
|
+
name: "openai/gpt-oss-120b:free",
|
|
6080
|
+
displayName: "gpt-oss-120b (free)",
|
|
6081
|
+
maxInputTokens: 131072,
|
|
6082
|
+
supportedFileTypes: [],
|
|
5875
6083
|
reasoning: true,
|
|
5876
6084
|
supportsTemperature: true,
|
|
5877
6085
|
supportsToolCall: true,
|
|
5878
|
-
releaseDate: "2025-
|
|
6086
|
+
releaseDate: "2025-08-05",
|
|
5879
6087
|
modalities: {
|
|
5880
|
-
input: ["text"
|
|
6088
|
+
input: ["text"],
|
|
5881
6089
|
output: ["text"]
|
|
5882
6090
|
},
|
|
5883
6091
|
pricing: {
|
|
@@ -5888,116 +6096,36 @@ const MODELS_BY_PROVIDER = {
|
|
|
5888
6096
|
}
|
|
5889
6097
|
},
|
|
5890
6098
|
{
|
|
5891
|
-
name: "
|
|
5892
|
-
displayName: "
|
|
6099
|
+
name: "openai/gpt-oss-20b",
|
|
6100
|
+
displayName: "GPT OSS 20B",
|
|
5893
6101
|
maxInputTokens: 131072,
|
|
5894
6102
|
supportedFileTypes: [],
|
|
5895
6103
|
reasoning: true,
|
|
5896
6104
|
supportsTemperature: true,
|
|
5897
6105
|
supportsToolCall: true,
|
|
5898
|
-
releaseDate: "2025-
|
|
6106
|
+
releaseDate: "2025-08-05",
|
|
5899
6107
|
modalities: {
|
|
5900
6108
|
input: ["text"],
|
|
5901
6109
|
output: ["text"]
|
|
5902
6110
|
},
|
|
5903
6111
|
pricing: {
|
|
5904
|
-
inputPerM: 0.
|
|
5905
|
-
outputPerM:
|
|
6112
|
+
inputPerM: 0.05,
|
|
6113
|
+
outputPerM: 0.2,
|
|
5906
6114
|
currency: "USD",
|
|
5907
6115
|
unit: "per_million_tokens"
|
|
5908
6116
|
}
|
|
5909
6117
|
},
|
|
5910
6118
|
{
|
|
5911
|
-
name: "
|
|
5912
|
-
displayName: "
|
|
5913
|
-
maxInputTokens:
|
|
6119
|
+
name: "openai/gpt-oss-20b:free",
|
|
6120
|
+
displayName: "gpt-oss-20b (free)",
|
|
6121
|
+
maxInputTokens: 131072,
|
|
5914
6122
|
supportedFileTypes: [],
|
|
5915
|
-
reasoning:
|
|
5916
|
-
supportsTemperature: true,
|
|
5917
|
-
supportsToolCall: false,
|
|
5918
|
-
releaseDate: "2024-11-11",
|
|
5919
|
-
modalities: {
|
|
5920
|
-
input: ["text"],
|
|
5921
|
-
output: ["text"]
|
|
5922
|
-
},
|
|
5923
|
-
pricing: {
|
|
5924
|
-
inputPerM: 0,
|
|
5925
|
-
outputPerM: 0,
|
|
5926
|
-
currency: "USD",
|
|
5927
|
-
unit: "per_million_tokens"
|
|
5928
|
-
}
|
|
5929
|
-
},
|
|
5930
|
-
{
|
|
5931
|
-
name: "qwen/qwen-2.5-vl-7b-instruct:free",
|
|
5932
|
-
displayName: "Qwen2.5-VL 7B Instruct (free)",
|
|
5933
|
-
maxInputTokens: 32768,
|
|
5934
|
-
supportedFileTypes: ["image"],
|
|
5935
|
-
reasoning: false,
|
|
5936
|
-
supportsTemperature: true,
|
|
5937
|
-
supportsToolCall: true,
|
|
5938
|
-
releaseDate: "2024-08-28",
|
|
5939
|
-
modalities: {
|
|
5940
|
-
input: ["text", "image"],
|
|
5941
|
-
output: ["text"]
|
|
5942
|
-
},
|
|
5943
|
-
pricing: {
|
|
5944
|
-
inputPerM: 0,
|
|
5945
|
-
outputPerM: 0,
|
|
5946
|
-
currency: "USD",
|
|
5947
|
-
unit: "per_million_tokens"
|
|
5948
|
-
}
|
|
5949
|
-
},
|
|
5950
|
-
{
|
|
5951
|
-
name: "qwen/qwen2.5-vl-32b-instruct:free",
|
|
5952
|
-
displayName: "Qwen2.5 VL 32B Instruct (free)",
|
|
5953
|
-
maxInputTokens: 8192,
|
|
5954
|
-
supportedFileTypes: ["image"],
|
|
5955
|
-
reasoning: false,
|
|
5956
|
-
supportsTemperature: true,
|
|
5957
|
-
supportsToolCall: true,
|
|
5958
|
-
releaseDate: "2025-03-24",
|
|
5959
|
-
modalities: {
|
|
5960
|
-
input: ["text", "image", "video"],
|
|
5961
|
-
output: ["text"]
|
|
5962
|
-
},
|
|
5963
|
-
pricing: {
|
|
5964
|
-
inputPerM: 0,
|
|
5965
|
-
outputPerM: 0,
|
|
5966
|
-
currency: "USD",
|
|
5967
|
-
unit: "per_million_tokens"
|
|
5968
|
-
}
|
|
5969
|
-
},
|
|
5970
|
-
{
|
|
5971
|
-
name: "qwen/qwen2.5-vl-72b-instruct",
|
|
5972
|
-
displayName: "Qwen2.5 VL 72B Instruct",
|
|
5973
|
-
maxInputTokens: 32768,
|
|
5974
|
-
supportedFileTypes: ["image"],
|
|
5975
|
-
reasoning: false,
|
|
5976
|
-
supportsTemperature: true,
|
|
5977
|
-
supportsToolCall: false,
|
|
5978
|
-
releaseDate: "2025-02-01",
|
|
5979
|
-
modalities: {
|
|
5980
|
-
input: ["text", "image"],
|
|
5981
|
-
output: ["text"]
|
|
5982
|
-
},
|
|
5983
|
-
pricing: {
|
|
5984
|
-
inputPerM: 0,
|
|
5985
|
-
outputPerM: 0,
|
|
5986
|
-
currency: "USD",
|
|
5987
|
-
unit: "per_million_tokens"
|
|
5988
|
-
}
|
|
5989
|
-
},
|
|
5990
|
-
{
|
|
5991
|
-
name: "qwen/qwen2.5-vl-72b-instruct:free",
|
|
5992
|
-
displayName: "Qwen2.5 VL 72B Instruct (free)",
|
|
5993
|
-
maxInputTokens: 32768,
|
|
5994
|
-
supportedFileTypes: ["image"],
|
|
5995
|
-
reasoning: false,
|
|
6123
|
+
reasoning: true,
|
|
5996
6124
|
supportsTemperature: true,
|
|
5997
6125
|
supportsToolCall: true,
|
|
5998
|
-
releaseDate: "2025-
|
|
6126
|
+
releaseDate: "2025-08-05",
|
|
5999
6127
|
modalities: {
|
|
6000
|
-
input: ["text"
|
|
6128
|
+
input: ["text"],
|
|
6001
6129
|
output: ["text"]
|
|
6002
6130
|
},
|
|
6003
6131
|
pricing: {
|
|
@@ -6008,56 +6136,57 @@ const MODELS_BY_PROVIDER = {
|
|
|
6008
6136
|
}
|
|
6009
6137
|
},
|
|
6010
6138
|
{
|
|
6011
|
-
name: "
|
|
6012
|
-
displayName: "
|
|
6013
|
-
maxInputTokens:
|
|
6139
|
+
name: "openai/gpt-oss-safeguard-20b",
|
|
6140
|
+
displayName: "GPT OSS Safeguard 20B",
|
|
6141
|
+
maxInputTokens: 131072,
|
|
6014
6142
|
supportedFileTypes: [],
|
|
6015
6143
|
reasoning: true,
|
|
6016
6144
|
supportsTemperature: true,
|
|
6017
6145
|
supportsToolCall: true,
|
|
6018
|
-
releaseDate: "2025-
|
|
6146
|
+
releaseDate: "2025-10-29",
|
|
6019
6147
|
modalities: {
|
|
6020
6148
|
input: ["text"],
|
|
6021
6149
|
output: ["text"]
|
|
6022
6150
|
},
|
|
6023
6151
|
pricing: {
|
|
6024
|
-
inputPerM: 0,
|
|
6025
|
-
outputPerM: 0,
|
|
6152
|
+
inputPerM: 0.075,
|
|
6153
|
+
outputPerM: 0.3,
|
|
6026
6154
|
currency: "USD",
|
|
6027
6155
|
unit: "per_million_tokens"
|
|
6028
6156
|
}
|
|
6029
6157
|
},
|
|
6030
6158
|
{
|
|
6031
|
-
name: "
|
|
6032
|
-
displayName: "
|
|
6033
|
-
maxInputTokens:
|
|
6034
|
-
supportedFileTypes: [],
|
|
6035
|
-
reasoning:
|
|
6159
|
+
name: "openai/o4-mini",
|
|
6160
|
+
displayName: "o4 Mini",
|
|
6161
|
+
maxInputTokens: 2e5,
|
|
6162
|
+
supportedFileTypes: ["image", "document"],
|
|
6163
|
+
reasoning: true,
|
|
6036
6164
|
supportsTemperature: true,
|
|
6037
6165
|
supportsToolCall: true,
|
|
6038
|
-
releaseDate: "2025-04-
|
|
6166
|
+
releaseDate: "2025-04-16",
|
|
6039
6167
|
modalities: {
|
|
6040
|
-
input: ["text"],
|
|
6168
|
+
input: ["text", "image"],
|
|
6041
6169
|
output: ["text"]
|
|
6042
6170
|
},
|
|
6043
6171
|
pricing: {
|
|
6044
|
-
inputPerM:
|
|
6045
|
-
outputPerM:
|
|
6172
|
+
inputPerM: 1.1,
|
|
6173
|
+
outputPerM: 4.4,
|
|
6174
|
+
cacheReadPerM: 0.28,
|
|
6046
6175
|
currency: "USD",
|
|
6047
6176
|
unit: "per_million_tokens"
|
|
6048
6177
|
}
|
|
6049
6178
|
},
|
|
6050
6179
|
{
|
|
6051
|
-
name: "
|
|
6052
|
-
displayName: "
|
|
6053
|
-
maxInputTokens:
|
|
6054
|
-
supportedFileTypes: [],
|
|
6055
|
-
reasoning:
|
|
6180
|
+
name: "openrouter/free",
|
|
6181
|
+
displayName: "Free Models Router",
|
|
6182
|
+
maxInputTokens: 2e5,
|
|
6183
|
+
supportedFileTypes: ["image"],
|
|
6184
|
+
reasoning: true,
|
|
6056
6185
|
supportsTemperature: true,
|
|
6057
6186
|
supportsToolCall: true,
|
|
6058
|
-
releaseDate: "
|
|
6187
|
+
releaseDate: "2026-02-01",
|
|
6059
6188
|
modalities: {
|
|
6060
|
-
input: ["text"],
|
|
6189
|
+
input: ["text", "image"],
|
|
6061
6190
|
output: ["text"]
|
|
6062
6191
|
},
|
|
6063
6192
|
pricing: {
|
|
@@ -6068,34 +6197,34 @@ const MODELS_BY_PROVIDER = {
|
|
|
6068
6197
|
}
|
|
6069
6198
|
},
|
|
6070
6199
|
{
|
|
6071
|
-
name: "
|
|
6072
|
-
displayName: "
|
|
6073
|
-
maxInputTokens:
|
|
6200
|
+
name: "prime-intellect/intellect-3",
|
|
6201
|
+
displayName: "Intellect 3",
|
|
6202
|
+
maxInputTokens: 131072,
|
|
6074
6203
|
supportedFileTypes: [],
|
|
6075
6204
|
reasoning: true,
|
|
6076
6205
|
supportsTemperature: true,
|
|
6077
6206
|
supportsToolCall: true,
|
|
6078
|
-
releaseDate: "2025-
|
|
6207
|
+
releaseDate: "2025-01-15",
|
|
6079
6208
|
modalities: {
|
|
6080
6209
|
input: ["text"],
|
|
6081
6210
|
output: ["text"]
|
|
6082
6211
|
},
|
|
6083
6212
|
pricing: {
|
|
6084
|
-
inputPerM: 0.
|
|
6085
|
-
outputPerM:
|
|
6213
|
+
inputPerM: 0.2,
|
|
6214
|
+
outputPerM: 1.1,
|
|
6086
6215
|
currency: "USD",
|
|
6087
6216
|
unit: "per_million_tokens"
|
|
6088
6217
|
}
|
|
6089
6218
|
},
|
|
6090
6219
|
{
|
|
6091
|
-
name: "qwen/
|
|
6092
|
-
displayName: "
|
|
6093
|
-
maxInputTokens:
|
|
6220
|
+
name: "qwen/qwen-2.5-coder-32b-instruct",
|
|
6221
|
+
displayName: "Qwen2.5 Coder 32B Instruct",
|
|
6222
|
+
maxInputTokens: 32768,
|
|
6094
6223
|
supportedFileTypes: [],
|
|
6095
|
-
reasoning:
|
|
6224
|
+
reasoning: false,
|
|
6096
6225
|
supportsTemperature: true,
|
|
6097
|
-
supportsToolCall:
|
|
6098
|
-
releaseDate: "
|
|
6226
|
+
supportsToolCall: false,
|
|
6227
|
+
releaseDate: "2024-11-11",
|
|
6099
6228
|
modalities: {
|
|
6100
6229
|
input: ["text"],
|
|
6101
6230
|
output: ["text"]
|
|
@@ -6108,114 +6237,114 @@ const MODELS_BY_PROVIDER = {
|
|
|
6108
6237
|
}
|
|
6109
6238
|
},
|
|
6110
6239
|
{
|
|
6111
|
-
name: "qwen/
|
|
6112
|
-
displayName: "
|
|
6113
|
-
maxInputTokens:
|
|
6114
|
-
supportedFileTypes: [],
|
|
6240
|
+
name: "qwen/qwen2.5-vl-72b-instruct",
|
|
6241
|
+
displayName: "Qwen2.5 VL 72B Instruct",
|
|
6242
|
+
maxInputTokens: 32768,
|
|
6243
|
+
supportedFileTypes: ["image"],
|
|
6115
6244
|
reasoning: false,
|
|
6116
6245
|
supportsTemperature: true,
|
|
6117
|
-
supportsToolCall:
|
|
6118
|
-
releaseDate: "2025-
|
|
6246
|
+
supportsToolCall: false,
|
|
6247
|
+
releaseDate: "2025-02-01",
|
|
6119
6248
|
modalities: {
|
|
6120
|
-
input: ["text"],
|
|
6249
|
+
input: ["text", "image"],
|
|
6121
6250
|
output: ["text"]
|
|
6122
6251
|
},
|
|
6123
6252
|
pricing: {
|
|
6124
|
-
inputPerM: 0
|
|
6125
|
-
outputPerM: 0
|
|
6253
|
+
inputPerM: 0,
|
|
6254
|
+
outputPerM: 0,
|
|
6126
6255
|
currency: "USD",
|
|
6127
6256
|
unit: "per_million_tokens"
|
|
6128
6257
|
}
|
|
6129
6258
|
},
|
|
6130
6259
|
{
|
|
6131
|
-
name: "qwen/qwen3-
|
|
6132
|
-
displayName: "Qwen3
|
|
6133
|
-
maxInputTokens:
|
|
6260
|
+
name: "qwen/qwen3-235b-a22b-07-25",
|
|
6261
|
+
displayName: "Qwen3 235B A22B Instruct 2507",
|
|
6262
|
+
maxInputTokens: 262144,
|
|
6134
6263
|
supportedFileTypes: [],
|
|
6135
|
-
reasoning:
|
|
6264
|
+
reasoning: false,
|
|
6136
6265
|
supportsTemperature: true,
|
|
6137
6266
|
supportsToolCall: true,
|
|
6138
|
-
releaseDate: "2025-
|
|
6267
|
+
releaseDate: "2025-04-28",
|
|
6139
6268
|
modalities: {
|
|
6140
6269
|
input: ["text"],
|
|
6141
6270
|
output: ["text"]
|
|
6142
6271
|
},
|
|
6143
6272
|
pricing: {
|
|
6144
|
-
inputPerM: 0.
|
|
6145
|
-
outputPerM: 0.
|
|
6273
|
+
inputPerM: 0.15,
|
|
6274
|
+
outputPerM: 0.85,
|
|
6146
6275
|
currency: "USD",
|
|
6147
6276
|
unit: "per_million_tokens"
|
|
6148
6277
|
}
|
|
6149
6278
|
},
|
|
6150
6279
|
{
|
|
6151
|
-
name: "qwen/qwen3-
|
|
6152
|
-
displayName: "Qwen3
|
|
6153
|
-
maxInputTokens:
|
|
6280
|
+
name: "qwen/qwen3-235b-a22b-thinking-2507",
|
|
6281
|
+
displayName: "Qwen3 235B A22B Thinking 2507",
|
|
6282
|
+
maxInputTokens: 262144,
|
|
6154
6283
|
supportedFileTypes: [],
|
|
6155
6284
|
reasoning: true,
|
|
6156
6285
|
supportsTemperature: true,
|
|
6157
6286
|
supportsToolCall: true,
|
|
6158
|
-
releaseDate: "2025-
|
|
6287
|
+
releaseDate: "2025-07-25",
|
|
6159
6288
|
modalities: {
|
|
6160
6289
|
input: ["text"],
|
|
6161
6290
|
output: ["text"]
|
|
6162
6291
|
},
|
|
6163
6292
|
pricing: {
|
|
6164
|
-
inputPerM: 0,
|
|
6165
|
-
outputPerM: 0,
|
|
6293
|
+
inputPerM: 0.078,
|
|
6294
|
+
outputPerM: 0.312,
|
|
6166
6295
|
currency: "USD",
|
|
6167
6296
|
unit: "per_million_tokens"
|
|
6168
6297
|
}
|
|
6169
6298
|
},
|
|
6170
6299
|
{
|
|
6171
|
-
name: "qwen/qwen3-
|
|
6172
|
-
displayName: "Qwen3
|
|
6173
|
-
maxInputTokens:
|
|
6300
|
+
name: "qwen/qwen3-30b-a3b-instruct-2507",
|
|
6301
|
+
displayName: "Qwen3 30B A3B Instruct 2507",
|
|
6302
|
+
maxInputTokens: 262e3,
|
|
6174
6303
|
supportedFileTypes: [],
|
|
6175
|
-
reasoning:
|
|
6304
|
+
reasoning: false,
|
|
6176
6305
|
supportsTemperature: true,
|
|
6177
6306
|
supportsToolCall: true,
|
|
6178
|
-
releaseDate: "2025-
|
|
6307
|
+
releaseDate: "2025-07-29",
|
|
6179
6308
|
modalities: {
|
|
6180
6309
|
input: ["text"],
|
|
6181
6310
|
output: ["text"]
|
|
6182
6311
|
},
|
|
6183
6312
|
pricing: {
|
|
6184
|
-
inputPerM: 0,
|
|
6185
|
-
outputPerM: 0,
|
|
6313
|
+
inputPerM: 0.2,
|
|
6314
|
+
outputPerM: 0.8,
|
|
6186
6315
|
currency: "USD",
|
|
6187
6316
|
unit: "per_million_tokens"
|
|
6188
6317
|
}
|
|
6189
6318
|
},
|
|
6190
6319
|
{
|
|
6191
|
-
name: "qwen/qwen3-
|
|
6192
|
-
displayName: "Qwen3
|
|
6193
|
-
maxInputTokens:
|
|
6320
|
+
name: "qwen/qwen3-30b-a3b-thinking-2507",
|
|
6321
|
+
displayName: "Qwen3 30B A3B Thinking 2507",
|
|
6322
|
+
maxInputTokens: 262e3,
|
|
6194
6323
|
supportedFileTypes: [],
|
|
6195
6324
|
reasoning: true,
|
|
6196
6325
|
supportsTemperature: true,
|
|
6197
6326
|
supportsToolCall: true,
|
|
6198
|
-
releaseDate: "2025-
|
|
6327
|
+
releaseDate: "2025-07-29",
|
|
6199
6328
|
modalities: {
|
|
6200
6329
|
input: ["text"],
|
|
6201
6330
|
output: ["text"]
|
|
6202
6331
|
},
|
|
6203
6332
|
pricing: {
|
|
6204
|
-
inputPerM: 0,
|
|
6205
|
-
outputPerM: 0,
|
|
6333
|
+
inputPerM: 0.2,
|
|
6334
|
+
outputPerM: 0.8,
|
|
6206
6335
|
currency: "USD",
|
|
6207
6336
|
unit: "per_million_tokens"
|
|
6208
6337
|
}
|
|
6209
6338
|
},
|
|
6210
6339
|
{
|
|
6211
|
-
name: "qwen/qwen3-
|
|
6212
|
-
displayName: "Qwen3
|
|
6340
|
+
name: "qwen/qwen3-4b:free",
|
|
6341
|
+
displayName: "Qwen3 4B (free)",
|
|
6213
6342
|
maxInputTokens: 40960,
|
|
6214
6343
|
supportedFileTypes: [],
|
|
6215
6344
|
reasoning: true,
|
|
6216
6345
|
supportsTemperature: true,
|
|
6217
6346
|
supportsToolCall: true,
|
|
6218
|
-
releaseDate: "2025-04-
|
|
6347
|
+
releaseDate: "2025-04-30",
|
|
6219
6348
|
modalities: {
|
|
6220
6349
|
input: ["text"],
|
|
6221
6350
|
output: ["text"]
|
|
@@ -6411,7 +6540,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
6411
6540
|
name: "qwen/qwen3.5-397b-a17b",
|
|
6412
6541
|
displayName: "Qwen3.5 397B A17B",
|
|
6413
6542
|
maxInputTokens: 262144,
|
|
6414
|
-
supportedFileTypes: ["image"],
|
|
6543
|
+
supportedFileTypes: ["image", "video"],
|
|
6415
6544
|
reasoning: true,
|
|
6416
6545
|
supportsTemperature: true,
|
|
6417
6546
|
supportsToolCall: true,
|
|
@@ -6431,7 +6560,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
6431
6560
|
name: "qwen/qwen3.5-plus-02-15",
|
|
6432
6561
|
displayName: "Qwen3.5 Plus 2026-02-15",
|
|
6433
6562
|
maxInputTokens: 1e6,
|
|
6434
|
-
supportedFileTypes: ["image"],
|
|
6563
|
+
supportedFileTypes: ["image", "video"],
|
|
6435
6564
|
reasoning: true,
|
|
6436
6565
|
supportsTemperature: true,
|
|
6437
6566
|
supportsToolCall: true,
|
|
@@ -6448,54 +6577,14 @@ const MODELS_BY_PROVIDER = {
|
|
|
6448
6577
|
}
|
|
6449
6578
|
},
|
|
6450
6579
|
{
|
|
6451
|
-
name: "qwen/
|
|
6452
|
-
displayName: "
|
|
6453
|
-
maxInputTokens:
|
|
6454
|
-
supportedFileTypes: [],
|
|
6455
|
-
reasoning: true,
|
|
6456
|
-
supportsTemperature: true,
|
|
6457
|
-
supportsToolCall: true,
|
|
6458
|
-
releaseDate: "2025-03-05",
|
|
6459
|
-
modalities: {
|
|
6460
|
-
input: ["text"],
|
|
6461
|
-
output: ["text"]
|
|
6462
|
-
},
|
|
6463
|
-
pricing: {
|
|
6464
|
-
inputPerM: 0,
|
|
6465
|
-
outputPerM: 0,
|
|
6466
|
-
currency: "USD",
|
|
6467
|
-
unit: "per_million_tokens"
|
|
6468
|
-
}
|
|
6469
|
-
},
|
|
6470
|
-
{
|
|
6471
|
-
name: "rekaai/reka-flash-3",
|
|
6472
|
-
displayName: "Reka Flash 3",
|
|
6473
|
-
maxInputTokens: 32768,
|
|
6474
|
-
supportedFileTypes: [],
|
|
6475
|
-
reasoning: true,
|
|
6476
|
-
supportsTemperature: true,
|
|
6477
|
-
supportsToolCall: true,
|
|
6478
|
-
releaseDate: "2025-03-12",
|
|
6479
|
-
modalities: {
|
|
6480
|
-
input: ["text"],
|
|
6481
|
-
output: ["text"]
|
|
6482
|
-
},
|
|
6483
|
-
pricing: {
|
|
6484
|
-
inputPerM: 0,
|
|
6485
|
-
outputPerM: 0,
|
|
6486
|
-
currency: "USD",
|
|
6487
|
-
unit: "per_million_tokens"
|
|
6488
|
-
}
|
|
6489
|
-
},
|
|
6490
|
-
{
|
|
6491
|
-
name: "sarvamai/sarvam-m:free",
|
|
6492
|
-
displayName: "Sarvam-M (free)",
|
|
6493
|
-
maxInputTokens: 32768,
|
|
6580
|
+
name: "qwen/qwen3.6-plus-preview:free",
|
|
6581
|
+
displayName: "Qwen3.6 Plus Preview (free)",
|
|
6582
|
+
maxInputTokens: 1e6,
|
|
6494
6583
|
supportedFileTypes: [],
|
|
6495
6584
|
reasoning: true,
|
|
6496
6585
|
supportsTemperature: true,
|
|
6497
6586
|
supportsToolCall: true,
|
|
6498
|
-
releaseDate: "
|
|
6587
|
+
releaseDate: "2026-03-30",
|
|
6499
6588
|
modalities: {
|
|
6500
6589
|
input: ["text"],
|
|
6501
6590
|
output: ["text"]
|
|
@@ -6608,66 +6697,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
6608
6697
|
unit: "per_million_tokens"
|
|
6609
6698
|
}
|
|
6610
6699
|
},
|
|
6611
|
-
{
|
|
6612
|
-
name: "thudm/glm-z1-32b:free",
|
|
6613
|
-
displayName: "GLM Z1 32B (free)",
|
|
6614
|
-
maxInputTokens: 32768,
|
|
6615
|
-
supportedFileTypes: [],
|
|
6616
|
-
reasoning: true,
|
|
6617
|
-
supportsTemperature: true,
|
|
6618
|
-
supportsToolCall: true,
|
|
6619
|
-
releaseDate: "2025-04-17",
|
|
6620
|
-
modalities: {
|
|
6621
|
-
input: ["text"],
|
|
6622
|
-
output: ["text"]
|
|
6623
|
-
},
|
|
6624
|
-
pricing: {
|
|
6625
|
-
inputPerM: 0,
|
|
6626
|
-
outputPerM: 0,
|
|
6627
|
-
currency: "USD",
|
|
6628
|
-
unit: "per_million_tokens"
|
|
6629
|
-
}
|
|
6630
|
-
},
|
|
6631
|
-
{
|
|
6632
|
-
name: "tngtech/deepseek-r1t2-chimera:free",
|
|
6633
|
-
displayName: "DeepSeek R1T2 Chimera (free)",
|
|
6634
|
-
maxInputTokens: 163840,
|
|
6635
|
-
supportedFileTypes: [],
|
|
6636
|
-
reasoning: true,
|
|
6637
|
-
supportsTemperature: true,
|
|
6638
|
-
supportsToolCall: false,
|
|
6639
|
-
releaseDate: "2025-07-08",
|
|
6640
|
-
modalities: {
|
|
6641
|
-
input: ["text"],
|
|
6642
|
-
output: ["text"]
|
|
6643
|
-
},
|
|
6644
|
-
pricing: {
|
|
6645
|
-
inputPerM: 0,
|
|
6646
|
-
outputPerM: 0,
|
|
6647
|
-
currency: "USD",
|
|
6648
|
-
unit: "per_million_tokens"
|
|
6649
|
-
}
|
|
6650
|
-
},
|
|
6651
|
-
{
|
|
6652
|
-
name: "tngtech/tng-r1t-chimera:free",
|
|
6653
|
-
displayName: "R1T Chimera (free)",
|
|
6654
|
-
maxInputTokens: 163840,
|
|
6655
|
-
supportedFileTypes: [],
|
|
6656
|
-
reasoning: true,
|
|
6657
|
-
supportsTemperature: true,
|
|
6658
|
-
supportsToolCall: true,
|
|
6659
|
-
releaseDate: "2025-11-26",
|
|
6660
|
-
modalities: {
|
|
6661
|
-
input: ["text"],
|
|
6662
|
-
output: ["text"]
|
|
6663
|
-
},
|
|
6664
|
-
pricing: {
|
|
6665
|
-
inputPerM: 0,
|
|
6666
|
-
outputPerM: 0,
|
|
6667
|
-
currency: "USD",
|
|
6668
|
-
unit: "per_million_tokens"
|
|
6669
|
-
}
|
|
6670
|
-
},
|
|
6671
6700
|
{
|
|
6672
6701
|
name: "x-ai/grok-3",
|
|
6673
6702
|
displayName: "Grok 3",
|
|
@@ -6822,6 +6851,58 @@ const MODELS_BY_PROVIDER = {
|
|
|
6822
6851
|
unit: "per_million_tokens"
|
|
6823
6852
|
}
|
|
6824
6853
|
},
|
|
6854
|
+
{
|
|
6855
|
+
name: "x-ai/grok-4.20-beta",
|
|
6856
|
+
displayName: "Grok 4.20 Beta",
|
|
6857
|
+
maxInputTokens: 2e6,
|
|
6858
|
+
supportedFileTypes: ["image"],
|
|
6859
|
+
reasoning: true,
|
|
6860
|
+
supportsTemperature: true,
|
|
6861
|
+
supportsToolCall: true,
|
|
6862
|
+
releaseDate: "2026-03-12",
|
|
6863
|
+
status: "beta",
|
|
6864
|
+
modalities: {
|
|
6865
|
+
input: ["text", "image"],
|
|
6866
|
+
output: ["text"]
|
|
6867
|
+
},
|
|
6868
|
+
pricing: {
|
|
6869
|
+
inputPerM: 2,
|
|
6870
|
+
outputPerM: 6,
|
|
6871
|
+
cacheReadPerM: 0.2,
|
|
6872
|
+
contextOver200kPerM: {
|
|
6873
|
+
inputPerM: 4,
|
|
6874
|
+
outputPerM: 12
|
|
6875
|
+
},
|
|
6876
|
+
currency: "USD",
|
|
6877
|
+
unit: "per_million_tokens"
|
|
6878
|
+
}
|
|
6879
|
+
},
|
|
6880
|
+
{
|
|
6881
|
+
name: "x-ai/grok-4.20-multi-agent-beta",
|
|
6882
|
+
displayName: "Grok 4.20 Multi - Agent Beta",
|
|
6883
|
+
maxInputTokens: 2e6,
|
|
6884
|
+
supportedFileTypes: ["image"],
|
|
6885
|
+
reasoning: true,
|
|
6886
|
+
supportsTemperature: true,
|
|
6887
|
+
supportsToolCall: false,
|
|
6888
|
+
releaseDate: "2026-03-12",
|
|
6889
|
+
status: "beta",
|
|
6890
|
+
modalities: {
|
|
6891
|
+
input: ["text", "image"],
|
|
6892
|
+
output: ["text"]
|
|
6893
|
+
},
|
|
6894
|
+
pricing: {
|
|
6895
|
+
inputPerM: 2,
|
|
6896
|
+
outputPerM: 6,
|
|
6897
|
+
cacheReadPerM: 0.2,
|
|
6898
|
+
contextOver200kPerM: {
|
|
6899
|
+
inputPerM: 4,
|
|
6900
|
+
outputPerM: 12
|
|
6901
|
+
},
|
|
6902
|
+
currency: "USD",
|
|
6903
|
+
unit: "per_million_tokens"
|
|
6904
|
+
}
|
|
6905
|
+
},
|
|
6825
6906
|
{
|
|
6826
6907
|
name: "x-ai/grok-code-fast-1",
|
|
6827
6908
|
displayName: "Grok Code Fast 1",
|
|
@@ -6864,6 +6945,54 @@ const MODELS_BY_PROVIDER = {
|
|
|
6864
6945
|
unit: "per_million_tokens"
|
|
6865
6946
|
}
|
|
6866
6947
|
},
|
|
6948
|
+
{
|
|
6949
|
+
name: "xiaomi/mimo-v2-omni",
|
|
6950
|
+
displayName: "MiMo-V2-Omni",
|
|
6951
|
+
maxInputTokens: 262144,
|
|
6952
|
+
supportedFileTypes: ["image", "audio", "video"],
|
|
6953
|
+
reasoning: true,
|
|
6954
|
+
supportsTemperature: true,
|
|
6955
|
+
supportsToolCall: true,
|
|
6956
|
+
releaseDate: "2026-03-18",
|
|
6957
|
+
modalities: {
|
|
6958
|
+
input: ["text", "image", "video", "audio"],
|
|
6959
|
+
output: ["text"]
|
|
6960
|
+
},
|
|
6961
|
+
interleaved: {
|
|
6962
|
+
field: "reasoning_details"
|
|
6963
|
+
},
|
|
6964
|
+
supportsInterleaved: true,
|
|
6965
|
+
pricing: {
|
|
6966
|
+
inputPerM: 0.4,
|
|
6967
|
+
outputPerM: 2,
|
|
6968
|
+
currency: "USD",
|
|
6969
|
+
unit: "per_million_tokens"
|
|
6970
|
+
}
|
|
6971
|
+
},
|
|
6972
|
+
{
|
|
6973
|
+
name: "xiaomi/mimo-v2-pro",
|
|
6974
|
+
displayName: "MiMo-V2-Pro",
|
|
6975
|
+
maxInputTokens: 1048576,
|
|
6976
|
+
supportedFileTypes: [],
|
|
6977
|
+
reasoning: true,
|
|
6978
|
+
supportsTemperature: true,
|
|
6979
|
+
supportsToolCall: true,
|
|
6980
|
+
releaseDate: "2026-03-18",
|
|
6981
|
+
modalities: {
|
|
6982
|
+
input: ["text"],
|
|
6983
|
+
output: ["text"]
|
|
6984
|
+
},
|
|
6985
|
+
interleaved: {
|
|
6986
|
+
field: "reasoning_details"
|
|
6987
|
+
},
|
|
6988
|
+
supportsInterleaved: true,
|
|
6989
|
+
pricing: {
|
|
6990
|
+
inputPerM: 1,
|
|
6991
|
+
outputPerM: 3,
|
|
6992
|
+
currency: "USD",
|
|
6993
|
+
unit: "per_million_tokens"
|
|
6994
|
+
}
|
|
6995
|
+
},
|
|
6867
6996
|
{
|
|
6868
6997
|
name: "z-ai/glm-4.5",
|
|
6869
6998
|
displayName: "GLM 4.5",
|
|
@@ -6928,7 +7057,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
6928
7057
|
name: "z-ai/glm-4.5v",
|
|
6929
7058
|
displayName: "GLM 4.5V",
|
|
6930
7059
|
maxInputTokens: 64e3,
|
|
6931
|
-
supportedFileTypes: ["image"],
|
|
7060
|
+
supportedFileTypes: ["image", "video"],
|
|
6932
7061
|
reasoning: true,
|
|
6933
7062
|
supportsTemperature: true,
|
|
6934
7063
|
supportsToolCall: true,
|
|
@@ -7068,7 +7197,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7068
7197
|
name: "claude-3-5-haiku@20241022",
|
|
7069
7198
|
displayName: "Claude Haiku 3.5",
|
|
7070
7199
|
maxInputTokens: 2e5,
|
|
7071
|
-
supportedFileTypes: ["pdf", "image"],
|
|
7200
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
7072
7201
|
reasoning: false,
|
|
7073
7202
|
supportsTemperature: true,
|
|
7074
7203
|
supportsToolCall: true,
|
|
@@ -7090,7 +7219,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7090
7219
|
name: "claude-3-5-sonnet@20241022",
|
|
7091
7220
|
displayName: "Claude Sonnet 3.5 v2",
|
|
7092
7221
|
maxInputTokens: 2e5,
|
|
7093
|
-
supportedFileTypes: ["pdf", "image"],
|
|
7222
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
7094
7223
|
reasoning: false,
|
|
7095
7224
|
supportsTemperature: true,
|
|
7096
7225
|
supportsToolCall: true,
|
|
@@ -7112,7 +7241,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7112
7241
|
name: "claude-3-7-sonnet@20250219",
|
|
7113
7242
|
displayName: "Claude Sonnet 3.7",
|
|
7114
7243
|
maxInputTokens: 2e5,
|
|
7115
|
-
supportedFileTypes: ["pdf", "image"],
|
|
7244
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
7116
7245
|
reasoning: true,
|
|
7117
7246
|
supportsTemperature: true,
|
|
7118
7247
|
supportsToolCall: true,
|
|
@@ -7134,7 +7263,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7134
7263
|
name: "claude-haiku-4-5@20251001",
|
|
7135
7264
|
displayName: "Claude Haiku 4.5",
|
|
7136
7265
|
maxInputTokens: 2e5,
|
|
7137
|
-
supportedFileTypes: ["pdf", "image"],
|
|
7266
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
7138
7267
|
reasoning: true,
|
|
7139
7268
|
supportsTemperature: true,
|
|
7140
7269
|
supportsToolCall: true,
|
|
@@ -7156,7 +7285,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7156
7285
|
name: "claude-opus-4-1@20250805",
|
|
7157
7286
|
displayName: "Claude Opus 4.1",
|
|
7158
7287
|
maxInputTokens: 2e5,
|
|
7159
|
-
supportedFileTypes: ["pdf", "image"],
|
|
7288
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
7160
7289
|
reasoning: true,
|
|
7161
7290
|
supportsTemperature: true,
|
|
7162
7291
|
supportsToolCall: true,
|
|
@@ -7178,7 +7307,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7178
7307
|
name: "claude-opus-4-5@20251101",
|
|
7179
7308
|
displayName: "Claude Opus 4.5",
|
|
7180
7309
|
maxInputTokens: 2e5,
|
|
7181
|
-
supportedFileTypes: ["pdf", "image"],
|
|
7310
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
7182
7311
|
reasoning: true,
|
|
7183
7312
|
supportsTemperature: true,
|
|
7184
7313
|
supportsToolCall: true,
|
|
@@ -7200,7 +7329,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7200
7329
|
name: "claude-opus-4-6@default",
|
|
7201
7330
|
displayName: "Claude Opus 4.6",
|
|
7202
7331
|
maxInputTokens: 1e6,
|
|
7203
|
-
supportedFileTypes: ["pdf", "image"],
|
|
7332
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
7204
7333
|
reasoning: true,
|
|
7205
7334
|
supportsTemperature: true,
|
|
7206
7335
|
supportsToolCall: true,
|
|
@@ -7226,7 +7355,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7226
7355
|
name: "claude-opus-4@20250514",
|
|
7227
7356
|
displayName: "Claude Opus 4",
|
|
7228
7357
|
maxInputTokens: 2e5,
|
|
7229
|
-
supportedFileTypes: ["pdf", "image"],
|
|
7358
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
7230
7359
|
reasoning: true,
|
|
7231
7360
|
supportsTemperature: true,
|
|
7232
7361
|
supportsToolCall: true,
|
|
@@ -7248,7 +7377,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7248
7377
|
name: "claude-sonnet-4-5@20250929",
|
|
7249
7378
|
displayName: "Claude Sonnet 4.5",
|
|
7250
7379
|
maxInputTokens: 2e5,
|
|
7251
|
-
supportedFileTypes: ["pdf", "image"],
|
|
7380
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
7252
7381
|
reasoning: true,
|
|
7253
7382
|
supportsTemperature: true,
|
|
7254
7383
|
supportsToolCall: true,
|
|
@@ -7270,7 +7399,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7270
7399
|
name: "claude-sonnet-4-6@default",
|
|
7271
7400
|
displayName: "Claude Sonnet 4.6",
|
|
7272
7401
|
maxInputTokens: 2e5,
|
|
7273
|
-
supportedFileTypes: ["pdf", "image"],
|
|
7402
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
7274
7403
|
reasoning: true,
|
|
7275
7404
|
supportsTemperature: true,
|
|
7276
7405
|
supportsToolCall: true,
|
|
@@ -7296,7 +7425,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7296
7425
|
name: "claude-sonnet-4@20250514",
|
|
7297
7426
|
displayName: "Claude Sonnet 4",
|
|
7298
7427
|
maxInputTokens: 2e5,
|
|
7299
|
-
supportedFileTypes: ["pdf", "image"],
|
|
7428
|
+
supportedFileTypes: ["pdf", "image", "document"],
|
|
7300
7429
|
reasoning: true,
|
|
7301
7430
|
supportsTemperature: true,
|
|
7302
7431
|
supportsToolCall: true,
|
|
@@ -7318,7 +7447,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7318
7447
|
name: "deepseek-ai/deepseek-v3.1-maas",
|
|
7319
7448
|
displayName: "DeepSeek V3.1",
|
|
7320
7449
|
maxInputTokens: 163840,
|
|
7321
|
-
supportedFileTypes: ["pdf"],
|
|
7450
|
+
supportedFileTypes: ["pdf", "document"],
|
|
7322
7451
|
reasoning: true,
|
|
7323
7452
|
supportsTemperature: true,
|
|
7324
7453
|
supportsToolCall: true,
|
|
@@ -7342,7 +7471,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7342
7471
|
name: "gemini-2.0-flash",
|
|
7343
7472
|
displayName: "Gemini 2.0 Flash",
|
|
7344
7473
|
maxInputTokens: 1048576,
|
|
7345
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7474
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7346
7475
|
reasoning: false,
|
|
7347
7476
|
supportsTemperature: true,
|
|
7348
7477
|
supportsToolCall: true,
|
|
@@ -7363,7 +7492,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7363
7492
|
name: "gemini-2.0-flash-lite",
|
|
7364
7493
|
displayName: "Gemini 2.0 Flash Lite",
|
|
7365
7494
|
maxInputTokens: 1048576,
|
|
7366
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7495
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7367
7496
|
reasoning: false,
|
|
7368
7497
|
supportsTemperature: true,
|
|
7369
7498
|
supportsToolCall: true,
|
|
@@ -7383,7 +7512,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7383
7512
|
name: "gemini-2.5-flash",
|
|
7384
7513
|
displayName: "Gemini 2.5 Flash",
|
|
7385
7514
|
maxInputTokens: 1048576,
|
|
7386
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7515
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7387
7516
|
reasoning: true,
|
|
7388
7517
|
supportsTemperature: true,
|
|
7389
7518
|
supportsToolCall: true,
|
|
@@ -7405,7 +7534,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7405
7534
|
name: "gemini-2.5-flash-lite",
|
|
7406
7535
|
displayName: "Gemini 2.5 Flash Lite",
|
|
7407
7536
|
maxInputTokens: 1048576,
|
|
7408
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7537
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7409
7538
|
reasoning: true,
|
|
7410
7539
|
supportsTemperature: true,
|
|
7411
7540
|
supportsToolCall: true,
|
|
@@ -7426,7 +7555,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7426
7555
|
name: "gemini-2.5-flash-lite-preview-06-17",
|
|
7427
7556
|
displayName: "Gemini 2.5 Flash Lite Preview 06-17",
|
|
7428
7557
|
maxInputTokens: 65536,
|
|
7429
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7558
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7430
7559
|
reasoning: true,
|
|
7431
7560
|
supportsTemperature: true,
|
|
7432
7561
|
supportsToolCall: true,
|
|
@@ -7447,7 +7576,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7447
7576
|
name: "gemini-2.5-flash-lite-preview-09-2025",
|
|
7448
7577
|
displayName: "Gemini 2.5 Flash Lite Preview 09-25",
|
|
7449
7578
|
maxInputTokens: 1048576,
|
|
7450
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7579
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7451
7580
|
reasoning: true,
|
|
7452
7581
|
supportsTemperature: true,
|
|
7453
7582
|
supportsToolCall: true,
|
|
@@ -7468,7 +7597,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7468
7597
|
name: "gemini-2.5-flash-preview-04-17",
|
|
7469
7598
|
displayName: "Gemini 2.5 Flash Preview 04-17",
|
|
7470
7599
|
maxInputTokens: 1048576,
|
|
7471
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7600
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7472
7601
|
reasoning: true,
|
|
7473
7602
|
supportsTemperature: true,
|
|
7474
7603
|
supportsToolCall: true,
|
|
@@ -7489,7 +7618,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7489
7618
|
name: "gemini-2.5-flash-preview-05-20",
|
|
7490
7619
|
displayName: "Gemini 2.5 Flash Preview 05-20",
|
|
7491
7620
|
maxInputTokens: 1048576,
|
|
7492
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7621
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7493
7622
|
reasoning: true,
|
|
7494
7623
|
supportsTemperature: true,
|
|
7495
7624
|
supportsToolCall: true,
|
|
@@ -7510,7 +7639,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7510
7639
|
name: "gemini-2.5-flash-preview-09-2025",
|
|
7511
7640
|
displayName: "Gemini 2.5 Flash Preview 09-25",
|
|
7512
7641
|
maxInputTokens: 1048576,
|
|
7513
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7642
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7514
7643
|
reasoning: true,
|
|
7515
7644
|
supportsTemperature: true,
|
|
7516
7645
|
supportsToolCall: true,
|
|
@@ -7532,7 +7661,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7532
7661
|
name: "gemini-2.5-pro",
|
|
7533
7662
|
displayName: "Gemini 2.5 Pro",
|
|
7534
7663
|
maxInputTokens: 1048576,
|
|
7535
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7664
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7536
7665
|
reasoning: true,
|
|
7537
7666
|
supportsTemperature: true,
|
|
7538
7667
|
supportsToolCall: true,
|
|
@@ -7553,7 +7682,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7553
7682
|
name: "gemini-2.5-pro-preview-05-06",
|
|
7554
7683
|
displayName: "Gemini 2.5 Pro Preview 05-06",
|
|
7555
7684
|
maxInputTokens: 1048576,
|
|
7556
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7685
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7557
7686
|
reasoning: true,
|
|
7558
7687
|
supportsTemperature: true,
|
|
7559
7688
|
supportsToolCall: true,
|
|
@@ -7574,7 +7703,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7574
7703
|
name: "gemini-2.5-pro-preview-06-05",
|
|
7575
7704
|
displayName: "Gemini 2.5 Pro Preview 06-05",
|
|
7576
7705
|
maxInputTokens: 1048576,
|
|
7577
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7706
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7578
7707
|
reasoning: true,
|
|
7579
7708
|
supportsTemperature: true,
|
|
7580
7709
|
supportsToolCall: true,
|
|
@@ -7595,7 +7724,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7595
7724
|
name: "gemini-3-flash-preview",
|
|
7596
7725
|
displayName: "Gemini 3 Flash Preview",
|
|
7597
7726
|
maxInputTokens: 1048576,
|
|
7598
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7727
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7599
7728
|
reasoning: true,
|
|
7600
7729
|
supportsTemperature: true,
|
|
7601
7730
|
supportsToolCall: true,
|
|
@@ -7621,7 +7750,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7621
7750
|
name: "gemini-3-pro-preview",
|
|
7622
7751
|
displayName: "Gemini 3 Pro Preview",
|
|
7623
7752
|
maxInputTokens: 1048576,
|
|
7624
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7753
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7625
7754
|
reasoning: true,
|
|
7626
7755
|
supportsTemperature: true,
|
|
7627
7756
|
supportsToolCall: true,
|
|
@@ -7646,7 +7775,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7646
7775
|
name: "gemini-3.1-pro-preview",
|
|
7647
7776
|
displayName: "Gemini 3.1 Pro Preview",
|
|
7648
7777
|
maxInputTokens: 1048576,
|
|
7649
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7778
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7650
7779
|
reasoning: true,
|
|
7651
7780
|
supportsTemperature: true,
|
|
7652
7781
|
supportsToolCall: true,
|
|
@@ -7671,7 +7800,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7671
7800
|
name: "gemini-3.1-pro-preview-customtools",
|
|
7672
7801
|
displayName: "Gemini 3.1 Pro Preview Custom Tools",
|
|
7673
7802
|
maxInputTokens: 1048576,
|
|
7674
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7803
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7675
7804
|
reasoning: true,
|
|
7676
7805
|
supportsTemperature: true,
|
|
7677
7806
|
supportsToolCall: true,
|
|
@@ -7716,7 +7845,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7716
7845
|
name: "gemini-flash-latest",
|
|
7717
7846
|
displayName: "Gemini Flash Latest",
|
|
7718
7847
|
maxInputTokens: 1048576,
|
|
7719
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7848
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7720
7849
|
reasoning: true,
|
|
7721
7850
|
supportsTemperature: true,
|
|
7722
7851
|
supportsToolCall: true,
|
|
@@ -7738,7 +7867,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7738
7867
|
name: "gemini-flash-lite-latest",
|
|
7739
7868
|
displayName: "Gemini Flash-Lite Latest",
|
|
7740
7869
|
maxInputTokens: 1048576,
|
|
7741
|
-
supportedFileTypes: ["pdf", "image", "audio"],
|
|
7870
|
+
supportedFileTypes: ["pdf", "image", "audio", "video", "document"],
|
|
7742
7871
|
reasoning: true,
|
|
7743
7872
|
supportsTemperature: true,
|
|
7744
7873
|
supportsToolCall: true,
|
|
@@ -7783,7 +7912,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7783
7912
|
name: "meta/llama-4-maverick-17b-128e-instruct-maas",
|
|
7784
7913
|
displayName: "Llama 4 Maverick 17B 128E Instruct",
|
|
7785
7914
|
maxInputTokens: 524288,
|
|
7786
|
-
supportedFileTypes: ["image"],
|
|
7915
|
+
supportedFileTypes: ["image", "document"],
|
|
7787
7916
|
reasoning: false,
|
|
7788
7917
|
supportsTemperature: true,
|
|
7789
7918
|
supportsToolCall: true,
|
|
@@ -7871,7 +8000,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7871
8000
|
name: "zai-org/glm-4.7-maas",
|
|
7872
8001
|
displayName: "GLM-4.7",
|
|
7873
8002
|
maxInputTokens: 2e5,
|
|
7874
|
-
supportedFileTypes: ["pdf"],
|
|
8003
|
+
supportedFileTypes: ["pdf", "document"],
|
|
7875
8004
|
reasoning: true,
|
|
7876
8005
|
supportsTemperature: true,
|
|
7877
8006
|
supportsToolCall: true,
|
|
@@ -7898,7 +8027,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7898
8027
|
{
|
|
7899
8028
|
name: "zai-org/glm-5-maas",
|
|
7900
8029
|
displayName: "GLM-5",
|
|
7901
|
-
maxInputTokens:
|
|
8030
|
+
maxInputTokens: 202752,
|
|
7902
8031
|
supportedFileTypes: [],
|
|
7903
8032
|
reasoning: true,
|
|
7904
8033
|
supportsTemperature: true,
|
|
@@ -7926,51 +8055,11 @@ const MODELS_BY_PROVIDER = {
|
|
|
7926
8055
|
}
|
|
7927
8056
|
],
|
|
7928
8057
|
bedrock: [
|
|
7929
|
-
{
|
|
7930
|
-
name: "ai21.jamba-1-5-large-v1:0",
|
|
7931
|
-
displayName: "Jamba 1.5 Large",
|
|
7932
|
-
maxInputTokens: 256e3,
|
|
7933
|
-
supportedFileTypes: [],
|
|
7934
|
-
reasoning: false,
|
|
7935
|
-
supportsTemperature: true,
|
|
7936
|
-
supportsToolCall: true,
|
|
7937
|
-
releaseDate: "2024-08-15",
|
|
7938
|
-
modalities: {
|
|
7939
|
-
input: ["text"],
|
|
7940
|
-
output: ["text"]
|
|
7941
|
-
},
|
|
7942
|
-
pricing: {
|
|
7943
|
-
inputPerM: 2,
|
|
7944
|
-
outputPerM: 8,
|
|
7945
|
-
currency: "USD",
|
|
7946
|
-
unit: "per_million_tokens"
|
|
7947
|
-
}
|
|
7948
|
-
},
|
|
7949
|
-
{
|
|
7950
|
-
name: "ai21.jamba-1-5-mini-v1:0",
|
|
7951
|
-
displayName: "Jamba 1.5 Mini",
|
|
7952
|
-
maxInputTokens: 256e3,
|
|
7953
|
-
supportedFileTypes: [],
|
|
7954
|
-
reasoning: false,
|
|
7955
|
-
supportsTemperature: true,
|
|
7956
|
-
supportsToolCall: true,
|
|
7957
|
-
releaseDate: "2024-08-15",
|
|
7958
|
-
modalities: {
|
|
7959
|
-
input: ["text"],
|
|
7960
|
-
output: ["text"]
|
|
7961
|
-
},
|
|
7962
|
-
pricing: {
|
|
7963
|
-
inputPerM: 0.2,
|
|
7964
|
-
outputPerM: 0.4,
|
|
7965
|
-
currency: "USD",
|
|
7966
|
-
unit: "per_million_tokens"
|
|
7967
|
-
}
|
|
7968
|
-
},
|
|
7969
8058
|
{
|
|
7970
8059
|
name: "amazon.nova-2-lite-v1:0",
|
|
7971
8060
|
displayName: "Nova 2 Lite",
|
|
7972
8061
|
maxInputTokens: 128e3,
|
|
7973
|
-
supportedFileTypes: ["image"],
|
|
8062
|
+
supportedFileTypes: ["image", "video"],
|
|
7974
8063
|
reasoning: false,
|
|
7975
8064
|
supportsTemperature: true,
|
|
7976
8065
|
supportsToolCall: true,
|
|
@@ -7990,7 +8079,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
7990
8079
|
name: "amazon.nova-lite-v1:0",
|
|
7991
8080
|
displayName: "Nova Lite",
|
|
7992
8081
|
maxInputTokens: 3e5,
|
|
7993
|
-
supportedFileTypes: ["image"],
|
|
8082
|
+
supportedFileTypes: ["image", "video"],
|
|
7994
8083
|
reasoning: false,
|
|
7995
8084
|
supportsTemperature: true,
|
|
7996
8085
|
supportsToolCall: true,
|
|
@@ -8032,7 +8121,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
8032
8121
|
name: "amazon.nova-premier-v1:0",
|
|
8033
8122
|
displayName: "Nova Premier",
|
|
8034
8123
|
maxInputTokens: 1e6,
|
|
8035
|
-
supportedFileTypes: ["image"],
|
|
8124
|
+
supportedFileTypes: ["image", "video"],
|
|
8036
8125
|
reasoning: true,
|
|
8037
8126
|
supportsTemperature: true,
|
|
8038
8127
|
supportsToolCall: true,
|
|
@@ -8052,7 +8141,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
8052
8141
|
name: "amazon.nova-pro-v1:0",
|
|
8053
8142
|
displayName: "Nova Pro",
|
|
8054
8143
|
maxInputTokens: 3e5,
|
|
8055
|
-
supportedFileTypes: ["image"],
|
|
8144
|
+
supportedFileTypes: ["image", "video"],
|
|
8056
8145
|
reasoning: false,
|
|
8057
8146
|
supportsTemperature: true,
|
|
8058
8147
|
supportsToolCall: true,
|
|
@@ -8069,46 +8158,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
8069
8158
|
unit: "per_million_tokens"
|
|
8070
8159
|
}
|
|
8071
8160
|
},
|
|
8072
|
-
{
|
|
8073
|
-
name: "amazon.titan-text-express-v1",
|
|
8074
|
-
displayName: "Titan Text G1 - Express",
|
|
8075
|
-
maxInputTokens: 128e3,
|
|
8076
|
-
supportedFileTypes: [],
|
|
8077
|
-
reasoning: false,
|
|
8078
|
-
supportsTemperature: true,
|
|
8079
|
-
supportsToolCall: true,
|
|
8080
|
-
releaseDate: "2024-12-01",
|
|
8081
|
-
modalities: {
|
|
8082
|
-
input: ["text"],
|
|
8083
|
-
output: ["text"]
|
|
8084
|
-
},
|
|
8085
|
-
pricing: {
|
|
8086
|
-
inputPerM: 0.2,
|
|
8087
|
-
outputPerM: 0.6,
|
|
8088
|
-
currency: "USD",
|
|
8089
|
-
unit: "per_million_tokens"
|
|
8090
|
-
}
|
|
8091
|
-
},
|
|
8092
|
-
{
|
|
8093
|
-
name: "amazon.titan-text-express-v1:0:8k",
|
|
8094
|
-
displayName: "Titan Text G1 - Express",
|
|
8095
|
-
maxInputTokens: 128e3,
|
|
8096
|
-
supportedFileTypes: [],
|
|
8097
|
-
reasoning: false,
|
|
8098
|
-
supportsTemperature: true,
|
|
8099
|
-
supportsToolCall: true,
|
|
8100
|
-
releaseDate: "2024-12-01",
|
|
8101
|
-
modalities: {
|
|
8102
|
-
input: ["text"],
|
|
8103
|
-
output: ["text"]
|
|
8104
|
-
},
|
|
8105
|
-
pricing: {
|
|
8106
|
-
inputPerM: 0.2,
|
|
8107
|
-
outputPerM: 0.6,
|
|
8108
|
-
currency: "USD",
|
|
8109
|
-
unit: "per_million_tokens"
|
|
8110
|
-
}
|
|
8111
|
-
},
|
|
8112
8161
|
{
|
|
8113
8162
|
name: "anthropic.claude-3-5-haiku-20241022-v1:0",
|
|
8114
8163
|
displayName: "Claude Haiku 3.5",
|
|
@@ -8217,46 +8266,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
8217
8266
|
unit: "per_million_tokens"
|
|
8218
8267
|
}
|
|
8219
8268
|
},
|
|
8220
|
-
{
|
|
8221
|
-
name: "anthropic.claude-3-opus-20240229-v1:0",
|
|
8222
|
-
displayName: "Claude Opus 3",
|
|
8223
|
-
maxInputTokens: 2e5,
|
|
8224
|
-
supportedFileTypes: ["pdf", "image"],
|
|
8225
|
-
reasoning: false,
|
|
8226
|
-
supportsTemperature: true,
|
|
8227
|
-
supportsToolCall: true,
|
|
8228
|
-
releaseDate: "2024-02-29",
|
|
8229
|
-
modalities: {
|
|
8230
|
-
input: ["text", "image", "pdf"],
|
|
8231
|
-
output: ["text"]
|
|
8232
|
-
},
|
|
8233
|
-
pricing: {
|
|
8234
|
-
inputPerM: 15,
|
|
8235
|
-
outputPerM: 75,
|
|
8236
|
-
currency: "USD",
|
|
8237
|
-
unit: "per_million_tokens"
|
|
8238
|
-
}
|
|
8239
|
-
},
|
|
8240
|
-
{
|
|
8241
|
-
name: "anthropic.claude-3-sonnet-20240229-v1:0",
|
|
8242
|
-
displayName: "Claude Sonnet 3",
|
|
8243
|
-
maxInputTokens: 2e5,
|
|
8244
|
-
supportedFileTypes: ["pdf", "image"],
|
|
8245
|
-
reasoning: false,
|
|
8246
|
-
supportsTemperature: true,
|
|
8247
|
-
supportsToolCall: true,
|
|
8248
|
-
releaseDate: "2024-03-04",
|
|
8249
|
-
modalities: {
|
|
8250
|
-
input: ["text", "image", "pdf"],
|
|
8251
|
-
output: ["text"]
|
|
8252
|
-
},
|
|
8253
|
-
pricing: {
|
|
8254
|
-
inputPerM: 3,
|
|
8255
|
-
outputPerM: 15,
|
|
8256
|
-
currency: "USD",
|
|
8257
|
-
unit: "per_million_tokens"
|
|
8258
|
-
}
|
|
8259
|
-
},
|
|
8260
8269
|
{
|
|
8261
8270
|
name: "anthropic.claude-haiku-4-5-20251001-v1:0",
|
|
8262
8271
|
displayName: "Claude Haiku 4.5",
|
|
@@ -8279,26 +8288,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
8279
8288
|
unit: "per_million_tokens"
|
|
8280
8289
|
}
|
|
8281
8290
|
},
|
|
8282
|
-
{
|
|
8283
|
-
name: "anthropic.claude-instant-v1",
|
|
8284
|
-
displayName: "Claude Instant",
|
|
8285
|
-
maxInputTokens: 1e5,
|
|
8286
|
-
supportedFileTypes: [],
|
|
8287
|
-
reasoning: false,
|
|
8288
|
-
supportsTemperature: true,
|
|
8289
|
-
supportsToolCall: false,
|
|
8290
|
-
releaseDate: "2023-03-01",
|
|
8291
|
-
modalities: {
|
|
8292
|
-
input: ["text"],
|
|
8293
|
-
output: ["text"]
|
|
8294
|
-
},
|
|
8295
|
-
pricing: {
|
|
8296
|
-
inputPerM: 0.8,
|
|
8297
|
-
outputPerM: 2.4,
|
|
8298
|
-
currency: "USD",
|
|
8299
|
-
unit: "per_million_tokens"
|
|
8300
|
-
}
|
|
8301
|
-
},
|
|
8302
8291
|
{
|
|
8303
8292
|
name: "anthropic.claude-opus-4-1-20250805-v1:0",
|
|
8304
8293
|
displayName: "Claude Opus 4.1",
|
|
@@ -8383,10 +8372,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
8383
8372
|
outputPerM: 25,
|
|
8384
8373
|
cacheReadPerM: 0.5,
|
|
8385
8374
|
cacheWritePerM: 6.25,
|
|
8386
|
-
contextOver200kPerM: {
|
|
8387
|
-
inputPerM: 10,
|
|
8388
|
-
outputPerM: 37.5
|
|
8389
|
-
},
|
|
8390
8375
|
currency: "USD",
|
|
8391
8376
|
unit: "per_million_tokens"
|
|
8392
8377
|
}
|
|
@@ -8427,157 +8412,33 @@ const MODELS_BY_PROVIDER = {
|
|
|
8427
8412
|
output: ["text"]
|
|
8428
8413
|
},
|
|
8429
8414
|
pricing: {
|
|
8430
|
-
inputPerM: 3,
|
|
8431
|
-
outputPerM: 15,
|
|
8432
|
-
cacheReadPerM: 0.3,
|
|
8433
|
-
cacheWritePerM: 3.75,
|
|
8434
|
-
currency: "USD",
|
|
8435
|
-
unit: "per_million_tokens"
|
|
8436
|
-
},
|
|
8437
|
-
default: true
|
|
8438
|
-
},
|
|
8439
|
-
{
|
|
8440
|
-
name: "anthropic.claude-sonnet-4-6",
|
|
8441
|
-
displayName: "Claude Sonnet 4.6",
|
|
8442
|
-
maxInputTokens: 2e5,
|
|
8443
|
-
supportedFileTypes: ["pdf", "image"],
|
|
8444
|
-
reasoning: true,
|
|
8445
|
-
supportsTemperature: true,
|
|
8446
|
-
supportsToolCall: true,
|
|
8447
|
-
releaseDate: "2026-02-17",
|
|
8448
|
-
modalities: {
|
|
8449
|
-
input: ["text", "image", "pdf"],
|
|
8450
|
-
output: ["text"]
|
|
8451
|
-
},
|
|
8452
|
-
pricing: {
|
|
8453
|
-
inputPerM: 3,
|
|
8454
|
-
outputPerM: 15,
|
|
8455
|
-
cacheReadPerM: 0.3,
|
|
8456
|
-
cacheWritePerM: 3.75,
|
|
8457
|
-
contextOver200kPerM: {
|
|
8458
|
-
inputPerM: 6,
|
|
8459
|
-
outputPerM: 22.5
|
|
8460
|
-
},
|
|
8461
|
-
currency: "USD",
|
|
8462
|
-
unit: "per_million_tokens"
|
|
8463
|
-
}
|
|
8464
|
-
},
|
|
8465
|
-
{
|
|
8466
|
-
name: "anthropic.claude-v2",
|
|
8467
|
-
displayName: "Claude 2",
|
|
8468
|
-
maxInputTokens: 1e5,
|
|
8469
|
-
supportedFileTypes: [],
|
|
8470
|
-
reasoning: false,
|
|
8471
|
-
supportsTemperature: true,
|
|
8472
|
-
supportsToolCall: false,
|
|
8473
|
-
releaseDate: "2023-07-11",
|
|
8474
|
-
modalities: {
|
|
8475
|
-
input: ["text"],
|
|
8476
|
-
output: ["text"]
|
|
8477
|
-
},
|
|
8478
|
-
pricing: {
|
|
8479
|
-
inputPerM: 8,
|
|
8480
|
-
outputPerM: 24,
|
|
8481
|
-
currency: "USD",
|
|
8482
|
-
unit: "per_million_tokens"
|
|
8483
|
-
}
|
|
8484
|
-
},
|
|
8485
|
-
{
|
|
8486
|
-
name: "anthropic.claude-v2:1",
|
|
8487
|
-
displayName: "Claude 2.1",
|
|
8488
|
-
maxInputTokens: 2e5,
|
|
8489
|
-
supportedFileTypes: [],
|
|
8490
|
-
reasoning: false,
|
|
8491
|
-
supportsTemperature: true,
|
|
8492
|
-
supportsToolCall: false,
|
|
8493
|
-
releaseDate: "2023-11-21",
|
|
8494
|
-
modalities: {
|
|
8495
|
-
input: ["text"],
|
|
8496
|
-
output: ["text"]
|
|
8497
|
-
},
|
|
8498
|
-
pricing: {
|
|
8499
|
-
inputPerM: 8,
|
|
8500
|
-
outputPerM: 24,
|
|
8501
|
-
currency: "USD",
|
|
8502
|
-
unit: "per_million_tokens"
|
|
8503
|
-
}
|
|
8504
|
-
},
|
|
8505
|
-
{
|
|
8506
|
-
name: "cohere.command-light-text-v14",
|
|
8507
|
-
displayName: "Command Light",
|
|
8508
|
-
maxInputTokens: 4096,
|
|
8509
|
-
supportedFileTypes: [],
|
|
8510
|
-
reasoning: false,
|
|
8511
|
-
supportsTemperature: true,
|
|
8512
|
-
supportsToolCall: false,
|
|
8513
|
-
releaseDate: "2023-11-01",
|
|
8514
|
-
modalities: {
|
|
8515
|
-
input: ["text"],
|
|
8516
|
-
output: ["text"]
|
|
8517
|
-
},
|
|
8518
|
-
pricing: {
|
|
8519
|
-
inputPerM: 0.3,
|
|
8520
|
-
outputPerM: 0.6,
|
|
8521
|
-
currency: "USD",
|
|
8522
|
-
unit: "per_million_tokens"
|
|
8523
|
-
}
|
|
8524
|
-
},
|
|
8525
|
-
{
|
|
8526
|
-
name: "cohere.command-r-plus-v1:0",
|
|
8527
|
-
displayName: "Command R+",
|
|
8528
|
-
maxInputTokens: 128e3,
|
|
8529
|
-
supportedFileTypes: [],
|
|
8530
|
-
reasoning: false,
|
|
8531
|
-
supportsTemperature: true,
|
|
8532
|
-
supportsToolCall: true,
|
|
8533
|
-
releaseDate: "2024-04-04",
|
|
8534
|
-
modalities: {
|
|
8535
|
-
input: ["text"],
|
|
8536
|
-
output: ["text"]
|
|
8537
|
-
},
|
|
8538
|
-
pricing: {
|
|
8539
|
-
inputPerM: 3,
|
|
8540
|
-
outputPerM: 15,
|
|
8541
|
-
currency: "USD",
|
|
8542
|
-
unit: "per_million_tokens"
|
|
8543
|
-
}
|
|
8544
|
-
},
|
|
8545
|
-
{
|
|
8546
|
-
name: "cohere.command-r-v1:0",
|
|
8547
|
-
displayName: "Command R",
|
|
8548
|
-
maxInputTokens: 128e3,
|
|
8549
|
-
supportedFileTypes: [],
|
|
8550
|
-
reasoning: false,
|
|
8551
|
-
supportsTemperature: true,
|
|
8552
|
-
supportsToolCall: true,
|
|
8553
|
-
releaseDate: "2024-03-11",
|
|
8554
|
-
modalities: {
|
|
8555
|
-
input: ["text"],
|
|
8556
|
-
output: ["text"]
|
|
8557
|
-
},
|
|
8558
|
-
pricing: {
|
|
8559
|
-
inputPerM: 0.5,
|
|
8560
|
-
outputPerM: 1.5,
|
|
8415
|
+
inputPerM: 3,
|
|
8416
|
+
outputPerM: 15,
|
|
8417
|
+
cacheReadPerM: 0.3,
|
|
8418
|
+
cacheWritePerM: 3.75,
|
|
8561
8419
|
currency: "USD",
|
|
8562
8420
|
unit: "per_million_tokens"
|
|
8563
|
-
}
|
|
8421
|
+
},
|
|
8422
|
+
default: true
|
|
8564
8423
|
},
|
|
8565
8424
|
{
|
|
8566
|
-
name: "
|
|
8567
|
-
displayName: "
|
|
8568
|
-
maxInputTokens:
|
|
8569
|
-
supportedFileTypes: [],
|
|
8570
|
-
reasoning:
|
|
8425
|
+
name: "anthropic.claude-sonnet-4-6",
|
|
8426
|
+
displayName: "Claude Sonnet 4.6",
|
|
8427
|
+
maxInputTokens: 1e6,
|
|
8428
|
+
supportedFileTypes: ["pdf", "image"],
|
|
8429
|
+
reasoning: true,
|
|
8571
8430
|
supportsTemperature: true,
|
|
8572
|
-
supportsToolCall:
|
|
8573
|
-
releaseDate: "
|
|
8431
|
+
supportsToolCall: true,
|
|
8432
|
+
releaseDate: "2026-02-17",
|
|
8574
8433
|
modalities: {
|
|
8575
|
-
input: ["text"],
|
|
8434
|
+
input: ["text", "image", "pdf"],
|
|
8576
8435
|
output: ["text"]
|
|
8577
8436
|
},
|
|
8578
8437
|
pricing: {
|
|
8579
|
-
inputPerM:
|
|
8580
|
-
outputPerM:
|
|
8438
|
+
inputPerM: 3,
|
|
8439
|
+
outputPerM: 15,
|
|
8440
|
+
cacheReadPerM: 0.3,
|
|
8441
|
+
cacheWritePerM: 3.75,
|
|
8581
8442
|
currency: "USD",
|
|
8582
8443
|
unit: "per_million_tokens"
|
|
8583
8444
|
}
|
|
@@ -8623,14 +8484,14 @@ const MODELS_BY_PROVIDER = {
|
|
|
8623
8484
|
}
|
|
8624
8485
|
},
|
|
8625
8486
|
{
|
|
8626
|
-
name: "deepseek.v3.2
|
|
8487
|
+
name: "deepseek.v3.2",
|
|
8627
8488
|
displayName: "DeepSeek-V3.2",
|
|
8628
8489
|
maxInputTokens: 163840,
|
|
8629
8490
|
supportedFileTypes: [],
|
|
8630
8491
|
reasoning: true,
|
|
8631
8492
|
supportsTemperature: true,
|
|
8632
8493
|
supportsToolCall: true,
|
|
8633
|
-
releaseDate: "2026-02-
|
|
8494
|
+
releaseDate: "2026-02-06",
|
|
8634
8495
|
modalities: {
|
|
8635
8496
|
input: ["text"],
|
|
8636
8497
|
output: ["text"]
|
|
@@ -8704,10 +8565,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
8704
8565
|
outputPerM: 25,
|
|
8705
8566
|
cacheReadPerM: 0.5,
|
|
8706
8567
|
cacheWritePerM: 6.25,
|
|
8707
|
-
contextOver200kPerM: {
|
|
8708
|
-
inputPerM: 10,
|
|
8709
|
-
outputPerM: 37.5
|
|
8710
|
-
},
|
|
8711
8568
|
currency: "USD",
|
|
8712
8569
|
unit: "per_million_tokens"
|
|
8713
8570
|
}
|
|
@@ -8759,7 +8616,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
8759
8616
|
{
|
|
8760
8617
|
name: "eu.anthropic.claude-sonnet-4-6",
|
|
8761
8618
|
displayName: "Claude Sonnet 4.6 (EU)",
|
|
8762
|
-
maxInputTokens:
|
|
8619
|
+
maxInputTokens: 1e6,
|
|
8763
8620
|
supportedFileTypes: ["pdf", "image"],
|
|
8764
8621
|
reasoning: true,
|
|
8765
8622
|
supportsTemperature: true,
|
|
@@ -8774,10 +8631,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
8774
8631
|
outputPerM: 15,
|
|
8775
8632
|
cacheReadPerM: 0.3,
|
|
8776
8633
|
cacheWritePerM: 3.75,
|
|
8777
|
-
contextOver200kPerM: {
|
|
8778
|
-
inputPerM: 6,
|
|
8779
|
-
outputPerM: 22.5
|
|
8780
|
-
},
|
|
8781
8634
|
currency: "USD",
|
|
8782
8635
|
unit: "per_million_tokens"
|
|
8783
8636
|
}
|
|
@@ -8844,10 +8697,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
8844
8697
|
outputPerM: 25,
|
|
8845
8698
|
cacheReadPerM: 0.5,
|
|
8846
8699
|
cacheWritePerM: 6.25,
|
|
8847
|
-
contextOver200kPerM: {
|
|
8848
|
-
inputPerM: 10,
|
|
8849
|
-
outputPerM: 37.5
|
|
8850
|
-
},
|
|
8851
8700
|
currency: "USD",
|
|
8852
8701
|
unit: "per_million_tokens"
|
|
8853
8702
|
}
|
|
@@ -8899,7 +8748,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
8899
8748
|
{
|
|
8900
8749
|
name: "global.anthropic.claude-sonnet-4-6",
|
|
8901
8750
|
displayName: "Claude Sonnet 4.6 (Global)",
|
|
8902
|
-
maxInputTokens:
|
|
8751
|
+
maxInputTokens: 1e6,
|
|
8903
8752
|
supportedFileTypes: ["pdf", "image"],
|
|
8904
8753
|
reasoning: true,
|
|
8905
8754
|
supportsTemperature: true,
|
|
@@ -8914,10 +8763,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
8914
8763
|
outputPerM: 15,
|
|
8915
8764
|
cacheReadPerM: 0.3,
|
|
8916
8765
|
cacheWritePerM: 3.75,
|
|
8917
|
-
contextOver200kPerM: {
|
|
8918
|
-
inputPerM: 6,
|
|
8919
|
-
outputPerM: 22.5
|
|
8920
|
-
},
|
|
8921
8766
|
currency: "USD",
|
|
8922
8767
|
unit: "per_million_tokens"
|
|
8923
8768
|
}
|
|
@@ -8982,6 +8827,26 @@ const MODELS_BY_PROVIDER = {
|
|
|
8982
8827
|
unit: "per_million_tokens"
|
|
8983
8828
|
}
|
|
8984
8829
|
},
|
|
8830
|
+
{
|
|
8831
|
+
name: "meta.llama3-1-405b-instruct-v1:0",
|
|
8832
|
+
displayName: "Llama 3.1 405B Instruct",
|
|
8833
|
+
maxInputTokens: 128e3,
|
|
8834
|
+
supportedFileTypes: [],
|
|
8835
|
+
reasoning: false,
|
|
8836
|
+
supportsTemperature: true,
|
|
8837
|
+
supportsToolCall: true,
|
|
8838
|
+
releaseDate: "2024-07-23",
|
|
8839
|
+
modalities: {
|
|
8840
|
+
input: ["text"],
|
|
8841
|
+
output: ["text"]
|
|
8842
|
+
},
|
|
8843
|
+
pricing: {
|
|
8844
|
+
inputPerM: 2.4,
|
|
8845
|
+
outputPerM: 2.4,
|
|
8846
|
+
currency: "USD",
|
|
8847
|
+
unit: "per_million_tokens"
|
|
8848
|
+
}
|
|
8849
|
+
},
|
|
8985
8850
|
{
|
|
8986
8851
|
name: "meta.llama3-1-70b-instruct-v1:0",
|
|
8987
8852
|
displayName: "Llama 3.1 70B Instruct",
|
|
@@ -9122,46 +8987,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
9122
8987
|
unit: "per_million_tokens"
|
|
9123
8988
|
}
|
|
9124
8989
|
},
|
|
9125
|
-
{
|
|
9126
|
-
name: "meta.llama3-70b-instruct-v1:0",
|
|
9127
|
-
displayName: "Llama 3 70B Instruct",
|
|
9128
|
-
maxInputTokens: 8192,
|
|
9129
|
-
supportedFileTypes: [],
|
|
9130
|
-
reasoning: false,
|
|
9131
|
-
supportsTemperature: true,
|
|
9132
|
-
supportsToolCall: false,
|
|
9133
|
-
releaseDate: "2024-07-23",
|
|
9134
|
-
modalities: {
|
|
9135
|
-
input: ["text"],
|
|
9136
|
-
output: ["text"]
|
|
9137
|
-
},
|
|
9138
|
-
pricing: {
|
|
9139
|
-
inputPerM: 2.65,
|
|
9140
|
-
outputPerM: 3.5,
|
|
9141
|
-
currency: "USD",
|
|
9142
|
-
unit: "per_million_tokens"
|
|
9143
|
-
}
|
|
9144
|
-
},
|
|
9145
|
-
{
|
|
9146
|
-
name: "meta.llama3-8b-instruct-v1:0",
|
|
9147
|
-
displayName: "Llama 3 8B Instruct",
|
|
9148
|
-
maxInputTokens: 8192,
|
|
9149
|
-
supportedFileTypes: [],
|
|
9150
|
-
reasoning: false,
|
|
9151
|
-
supportsTemperature: true,
|
|
9152
|
-
supportsToolCall: false,
|
|
9153
|
-
releaseDate: "2024-07-23",
|
|
9154
|
-
modalities: {
|
|
9155
|
-
input: ["text"],
|
|
9156
|
-
output: ["text"]
|
|
9157
|
-
},
|
|
9158
|
-
pricing: {
|
|
9159
|
-
inputPerM: 0.3,
|
|
9160
|
-
outputPerM: 0.6,
|
|
9161
|
-
currency: "USD",
|
|
9162
|
-
unit: "per_million_tokens"
|
|
9163
|
-
}
|
|
9164
|
-
},
|
|
9165
8990
|
{
|
|
9166
8991
|
name: "meta.llama4-maverick-17b-instruct-v1:0",
|
|
9167
8992
|
displayName: "Llama 4 Maverick 17B Instruct",
|
|
@@ -9243,28 +9068,68 @@ const MODELS_BY_PROVIDER = {
|
|
|
9243
9068
|
}
|
|
9244
9069
|
},
|
|
9245
9070
|
{
|
|
9246
|
-
name: "
|
|
9247
|
-
displayName: "
|
|
9248
|
-
maxInputTokens:
|
|
9071
|
+
name: "minimax.minimax-m2.5",
|
|
9072
|
+
displayName: "MiniMax M2.5",
|
|
9073
|
+
maxInputTokens: 196608,
|
|
9074
|
+
supportedFileTypes: [],
|
|
9075
|
+
reasoning: true,
|
|
9076
|
+
supportsTemperature: true,
|
|
9077
|
+
supportsToolCall: true,
|
|
9078
|
+
releaseDate: "2026-03-18",
|
|
9079
|
+
modalities: {
|
|
9080
|
+
input: ["text"],
|
|
9081
|
+
output: ["text"]
|
|
9082
|
+
},
|
|
9083
|
+
pricing: {
|
|
9084
|
+
inputPerM: 0.3,
|
|
9085
|
+
outputPerM: 1.2,
|
|
9086
|
+
currency: "USD",
|
|
9087
|
+
unit: "per_million_tokens"
|
|
9088
|
+
}
|
|
9089
|
+
},
|
|
9090
|
+
{
|
|
9091
|
+
name: "mistral.devstral-2-123b",
|
|
9092
|
+
displayName: "Devstral 2 123B",
|
|
9093
|
+
maxInputTokens: 256e3,
|
|
9249
9094
|
supportedFileTypes: [],
|
|
9250
9095
|
reasoning: false,
|
|
9251
9096
|
supportsTemperature: true,
|
|
9252
9097
|
supportsToolCall: true,
|
|
9253
|
-
releaseDate: "
|
|
9098
|
+
releaseDate: "2026-02-17",
|
|
9254
9099
|
modalities: {
|
|
9255
9100
|
input: ["text"],
|
|
9256
9101
|
output: ["text"]
|
|
9257
9102
|
},
|
|
9258
9103
|
pricing: {
|
|
9259
|
-
inputPerM: 0.
|
|
9260
|
-
outputPerM:
|
|
9104
|
+
inputPerM: 0.4,
|
|
9105
|
+
outputPerM: 2,
|
|
9261
9106
|
currency: "USD",
|
|
9262
9107
|
unit: "per_million_tokens"
|
|
9263
9108
|
}
|
|
9264
9109
|
},
|
|
9265
9110
|
{
|
|
9266
|
-
name: "mistral.
|
|
9267
|
-
displayName: "
|
|
9111
|
+
name: "mistral.magistral-small-2509",
|
|
9112
|
+
displayName: "Magistral Small 1.2",
|
|
9113
|
+
maxInputTokens: 128e3,
|
|
9114
|
+
supportedFileTypes: ["image"],
|
|
9115
|
+
reasoning: true,
|
|
9116
|
+
supportsTemperature: true,
|
|
9117
|
+
supportsToolCall: true,
|
|
9118
|
+
releaseDate: "2025-12-02",
|
|
9119
|
+
modalities: {
|
|
9120
|
+
input: ["text", "image"],
|
|
9121
|
+
output: ["text"]
|
|
9122
|
+
},
|
|
9123
|
+
pricing: {
|
|
9124
|
+
inputPerM: 0.5,
|
|
9125
|
+
outputPerM: 1.5,
|
|
9126
|
+
currency: "USD",
|
|
9127
|
+
unit: "per_million_tokens"
|
|
9128
|
+
}
|
|
9129
|
+
},
|
|
9130
|
+
{
|
|
9131
|
+
name: "mistral.ministral-3-14b-instruct",
|
|
9132
|
+
displayName: "Ministral 14B 3.0",
|
|
9268
9133
|
maxInputTokens: 128e3,
|
|
9269
9134
|
supportedFileTypes: [],
|
|
9270
9135
|
reasoning: false,
|
|
@@ -9276,35 +9141,35 @@ const MODELS_BY_PROVIDER = {
|
|
|
9276
9141
|
output: ["text"]
|
|
9277
9142
|
},
|
|
9278
9143
|
pricing: {
|
|
9279
|
-
inputPerM: 0.
|
|
9280
|
-
outputPerM: 0.
|
|
9144
|
+
inputPerM: 0.2,
|
|
9145
|
+
outputPerM: 0.2,
|
|
9281
9146
|
currency: "USD",
|
|
9282
9147
|
unit: "per_million_tokens"
|
|
9283
9148
|
}
|
|
9284
9149
|
},
|
|
9285
9150
|
{
|
|
9286
|
-
name: "mistral.
|
|
9287
|
-
displayName: "
|
|
9288
|
-
maxInputTokens:
|
|
9289
|
-
supportedFileTypes: [],
|
|
9151
|
+
name: "mistral.ministral-3-3b-instruct",
|
|
9152
|
+
displayName: "Ministral 3 3B",
|
|
9153
|
+
maxInputTokens: 256e3,
|
|
9154
|
+
supportedFileTypes: ["image"],
|
|
9290
9155
|
reasoning: false,
|
|
9291
9156
|
supportsTemperature: true,
|
|
9292
9157
|
supportsToolCall: true,
|
|
9293
|
-
releaseDate: "2025-
|
|
9158
|
+
releaseDate: "2025-12-02",
|
|
9294
9159
|
modalities: {
|
|
9295
|
-
input: ["text"],
|
|
9160
|
+
input: ["text", "image"],
|
|
9296
9161
|
output: ["text"]
|
|
9297
9162
|
},
|
|
9298
9163
|
pricing: {
|
|
9299
|
-
inputPerM: 0.
|
|
9300
|
-
outputPerM: 0.
|
|
9164
|
+
inputPerM: 0.1,
|
|
9165
|
+
outputPerM: 0.1,
|
|
9301
9166
|
currency: "USD",
|
|
9302
9167
|
unit: "per_million_tokens"
|
|
9303
9168
|
}
|
|
9304
9169
|
},
|
|
9305
9170
|
{
|
|
9306
|
-
name: "mistral.
|
|
9307
|
-
displayName: "
|
|
9171
|
+
name: "mistral.ministral-3-8b-instruct",
|
|
9172
|
+
displayName: "Ministral 3 8B",
|
|
9308
9173
|
maxInputTokens: 128e3,
|
|
9309
9174
|
supportedFileTypes: [],
|
|
9310
9175
|
reasoning: false,
|
|
@@ -9315,6 +9180,26 @@ const MODELS_BY_PROVIDER = {
|
|
|
9315
9180
|
input: ["text"],
|
|
9316
9181
|
output: ["text"]
|
|
9317
9182
|
},
|
|
9183
|
+
pricing: {
|
|
9184
|
+
inputPerM: 0.15,
|
|
9185
|
+
outputPerM: 0.15,
|
|
9186
|
+
currency: "USD",
|
|
9187
|
+
unit: "per_million_tokens"
|
|
9188
|
+
}
|
|
9189
|
+
},
|
|
9190
|
+
{
|
|
9191
|
+
name: "mistral.mistral-large-3-675b-instruct",
|
|
9192
|
+
displayName: "Mistral Large 3",
|
|
9193
|
+
maxInputTokens: 256e3,
|
|
9194
|
+
supportedFileTypes: ["image"],
|
|
9195
|
+
reasoning: false,
|
|
9196
|
+
supportsTemperature: true,
|
|
9197
|
+
supportsToolCall: true,
|
|
9198
|
+
releaseDate: "2025-12-02",
|
|
9199
|
+
modalities: {
|
|
9200
|
+
input: ["text", "image"],
|
|
9201
|
+
output: ["text"]
|
|
9202
|
+
},
|
|
9318
9203
|
pricing: {
|
|
9319
9204
|
inputPerM: 0.5,
|
|
9320
9205
|
outputPerM: 1.5,
|
|
@@ -9323,21 +9208,21 @@ const MODELS_BY_PROVIDER = {
|
|
|
9323
9208
|
}
|
|
9324
9209
|
},
|
|
9325
9210
|
{
|
|
9326
|
-
name: "mistral.
|
|
9327
|
-
displayName: "
|
|
9328
|
-
maxInputTokens:
|
|
9329
|
-
supportedFileTypes: [],
|
|
9211
|
+
name: "mistral.pixtral-large-2502-v1:0",
|
|
9212
|
+
displayName: "Pixtral Large (25.02)",
|
|
9213
|
+
maxInputTokens: 128e3,
|
|
9214
|
+
supportedFileTypes: ["image"],
|
|
9330
9215
|
reasoning: false,
|
|
9331
9216
|
supportsTemperature: true,
|
|
9332
|
-
supportsToolCall:
|
|
9333
|
-
releaseDate: "2025-04-
|
|
9217
|
+
supportsToolCall: true,
|
|
9218
|
+
releaseDate: "2025-04-08",
|
|
9334
9219
|
modalities: {
|
|
9335
|
-
input: ["text"],
|
|
9220
|
+
input: ["text", "image"],
|
|
9336
9221
|
output: ["text"]
|
|
9337
9222
|
},
|
|
9338
9223
|
pricing: {
|
|
9339
|
-
inputPerM:
|
|
9340
|
-
outputPerM:
|
|
9224
|
+
inputPerM: 2,
|
|
9225
|
+
outputPerM: 6,
|
|
9341
9226
|
currency: "USD",
|
|
9342
9227
|
unit: "per_million_tokens"
|
|
9343
9228
|
}
|
|
@@ -9446,6 +9331,26 @@ const MODELS_BY_PROVIDER = {
|
|
|
9446
9331
|
unit: "per_million_tokens"
|
|
9447
9332
|
}
|
|
9448
9333
|
},
|
|
9334
|
+
{
|
|
9335
|
+
name: "nvidia.nemotron-nano-3-30b",
|
|
9336
|
+
displayName: "NVIDIA Nemotron Nano 3 30B",
|
|
9337
|
+
maxInputTokens: 128e3,
|
|
9338
|
+
supportedFileTypes: [],
|
|
9339
|
+
reasoning: true,
|
|
9340
|
+
supportsTemperature: true,
|
|
9341
|
+
supportsToolCall: true,
|
|
9342
|
+
releaseDate: "2025-12-23",
|
|
9343
|
+
modalities: {
|
|
9344
|
+
input: ["text"],
|
|
9345
|
+
output: ["text"]
|
|
9346
|
+
},
|
|
9347
|
+
pricing: {
|
|
9348
|
+
inputPerM: 0.06,
|
|
9349
|
+
outputPerM: 0.24,
|
|
9350
|
+
currency: "USD",
|
|
9351
|
+
unit: "per_million_tokens"
|
|
9352
|
+
}
|
|
9353
|
+
},
|
|
9449
9354
|
{
|
|
9450
9355
|
name: "nvidia.nemotron-nano-9b-v2",
|
|
9451
9356
|
displayName: "NVIDIA Nemotron Nano 9B v2",
|
|
@@ -9466,6 +9371,26 @@ const MODELS_BY_PROVIDER = {
|
|
|
9466
9371
|
unit: "per_million_tokens"
|
|
9467
9372
|
}
|
|
9468
9373
|
},
|
|
9374
|
+
{
|
|
9375
|
+
name: "nvidia.nemotron-super-3-120b",
|
|
9376
|
+
displayName: "NVIDIA Nemotron 3 Super 120B A12B",
|
|
9377
|
+
maxInputTokens: 262144,
|
|
9378
|
+
supportedFileTypes: [],
|
|
9379
|
+
reasoning: true,
|
|
9380
|
+
supportsTemperature: true,
|
|
9381
|
+
supportsToolCall: true,
|
|
9382
|
+
releaseDate: "2026-03-11",
|
|
9383
|
+
modalities: {
|
|
9384
|
+
input: ["text"],
|
|
9385
|
+
output: ["text"]
|
|
9386
|
+
},
|
|
9387
|
+
pricing: {
|
|
9388
|
+
inputPerM: 0.15,
|
|
9389
|
+
outputPerM: 0.65,
|
|
9390
|
+
currency: "USD",
|
|
9391
|
+
unit: "per_million_tokens"
|
|
9392
|
+
}
|
|
9393
|
+
},
|
|
9469
9394
|
{
|
|
9470
9395
|
name: "openai.gpt-oss-120b-1:0",
|
|
9471
9396
|
displayName: "gpt-oss-120b",
|
|
@@ -9772,10 +9697,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
9772
9697
|
outputPerM: 25,
|
|
9773
9698
|
cacheReadPerM: 0.5,
|
|
9774
9699
|
cacheWritePerM: 6.25,
|
|
9775
|
-
contextOver200kPerM: {
|
|
9776
|
-
inputPerM: 10,
|
|
9777
|
-
outputPerM: 37.5
|
|
9778
|
-
},
|
|
9779
9700
|
currency: "USD",
|
|
9780
9701
|
unit: "per_million_tokens"
|
|
9781
9702
|
}
|
|
@@ -9827,7 +9748,7 @@ const MODELS_BY_PROVIDER = {
|
|
|
9827
9748
|
{
|
|
9828
9749
|
name: "us.anthropic.claude-sonnet-4-6",
|
|
9829
9750
|
displayName: "Claude Sonnet 4.6 (US)",
|
|
9830
|
-
maxInputTokens:
|
|
9751
|
+
maxInputTokens: 1e6,
|
|
9831
9752
|
supportedFileTypes: ["pdf", "image"],
|
|
9832
9753
|
reasoning: true,
|
|
9833
9754
|
supportsTemperature: true,
|
|
@@ -9842,10 +9763,6 @@ const MODELS_BY_PROVIDER = {
|
|
|
9842
9763
|
outputPerM: 15,
|
|
9843
9764
|
cacheReadPerM: 0.3,
|
|
9844
9765
|
cacheWritePerM: 3.75,
|
|
9845
|
-
contextOver200kPerM: {
|
|
9846
|
-
inputPerM: 6,
|
|
9847
|
-
outputPerM: 22.5
|
|
9848
|
-
},
|
|
9849
9766
|
currency: "USD",
|
|
9850
9767
|
unit: "per_million_tokens"
|
|
9851
9768
|
}
|
|
@@ -9933,6 +9850,30 @@ const MODELS_BY_PROVIDER = {
|
|
|
9933
9850
|
currency: "USD",
|
|
9934
9851
|
unit: "per_million_tokens"
|
|
9935
9852
|
}
|
|
9853
|
+
},
|
|
9854
|
+
{
|
|
9855
|
+
name: "zai.glm-5",
|
|
9856
|
+
displayName: "GLM-5",
|
|
9857
|
+
maxInputTokens: 202752,
|
|
9858
|
+
supportedFileTypes: [],
|
|
9859
|
+
reasoning: true,
|
|
9860
|
+
supportsTemperature: true,
|
|
9861
|
+
supportsToolCall: true,
|
|
9862
|
+
releaseDate: "2026-03-18",
|
|
9863
|
+
modalities: {
|
|
9864
|
+
input: ["text"],
|
|
9865
|
+
output: ["text"]
|
|
9866
|
+
},
|
|
9867
|
+
interleaved: {
|
|
9868
|
+
field: "reasoning_content"
|
|
9869
|
+
},
|
|
9870
|
+
supportsInterleaved: true,
|
|
9871
|
+
pricing: {
|
|
9872
|
+
inputPerM: 1,
|
|
9873
|
+
outputPerM: 3.2,
|
|
9874
|
+
currency: "USD",
|
|
9875
|
+
unit: "per_million_tokens"
|
|
9876
|
+
}
|
|
9936
9877
|
}
|
|
9937
9878
|
],
|
|
9938
9879
|
local: [],
|
|
@@ -9994,7 +9935,12 @@ const MODELS_DEV_PROVIDER_METADATA_BY_PROVIDER = {
|
|
|
9994
9935
|
doc: "https://cloud.google.com/vertex-ai/generative-ai/docs/models"
|
|
9995
9936
|
},
|
|
9996
9937
|
bedrock: {
|
|
9997
|
-
env: [
|
|
9938
|
+
env: [
|
|
9939
|
+
"AWS_ACCESS_KEY_ID",
|
|
9940
|
+
"AWS_SECRET_ACCESS_KEY",
|
|
9941
|
+
"AWS_REGION",
|
|
9942
|
+
"AWS_BEARER_TOKEN_BEDROCK"
|
|
9943
|
+
],
|
|
9998
9944
|
npm: "@ai-sdk/amazon-bedrock",
|
|
9999
9945
|
doc: "https://docs.aws.amazon.com/bedrock/latest/userguide/models-supported.html"
|
|
10000
9946
|
}
|