@pydantic/genai-prices 0.0.55 → 0.0.60
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/cli.js +2063 -1382
- package/dist/index.cjs +5 -5
- package/dist/index.js +1940 -1259
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const
|
|
1
|
+
const Q = [
|
|
2
2
|
{
|
|
3
3
|
id: "anthropic",
|
|
4
4
|
name: "Anthropic",
|
|
@@ -337,43 +337,88 @@ const I = [
|
|
|
337
337
|
]
|
|
338
338
|
},
|
|
339
339
|
context_window: 2e5,
|
|
340
|
-
prices:
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
340
|
+
prices: [
|
|
341
|
+
{
|
|
342
|
+
prices: {
|
|
343
|
+
input_mtok: {
|
|
344
|
+
base: 5,
|
|
345
|
+
tiers: [
|
|
346
|
+
{
|
|
347
|
+
start: 2e5,
|
|
348
|
+
price: 10
|
|
349
|
+
}
|
|
350
|
+
]
|
|
351
|
+
},
|
|
352
|
+
cache_write_mtok: {
|
|
353
|
+
base: 6.25,
|
|
354
|
+
tiers: [
|
|
355
|
+
{
|
|
356
|
+
start: 2e5,
|
|
357
|
+
price: 12.5
|
|
358
|
+
}
|
|
359
|
+
]
|
|
360
|
+
},
|
|
361
|
+
cache_read_mtok: {
|
|
362
|
+
base: 0.5,
|
|
363
|
+
tiers: [
|
|
364
|
+
{
|
|
365
|
+
start: 2e5,
|
|
366
|
+
price: 1
|
|
367
|
+
}
|
|
368
|
+
]
|
|
369
|
+
},
|
|
370
|
+
output_mtok: {
|
|
371
|
+
base: 25,
|
|
372
|
+
tiers: [
|
|
373
|
+
{
|
|
374
|
+
start: 2e5,
|
|
375
|
+
price: 37.5
|
|
376
|
+
}
|
|
377
|
+
]
|
|
365
378
|
}
|
|
366
|
-
|
|
379
|
+
}
|
|
367
380
|
},
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
381
|
+
{
|
|
382
|
+
constraint: {
|
|
383
|
+
start_date: "2026-03-13",
|
|
384
|
+
type: "start_date"
|
|
385
|
+
},
|
|
386
|
+
prices: {
|
|
387
|
+
input_mtok: 5,
|
|
388
|
+
cache_write_mtok: 6.25,
|
|
389
|
+
cache_read_mtok: 0.5,
|
|
390
|
+
output_mtok: 25
|
|
391
|
+
}
|
|
376
392
|
}
|
|
393
|
+
]
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
id: "claude-opus-4-7",
|
|
397
|
+
name: "Claude Opus 4.7",
|
|
398
|
+
description: "Our most capable model for complex reasoning and agentic coding",
|
|
399
|
+
match: {
|
|
400
|
+
or: [
|
|
401
|
+
{
|
|
402
|
+
starts_with: "claude-opus-4-7"
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
starts_with: "claude-opus-4.7"
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
starts_with: "claude-4-7-opus"
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
starts_with: "claude-4.7-opus"
|
|
412
|
+
}
|
|
413
|
+
]
|
|
414
|
+
},
|
|
415
|
+
context_window: 1e6,
|
|
416
|
+
price_comments: "Flat pricing across full 1M context window (no tiered pricing). Ref: https://platform.claude.com/docs/en/about-claude/pricing#long-context-pricing",
|
|
417
|
+
prices: {
|
|
418
|
+
input_mtok: 5,
|
|
419
|
+
cache_write_mtok: 6.25,
|
|
420
|
+
cache_read_mtok: 0.5,
|
|
421
|
+
output_mtok: 25
|
|
377
422
|
}
|
|
378
423
|
},
|
|
379
424
|
{
|
|
@@ -476,44 +521,60 @@ const I = [
|
|
|
476
521
|
]
|
|
477
522
|
},
|
|
478
523
|
context_window: 1e6,
|
|
479
|
-
prices:
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
524
|
+
prices: [
|
|
525
|
+
{
|
|
526
|
+
prices: {
|
|
527
|
+
input_mtok: {
|
|
528
|
+
base: 3,
|
|
529
|
+
tiers: [
|
|
530
|
+
{
|
|
531
|
+
start: 2e5,
|
|
532
|
+
price: 6
|
|
533
|
+
}
|
|
534
|
+
]
|
|
535
|
+
},
|
|
536
|
+
cache_write_mtok: {
|
|
537
|
+
base: 3.75,
|
|
538
|
+
tiers: [
|
|
539
|
+
{
|
|
540
|
+
start: 2e5,
|
|
541
|
+
price: 7.5
|
|
542
|
+
}
|
|
543
|
+
]
|
|
544
|
+
},
|
|
545
|
+
cache_read_mtok: {
|
|
546
|
+
base: 0.3,
|
|
547
|
+
tiers: [
|
|
548
|
+
{
|
|
549
|
+
start: 2e5,
|
|
550
|
+
price: 0.6
|
|
551
|
+
}
|
|
552
|
+
]
|
|
553
|
+
},
|
|
554
|
+
output_mtok: {
|
|
555
|
+
base: 15,
|
|
556
|
+
tiers: [
|
|
557
|
+
{
|
|
558
|
+
start: 2e5,
|
|
559
|
+
price: 22.5
|
|
560
|
+
}
|
|
561
|
+
]
|
|
504
562
|
}
|
|
505
|
-
|
|
563
|
+
}
|
|
506
564
|
},
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
565
|
+
{
|
|
566
|
+
constraint: {
|
|
567
|
+
start_date: "2026-03-13",
|
|
568
|
+
type: "start_date"
|
|
569
|
+
},
|
|
570
|
+
prices: {
|
|
571
|
+
input_mtok: 3,
|
|
572
|
+
cache_write_mtok: 3.75,
|
|
573
|
+
cache_read_mtok: 0.3,
|
|
574
|
+
output_mtok: 15
|
|
575
|
+
}
|
|
515
576
|
}
|
|
516
|
-
|
|
577
|
+
]
|
|
517
578
|
},
|
|
518
579
|
{
|
|
519
580
|
id: "claude-v1",
|
|
@@ -646,7 +707,7 @@ const I = [
|
|
|
646
707
|
name: "Nova Lite",
|
|
647
708
|
description: "Amazon Nova Lite 1.0 is a very low-cost multimodal model from Amazon that focused on fast processing of image, video, and text inputs to generate text output. Amazon Nova Lite can handle real-time customer interactions, document analysis, and visual question-answering tasks with high accuracy.",
|
|
648
709
|
match: {
|
|
649
|
-
contains: "amazon.nova-lite
|
|
710
|
+
contains: "amazon.nova-lite"
|
|
650
711
|
},
|
|
651
712
|
prices: {
|
|
652
713
|
input_mtok: 0.06,
|
|
@@ -659,7 +720,7 @@ const I = [
|
|
|
659
720
|
name: "Nova Micro",
|
|
660
721
|
description: "Amazon Nova Micro 1.0 is a text-only model that delivers the lowest latency responses in the Amazon Nova family of models at a very low cost. With a context length of 128K tokens and optimized for speed and cost, Amazon Nova Micro excels at tasks such as text summarization, translation, content classification, interactive chat, and brainstorming. It has simple mathematical reasoning and coding abilities.",
|
|
661
722
|
match: {
|
|
662
|
-
contains: "amazon.nova-micro
|
|
723
|
+
contains: "amazon.nova-micro"
|
|
663
724
|
},
|
|
664
725
|
prices: {
|
|
665
726
|
input_mtok: 0.035,
|
|
@@ -671,7 +732,7 @@ const I = [
|
|
|
671
732
|
id: "amazon.nova-premier-v1:0",
|
|
672
733
|
name: "Nova Premier",
|
|
673
734
|
match: {
|
|
674
|
-
contains: "amazon.nova-premier
|
|
735
|
+
contains: "amazon.nova-premier"
|
|
675
736
|
},
|
|
676
737
|
prices: {
|
|
677
738
|
input_mtok: 2.5,
|
|
@@ -684,7 +745,7 @@ const I = [
|
|
|
684
745
|
name: "Nova Pro",
|
|
685
746
|
description: "Amazon Nova Pro 1.0 is a capable multimodal model from Amazon focused on providing a combination of accuracy, speed, and cost for a wide range of tasks. As of December 2024, it achieves state-of-the-art performance on key benchmarks including visual question answering (TextVQA) and video understanding (VATEX).",
|
|
686
747
|
match: {
|
|
687
|
-
contains: "amazon.nova-pro
|
|
748
|
+
contains: "amazon.nova-pro"
|
|
688
749
|
},
|
|
689
750
|
prices: {
|
|
690
751
|
input_mtok: 0.8,
|
|
@@ -696,7 +757,7 @@ const I = [
|
|
|
696
757
|
id: "amazon.nova-sonic-v1:0",
|
|
697
758
|
name: "Nova Sonic",
|
|
698
759
|
match: {
|
|
699
|
-
contains: "amazon.nova-sonic
|
|
760
|
+
contains: "amazon.nova-sonic"
|
|
700
761
|
},
|
|
701
762
|
prices: {
|
|
702
763
|
input_mtok: 0.06,
|
|
@@ -709,7 +770,7 @@ const I = [
|
|
|
709
770
|
id: "amazon.titan-embed-text-v1",
|
|
710
771
|
name: "Titan Embeddings G1 - Text",
|
|
711
772
|
match: {
|
|
712
|
-
contains: "amazon.titan-embed-text
|
|
773
|
+
contains: "amazon.titan-embed-text"
|
|
713
774
|
},
|
|
714
775
|
prices: {
|
|
715
776
|
input_mtok: 0.1
|
|
@@ -741,7 +802,7 @@ const I = [
|
|
|
741
802
|
id: "deepseek.r1-v1:0",
|
|
742
803
|
name: "DeepSeek-R1",
|
|
743
804
|
match: {
|
|
744
|
-
contains: "deepseek.r1
|
|
805
|
+
contains: "deepseek.r1"
|
|
745
806
|
},
|
|
746
807
|
prices: {
|
|
747
808
|
input_mtok: 1.35,
|
|
@@ -751,7 +812,7 @@ const I = [
|
|
|
751
812
|
{
|
|
752
813
|
id: "global.anthropic.claude-haiku-4-5-20251001-v1:0",
|
|
753
814
|
match: {
|
|
754
|
-
contains: "global.anthropic.claude-haiku-4-5-20251001
|
|
815
|
+
contains: "global.anthropic.claude-haiku-4-5-20251001"
|
|
755
816
|
},
|
|
756
817
|
prices: {
|
|
757
818
|
input_mtok: 1,
|
|
@@ -816,10 +877,22 @@ const I = [
|
|
|
816
877
|
}
|
|
817
878
|
}
|
|
818
879
|
},
|
|
880
|
+
{
|
|
881
|
+
id: "global.anthropic.claude-opus-4-7-v1:0",
|
|
882
|
+
match: {
|
|
883
|
+
contains: "global.anthropic.claude-opus-4-7"
|
|
884
|
+
},
|
|
885
|
+
prices: {
|
|
886
|
+
input_mtok: 5,
|
|
887
|
+
cache_write_mtok: 6.25,
|
|
888
|
+
cache_read_mtok: 0.5,
|
|
889
|
+
output_mtok: 25
|
|
890
|
+
}
|
|
891
|
+
},
|
|
819
892
|
{
|
|
820
893
|
id: "global.anthropic.claude-sonnet-4-20250514-v1:0",
|
|
821
894
|
match: {
|
|
822
|
-
contains: "global.anthropic.claude-sonnet-4-20250514
|
|
895
|
+
contains: "global.anthropic.claude-sonnet-4-20250514"
|
|
823
896
|
},
|
|
824
897
|
prices: {
|
|
825
898
|
input_mtok: 3,
|
|
@@ -831,7 +904,7 @@ const I = [
|
|
|
831
904
|
{
|
|
832
905
|
id: "global.anthropic.claude-sonnet-4-5-20250929-v1:0",
|
|
833
906
|
match: {
|
|
834
|
-
contains: "global.anthropic.claude-sonnet-4-5-20250929
|
|
907
|
+
contains: "global.anthropic.claude-sonnet-4-5-20250929"
|
|
835
908
|
},
|
|
836
909
|
prices: {
|
|
837
910
|
input_mtok: 3,
|
|
@@ -888,7 +961,7 @@ const I = [
|
|
|
888
961
|
id: "meta.llama3-1-70b-instruct-v1:0",
|
|
889
962
|
name: "Llama 3.1 70B Instruct",
|
|
890
963
|
match: {
|
|
891
|
-
contains: "meta.llama3-1-70b-instruct
|
|
964
|
+
contains: "meta.llama3-1-70b-instruct"
|
|
892
965
|
},
|
|
893
966
|
prices: {
|
|
894
967
|
input_mtok: 0.72,
|
|
@@ -899,7 +972,7 @@ const I = [
|
|
|
899
972
|
id: "meta.llama3-1-8b-instruct-v1:0",
|
|
900
973
|
name: "Llama 3.1 8B Instruct",
|
|
901
974
|
match: {
|
|
902
|
-
contains: "meta.llama3-1-8b-instruct
|
|
975
|
+
contains: "meta.llama3-1-8b-instruct"
|
|
903
976
|
},
|
|
904
977
|
prices: {
|
|
905
978
|
input_mtok: 0.22,
|
|
@@ -910,7 +983,7 @@ const I = [
|
|
|
910
983
|
id: "meta.llama3-2-11b-instruct-v1:0",
|
|
911
984
|
name: "Llama 3.2 11B Instruct",
|
|
912
985
|
match: {
|
|
913
|
-
contains: "meta.llama3-2-11b-instruct
|
|
986
|
+
contains: "meta.llama3-2-11b-instruct"
|
|
914
987
|
},
|
|
915
988
|
prices: {
|
|
916
989
|
input_mtok: 0.16,
|
|
@@ -921,7 +994,7 @@ const I = [
|
|
|
921
994
|
id: "meta.llama3-2-1b-instruct-v1:0",
|
|
922
995
|
name: "Llama 3.2 1B Instruct",
|
|
923
996
|
match: {
|
|
924
|
-
contains: "meta.llama3-2-1b-instruct
|
|
997
|
+
contains: "meta.llama3-2-1b-instruct"
|
|
925
998
|
},
|
|
926
999
|
prices: {
|
|
927
1000
|
input_mtok: 0.1,
|
|
@@ -932,7 +1005,7 @@ const I = [
|
|
|
932
1005
|
id: "meta.llama3-2-3b-instruct-v1:0",
|
|
933
1006
|
name: "Llama 3.2 3B Instruct",
|
|
934
1007
|
match: {
|
|
935
|
-
contains: "meta.llama3-2-3b-instruct
|
|
1008
|
+
contains: "meta.llama3-2-3b-instruct"
|
|
936
1009
|
},
|
|
937
1010
|
prices: {
|
|
938
1011
|
input_mtok: 0.15,
|
|
@@ -943,7 +1016,7 @@ const I = [
|
|
|
943
1016
|
id: "meta.llama3-2-90b-instruct-v1:0",
|
|
944
1017
|
name: "Llama 3.2 90B Instruct",
|
|
945
1018
|
match: {
|
|
946
|
-
contains: "meta.llama3-2-90b-instruct
|
|
1019
|
+
contains: "meta.llama3-2-90b-instruct"
|
|
947
1020
|
},
|
|
948
1021
|
prices: {
|
|
949
1022
|
input_mtok: 0.72,
|
|
@@ -954,7 +1027,7 @@ const I = [
|
|
|
954
1027
|
id: "meta.llama3-3-70b-instruct-v1:0",
|
|
955
1028
|
name: "Llama 3.3 70B Instruct",
|
|
956
1029
|
match: {
|
|
957
|
-
contains: "meta.llama3-3-70b-instruct
|
|
1030
|
+
contains: "meta.llama3-3-70b-instruct"
|
|
958
1031
|
},
|
|
959
1032
|
prices: {
|
|
960
1033
|
input_mtok: 0.72,
|
|
@@ -965,7 +1038,7 @@ const I = [
|
|
|
965
1038
|
id: "meta.llama3-70b-instruct-v1:0",
|
|
966
1039
|
name: "Llama 3 70B Instruct",
|
|
967
1040
|
match: {
|
|
968
|
-
contains: "meta.llama3-70b-instruct
|
|
1041
|
+
contains: "meta.llama3-70b-instruct"
|
|
969
1042
|
},
|
|
970
1043
|
prices: {
|
|
971
1044
|
input_mtok: 2.65,
|
|
@@ -976,7 +1049,7 @@ const I = [
|
|
|
976
1049
|
id: "meta.llama3-8b-instruct-v1:0",
|
|
977
1050
|
name: "Llama 3 8B Instruct",
|
|
978
1051
|
match: {
|
|
979
|
-
contains: "meta.llama3-8b-instruct
|
|
1052
|
+
contains: "meta.llama3-8b-instruct"
|
|
980
1053
|
},
|
|
981
1054
|
prices: {
|
|
982
1055
|
input_mtok: 0.3,
|
|
@@ -987,7 +1060,7 @@ const I = [
|
|
|
987
1060
|
id: "meta.llama4-maverick-17b-instruct-v1:0",
|
|
988
1061
|
name: "Llama 4 Maverick 17B Instruct",
|
|
989
1062
|
match: {
|
|
990
|
-
contains: "meta.llama4-maverick-17b-instruct
|
|
1063
|
+
contains: "meta.llama4-maverick-17b-instruct"
|
|
991
1064
|
},
|
|
992
1065
|
prices: {
|
|
993
1066
|
input_mtok: 0.24,
|
|
@@ -998,7 +1071,7 @@ const I = [
|
|
|
998
1071
|
id: "meta.llama4-scout-17b-instruct-v1:0",
|
|
999
1072
|
name: "Llama 4 Scout 17B Instruct",
|
|
1000
1073
|
match: {
|
|
1001
|
-
contains: "meta.llama4-scout-17b-instruct
|
|
1074
|
+
contains: "meta.llama4-scout-17b-instruct"
|
|
1002
1075
|
},
|
|
1003
1076
|
prices: {
|
|
1004
1077
|
input_mtok: 0.17,
|
|
@@ -1020,7 +1093,7 @@ const I = [
|
|
|
1020
1093
|
id: "mistral.mistral-large-2402-v1:0",
|
|
1021
1094
|
name: "Mistral Large (24.02)",
|
|
1022
1095
|
match: {
|
|
1023
|
-
contains: "mistral.mistral-large-2402
|
|
1096
|
+
contains: "mistral.mistral-large-2402"
|
|
1024
1097
|
},
|
|
1025
1098
|
prices: {
|
|
1026
1099
|
input_mtok: 4,
|
|
@@ -1031,7 +1104,7 @@ const I = [
|
|
|
1031
1104
|
id: "mistral.mistral-small-2402-v1:0",
|
|
1032
1105
|
name: "Mistral Small (24.02)",
|
|
1033
1106
|
match: {
|
|
1034
|
-
contains: "mistral.mistral-small-2402
|
|
1107
|
+
contains: "mistral.mistral-small-2402"
|
|
1035
1108
|
},
|
|
1036
1109
|
prices: {
|
|
1037
1110
|
input_mtok: 1,
|
|
@@ -1053,13 +1126,46 @@ const I = [
|
|
|
1053
1126
|
id: "mistral.pixtral-large-2502-v1:0",
|
|
1054
1127
|
name: "Pixtral Large (25.02)",
|
|
1055
1128
|
match: {
|
|
1056
|
-
contains: "mistral.pixtral-large-2502
|
|
1129
|
+
contains: "mistral.pixtral-large-2502"
|
|
1057
1130
|
},
|
|
1058
1131
|
prices: {
|
|
1059
1132
|
input_mtok: 2,
|
|
1060
1133
|
output_mtok: 6
|
|
1061
1134
|
}
|
|
1062
1135
|
},
|
|
1136
|
+
{
|
|
1137
|
+
id: "nvidia.nemotron-nano-3-30b:0",
|
|
1138
|
+
name: "Nemotron 3 Nano 30B",
|
|
1139
|
+
match: {
|
|
1140
|
+
contains: "nvidia.nemotron-nano-3-30b"
|
|
1141
|
+
},
|
|
1142
|
+
prices: {
|
|
1143
|
+
input_mtok: 0.06,
|
|
1144
|
+
output_mtok: 0.24
|
|
1145
|
+
}
|
|
1146
|
+
},
|
|
1147
|
+
{
|
|
1148
|
+
id: "nvidia.nemotron-nano-9b-v2:0",
|
|
1149
|
+
name: "Nemotron 2 Nano 9B",
|
|
1150
|
+
match: {
|
|
1151
|
+
contains: "nvidia.nemotron-nano-9b-v2"
|
|
1152
|
+
},
|
|
1153
|
+
prices: {
|
|
1154
|
+
input_mtok: 0.06,
|
|
1155
|
+
output_mtok: 0.23
|
|
1156
|
+
}
|
|
1157
|
+
},
|
|
1158
|
+
{
|
|
1159
|
+
id: "nvidia.nemotron-super-3-120b:0",
|
|
1160
|
+
name: "Nemotron 3 Super 120B",
|
|
1161
|
+
match: {
|
|
1162
|
+
contains: "nvidia.nemotron-super-3-120b"
|
|
1163
|
+
},
|
|
1164
|
+
prices: {
|
|
1165
|
+
input_mtok: 0.15,
|
|
1166
|
+
output_mtok: 0.65
|
|
1167
|
+
}
|
|
1168
|
+
},
|
|
1063
1169
|
{
|
|
1064
1170
|
id: "openai.gpt-oss-120b-1:0",
|
|
1065
1171
|
name: "gpt-oss-120b",
|
|
@@ -1086,7 +1192,7 @@ const I = [
|
|
|
1086
1192
|
id: "qwen.qwen3-32b-v1:0",
|
|
1087
1193
|
name: "Qwen3 32B (dense)",
|
|
1088
1194
|
match: {
|
|
1089
|
-
contains: "qwen.qwen3-32b
|
|
1195
|
+
contains: "qwen.qwen3-32b"
|
|
1090
1196
|
},
|
|
1091
1197
|
prices: {
|
|
1092
1198
|
input_mtok: 0.15,
|
|
@@ -1097,7 +1203,7 @@ const I = [
|
|
|
1097
1203
|
id: "qwen.qwen3-coder-30b-a3b-v1:0",
|
|
1098
1204
|
name: "Qwen3-Coder-30B-A3B-Instruct",
|
|
1099
1205
|
match: {
|
|
1100
|
-
contains: "qwen.qwen3-coder-30b-a3b
|
|
1206
|
+
contains: "qwen.qwen3-coder-30b-a3b"
|
|
1101
1207
|
},
|
|
1102
1208
|
prices: {
|
|
1103
1209
|
input_mtok: 0.15,
|
|
@@ -1108,36 +1214,28 @@ const I = [
|
|
|
1108
1214
|
id: "qwen.qwen3-coder-480b-a35b-v1:0",
|
|
1109
1215
|
name: "Qwen3-Coder-480B-A35B-Instruct",
|
|
1110
1216
|
match: {
|
|
1111
|
-
contains: "qwen.qwen3-coder-480b-a35b
|
|
1217
|
+
contains: "qwen.qwen3-coder-480b-a35b"
|
|
1112
1218
|
},
|
|
1113
1219
|
prices: {
|
|
1114
1220
|
input_mtok: 0.45,
|
|
1115
1221
|
output_mtok: 1.8
|
|
1116
1222
|
}
|
|
1117
1223
|
},
|
|
1224
|
+
{
|
|
1225
|
+
id: "qwen.qwen3-vl-235b-a22b-v1:0",
|
|
1226
|
+
name: "Qwen3-VL-235B-A22B-Instruct",
|
|
1227
|
+
match: {
|
|
1228
|
+
contains: "qwen.qwen3-vl-235b-a22b"
|
|
1229
|
+
},
|
|
1230
|
+
prices: {
|
|
1231
|
+
input_mtok: 0.53,
|
|
1232
|
+
output_mtok: 2.66
|
|
1233
|
+
}
|
|
1234
|
+
},
|
|
1118
1235
|
{
|
|
1119
1236
|
id: "regional.anthropic.claude-3-5-haiku-20241022-v1:0",
|
|
1120
1237
|
match: {
|
|
1121
|
-
|
|
1122
|
-
{
|
|
1123
|
-
contains: "us.anthropic.claude-3-5-haiku-20241022-v1"
|
|
1124
|
-
},
|
|
1125
|
-
{
|
|
1126
|
-
contains: "au.anthropic.claude-3-5-haiku-20241022-v1"
|
|
1127
|
-
},
|
|
1128
|
-
{
|
|
1129
|
-
contains: "apac.anthropic.claude-3-5-haiku-20241022-v1"
|
|
1130
|
-
},
|
|
1131
|
-
{
|
|
1132
|
-
contains: "eu.anthropic.claude-3-5-haiku-20241022-v1"
|
|
1133
|
-
},
|
|
1134
|
-
{
|
|
1135
|
-
contains: "us-gov.anthropic.claude-3-5-haiku-20241022-v1"
|
|
1136
|
-
},
|
|
1137
|
-
{
|
|
1138
|
-
contains: "jp.anthropic.claude-3-5-haiku-20241022-v1"
|
|
1139
|
-
}
|
|
1140
|
-
]
|
|
1238
|
+
contains: "claude-3-5-haiku-20241022"
|
|
1141
1239
|
},
|
|
1142
1240
|
prices: {
|
|
1143
1241
|
input_mtok: 0.8,
|
|
@@ -1149,26 +1247,7 @@ const I = [
|
|
|
1149
1247
|
{
|
|
1150
1248
|
id: "regional.anthropic.claude-3-5-sonnet-20240620-v1:0",
|
|
1151
1249
|
match: {
|
|
1152
|
-
|
|
1153
|
-
{
|
|
1154
|
-
contains: "us.anthropic.claude-3-5-sonnet-20240620-v1"
|
|
1155
|
-
},
|
|
1156
|
-
{
|
|
1157
|
-
contains: "au.anthropic.claude-3-5-sonnet-20240620-v1"
|
|
1158
|
-
},
|
|
1159
|
-
{
|
|
1160
|
-
contains: "apac.anthropic.claude-3-5-sonnet-20240620-v1"
|
|
1161
|
-
},
|
|
1162
|
-
{
|
|
1163
|
-
contains: "eu.anthropic.claude-3-5-sonnet-20240620-v1"
|
|
1164
|
-
},
|
|
1165
|
-
{
|
|
1166
|
-
contains: "us-gov.anthropic.claude-3-5-sonnet-20240620-v1"
|
|
1167
|
-
},
|
|
1168
|
-
{
|
|
1169
|
-
contains: "jp.anthropic.claude-3-5-sonnet-20240620-v1"
|
|
1170
|
-
}
|
|
1171
|
-
]
|
|
1250
|
+
contains: "claude-3-5-sonnet-20240620"
|
|
1172
1251
|
},
|
|
1173
1252
|
prices: {
|
|
1174
1253
|
input_mtok: 3,
|
|
@@ -1180,26 +1259,7 @@ const I = [
|
|
|
1180
1259
|
{
|
|
1181
1260
|
id: "regional.anthropic.claude-3-5-sonnet-20241022-v2:0",
|
|
1182
1261
|
match: {
|
|
1183
|
-
|
|
1184
|
-
{
|
|
1185
|
-
contains: "us.anthropic.claude-3-5-sonnet-20241022-v2"
|
|
1186
|
-
},
|
|
1187
|
-
{
|
|
1188
|
-
contains: "au.anthropic.claude-3-5-sonnet-20241022-v2"
|
|
1189
|
-
},
|
|
1190
|
-
{
|
|
1191
|
-
contains: "apac.anthropic.claude-3-5-sonnet-20241022-v2"
|
|
1192
|
-
},
|
|
1193
|
-
{
|
|
1194
|
-
contains: "eu.anthropic.claude-3-5-sonnet-20241022-v2"
|
|
1195
|
-
},
|
|
1196
|
-
{
|
|
1197
|
-
contains: "us-gov.anthropic.claude-3-5-sonnet-20241022-v2"
|
|
1198
|
-
},
|
|
1199
|
-
{
|
|
1200
|
-
contains: "jp.anthropic.claude-3-5-sonnet-20241022-v2"
|
|
1201
|
-
}
|
|
1202
|
-
]
|
|
1262
|
+
contains: "claude-3-5-sonnet-20241022"
|
|
1203
1263
|
},
|
|
1204
1264
|
prices: {
|
|
1205
1265
|
input_mtok: 3,
|
|
@@ -1211,26 +1271,7 @@ const I = [
|
|
|
1211
1271
|
{
|
|
1212
1272
|
id: "regional.anthropic.claude-3-7-sonnet-20250219-v1:0",
|
|
1213
1273
|
match: {
|
|
1214
|
-
|
|
1215
|
-
{
|
|
1216
|
-
contains: "us.anthropic.claude-3-7-sonnet-20250219-v1"
|
|
1217
|
-
},
|
|
1218
|
-
{
|
|
1219
|
-
contains: "au.anthropic.claude-3-7-sonnet-20250219-v1"
|
|
1220
|
-
},
|
|
1221
|
-
{
|
|
1222
|
-
contains: "apac.anthropic.claude-3-7-sonnet-20250219-v1"
|
|
1223
|
-
},
|
|
1224
|
-
{
|
|
1225
|
-
contains: "eu.anthropic.claude-3-7-sonnet-20250219-v1"
|
|
1226
|
-
},
|
|
1227
|
-
{
|
|
1228
|
-
contains: "us-gov.anthropic.claude-3-7-sonnet-20250219-v1"
|
|
1229
|
-
},
|
|
1230
|
-
{
|
|
1231
|
-
contains: "jp.anthropic.claude-3-7-sonnet-20250219-v1"
|
|
1232
|
-
}
|
|
1233
|
-
]
|
|
1274
|
+
contains: "claude-3-7-sonnet-20250219"
|
|
1234
1275
|
},
|
|
1235
1276
|
prices: {
|
|
1236
1277
|
input_mtok: 3,
|
|
@@ -1242,26 +1283,7 @@ const I = [
|
|
|
1242
1283
|
{
|
|
1243
1284
|
id: "regional.anthropic.claude-3-haiku-20240307-v1:0",
|
|
1244
1285
|
match: {
|
|
1245
|
-
|
|
1246
|
-
{
|
|
1247
|
-
contains: "us.anthropic.claude-3-haiku-20240307-v1"
|
|
1248
|
-
},
|
|
1249
|
-
{
|
|
1250
|
-
contains: "au.anthropic.claude-3-haiku-20240307-v1"
|
|
1251
|
-
},
|
|
1252
|
-
{
|
|
1253
|
-
contains: "apac.anthropic.claude-3-haiku-20240307-v1"
|
|
1254
|
-
},
|
|
1255
|
-
{
|
|
1256
|
-
contains: "eu.anthropic.claude-3-haiku-20240307-v1"
|
|
1257
|
-
},
|
|
1258
|
-
{
|
|
1259
|
-
contains: "us-gov.anthropic.claude-3-haiku-20240307-v1"
|
|
1260
|
-
},
|
|
1261
|
-
{
|
|
1262
|
-
contains: "jp.anthropic.claude-3-haiku-20240307-v1"
|
|
1263
|
-
}
|
|
1264
|
-
]
|
|
1286
|
+
contains: "claude-3-haiku-20240307"
|
|
1265
1287
|
},
|
|
1266
1288
|
prices: {
|
|
1267
1289
|
input_mtok: 0.25,
|
|
@@ -1271,26 +1293,7 @@ const I = [
|
|
|
1271
1293
|
{
|
|
1272
1294
|
id: "regional.anthropic.claude-3-opus-20240229-v1:0",
|
|
1273
1295
|
match: {
|
|
1274
|
-
|
|
1275
|
-
{
|
|
1276
|
-
contains: "us.anthropic.claude-3-opus-20240229-v1"
|
|
1277
|
-
},
|
|
1278
|
-
{
|
|
1279
|
-
contains: "au.anthropic.claude-3-opus-20240229-v1"
|
|
1280
|
-
},
|
|
1281
|
-
{
|
|
1282
|
-
contains: "apac.anthropic.claude-3-opus-20240229-v1"
|
|
1283
|
-
},
|
|
1284
|
-
{
|
|
1285
|
-
contains: "eu.anthropic.claude-3-opus-20240229-v1"
|
|
1286
|
-
},
|
|
1287
|
-
{
|
|
1288
|
-
contains: "us-gov.anthropic.claude-3-opus-20240229-v1"
|
|
1289
|
-
},
|
|
1290
|
-
{
|
|
1291
|
-
contains: "jp.anthropic.claude-3-opus-20240229-v1"
|
|
1292
|
-
}
|
|
1293
|
-
]
|
|
1296
|
+
contains: "claude-3-opus-20240229"
|
|
1294
1297
|
},
|
|
1295
1298
|
prices: {
|
|
1296
1299
|
input_mtok: 15,
|
|
@@ -1300,26 +1303,7 @@ const I = [
|
|
|
1300
1303
|
{
|
|
1301
1304
|
id: "regional.anthropic.claude-3-sonnet-20240229-v1:0",
|
|
1302
1305
|
match: {
|
|
1303
|
-
|
|
1304
|
-
{
|
|
1305
|
-
contains: "us.anthropic.claude-3-sonnet-20240229-v1"
|
|
1306
|
-
},
|
|
1307
|
-
{
|
|
1308
|
-
contains: "au.anthropic.claude-3-sonnet-20240229-v1"
|
|
1309
|
-
},
|
|
1310
|
-
{
|
|
1311
|
-
contains: "apac.anthropic.claude-3-sonnet-20240229-v1"
|
|
1312
|
-
},
|
|
1313
|
-
{
|
|
1314
|
-
contains: "eu.anthropic.claude-3-sonnet-20240229-v1"
|
|
1315
|
-
},
|
|
1316
|
-
{
|
|
1317
|
-
contains: "us-gov.anthropic.claude-3-sonnet-20240229-v1"
|
|
1318
|
-
},
|
|
1319
|
-
{
|
|
1320
|
-
contains: "jp.anthropic.claude-3-sonnet-20240229-v1"
|
|
1321
|
-
}
|
|
1322
|
-
]
|
|
1306
|
+
contains: "claude-3-sonnet-20240229"
|
|
1323
1307
|
},
|
|
1324
1308
|
prices: {
|
|
1325
1309
|
input_mtok: 3,
|
|
@@ -1333,23 +1317,29 @@ const I = [
|
|
|
1333
1317
|
match: {
|
|
1334
1318
|
or: [
|
|
1335
1319
|
{
|
|
1336
|
-
|
|
1320
|
+
starts_with: "anthropic.claude-haiku-4-5-20251001"
|
|
1337
1321
|
},
|
|
1338
1322
|
{
|
|
1339
|
-
|
|
1323
|
+
starts_with: "claude-haiku-4-5-20251001"
|
|
1340
1324
|
},
|
|
1341
1325
|
{
|
|
1342
|
-
contains: "
|
|
1326
|
+
contains: "us.anthropic.claude-haiku-4-5-20251001"
|
|
1343
1327
|
},
|
|
1344
1328
|
{
|
|
1345
|
-
contains: "
|
|
1329
|
+
contains: "au.anthropic.claude-haiku-4-5-20251001"
|
|
1346
1330
|
},
|
|
1347
1331
|
{
|
|
1348
|
-
contains: "
|
|
1332
|
+
contains: "apac.anthropic.claude-haiku-4-5-20251001"
|
|
1349
1333
|
},
|
|
1350
1334
|
{
|
|
1351
|
-
contains: "
|
|
1352
|
-
}
|
|
1335
|
+
contains: "eu.anthropic.claude-haiku-4-5-20251001"
|
|
1336
|
+
},
|
|
1337
|
+
{
|
|
1338
|
+
contains: "us-gov.anthropic.claude-haiku-4-5-20251001"
|
|
1339
|
+
},
|
|
1340
|
+
{
|
|
1341
|
+
contains: "jp.anthropic.claude-haiku-4-5-20251001"
|
|
1342
|
+
}
|
|
1353
1343
|
]
|
|
1354
1344
|
},
|
|
1355
1345
|
prices: {
|
|
@@ -1364,22 +1354,28 @@ const I = [
|
|
|
1364
1354
|
match: {
|
|
1365
1355
|
or: [
|
|
1366
1356
|
{
|
|
1367
|
-
|
|
1357
|
+
starts_with: "anthropic.claude-opus-4-1-20250805"
|
|
1358
|
+
},
|
|
1359
|
+
{
|
|
1360
|
+
starts_with: "claude-opus-4-1-20250805"
|
|
1361
|
+
},
|
|
1362
|
+
{
|
|
1363
|
+
contains: "us.anthropic.claude-opus-4-1-20250805"
|
|
1368
1364
|
},
|
|
1369
1365
|
{
|
|
1370
|
-
contains: "au.anthropic.claude-opus-4-1-20250805
|
|
1366
|
+
contains: "au.anthropic.claude-opus-4-1-20250805"
|
|
1371
1367
|
},
|
|
1372
1368
|
{
|
|
1373
|
-
contains: "apac.anthropic.claude-opus-4-1-20250805
|
|
1369
|
+
contains: "apac.anthropic.claude-opus-4-1-20250805"
|
|
1374
1370
|
},
|
|
1375
1371
|
{
|
|
1376
|
-
contains: "eu.anthropic.claude-opus-4-1-20250805
|
|
1372
|
+
contains: "eu.anthropic.claude-opus-4-1-20250805"
|
|
1377
1373
|
},
|
|
1378
1374
|
{
|
|
1379
|
-
contains: "us-gov.anthropic.claude-opus-4-1-20250805
|
|
1375
|
+
contains: "us-gov.anthropic.claude-opus-4-1-20250805"
|
|
1380
1376
|
},
|
|
1381
1377
|
{
|
|
1382
|
-
contains: "jp.anthropic.claude-opus-4-1-20250805
|
|
1378
|
+
contains: "jp.anthropic.claude-opus-4-1-20250805"
|
|
1383
1379
|
}
|
|
1384
1380
|
]
|
|
1385
1381
|
},
|
|
@@ -1395,22 +1391,28 @@ const I = [
|
|
|
1395
1391
|
match: {
|
|
1396
1392
|
or: [
|
|
1397
1393
|
{
|
|
1398
|
-
|
|
1394
|
+
starts_with: "anthropic.claude-opus-4-20250514"
|
|
1395
|
+
},
|
|
1396
|
+
{
|
|
1397
|
+
starts_with: "claude-opus-4-20250514"
|
|
1398
|
+
},
|
|
1399
|
+
{
|
|
1400
|
+
contains: "us.anthropic.claude-opus-4-20250514"
|
|
1399
1401
|
},
|
|
1400
1402
|
{
|
|
1401
|
-
contains: "au.anthropic.claude-opus-4-20250514
|
|
1403
|
+
contains: "au.anthropic.claude-opus-4-20250514"
|
|
1402
1404
|
},
|
|
1403
1405
|
{
|
|
1404
|
-
contains: "apac.anthropic.claude-opus-4-20250514
|
|
1406
|
+
contains: "apac.anthropic.claude-opus-4-20250514"
|
|
1405
1407
|
},
|
|
1406
1408
|
{
|
|
1407
|
-
contains: "eu.anthropic.claude-opus-4-20250514
|
|
1409
|
+
contains: "eu.anthropic.claude-opus-4-20250514"
|
|
1408
1410
|
},
|
|
1409
1411
|
{
|
|
1410
|
-
contains: "us-gov.anthropic.claude-opus-4-20250514
|
|
1412
|
+
contains: "us-gov.anthropic.claude-opus-4-20250514"
|
|
1411
1413
|
},
|
|
1412
1414
|
{
|
|
1413
|
-
contains: "jp.anthropic.claude-opus-4-20250514
|
|
1415
|
+
contains: "jp.anthropic.claude-opus-4-20250514"
|
|
1414
1416
|
}
|
|
1415
1417
|
]
|
|
1416
1418
|
},
|
|
@@ -1425,6 +1427,12 @@ const I = [
|
|
|
1425
1427
|
id: "regional.anthropic.claude-opus-4-5-v1:0",
|
|
1426
1428
|
match: {
|
|
1427
1429
|
or: [
|
|
1430
|
+
{
|
|
1431
|
+
starts_with: "anthropic.claude-opus-4-5"
|
|
1432
|
+
},
|
|
1433
|
+
{
|
|
1434
|
+
starts_with: "claude-opus-4-5"
|
|
1435
|
+
},
|
|
1428
1436
|
{
|
|
1429
1437
|
contains: "us.anthropic.claude-opus-4-5"
|
|
1430
1438
|
},
|
|
@@ -1456,6 +1464,12 @@ const I = [
|
|
|
1456
1464
|
id: "regional.anthropic.claude-opus-4-6-v1:0",
|
|
1457
1465
|
match: {
|
|
1458
1466
|
or: [
|
|
1467
|
+
{
|
|
1468
|
+
starts_with: "anthropic.claude-opus-4-6"
|
|
1469
|
+
},
|
|
1470
|
+
{
|
|
1471
|
+
starts_with: "claude-opus-4-6"
|
|
1472
|
+
},
|
|
1459
1473
|
{
|
|
1460
1474
|
contains: "us.anthropic.claude-opus-4-6"
|
|
1461
1475
|
},
|
|
@@ -1515,27 +1529,70 @@ const I = [
|
|
|
1515
1529
|
}
|
|
1516
1530
|
}
|
|
1517
1531
|
},
|
|
1532
|
+
{
|
|
1533
|
+
id: "regional.anthropic.claude-opus-4-7-v1:0",
|
|
1534
|
+
match: {
|
|
1535
|
+
or: [
|
|
1536
|
+
{
|
|
1537
|
+
starts_with: "anthropic.claude-opus-4-7"
|
|
1538
|
+
},
|
|
1539
|
+
{
|
|
1540
|
+
starts_with: "claude-opus-4-7"
|
|
1541
|
+
},
|
|
1542
|
+
{
|
|
1543
|
+
contains: "us.anthropic.claude-opus-4-7"
|
|
1544
|
+
},
|
|
1545
|
+
{
|
|
1546
|
+
contains: "au.anthropic.claude-opus-4-7"
|
|
1547
|
+
},
|
|
1548
|
+
{
|
|
1549
|
+
contains: "apac.anthropic.claude-opus-4-7"
|
|
1550
|
+
},
|
|
1551
|
+
{
|
|
1552
|
+
contains: "eu.anthropic.claude-opus-4-7"
|
|
1553
|
+
},
|
|
1554
|
+
{
|
|
1555
|
+
contains: "us-gov.anthropic.claude-opus-4-7"
|
|
1556
|
+
},
|
|
1557
|
+
{
|
|
1558
|
+
contains: "jp.anthropic.claude-opus-4-7"
|
|
1559
|
+
}
|
|
1560
|
+
]
|
|
1561
|
+
},
|
|
1562
|
+
prices: {
|
|
1563
|
+
input_mtok: 5.5,
|
|
1564
|
+
cache_write_mtok: 6.875,
|
|
1565
|
+
cache_read_mtok: 0.55,
|
|
1566
|
+
output_mtok: 27.5
|
|
1567
|
+
}
|
|
1568
|
+
},
|
|
1518
1569
|
{
|
|
1519
1570
|
id: "regional.anthropic.claude-sonnet-4-20250514-v1:0",
|
|
1520
1571
|
match: {
|
|
1521
1572
|
or: [
|
|
1522
1573
|
{
|
|
1523
|
-
|
|
1574
|
+
starts_with: "anthropic.claude-sonnet-4-20250514"
|
|
1575
|
+
},
|
|
1576
|
+
{
|
|
1577
|
+
starts_with: "claude-sonnet-4-20250514"
|
|
1578
|
+
},
|
|
1579
|
+
{
|
|
1580
|
+
contains: "us.anthropic.claude-sonnet-4-20250514"
|
|
1524
1581
|
},
|
|
1525
1582
|
{
|
|
1526
|
-
contains: "au.anthropic.claude-sonnet-4-20250514
|
|
1583
|
+
contains: "au.anthropic.claude-sonnet-4-20250514"
|
|
1527
1584
|
},
|
|
1528
1585
|
{
|
|
1529
|
-
contains: "apac.anthropic.claude-sonnet-4-20250514
|
|
1586
|
+
contains: "apac.anthropic.claude-sonnet-4-20250514"
|
|
1530
1587
|
},
|
|
1531
1588
|
{
|
|
1532
|
-
contains: "eu.anthropic.claude-sonnet-4-20250514
|
|
1589
|
+
contains: "eu.anthropic.claude-sonnet-4-20250514"
|
|
1533
1590
|
},
|
|
1534
1591
|
{
|
|
1535
|
-
contains: "us-gov.anthropic.claude-sonnet-4-20250514
|
|
1592
|
+
contains: "us-gov.anthropic.claude-sonnet-4-20250514"
|
|
1536
1593
|
},
|
|
1537
1594
|
{
|
|
1538
|
-
contains: "jp.anthropic.claude-sonnet-4-20250514
|
|
1595
|
+
contains: "jp.anthropic.claude-sonnet-4-20250514"
|
|
1539
1596
|
}
|
|
1540
1597
|
]
|
|
1541
1598
|
},
|
|
@@ -1551,22 +1608,28 @@ const I = [
|
|
|
1551
1608
|
match: {
|
|
1552
1609
|
or: [
|
|
1553
1610
|
{
|
|
1554
|
-
|
|
1611
|
+
starts_with: "anthropic.claude-sonnet-4-5-20250929"
|
|
1612
|
+
},
|
|
1613
|
+
{
|
|
1614
|
+
starts_with: "claude-sonnet-4-5-20250929"
|
|
1615
|
+
},
|
|
1616
|
+
{
|
|
1617
|
+
contains: "us.anthropic.claude-sonnet-4-5-20250929"
|
|
1555
1618
|
},
|
|
1556
1619
|
{
|
|
1557
|
-
contains: "au.anthropic.claude-sonnet-4-5-20250929
|
|
1620
|
+
contains: "au.anthropic.claude-sonnet-4-5-20250929"
|
|
1558
1621
|
},
|
|
1559
1622
|
{
|
|
1560
|
-
contains: "apac.anthropic.claude-sonnet-4-5-20250929
|
|
1623
|
+
contains: "apac.anthropic.claude-sonnet-4-5-20250929"
|
|
1561
1624
|
},
|
|
1562
1625
|
{
|
|
1563
|
-
contains: "eu.anthropic.claude-sonnet-4-5-20250929
|
|
1626
|
+
contains: "eu.anthropic.claude-sonnet-4-5-20250929"
|
|
1564
1627
|
},
|
|
1565
1628
|
{
|
|
1566
|
-
contains: "us-gov.anthropic.claude-sonnet-4-5-20250929
|
|
1629
|
+
contains: "us-gov.anthropic.claude-sonnet-4-5-20250929"
|
|
1567
1630
|
},
|
|
1568
1631
|
{
|
|
1569
|
-
contains: "jp.anthropic.claude-sonnet-4-5-20250929
|
|
1632
|
+
contains: "jp.anthropic.claude-sonnet-4-5-20250929"
|
|
1570
1633
|
}
|
|
1571
1634
|
]
|
|
1572
1635
|
},
|
|
@@ -1581,6 +1644,12 @@ const I = [
|
|
|
1581
1644
|
id: "regional.anthropic.claude-sonnet-4-6-v1:0",
|
|
1582
1645
|
match: {
|
|
1583
1646
|
or: [
|
|
1647
|
+
{
|
|
1648
|
+
starts_with: "anthropic.claude-sonnet-4-6"
|
|
1649
|
+
},
|
|
1650
|
+
{
|
|
1651
|
+
starts_with: "claude-sonnet-4-6"
|
|
1652
|
+
},
|
|
1584
1653
|
{
|
|
1585
1654
|
contains: "us.anthropic.claude-sonnet-4-6"
|
|
1586
1655
|
},
|
|
@@ -2453,6 +2522,43 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
2453
2522
|
}
|
|
2454
2523
|
}
|
|
2455
2524
|
]
|
|
2525
|
+
},
|
|
2526
|
+
{
|
|
2527
|
+
id: "deepseek-v4-flash",
|
|
2528
|
+
name: "DeepSeek V4 Flash",
|
|
2529
|
+
description: "DeepSeek-V4-Flash. Supports both non-thinking and thinking (default) modes, JSON output, tool calls, chat prefix completion, and FIM completion (non-thinking only).",
|
|
2530
|
+
match: {
|
|
2531
|
+
or: [
|
|
2532
|
+
{
|
|
2533
|
+
starts_with: "deepseek-v4-flash"
|
|
2534
|
+
}
|
|
2535
|
+
]
|
|
2536
|
+
},
|
|
2537
|
+
context_window: 1e6,
|
|
2538
|
+
prices: {
|
|
2539
|
+
input_mtok: 0.14,
|
|
2540
|
+
cache_read_mtok: 28e-4,
|
|
2541
|
+
output_mtok: 0.28
|
|
2542
|
+
}
|
|
2543
|
+
},
|
|
2544
|
+
{
|
|
2545
|
+
id: "deepseek-v4-pro",
|
|
2546
|
+
name: "DeepSeek V4 Pro",
|
|
2547
|
+
description: "DeepSeek-V4-Pro. Supports both non-thinking and thinking (default) modes, JSON output, tool calls, chat prefix completion, and FIM completion (non-thinking only).",
|
|
2548
|
+
match: {
|
|
2549
|
+
or: [
|
|
2550
|
+
{
|
|
2551
|
+
starts_with: "deepseek-v4-pro"
|
|
2552
|
+
}
|
|
2553
|
+
]
|
|
2554
|
+
},
|
|
2555
|
+
context_window: 1e6,
|
|
2556
|
+
price_comments: "Standard (non-promotional) pricing. DeepSeek is offering a temporary 75% promotional discount that is not reflected here.",
|
|
2557
|
+
prices: {
|
|
2558
|
+
input_mtok: 1.74,
|
|
2559
|
+
cache_read_mtok: 0.0145,
|
|
2560
|
+
output_mtok: 3.48
|
|
2561
|
+
}
|
|
2456
2562
|
}
|
|
2457
2563
|
]
|
|
2458
2564
|
},
|
|
@@ -2766,7 +2872,7 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
2766
2872
|
},
|
|
2767
2873
|
{
|
|
2768
2874
|
path: "toolUsePromptTokenCount",
|
|
2769
|
-
dest: "
|
|
2875
|
+
dest: "input_tokens",
|
|
2770
2876
|
required: !1
|
|
2771
2877
|
}
|
|
2772
2878
|
]
|
|
@@ -3014,6 +3120,33 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
3014
3120
|
}
|
|
3015
3121
|
}
|
|
3016
3122
|
},
|
|
3123
|
+
{
|
|
3124
|
+
id: "claude-opus-4-7",
|
|
3125
|
+
match: {
|
|
3126
|
+
or: [
|
|
3127
|
+
{
|
|
3128
|
+
contains: "claude-4-7-opus"
|
|
3129
|
+
},
|
|
3130
|
+
{
|
|
3131
|
+
contains: "claude-opus-4-7"
|
|
3132
|
+
},
|
|
3133
|
+
{
|
|
3134
|
+
contains: "claude-4.7-opus"
|
|
3135
|
+
},
|
|
3136
|
+
{
|
|
3137
|
+
contains: "claude-opus-4.7"
|
|
3138
|
+
}
|
|
3139
|
+
]
|
|
3140
|
+
},
|
|
3141
|
+
context_window: 1e6,
|
|
3142
|
+
price_comments: "Flat pricing across full 1M context window. Ref: https://cloud.google.com/vertex-ai/generative-ai/pricing#claude-models",
|
|
3143
|
+
prices: {
|
|
3144
|
+
input_mtok: 5,
|
|
3145
|
+
cache_write_mtok: 6.25,
|
|
3146
|
+
cache_read_mtok: 0.5,
|
|
3147
|
+
output_mtok: 25
|
|
3148
|
+
}
|
|
3149
|
+
},
|
|
3017
3150
|
{
|
|
3018
3151
|
id: "gemini-1.0-pro-vision-001",
|
|
3019
3152
|
name: "gemini 1.0 pro vision",
|
|
@@ -3121,17 +3254,10 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
3121
3254
|
context_window: 1e6,
|
|
3122
3255
|
prices: {
|
|
3123
3256
|
input_mtok: 0.1,
|
|
3124
|
-
cache_read_mtok:
|
|
3125
|
-
base: 0.025,
|
|
3126
|
-
tiers: [
|
|
3127
|
-
{
|
|
3128
|
-
start: 1e6,
|
|
3129
|
-
price: 0.175
|
|
3130
|
-
}
|
|
3131
|
-
]
|
|
3132
|
-
},
|
|
3257
|
+
cache_read_mtok: 0.025,
|
|
3133
3258
|
output_mtok: 0.4,
|
|
3134
|
-
input_audio_mtok: 0.7
|
|
3259
|
+
input_audio_mtok: 0.7,
|
|
3260
|
+
cache_audio_read_mtok: 0.175
|
|
3135
3261
|
}
|
|
3136
3262
|
},
|
|
3137
3263
|
{
|
|
@@ -3373,6 +3499,37 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
3373
3499
|
}
|
|
3374
3500
|
}
|
|
3375
3501
|
},
|
|
3502
|
+
{
|
|
3503
|
+
id: "gemini-3.1-flash-image-preview",
|
|
3504
|
+
name: "Gemini 3.1 Flash Image Preview",
|
|
3505
|
+
description: "Google's latest image generation model (Nano Banana 2) optimized for fast, high-quality image generation. Supports multiple output resolutions from 512px to 4K, with text and thinking output priced separately from image output tokens.",
|
|
3506
|
+
match: {
|
|
3507
|
+
starts_with: "gemini-3.1-flash-image-preview"
|
|
3508
|
+
},
|
|
3509
|
+
context_window: 1e6,
|
|
3510
|
+
price_comments: "See https://ai.google.dev/gemini-api/docs/pricing. Image output is priced at $60 per 1M tokens. Preview model - pricing may change.",
|
|
3511
|
+
prices: {
|
|
3512
|
+
input_mtok: 0.5,
|
|
3513
|
+
output_mtok: 60
|
|
3514
|
+
}
|
|
3515
|
+
},
|
|
3516
|
+
{
|
|
3517
|
+
id: "gemini-3.1-flash-lite",
|
|
3518
|
+
name: "Gemini 3.1 Flash Lite",
|
|
3519
|
+
description: "Google's fastest and most cost-efficient Gemini 3 series model, built for intelligence at scale. Optimized for high-volume, low-latency applications while maintaining strong multimodal capabilities.",
|
|
3520
|
+
match: {
|
|
3521
|
+
starts_with: "gemini-3.1-flash-lite"
|
|
3522
|
+
},
|
|
3523
|
+
context_window: 1e6,
|
|
3524
|
+
price_comments: "See https://ai.google.dev/gemini-api/docs/pricing.",
|
|
3525
|
+
prices: {
|
|
3526
|
+
input_mtok: 0.25,
|
|
3527
|
+
cache_read_mtok: 0.025,
|
|
3528
|
+
output_mtok: 1.5,
|
|
3529
|
+
input_audio_mtok: 0.5,
|
|
3530
|
+
cache_audio_read_mtok: 0.05
|
|
3531
|
+
}
|
|
3532
|
+
},
|
|
3376
3533
|
{
|
|
3377
3534
|
id: "gemini-3.1-pro-preview",
|
|
3378
3535
|
name: "Gemini 3.1 Pro Preview",
|
|
@@ -4018,42 +4175,6 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
4018
4175
|
}
|
|
4019
4176
|
],
|
|
4020
4177
|
models: [
|
|
4021
|
-
{
|
|
4022
|
-
id: "Qwen/Qwen3-235B-A22B-Instruct-2507",
|
|
4023
|
-
name: "Qwen3-235B-A22B-Instruct-2507",
|
|
4024
|
-
match: {
|
|
4025
|
-
or: [
|
|
4026
|
-
{
|
|
4027
|
-
equals: "qwen/qwen3-235b-a22b-instruct-2507"
|
|
4028
|
-
},
|
|
4029
|
-
{
|
|
4030
|
-
equals: "qwen/qwen3-235b-a22b-instruct-2507-fast"
|
|
4031
|
-
}
|
|
4032
|
-
]
|
|
4033
|
-
},
|
|
4034
|
-
prices: {
|
|
4035
|
-
input_mtok: 0.6,
|
|
4036
|
-
output_mtok: 1.2
|
|
4037
|
-
}
|
|
4038
|
-
},
|
|
4039
|
-
{
|
|
4040
|
-
id: "Qwen/Qwen3-32B",
|
|
4041
|
-
name: "Qwen3-32B",
|
|
4042
|
-
match: {
|
|
4043
|
-
or: [
|
|
4044
|
-
{
|
|
4045
|
-
equals: "qwen/qwen3-32b"
|
|
4046
|
-
},
|
|
4047
|
-
{
|
|
4048
|
-
equals: "qwen/qwen3-32b-fast"
|
|
4049
|
-
}
|
|
4050
|
-
]
|
|
4051
|
-
},
|
|
4052
|
-
prices: {
|
|
4053
|
-
input_mtok: 0.4,
|
|
4054
|
-
output_mtok: 0.8
|
|
4055
|
-
}
|
|
4056
|
-
},
|
|
4057
4178
|
{
|
|
4058
4179
|
id: "meta-llama/Llama-3.1-8B-Instruct",
|
|
4059
4180
|
name: "Llama-3.1-8B-Instruct",
|
|
@@ -4071,42 +4192,6 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
4071
4192
|
input_mtok: 0.1,
|
|
4072
4193
|
output_mtok: 0.1
|
|
4073
4194
|
}
|
|
4074
|
-
},
|
|
4075
|
-
{
|
|
4076
|
-
id: "meta-llama/Llama-3.3-70B-Instruct",
|
|
4077
|
-
name: "Llama-3.3-70B-Instruct",
|
|
4078
|
-
match: {
|
|
4079
|
-
or: [
|
|
4080
|
-
{
|
|
4081
|
-
equals: "meta-llama/llama-3.3-70b-instruct"
|
|
4082
|
-
},
|
|
4083
|
-
{
|
|
4084
|
-
equals: "meta-llama/llama-3.3-70b-instruct-fast"
|
|
4085
|
-
}
|
|
4086
|
-
]
|
|
4087
|
-
},
|
|
4088
|
-
prices: {
|
|
4089
|
-
input_mtok: 0.85,
|
|
4090
|
-
output_mtok: 1.2
|
|
4091
|
-
}
|
|
4092
|
-
},
|
|
4093
|
-
{
|
|
4094
|
-
id: "openai/gpt-oss-120b",
|
|
4095
|
-
name: "gpt-oss-120b",
|
|
4096
|
-
match: {
|
|
4097
|
-
or: [
|
|
4098
|
-
{
|
|
4099
|
-
equals: "openai/gpt-oss-120b"
|
|
4100
|
-
},
|
|
4101
|
-
{
|
|
4102
|
-
equals: "openai/gpt-oss-120b-fast"
|
|
4103
|
-
}
|
|
4104
|
-
]
|
|
4105
|
-
},
|
|
4106
|
-
prices: {
|
|
4107
|
-
input_mtok: 0.25,
|
|
4108
|
-
output_mtok: 0.69
|
|
4109
|
-
}
|
|
4110
4195
|
}
|
|
4111
4196
|
]
|
|
4112
4197
|
},
|
|
@@ -4161,186 +4246,60 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
4161
4246
|
],
|
|
4162
4247
|
models: [
|
|
4163
4248
|
{
|
|
4164
|
-
id: "
|
|
4165
|
-
name: "
|
|
4249
|
+
id: "meta-llama/Llama-3.3-70B-Instruct",
|
|
4250
|
+
name: "Llama-3.3-70B-Instruct",
|
|
4166
4251
|
match: {
|
|
4167
4252
|
or: [
|
|
4168
4253
|
{
|
|
4169
|
-
equals: "
|
|
4254
|
+
equals: "meta-llama/llama-3.3-70b-instruct"
|
|
4170
4255
|
},
|
|
4171
4256
|
{
|
|
4172
|
-
equals: "
|
|
4257
|
+
equals: "meta-llama/llama-3.3-70b-instruct-fast"
|
|
4173
4258
|
}
|
|
4174
4259
|
]
|
|
4175
4260
|
},
|
|
4176
|
-
context_window:
|
|
4261
|
+
context_window: 131072,
|
|
4177
4262
|
prices: {
|
|
4178
|
-
input_mtok: 0.
|
|
4179
|
-
output_mtok: 0.
|
|
4263
|
+
input_mtok: 0.9,
|
|
4264
|
+
output_mtok: 0.9
|
|
4180
4265
|
}
|
|
4181
4266
|
},
|
|
4182
4267
|
{
|
|
4183
|
-
id: "
|
|
4184
|
-
name: "
|
|
4268
|
+
id: "openai/gpt-oss-120b",
|
|
4269
|
+
name: "gpt-oss-120b",
|
|
4185
4270
|
match: {
|
|
4186
4271
|
or: [
|
|
4187
4272
|
{
|
|
4188
|
-
equals: "
|
|
4189
|
-
},
|
|
4190
|
-
{
|
|
4191
|
-
equals: "qwen/qwen3-235b-a22b-fast"
|
|
4192
|
-
},
|
|
4193
|
-
{
|
|
4194
|
-
equals: "qwen/qwen3-235b-a22b-instruct-2507"
|
|
4195
|
-
},
|
|
4196
|
-
{
|
|
4197
|
-
equals: "qwen/qwen3-235b-a22b-instruct-2507-fast"
|
|
4198
|
-
},
|
|
4199
|
-
{
|
|
4200
|
-
equals: "qwen/qwen3-235b-a22b-thinking-2507"
|
|
4273
|
+
equals: "openai/gpt-oss-120b"
|
|
4201
4274
|
},
|
|
4202
4275
|
{
|
|
4203
|
-
equals: "
|
|
4276
|
+
equals: "openai/gpt-oss-120b-fast"
|
|
4204
4277
|
}
|
|
4205
4278
|
]
|
|
4206
4279
|
},
|
|
4207
4280
|
context_window: 131072,
|
|
4208
4281
|
prices: {
|
|
4209
|
-
input_mtok: 0.
|
|
4210
|
-
output_mtok: 0.
|
|
4282
|
+
input_mtok: 0.15,
|
|
4283
|
+
output_mtok: 0.6
|
|
4211
4284
|
}
|
|
4212
4285
|
},
|
|
4213
4286
|
{
|
|
4214
|
-
id: "
|
|
4215
|
-
name: "
|
|
4287
|
+
id: "openai/gpt-oss-20b",
|
|
4288
|
+
name: "gpt-oss-20b",
|
|
4216
4289
|
match: {
|
|
4217
4290
|
or: [
|
|
4218
4291
|
{
|
|
4219
|
-
equals: "
|
|
4292
|
+
equals: "openai/gpt-oss-20b"
|
|
4220
4293
|
},
|
|
4221
4294
|
{
|
|
4222
|
-
equals: "
|
|
4295
|
+
equals: "openai/gpt-oss-20b-fast"
|
|
4223
4296
|
}
|
|
4224
4297
|
]
|
|
4225
4298
|
},
|
|
4226
4299
|
context_window: 131072,
|
|
4227
4300
|
prices: {
|
|
4228
|
-
input_mtok: 0.
|
|
4229
|
-
output_mtok: 0.
|
|
4230
|
-
}
|
|
4231
|
-
},
|
|
4232
|
-
{
|
|
4233
|
-
id: "Qwen/Qwen3-Coder-480B-A35B-Instruct",
|
|
4234
|
-
name: "Qwen3-Coder-480B-A35B-Instruct",
|
|
4235
|
-
match: {
|
|
4236
|
-
or: [
|
|
4237
|
-
{
|
|
4238
|
-
equals: "qwen/qwen3-coder-480b-a35b-instruct"
|
|
4239
|
-
},
|
|
4240
|
-
{
|
|
4241
|
-
equals: "qwen/qwen3-coder-480b-a35b-instruct-fast"
|
|
4242
|
-
}
|
|
4243
|
-
]
|
|
4244
|
-
},
|
|
4245
|
-
context_window: 262144,
|
|
4246
|
-
prices: {
|
|
4247
|
-
input_mtok: 0.45,
|
|
4248
|
-
output_mtok: 1.8
|
|
4249
|
-
}
|
|
4250
|
-
},
|
|
4251
|
-
{
|
|
4252
|
-
id: "deepseek-ai/DeepSeek-R1-0528",
|
|
4253
|
-
name: "DeepSeek-R1-0528",
|
|
4254
|
-
match: {
|
|
4255
|
-
or: [
|
|
4256
|
-
{
|
|
4257
|
-
equals: "deepseek-ai/deepseek-r1-0528"
|
|
4258
|
-
},
|
|
4259
|
-
{
|
|
4260
|
-
equals: "deepseek-ai/deepseek-r1-0528-fast"
|
|
4261
|
-
}
|
|
4262
|
-
]
|
|
4263
|
-
},
|
|
4264
|
-
context_window: 163840,
|
|
4265
|
-
prices: {
|
|
4266
|
-
input_mtok: 3,
|
|
4267
|
-
output_mtok: 8
|
|
4268
|
-
}
|
|
4269
|
-
},
|
|
4270
|
-
{
|
|
4271
|
-
id: "deepseek-ai/DeepSeek-V3-0324",
|
|
4272
|
-
name: "DeepSeek-V3-0324",
|
|
4273
|
-
match: {
|
|
4274
|
-
or: [
|
|
4275
|
-
{
|
|
4276
|
-
equals: "deepseek-ai/deepseek-v3-0324"
|
|
4277
|
-
},
|
|
4278
|
-
{
|
|
4279
|
-
equals: "deepseek-ai/deepseek-v3-0324-fast"
|
|
4280
|
-
}
|
|
4281
|
-
]
|
|
4282
|
-
},
|
|
4283
|
-
context_window: 163840,
|
|
4284
|
-
prices: {
|
|
4285
|
-
input_mtok: 0.9,
|
|
4286
|
-
output_mtok: 0.9
|
|
4287
|
-
}
|
|
4288
|
-
},
|
|
4289
|
-
{
|
|
4290
|
-
id: "meta-llama/Llama-3.3-70B-Instruct",
|
|
4291
|
-
name: "Llama-3.3-70B-Instruct",
|
|
4292
|
-
match: {
|
|
4293
|
-
or: [
|
|
4294
|
-
{
|
|
4295
|
-
equals: "meta-llama/llama-3.3-70b-instruct"
|
|
4296
|
-
},
|
|
4297
|
-
{
|
|
4298
|
-
equals: "meta-llama/llama-3.3-70b-instruct-fast"
|
|
4299
|
-
}
|
|
4300
|
-
]
|
|
4301
|
-
},
|
|
4302
|
-
context_window: 131072,
|
|
4303
|
-
prices: {
|
|
4304
|
-
input_mtok: 0.9,
|
|
4305
|
-
output_mtok: 0.9
|
|
4306
|
-
}
|
|
4307
|
-
},
|
|
4308
|
-
{
|
|
4309
|
-
id: "openai/gpt-oss-120b",
|
|
4310
|
-
name: "gpt-oss-120b",
|
|
4311
|
-
match: {
|
|
4312
|
-
or: [
|
|
4313
|
-
{
|
|
4314
|
-
equals: "openai/gpt-oss-120b"
|
|
4315
|
-
},
|
|
4316
|
-
{
|
|
4317
|
-
equals: "openai/gpt-oss-120b-fast"
|
|
4318
|
-
}
|
|
4319
|
-
]
|
|
4320
|
-
},
|
|
4321
|
-
context_window: 131072,
|
|
4322
|
-
prices: {
|
|
4323
|
-
input_mtok: 0.15,
|
|
4324
|
-
output_mtok: 0.6
|
|
4325
|
-
}
|
|
4326
|
-
},
|
|
4327
|
-
{
|
|
4328
|
-
id: "zai-org/GLM-4.5",
|
|
4329
|
-
name: "GLM-4.5",
|
|
4330
|
-
match: {
|
|
4331
|
-
or: [
|
|
4332
|
-
{
|
|
4333
|
-
equals: "zai-org/glm-4.5"
|
|
4334
|
-
},
|
|
4335
|
-
{
|
|
4336
|
-
equals: "zai-org/glm-4.5-fast"
|
|
4337
|
-
}
|
|
4338
|
-
]
|
|
4339
|
-
},
|
|
4340
|
-
context_window: 131072,
|
|
4341
|
-
prices: {
|
|
4342
|
-
input_mtok: 0.55,
|
|
4343
|
-
output_mtok: 2.19
|
|
4301
|
+
input_mtok: 0.05,
|
|
4302
|
+
output_mtok: 0.2
|
|
4344
4303
|
}
|
|
4345
4304
|
}
|
|
4346
4305
|
]
|
|
@@ -4433,6 +4392,25 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
4433
4392
|
output_mtok: 0.79
|
|
4434
4393
|
}
|
|
4435
4394
|
},
|
|
4395
|
+
{
|
|
4396
|
+
id: "meta-llama/Llama-4-Scout-17B-16E-Instruct",
|
|
4397
|
+
name: "Llama-4-Scout-17B-16E-Instruct",
|
|
4398
|
+
match: {
|
|
4399
|
+
or: [
|
|
4400
|
+
{
|
|
4401
|
+
equals: "meta-llama/llama-4-scout-17b-16e-instruct"
|
|
4402
|
+
},
|
|
4403
|
+
{
|
|
4404
|
+
equals: "meta-llama/llama-4-scout-17b-16e-instruct-fast"
|
|
4405
|
+
}
|
|
4406
|
+
]
|
|
4407
|
+
},
|
|
4408
|
+
context_window: 131072,
|
|
4409
|
+
prices: {
|
|
4410
|
+
input_mtok: 0.11,
|
|
4411
|
+
output_mtok: 0.34
|
|
4412
|
+
}
|
|
4413
|
+
},
|
|
4436
4414
|
{
|
|
4437
4415
|
id: "openai/gpt-oss-120b",
|
|
4438
4416
|
name: "gpt-oss-120b",
|
|
@@ -4451,6 +4429,25 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
4451
4429
|
input_mtok: 0.15,
|
|
4452
4430
|
output_mtok: 0.75
|
|
4453
4431
|
}
|
|
4432
|
+
},
|
|
4433
|
+
{
|
|
4434
|
+
id: "openai/gpt-oss-20b",
|
|
4435
|
+
name: "gpt-oss-20b",
|
|
4436
|
+
match: {
|
|
4437
|
+
or: [
|
|
4438
|
+
{
|
|
4439
|
+
equals: "openai/gpt-oss-20b"
|
|
4440
|
+
},
|
|
4441
|
+
{
|
|
4442
|
+
equals: "openai/gpt-oss-20b-fast"
|
|
4443
|
+
}
|
|
4444
|
+
]
|
|
4445
|
+
},
|
|
4446
|
+
context_window: 131072,
|
|
4447
|
+
prices: {
|
|
4448
|
+
input_mtok: 0.1,
|
|
4449
|
+
output_mtok: 0.5
|
|
4450
|
+
}
|
|
4454
4451
|
}
|
|
4455
4452
|
]
|
|
4456
4453
|
},
|
|
@@ -4504,63 +4501,6 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
4504
4501
|
}
|
|
4505
4502
|
],
|
|
4506
4503
|
models: [
|
|
4507
|
-
{
|
|
4508
|
-
id: "Qwen/QwQ-32B",
|
|
4509
|
-
name: "QwQ-32B",
|
|
4510
|
-
match: {
|
|
4511
|
-
or: [
|
|
4512
|
-
{
|
|
4513
|
-
equals: "qwen/qwq-32b"
|
|
4514
|
-
},
|
|
4515
|
-
{
|
|
4516
|
-
equals: "qwen/qwq-32b-fast"
|
|
4517
|
-
}
|
|
4518
|
-
]
|
|
4519
|
-
},
|
|
4520
|
-
context_window: 131072,
|
|
4521
|
-
prices: {
|
|
4522
|
-
input_mtok: 0.4,
|
|
4523
|
-
output_mtok: 0.4
|
|
4524
|
-
}
|
|
4525
|
-
},
|
|
4526
|
-
{
|
|
4527
|
-
id: "Qwen/Qwen2.5-72B-Instruct",
|
|
4528
|
-
name: "Qwen2.5-72B-Instruct",
|
|
4529
|
-
match: {
|
|
4530
|
-
or: [
|
|
4531
|
-
{
|
|
4532
|
-
equals: "qwen/qwen2.5-72b-instruct"
|
|
4533
|
-
},
|
|
4534
|
-
{
|
|
4535
|
-
equals: "qwen/qwen2.5-72b-instruct-fast"
|
|
4536
|
-
}
|
|
4537
|
-
]
|
|
4538
|
-
},
|
|
4539
|
-
context_window: 131072,
|
|
4540
|
-
prices: {
|
|
4541
|
-
input_mtok: 0.4,
|
|
4542
|
-
output_mtok: 0.4
|
|
4543
|
-
}
|
|
4544
|
-
},
|
|
4545
|
-
{
|
|
4546
|
-
id: "Qwen/Qwen2.5-Coder-32B-Instruct",
|
|
4547
|
-
name: "Qwen2.5-Coder-32B-Instruct",
|
|
4548
|
-
match: {
|
|
4549
|
-
or: [
|
|
4550
|
-
{
|
|
4551
|
-
equals: "qwen/qwen2.5-coder-32b-instruct"
|
|
4552
|
-
},
|
|
4553
|
-
{
|
|
4554
|
-
equals: "qwen/qwen2.5-coder-32b-instruct-fast"
|
|
4555
|
-
}
|
|
4556
|
-
]
|
|
4557
|
-
},
|
|
4558
|
-
context_window: 32768,
|
|
4559
|
-
prices: {
|
|
4560
|
-
input_mtok: 0.2,
|
|
4561
|
-
output_mtok: 0.2
|
|
4562
|
-
}
|
|
4563
|
-
},
|
|
4564
4504
|
{
|
|
4565
4505
|
id: "Qwen/Qwen2.5-VL-72B-Instruct",
|
|
4566
4506
|
name: "Qwen2.5-VL-72B-Instruct",
|
|
@@ -4732,44 +4672,6 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
4732
4672
|
output_mtok: 1.25
|
|
4733
4673
|
}
|
|
4734
4674
|
},
|
|
4735
|
-
{
|
|
4736
|
-
id: "meta-llama/Llama-3.1-8B-Instruct",
|
|
4737
|
-
name: "Llama-3.1-8B-Instruct",
|
|
4738
|
-
match: {
|
|
4739
|
-
or: [
|
|
4740
|
-
{
|
|
4741
|
-
equals: "meta-llama/llama-3.1-8b-instruct"
|
|
4742
|
-
},
|
|
4743
|
-
{
|
|
4744
|
-
equals: "meta-llama/llama-3.1-8b-instruct-fast"
|
|
4745
|
-
}
|
|
4746
|
-
]
|
|
4747
|
-
},
|
|
4748
|
-
context_window: 131072,
|
|
4749
|
-
prices: {
|
|
4750
|
-
input_mtok: 0.1,
|
|
4751
|
-
output_mtok: 0.1
|
|
4752
|
-
}
|
|
4753
|
-
},
|
|
4754
|
-
{
|
|
4755
|
-
id: "meta-llama/Llama-3.2-3B-Instruct",
|
|
4756
|
-
name: "Llama-3.2-3B-Instruct",
|
|
4757
|
-
match: {
|
|
4758
|
-
or: [
|
|
4759
|
-
{
|
|
4760
|
-
equals: "meta-llama/llama-3.2-3b-instruct"
|
|
4761
|
-
},
|
|
4762
|
-
{
|
|
4763
|
-
equals: "meta-llama/llama-3.2-3b-instruct-fast"
|
|
4764
|
-
}
|
|
4765
|
-
]
|
|
4766
|
-
},
|
|
4767
|
-
context_window: 131072,
|
|
4768
|
-
prices: {
|
|
4769
|
-
input_mtok: 0.1,
|
|
4770
|
-
output_mtok: 0.1
|
|
4771
|
-
}
|
|
4772
|
-
},
|
|
4773
4675
|
{
|
|
4774
4676
|
id: "meta-llama/Llama-3.3-70B-Instruct",
|
|
4775
4677
|
name: "Llama-3.3-70B-Instruct",
|
|
@@ -4790,41 +4692,41 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
4790
4692
|
}
|
|
4791
4693
|
},
|
|
4792
4694
|
{
|
|
4793
|
-
id: "
|
|
4794
|
-
name: "
|
|
4695
|
+
id: "openai/gpt-oss-120b",
|
|
4696
|
+
name: "gpt-oss-120b",
|
|
4795
4697
|
match: {
|
|
4796
4698
|
or: [
|
|
4797
4699
|
{
|
|
4798
|
-
equals: "
|
|
4700
|
+
equals: "openai/gpt-oss-120b"
|
|
4799
4701
|
},
|
|
4800
4702
|
{
|
|
4801
|
-
equals: "
|
|
4703
|
+
equals: "openai/gpt-oss-120b-fast"
|
|
4802
4704
|
}
|
|
4803
4705
|
]
|
|
4804
4706
|
},
|
|
4805
|
-
context_window:
|
|
4707
|
+
context_window: 131072,
|
|
4806
4708
|
prices: {
|
|
4807
|
-
input_mtok: 0.
|
|
4808
|
-
output_mtok: 0.
|
|
4709
|
+
input_mtok: 0.3,
|
|
4710
|
+
output_mtok: 0.3
|
|
4809
4711
|
}
|
|
4810
4712
|
},
|
|
4811
4713
|
{
|
|
4812
|
-
id: "openai/gpt-oss-
|
|
4813
|
-
name: "gpt-oss-
|
|
4714
|
+
id: "openai/gpt-oss-20b",
|
|
4715
|
+
name: "gpt-oss-20b",
|
|
4814
4716
|
match: {
|
|
4815
4717
|
or: [
|
|
4816
4718
|
{
|
|
4817
|
-
equals: "openai/gpt-oss-
|
|
4719
|
+
equals: "openai/gpt-oss-20b"
|
|
4818
4720
|
},
|
|
4819
4721
|
{
|
|
4820
|
-
equals: "openai/gpt-oss-
|
|
4722
|
+
equals: "openai/gpt-oss-20b-fast"
|
|
4821
4723
|
}
|
|
4822
4724
|
]
|
|
4823
4725
|
},
|
|
4824
4726
|
context_window: 131072,
|
|
4825
4727
|
prices: {
|
|
4826
|
-
input_mtok: 0.
|
|
4827
|
-
output_mtok: 0.
|
|
4728
|
+
input_mtok: 0.1,
|
|
4729
|
+
output_mtok: 0.1
|
|
4828
4730
|
}
|
|
4829
4731
|
}
|
|
4830
4732
|
]
|
|
@@ -5440,8 +5342,8 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
5440
5342
|
},
|
|
5441
5343
|
context_window: 1e6,
|
|
5442
5344
|
prices: {
|
|
5443
|
-
input_mtok: 0.
|
|
5444
|
-
output_mtok:
|
|
5345
|
+
input_mtok: 0.55,
|
|
5346
|
+
output_mtok: 2.2
|
|
5445
5347
|
}
|
|
5446
5348
|
},
|
|
5447
5349
|
{
|
|
@@ -5454,6 +5356,18 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
5454
5356
|
},
|
|
5455
5357
|
{
|
|
5456
5358
|
equals: "minimaxai/minimax-m2-fast"
|
|
5359
|
+
},
|
|
5360
|
+
{
|
|
5361
|
+
equals: "minimaxai/minimax-m2.1"
|
|
5362
|
+
},
|
|
5363
|
+
{
|
|
5364
|
+
equals: "minimaxai/minimax-m2.1-fast"
|
|
5365
|
+
},
|
|
5366
|
+
{
|
|
5367
|
+
equals: "minimaxai/minimax-m2.5"
|
|
5368
|
+
},
|
|
5369
|
+
{
|
|
5370
|
+
equals: "minimaxai/minimax-m2.5-fast"
|
|
5457
5371
|
}
|
|
5458
5372
|
]
|
|
5459
5373
|
},
|
|
@@ -5497,8 +5411,8 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
5497
5411
|
},
|
|
5498
5412
|
context_window: 32e3,
|
|
5499
5413
|
prices: {
|
|
5500
|
-
input_mtok: 0.
|
|
5501
|
-
output_mtok: 0.
|
|
5414
|
+
input_mtok: 0.38,
|
|
5415
|
+
output_mtok: 0.4
|
|
5502
5416
|
}
|
|
5503
5417
|
},
|
|
5504
5418
|
{
|
|
@@ -5516,8 +5430,8 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
5516
5430
|
},
|
|
5517
5431
|
context_window: 40960,
|
|
5518
5432
|
prices: {
|
|
5519
|
-
input_mtok: 0.
|
|
5520
|
-
output_mtok: 0.
|
|
5433
|
+
input_mtok: 0.2,
|
|
5434
|
+
output_mtok: 0.8
|
|
5521
5435
|
}
|
|
5522
5436
|
},
|
|
5523
5437
|
{
|
|
@@ -5535,8 +5449,8 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
5535
5449
|
},
|
|
5536
5450
|
context_window: 131072,
|
|
5537
5451
|
prices: {
|
|
5538
|
-
input_mtok: 0.
|
|
5539
|
-
output_mtok: 0.
|
|
5452
|
+
input_mtok: 0.09,
|
|
5453
|
+
output_mtok: 0.58
|
|
5540
5454
|
}
|
|
5541
5455
|
},
|
|
5542
5456
|
{
|
|
@@ -5554,8 +5468,8 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
5554
5468
|
},
|
|
5555
5469
|
context_window: 131072,
|
|
5556
5470
|
prices: {
|
|
5557
|
-
input_mtok: 0.
|
|
5558
|
-
output_mtok:
|
|
5471
|
+
input_mtok: 0.3,
|
|
5472
|
+
output_mtok: 3
|
|
5559
5473
|
}
|
|
5560
5474
|
},
|
|
5561
5475
|
{
|
|
@@ -5573,8 +5487,8 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
5573
5487
|
},
|
|
5574
5488
|
context_window: 40960,
|
|
5575
5489
|
prices: {
|
|
5576
|
-
input_mtok: 0.
|
|
5577
|
-
output_mtok: 0.
|
|
5490
|
+
input_mtok: 0.09,
|
|
5491
|
+
output_mtok: 0.45
|
|
5578
5492
|
}
|
|
5579
5493
|
},
|
|
5580
5494
|
{
|
|
@@ -5592,8 +5506,8 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
5592
5506
|
},
|
|
5593
5507
|
context_window: 40960,
|
|
5594
5508
|
prices: {
|
|
5595
|
-
input_mtok: 0.
|
|
5596
|
-
output_mtok: 0.
|
|
5509
|
+
input_mtok: 0.1,
|
|
5510
|
+
output_mtok: 0.45
|
|
5597
5511
|
}
|
|
5598
5512
|
},
|
|
5599
5513
|
{
|
|
@@ -5615,6 +5529,25 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
5615
5529
|
output_mtok: 1.3
|
|
5616
5530
|
}
|
|
5617
5531
|
},
|
|
5532
|
+
{
|
|
5533
|
+
id: "Qwen/Qwen3-Coder-Next",
|
|
5534
|
+
name: "Qwen3-Coder-Next",
|
|
5535
|
+
match: {
|
|
5536
|
+
or: [
|
|
5537
|
+
{
|
|
5538
|
+
equals: "qwen/qwen3-coder-next"
|
|
5539
|
+
},
|
|
5540
|
+
{
|
|
5541
|
+
equals: "qwen/qwen3-coder-next-fast"
|
|
5542
|
+
}
|
|
5543
|
+
]
|
|
5544
|
+
},
|
|
5545
|
+
context_window: 262144,
|
|
5546
|
+
prices: {
|
|
5547
|
+
input_mtok: 0.2,
|
|
5548
|
+
output_mtok: 1.5
|
|
5549
|
+
}
|
|
5550
|
+
},
|
|
5618
5551
|
{
|
|
5619
5552
|
id: "Qwen/Qwen3-Next-80B-A3B-Instruct",
|
|
5620
5553
|
name: "Qwen3-Next-80B-A3B-Instruct",
|
|
@@ -5630,8 +5563,8 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
5630
5563
|
},
|
|
5631
5564
|
context_window: 131072,
|
|
5632
5565
|
prices: {
|
|
5633
|
-
input_mtok: 0.
|
|
5634
|
-
output_mtok: 1.
|
|
5566
|
+
input_mtok: 0.15,
|
|
5567
|
+
output_mtok: 1.5
|
|
5635
5568
|
}
|
|
5636
5569
|
},
|
|
5637
5570
|
{
|
|
@@ -5649,8 +5582,8 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
5649
5582
|
},
|
|
5650
5583
|
context_window: 131072,
|
|
5651
5584
|
prices: {
|
|
5652
|
-
input_mtok: 0.
|
|
5653
|
-
output_mtok: 1.
|
|
5585
|
+
input_mtok: 0.15,
|
|
5586
|
+
output_mtok: 1.5
|
|
5654
5587
|
}
|
|
5655
5588
|
},
|
|
5656
5589
|
{
|
|
@@ -5668,8 +5601,8 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
5668
5601
|
},
|
|
5669
5602
|
context_window: 131072,
|
|
5670
5603
|
prices: {
|
|
5671
|
-
input_mtok: 0.
|
|
5672
|
-
output_mtok: 1.
|
|
5604
|
+
input_mtok: 0.3,
|
|
5605
|
+
output_mtok: 1.5
|
|
5673
5606
|
}
|
|
5674
5607
|
},
|
|
5675
5608
|
{
|
|
@@ -5687,8 +5620,8 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
5687
5620
|
},
|
|
5688
5621
|
context_window: 131072,
|
|
5689
5622
|
prices: {
|
|
5690
|
-
input_mtok: 0.
|
|
5691
|
-
output_mtok: 3.
|
|
5623
|
+
input_mtok: 0.98,
|
|
5624
|
+
output_mtok: 3.95
|
|
5692
5625
|
}
|
|
5693
5626
|
},
|
|
5694
5627
|
{
|
|
@@ -5706,8 +5639,8 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
5706
5639
|
},
|
|
5707
5640
|
context_window: 131072,
|
|
5708
5641
|
prices: {
|
|
5709
|
-
input_mtok: 0.
|
|
5710
|
-
output_mtok: 0.
|
|
5642
|
+
input_mtok: 0.2,
|
|
5643
|
+
output_mtok: 0.7
|
|
5711
5644
|
}
|
|
5712
5645
|
},
|
|
5713
5646
|
{
|
|
@@ -5725,8 +5658,8 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
5725
5658
|
},
|
|
5726
5659
|
context_window: 131072,
|
|
5727
5660
|
prices: {
|
|
5728
|
-
input_mtok: 0.
|
|
5729
|
-
output_mtok:
|
|
5661
|
+
input_mtok: 0.2,
|
|
5662
|
+
output_mtok: 1
|
|
5730
5663
|
}
|
|
5731
5664
|
},
|
|
5732
5665
|
{
|
|
@@ -5744,8 +5677,84 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
5744
5677
|
},
|
|
5745
5678
|
context_window: 131072,
|
|
5746
5679
|
prices: {
|
|
5747
|
-
input_mtok: 0.
|
|
5748
|
-
output_mtok: 0.
|
|
5680
|
+
input_mtok: 0.08,
|
|
5681
|
+
output_mtok: 0.5
|
|
5682
|
+
}
|
|
5683
|
+
},
|
|
5684
|
+
{
|
|
5685
|
+
id: "Qwen/Qwen3.5-122B-A10B",
|
|
5686
|
+
name: "Qwen3.5-122B-A10B",
|
|
5687
|
+
match: {
|
|
5688
|
+
or: [
|
|
5689
|
+
{
|
|
5690
|
+
equals: "qwen/qwen3.5-122b-a10b"
|
|
5691
|
+
},
|
|
5692
|
+
{
|
|
5693
|
+
equals: "qwen/qwen3.5-122b-a10b-fast"
|
|
5694
|
+
}
|
|
5695
|
+
]
|
|
5696
|
+
},
|
|
5697
|
+
context_window: 262144,
|
|
5698
|
+
prices: {
|
|
5699
|
+
input_mtok: 0.4,
|
|
5700
|
+
output_mtok: 3.2
|
|
5701
|
+
}
|
|
5702
|
+
},
|
|
5703
|
+
{
|
|
5704
|
+
id: "Qwen/Qwen3.5-27B",
|
|
5705
|
+
name: "Qwen3.5-27B",
|
|
5706
|
+
match: {
|
|
5707
|
+
or: [
|
|
5708
|
+
{
|
|
5709
|
+
equals: "qwen/qwen3.5-27b"
|
|
5710
|
+
},
|
|
5711
|
+
{
|
|
5712
|
+
equals: "qwen/qwen3.5-27b-fast"
|
|
5713
|
+
}
|
|
5714
|
+
]
|
|
5715
|
+
},
|
|
5716
|
+
context_window: 262144,
|
|
5717
|
+
prices: {
|
|
5718
|
+
input_mtok: 0.3,
|
|
5719
|
+
output_mtok: 2.4
|
|
5720
|
+
}
|
|
5721
|
+
},
|
|
5722
|
+
{
|
|
5723
|
+
id: "Qwen/Qwen3.5-35B-A3B",
|
|
5724
|
+
name: "Qwen3.5-35B-A3B",
|
|
5725
|
+
match: {
|
|
5726
|
+
or: [
|
|
5727
|
+
{
|
|
5728
|
+
equals: "qwen/qwen3.5-35b-a3b"
|
|
5729
|
+
},
|
|
5730
|
+
{
|
|
5731
|
+
equals: "qwen/qwen3.5-35b-a3b-fast"
|
|
5732
|
+
}
|
|
5733
|
+
]
|
|
5734
|
+
},
|
|
5735
|
+
context_window: 262144,
|
|
5736
|
+
prices: {
|
|
5737
|
+
input_mtok: 0.25,
|
|
5738
|
+
output_mtok: 2
|
|
5739
|
+
}
|
|
5740
|
+
},
|
|
5741
|
+
{
|
|
5742
|
+
id: "Qwen/Qwen3.5-397B-A17B",
|
|
5743
|
+
name: "Qwen3.5-397B-A17B",
|
|
5744
|
+
match: {
|
|
5745
|
+
or: [
|
|
5746
|
+
{
|
|
5747
|
+
equals: "qwen/qwen3.5-397b-a17b"
|
|
5748
|
+
},
|
|
5749
|
+
{
|
|
5750
|
+
equals: "qwen/qwen3.5-397b-a17b-fast"
|
|
5751
|
+
}
|
|
5752
|
+
]
|
|
5753
|
+
},
|
|
5754
|
+
context_window: 262144,
|
|
5755
|
+
prices: {
|
|
5756
|
+
input_mtok: 0.6,
|
|
5757
|
+
output_mtok: 3.6
|
|
5749
5758
|
}
|
|
5750
5759
|
},
|
|
5751
5760
|
{
|
|
@@ -5820,8 +5829,8 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
5820
5829
|
},
|
|
5821
5830
|
context_window: 262144,
|
|
5822
5831
|
prices: {
|
|
5823
|
-
input_mtok: 0.
|
|
5824
|
-
output_mtok: 0.
|
|
5832
|
+
input_mtok: 0.1,
|
|
5833
|
+
output_mtok: 0.3
|
|
5825
5834
|
}
|
|
5826
5835
|
},
|
|
5827
5836
|
{
|
|
@@ -5839,27 +5848,8 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
5839
5848
|
},
|
|
5840
5849
|
context_window: 65535,
|
|
5841
5850
|
prices: {
|
|
5842
|
-
input_mtok: 0.
|
|
5843
|
-
output_mtok: 0.
|
|
5844
|
-
}
|
|
5845
|
-
},
|
|
5846
|
-
{
|
|
5847
|
-
id: "baichuan-inc/Baichuan-M2-32B",
|
|
5848
|
-
name: "Baichuan-M2-32B",
|
|
5849
|
-
match: {
|
|
5850
|
-
or: [
|
|
5851
|
-
{
|
|
5852
|
-
equals: "baichuan-inc/baichuan-m2-32b"
|
|
5853
|
-
},
|
|
5854
|
-
{
|
|
5855
|
-
equals: "baichuan-inc/baichuan-m2-32b-fast"
|
|
5856
|
-
}
|
|
5857
|
-
]
|
|
5858
|
-
},
|
|
5859
|
-
context_window: 131072,
|
|
5860
|
-
prices: {
|
|
5861
|
-
input_mtok: 0.056,
|
|
5862
|
-
output_mtok: 0.056
|
|
5851
|
+
input_mtok: 0.62,
|
|
5852
|
+
output_mtok: 0.62
|
|
5863
5853
|
}
|
|
5864
5854
|
},
|
|
5865
5855
|
{
|
|
@@ -5877,8 +5867,8 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
5877
5867
|
},
|
|
5878
5868
|
context_window: 12e4,
|
|
5879
5869
|
prices: {
|
|
5880
|
-
input_mtok: 0.
|
|
5881
|
-
output_mtok: 0.
|
|
5870
|
+
input_mtok: 0.07,
|
|
5871
|
+
output_mtok: 0.28
|
|
5882
5872
|
}
|
|
5883
5873
|
},
|
|
5884
5874
|
{
|
|
@@ -5896,8 +5886,8 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
5896
5886
|
},
|
|
5897
5887
|
context_window: 123e3,
|
|
5898
5888
|
prices: {
|
|
5899
|
-
input_mtok: 0.
|
|
5900
|
-
output_mtok:
|
|
5889
|
+
input_mtok: 0.28,
|
|
5890
|
+
output_mtok: 1.1
|
|
5901
5891
|
}
|
|
5902
5892
|
},
|
|
5903
5893
|
{
|
|
@@ -5915,8 +5905,8 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
5915
5905
|
},
|
|
5916
5906
|
context_window: 3e4,
|
|
5917
5907
|
prices: {
|
|
5918
|
-
input_mtok: 0.
|
|
5919
|
-
output_mtok: 0.
|
|
5908
|
+
input_mtok: 0.14,
|
|
5909
|
+
output_mtok: 0.56
|
|
5920
5910
|
}
|
|
5921
5911
|
},
|
|
5922
5912
|
{
|
|
@@ -5934,8 +5924,8 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
5934
5924
|
},
|
|
5935
5925
|
context_window: 123e3,
|
|
5936
5926
|
prices: {
|
|
5937
|
-
input_mtok: 0.
|
|
5938
|
-
output_mtok: 1
|
|
5927
|
+
input_mtok: 0.42,
|
|
5928
|
+
output_mtok: 1.25
|
|
5939
5929
|
}
|
|
5940
5930
|
},
|
|
5941
5931
|
{
|
|
@@ -5953,8 +5943,8 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
5953
5943
|
},
|
|
5954
5944
|
context_window: 16e4,
|
|
5955
5945
|
prices: {
|
|
5956
|
-
input_mtok: 0.
|
|
5957
|
-
output_mtok: 2
|
|
5946
|
+
input_mtok: 0.7,
|
|
5947
|
+
output_mtok: 2.5
|
|
5958
5948
|
}
|
|
5959
5949
|
},
|
|
5960
5950
|
{
|
|
@@ -5978,27 +5968,8 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
5978
5968
|
},
|
|
5979
5969
|
context_window: 64e3,
|
|
5980
5970
|
prices: {
|
|
5981
|
-
input_mtok: 0.
|
|
5982
|
-
output_mtok: 2
|
|
5983
|
-
}
|
|
5984
|
-
},
|
|
5985
|
-
{
|
|
5986
|
-
id: "deepseek-ai/DeepSeek-R1-0528-Qwen3-8B",
|
|
5987
|
-
name: "DeepSeek-R1-0528-Qwen3-8B",
|
|
5988
|
-
match: {
|
|
5989
|
-
or: [
|
|
5990
|
-
{
|
|
5991
|
-
equals: "deepseek-ai/deepseek-r1-0528-qwen3-8b"
|
|
5992
|
-
},
|
|
5993
|
-
{
|
|
5994
|
-
equals: "deepseek-ai/deepseek-r1-0528-qwen3-8b-fast"
|
|
5995
|
-
}
|
|
5996
|
-
]
|
|
5997
|
-
},
|
|
5998
|
-
context_window: 128e3,
|
|
5999
|
-
prices: {
|
|
6000
|
-
input_mtok: 0.048,
|
|
6001
|
-
output_mtok: 0.072
|
|
5971
|
+
input_mtok: 0.7,
|
|
5972
|
+
output_mtok: 2.5
|
|
6002
5973
|
}
|
|
6003
5974
|
},
|
|
6004
5975
|
{
|
|
@@ -6016,46 +5987,8 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
6016
5987
|
},
|
|
6017
5988
|
context_window: 8192,
|
|
6018
5989
|
prices: {
|
|
6019
|
-
input_mtok: 0.
|
|
6020
|
-
output_mtok: 0.
|
|
6021
|
-
}
|
|
6022
|
-
},
|
|
6023
|
-
{
|
|
6024
|
-
id: "deepseek-ai/DeepSeek-R1-Distill-Qwen-14B",
|
|
6025
|
-
name: "DeepSeek-R1-Distill-Qwen-14B",
|
|
6026
|
-
match: {
|
|
6027
|
-
or: [
|
|
6028
|
-
{
|
|
6029
|
-
equals: "deepseek-ai/deepseek-r1-distill-qwen-14b"
|
|
6030
|
-
},
|
|
6031
|
-
{
|
|
6032
|
-
equals: "deepseek-ai/deepseek-r1-distill-qwen-14b-fast"
|
|
6033
|
-
}
|
|
6034
|
-
]
|
|
6035
|
-
},
|
|
6036
|
-
context_window: 32768,
|
|
6037
|
-
prices: {
|
|
6038
|
-
input_mtok: 0.12,
|
|
6039
|
-
output_mtok: 0.12
|
|
6040
|
-
}
|
|
6041
|
-
},
|
|
6042
|
-
{
|
|
6043
|
-
id: "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B",
|
|
6044
|
-
name: "DeepSeek-R1-Distill-Qwen-32B",
|
|
6045
|
-
match: {
|
|
6046
|
-
or: [
|
|
6047
|
-
{
|
|
6048
|
-
equals: "deepseek-ai/deepseek-r1-distill-qwen-32b"
|
|
6049
|
-
},
|
|
6050
|
-
{
|
|
6051
|
-
equals: "deepseek-ai/deepseek-r1-distill-qwen-32b-fast"
|
|
6052
|
-
}
|
|
6053
|
-
]
|
|
6054
|
-
},
|
|
6055
|
-
context_window: 64e3,
|
|
6056
|
-
prices: {
|
|
6057
|
-
input_mtok: 0.24,
|
|
6058
|
-
output_mtok: 0.24
|
|
5990
|
+
input_mtok: 0.8,
|
|
5991
|
+
output_mtok: 0.8
|
|
6059
5992
|
}
|
|
6060
5993
|
},
|
|
6061
5994
|
{
|
|
@@ -6073,8 +6006,8 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
6073
6006
|
},
|
|
6074
6007
|
context_window: 64e3,
|
|
6075
6008
|
prices: {
|
|
6076
|
-
input_mtok: 0.
|
|
6077
|
-
output_mtok: 1.
|
|
6009
|
+
input_mtok: 0.4,
|
|
6010
|
+
output_mtok: 1.3
|
|
6078
6011
|
}
|
|
6079
6012
|
},
|
|
6080
6013
|
{
|
|
@@ -6092,8 +6025,8 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
6092
6025
|
},
|
|
6093
6026
|
context_window: 163840,
|
|
6094
6027
|
prices: {
|
|
6095
|
-
input_mtok: 0.
|
|
6096
|
-
output_mtok:
|
|
6028
|
+
input_mtok: 0.27,
|
|
6029
|
+
output_mtok: 1.12
|
|
6097
6030
|
}
|
|
6098
6031
|
},
|
|
6099
6032
|
{
|
|
@@ -6117,8 +6050,8 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
6117
6050
|
},
|
|
6118
6051
|
context_window: 131072,
|
|
6119
6052
|
prices: {
|
|
6120
|
-
input_mtok: 0.
|
|
6121
|
-
output_mtok:
|
|
6053
|
+
input_mtok: 0.27,
|
|
6054
|
+
output_mtok: 1
|
|
6122
6055
|
}
|
|
6123
6056
|
},
|
|
6124
6057
|
{
|
|
@@ -6155,8 +6088,8 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
6155
6088
|
},
|
|
6156
6089
|
context_window: 163840,
|
|
6157
6090
|
prices: {
|
|
6158
|
-
input_mtok: 0.
|
|
6159
|
-
output_mtok: 0.
|
|
6091
|
+
input_mtok: 0.27,
|
|
6092
|
+
output_mtok: 0.41
|
|
6160
6093
|
}
|
|
6161
6094
|
},
|
|
6162
6095
|
{
|
|
@@ -6179,41 +6112,60 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
6179
6112
|
}
|
|
6180
6113
|
},
|
|
6181
6114
|
{
|
|
6182
|
-
id: "meta-llama/Llama-3.
|
|
6183
|
-
name: "Llama-3.
|
|
6115
|
+
id: "meta-llama/Llama-3.3-70B-Instruct",
|
|
6116
|
+
name: "Llama-3.3-70B-Instruct",
|
|
6184
6117
|
match: {
|
|
6185
6118
|
or: [
|
|
6186
6119
|
{
|
|
6187
|
-
equals: "meta-llama/llama-3.
|
|
6120
|
+
equals: "meta-llama/llama-3.3-70b-instruct"
|
|
6188
6121
|
},
|
|
6189
6122
|
{
|
|
6190
|
-
equals: "meta-llama/llama-3.
|
|
6123
|
+
equals: "meta-llama/llama-3.3-70b-instruct-fast"
|
|
6191
6124
|
}
|
|
6192
6125
|
]
|
|
6193
6126
|
},
|
|
6194
|
-
context_window:
|
|
6127
|
+
context_window: 131072,
|
|
6195
6128
|
prices: {
|
|
6196
|
-
input_mtok: 0.
|
|
6197
|
-
output_mtok: 0.
|
|
6129
|
+
input_mtok: 0.135,
|
|
6130
|
+
output_mtok: 0.4
|
|
6198
6131
|
}
|
|
6199
6132
|
},
|
|
6200
6133
|
{
|
|
6201
|
-
id: "meta-llama/Llama-
|
|
6202
|
-
name: "Llama-
|
|
6134
|
+
id: "meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8",
|
|
6135
|
+
name: "Llama-4-Maverick-17B-128E-Instruct-FP8",
|
|
6203
6136
|
match: {
|
|
6204
6137
|
or: [
|
|
6205
6138
|
{
|
|
6206
|
-
equals: "meta-llama/llama-
|
|
6139
|
+
equals: "meta-llama/llama-4-maverick-17b-128e-instruct-fp8"
|
|
6207
6140
|
},
|
|
6208
6141
|
{
|
|
6209
|
-
equals: "meta-llama/llama-
|
|
6142
|
+
equals: "meta-llama/llama-4-maverick-17b-128e-instruct-fp8-fast"
|
|
6143
|
+
}
|
|
6144
|
+
]
|
|
6145
|
+
},
|
|
6146
|
+
context_window: 1048576,
|
|
6147
|
+
prices: {
|
|
6148
|
+
input_mtok: 0.27,
|
|
6149
|
+
output_mtok: 0.85
|
|
6150
|
+
}
|
|
6151
|
+
},
|
|
6152
|
+
{
|
|
6153
|
+
id: "meta-llama/Llama-4-Scout-17B-16E-Instruct",
|
|
6154
|
+
name: "Llama-4-Scout-17B-16E-Instruct",
|
|
6155
|
+
match: {
|
|
6156
|
+
or: [
|
|
6157
|
+
{
|
|
6158
|
+
equals: "meta-llama/llama-4-scout-17b-16e-instruct"
|
|
6159
|
+
},
|
|
6160
|
+
{
|
|
6161
|
+
equals: "meta-llama/llama-4-scout-17b-16e-instruct-fast"
|
|
6210
6162
|
}
|
|
6211
6163
|
]
|
|
6212
6164
|
},
|
|
6213
6165
|
context_window: 131072,
|
|
6214
6166
|
prices: {
|
|
6215
|
-
input_mtok: 0.
|
|
6216
|
-
output_mtok: 0.
|
|
6167
|
+
input_mtok: 0.18,
|
|
6168
|
+
output_mtok: 0.59
|
|
6217
6169
|
}
|
|
6218
6170
|
},
|
|
6219
6171
|
{
|
|
@@ -6250,8 +6202,8 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
6250
6202
|
},
|
|
6251
6203
|
context_window: 8192,
|
|
6252
6204
|
prices: {
|
|
6253
|
-
input_mtok: 0.
|
|
6254
|
-
output_mtok: 0.
|
|
6205
|
+
input_mtok: 0.04,
|
|
6206
|
+
output_mtok: 0.04
|
|
6255
6207
|
}
|
|
6256
6208
|
},
|
|
6257
6209
|
{
|
|
@@ -6269,33 +6221,71 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
6269
6221
|
},
|
|
6270
6222
|
context_window: 131072,
|
|
6271
6223
|
prices: {
|
|
6272
|
-
input_mtok: 0.
|
|
6273
|
-
output_mtok:
|
|
6224
|
+
input_mtok: 0.57,
|
|
6225
|
+
output_mtok: 2.3
|
|
6274
6226
|
}
|
|
6275
6227
|
},
|
|
6276
6228
|
{
|
|
6277
|
-
id: "moonshotai/Kimi-K2-
|
|
6278
|
-
name: "Kimi-K2-
|
|
6229
|
+
id: "moonshotai/Kimi-K2-Instruct-0905",
|
|
6230
|
+
name: "Kimi-K2-Instruct-0905",
|
|
6279
6231
|
match: {
|
|
6280
6232
|
or: [
|
|
6281
6233
|
{
|
|
6282
|
-
equals: "moonshotai/kimi-k2-
|
|
6234
|
+
equals: "moonshotai/kimi-k2-instruct-0905"
|
|
6283
6235
|
},
|
|
6284
6236
|
{
|
|
6285
|
-
equals: "moonshotai/kimi-k2-
|
|
6237
|
+
equals: "moonshotai/kimi-k2-instruct-0905-fast"
|
|
6286
6238
|
}
|
|
6287
6239
|
]
|
|
6288
6240
|
},
|
|
6289
6241
|
context_window: 262144,
|
|
6290
6242
|
prices: {
|
|
6291
|
-
input_mtok: 0.
|
|
6292
|
-
output_mtok: 2
|
|
6243
|
+
input_mtok: 0.6,
|
|
6244
|
+
output_mtok: 2.5
|
|
6293
6245
|
}
|
|
6294
6246
|
},
|
|
6295
6247
|
{
|
|
6296
|
-
id: "
|
|
6297
|
-
name: "
|
|
6298
|
-
match: {
|
|
6248
|
+
id: "moonshotai/Kimi-K2-Thinking",
|
|
6249
|
+
name: "Kimi-K2-Thinking",
|
|
6250
|
+
match: {
|
|
6251
|
+
or: [
|
|
6252
|
+
{
|
|
6253
|
+
equals: "moonshotai/kimi-k2-thinking"
|
|
6254
|
+
},
|
|
6255
|
+
{
|
|
6256
|
+
equals: "moonshotai/kimi-k2-thinking-fast"
|
|
6257
|
+
}
|
|
6258
|
+
]
|
|
6259
|
+
},
|
|
6260
|
+
context_window: 262144,
|
|
6261
|
+
prices: {
|
|
6262
|
+
input_mtok: 0.6,
|
|
6263
|
+
output_mtok: 2.5
|
|
6264
|
+
}
|
|
6265
|
+
},
|
|
6266
|
+
{
|
|
6267
|
+
id: "moonshotai/Kimi-K2.5",
|
|
6268
|
+
name: "Kimi-K2.5",
|
|
6269
|
+
match: {
|
|
6270
|
+
or: [
|
|
6271
|
+
{
|
|
6272
|
+
equals: "moonshotai/kimi-k2.5"
|
|
6273
|
+
},
|
|
6274
|
+
{
|
|
6275
|
+
equals: "moonshotai/kimi-k2.5-fast"
|
|
6276
|
+
}
|
|
6277
|
+
]
|
|
6278
|
+
},
|
|
6279
|
+
context_window: 262144,
|
|
6280
|
+
prices: {
|
|
6281
|
+
input_mtok: 0.6,
|
|
6282
|
+
output_mtok: 3
|
|
6283
|
+
}
|
|
6284
|
+
},
|
|
6285
|
+
{
|
|
6286
|
+
id: "openai/gpt-oss-120b",
|
|
6287
|
+
name: "gpt-oss-120b",
|
|
6288
|
+
match: {
|
|
6299
6289
|
or: [
|
|
6300
6290
|
{
|
|
6301
6291
|
equals: "openai/gpt-oss-120b"
|
|
@@ -6306,9 +6296,28 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
6306
6296
|
]
|
|
6307
6297
|
},
|
|
6308
6298
|
context_window: 131072,
|
|
6299
|
+
prices: {
|
|
6300
|
+
input_mtok: 0.05,
|
|
6301
|
+
output_mtok: 0.25
|
|
6302
|
+
}
|
|
6303
|
+
},
|
|
6304
|
+
{
|
|
6305
|
+
id: "openai/gpt-oss-20b",
|
|
6306
|
+
name: "gpt-oss-20b",
|
|
6307
|
+
match: {
|
|
6308
|
+
or: [
|
|
6309
|
+
{
|
|
6310
|
+
equals: "openai/gpt-oss-20b"
|
|
6311
|
+
},
|
|
6312
|
+
{
|
|
6313
|
+
equals: "openai/gpt-oss-20b-fast"
|
|
6314
|
+
}
|
|
6315
|
+
]
|
|
6316
|
+
},
|
|
6317
|
+
context_window: 131072,
|
|
6309
6318
|
prices: {
|
|
6310
6319
|
input_mtok: 0.04,
|
|
6311
|
-
output_mtok: 0.
|
|
6320
|
+
output_mtok: 0.15
|
|
6312
6321
|
}
|
|
6313
6322
|
},
|
|
6314
6323
|
{
|
|
@@ -6331,22 +6340,22 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
6331
6340
|
}
|
|
6332
6341
|
},
|
|
6333
6342
|
{
|
|
6334
|
-
id: "zai-org/GLM-4
|
|
6335
|
-
name: "GLM-4
|
|
6343
|
+
id: "zai-org/GLM-4-32B-0414",
|
|
6344
|
+
name: "GLM-4-32B-0414",
|
|
6336
6345
|
match: {
|
|
6337
6346
|
or: [
|
|
6338
6347
|
{
|
|
6339
|
-
equals: "zai-org/glm-4
|
|
6348
|
+
equals: "zai-org/glm-4-32b-0414"
|
|
6340
6349
|
},
|
|
6341
6350
|
{
|
|
6342
|
-
equals: "zai-org/glm-4
|
|
6351
|
+
equals: "zai-org/glm-4-32b-0414-fast"
|
|
6343
6352
|
}
|
|
6344
6353
|
]
|
|
6345
6354
|
},
|
|
6346
|
-
context_window:
|
|
6355
|
+
context_window: 32e3,
|
|
6347
6356
|
prices: {
|
|
6348
|
-
input_mtok: 0.
|
|
6349
|
-
output_mtok:
|
|
6357
|
+
input_mtok: 0.55,
|
|
6358
|
+
output_mtok: 1.66
|
|
6350
6359
|
}
|
|
6351
6360
|
},
|
|
6352
6361
|
{
|
|
@@ -6364,8 +6373,8 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
6364
6373
|
},
|
|
6365
6374
|
context_window: 131072,
|
|
6366
6375
|
prices: {
|
|
6367
|
-
input_mtok: 0.
|
|
6368
|
-
output_mtok:
|
|
6376
|
+
input_mtok: 0.6,
|
|
6377
|
+
output_mtok: 2.2
|
|
6369
6378
|
}
|
|
6370
6379
|
},
|
|
6371
6380
|
{
|
|
@@ -6383,8 +6392,8 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
6383
6392
|
},
|
|
6384
6393
|
context_window: 131072,
|
|
6385
6394
|
prices: {
|
|
6386
|
-
input_mtok: 0.
|
|
6387
|
-
output_mtok: 0.
|
|
6395
|
+
input_mtok: 0.13,
|
|
6396
|
+
output_mtok: 0.85
|
|
6388
6397
|
}
|
|
6389
6398
|
},
|
|
6390
6399
|
{
|
|
@@ -6402,8 +6411,8 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
6402
6411
|
},
|
|
6403
6412
|
context_window: 65536,
|
|
6404
6413
|
prices: {
|
|
6405
|
-
input_mtok: 0.
|
|
6406
|
-
output_mtok: 1.
|
|
6414
|
+
input_mtok: 0.6,
|
|
6415
|
+
output_mtok: 1.8
|
|
6407
6416
|
}
|
|
6408
6417
|
},
|
|
6409
6418
|
{
|
|
@@ -6421,8 +6430,8 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
6421
6430
|
},
|
|
6422
6431
|
context_window: 204800,
|
|
6423
6432
|
prices: {
|
|
6424
|
-
input_mtok: 0.
|
|
6425
|
-
output_mtok:
|
|
6433
|
+
input_mtok: 0.55,
|
|
6434
|
+
output_mtok: 2.2
|
|
6426
6435
|
}
|
|
6427
6436
|
},
|
|
6428
6437
|
{
|
|
@@ -6443,6 +6452,63 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
6443
6452
|
input_mtok: 0.3,
|
|
6444
6453
|
output_mtok: 0.9
|
|
6445
6454
|
}
|
|
6455
|
+
},
|
|
6456
|
+
{
|
|
6457
|
+
id: "zai-org/GLM-4.7",
|
|
6458
|
+
name: "GLM-4.7",
|
|
6459
|
+
match: {
|
|
6460
|
+
or: [
|
|
6461
|
+
{
|
|
6462
|
+
equals: "zai-org/glm-4.7"
|
|
6463
|
+
},
|
|
6464
|
+
{
|
|
6465
|
+
equals: "zai-org/glm-4.7-fast"
|
|
6466
|
+
}
|
|
6467
|
+
]
|
|
6468
|
+
},
|
|
6469
|
+
context_window: 204800,
|
|
6470
|
+
prices: {
|
|
6471
|
+
input_mtok: 0.6,
|
|
6472
|
+
output_mtok: 2.2
|
|
6473
|
+
}
|
|
6474
|
+
},
|
|
6475
|
+
{
|
|
6476
|
+
id: "zai-org/GLM-4.7-Flash",
|
|
6477
|
+
name: "GLM-4.7-Flash",
|
|
6478
|
+
match: {
|
|
6479
|
+
or: [
|
|
6480
|
+
{
|
|
6481
|
+
equals: "zai-org/glm-4.7-flash"
|
|
6482
|
+
},
|
|
6483
|
+
{
|
|
6484
|
+
equals: "zai-org/glm-4.7-flash-fast"
|
|
6485
|
+
}
|
|
6486
|
+
]
|
|
6487
|
+
},
|
|
6488
|
+
context_window: 2e5,
|
|
6489
|
+
prices: {
|
|
6490
|
+
input_mtok: 0.07,
|
|
6491
|
+
output_mtok: 0.4
|
|
6492
|
+
}
|
|
6493
|
+
},
|
|
6494
|
+
{
|
|
6495
|
+
id: "zai-org/GLM-5",
|
|
6496
|
+
name: "GLM-5",
|
|
6497
|
+
match: {
|
|
6498
|
+
or: [
|
|
6499
|
+
{
|
|
6500
|
+
equals: "zai-org/glm-5"
|
|
6501
|
+
},
|
|
6502
|
+
{
|
|
6503
|
+
equals: "zai-org/glm-5-fast"
|
|
6504
|
+
}
|
|
6505
|
+
]
|
|
6506
|
+
},
|
|
6507
|
+
context_window: 202800,
|
|
6508
|
+
prices: {
|
|
6509
|
+
input_mtok: 1,
|
|
6510
|
+
output_mtok: 3.2
|
|
6511
|
+
}
|
|
6446
6512
|
}
|
|
6447
6513
|
]
|
|
6448
6514
|
},
|
|
@@ -6749,25 +6815,6 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
6749
6815
|
output_mtok: 0.1
|
|
6750
6816
|
}
|
|
6751
6817
|
},
|
|
6752
|
-
{
|
|
6753
|
-
id: "deepseek-ai/DeepSeek-R1-Distill-Qwen-14B",
|
|
6754
|
-
name: "DeepSeek-R1-Distill-Qwen-14B",
|
|
6755
|
-
match: {
|
|
6756
|
-
or: [
|
|
6757
|
-
{
|
|
6758
|
-
equals: "deepseek-ai/deepseek-r1-distill-qwen-14b"
|
|
6759
|
-
},
|
|
6760
|
-
{
|
|
6761
|
-
equals: "deepseek-ai/deepseek-r1-distill-qwen-14b-fast"
|
|
6762
|
-
}
|
|
6763
|
-
]
|
|
6764
|
-
},
|
|
6765
|
-
context_window: 131072,
|
|
6766
|
-
prices: {
|
|
6767
|
-
input_mtok: 0.2,
|
|
6768
|
-
output_mtok: 0.2
|
|
6769
|
-
}
|
|
6770
|
-
},
|
|
6771
6818
|
{
|
|
6772
6819
|
id: "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B",
|
|
6773
6820
|
name: "DeepSeek-R1-Distill-Qwen-32B",
|
|
@@ -6844,6 +6891,25 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
6844
6891
|
output_mtok: 0.4
|
|
6845
6892
|
}
|
|
6846
6893
|
},
|
|
6894
|
+
{
|
|
6895
|
+
id: "meta-llama/Llama-4-Scout-17B-16E-Instruct",
|
|
6896
|
+
name: "Llama-4-Scout-17B-16E-Instruct",
|
|
6897
|
+
match: {
|
|
6898
|
+
or: [
|
|
6899
|
+
{
|
|
6900
|
+
equals: "meta-llama/llama-4-scout-17b-16e-instruct"
|
|
6901
|
+
},
|
|
6902
|
+
{
|
|
6903
|
+
equals: "meta-llama/llama-4-scout-17b-16e-instruct-fast"
|
|
6904
|
+
}
|
|
6905
|
+
]
|
|
6906
|
+
},
|
|
6907
|
+
context_window: 89e4,
|
|
6908
|
+
prices: {
|
|
6909
|
+
input_mtok: 0.09,
|
|
6910
|
+
output_mtok: 0.29
|
|
6911
|
+
}
|
|
6912
|
+
},
|
|
6847
6913
|
{
|
|
6848
6914
|
id: "openai/gpt-oss-120b",
|
|
6849
6915
|
name: "gpt-oss-120b",
|
|
@@ -6862,6 +6928,25 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
6862
6928
|
input_mtok: 0.1,
|
|
6863
6929
|
output_mtok: 0.4
|
|
6864
6930
|
}
|
|
6931
|
+
},
|
|
6932
|
+
{
|
|
6933
|
+
id: "openai/gpt-oss-20b",
|
|
6934
|
+
name: "gpt-oss-20b",
|
|
6935
|
+
match: {
|
|
6936
|
+
or: [
|
|
6937
|
+
{
|
|
6938
|
+
equals: "openai/gpt-oss-20b"
|
|
6939
|
+
},
|
|
6940
|
+
{
|
|
6941
|
+
equals: "openai/gpt-oss-20b-fast"
|
|
6942
|
+
}
|
|
6943
|
+
]
|
|
6944
|
+
},
|
|
6945
|
+
context_window: 131072,
|
|
6946
|
+
prices: {
|
|
6947
|
+
input_mtok: 0.05,
|
|
6948
|
+
output_mtok: 0.2
|
|
6949
|
+
}
|
|
6865
6950
|
}
|
|
6866
6951
|
]
|
|
6867
6952
|
},
|
|
@@ -6972,25 +7057,6 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
6972
7057
|
output_mtok: 0.26
|
|
6973
7058
|
}
|
|
6974
7059
|
},
|
|
6975
|
-
{
|
|
6976
|
-
id: "deepseek-ai/DeepSeek-R1-Distill-Llama-70B",
|
|
6977
|
-
name: "DeepSeek-R1-Distill-Llama-70B",
|
|
6978
|
-
match: {
|
|
6979
|
-
or: [
|
|
6980
|
-
{
|
|
6981
|
-
equals: "deepseek-ai/deepseek-r1-distill-llama-70b"
|
|
6982
|
-
},
|
|
6983
|
-
{
|
|
6984
|
-
equals: "deepseek-ai/deepseek-r1-distill-llama-70b-fast"
|
|
6985
|
-
}
|
|
6986
|
-
]
|
|
6987
|
-
},
|
|
6988
|
-
context_window: 131072,
|
|
6989
|
-
prices: {
|
|
6990
|
-
input_mtok: 0.74,
|
|
6991
|
-
output_mtok: 0.74
|
|
6992
|
-
}
|
|
6993
|
-
},
|
|
6994
7060
|
{
|
|
6995
7061
|
id: "meta-llama/Llama-3.1-8B-Instruct",
|
|
6996
7062
|
name: "Llama-3.1-8B-Instruct",
|
|
@@ -7047,6 +7113,25 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
7047
7113
|
input_mtok: 0.09,
|
|
7048
7114
|
output_mtok: 0.47
|
|
7049
7115
|
}
|
|
7116
|
+
},
|
|
7117
|
+
{
|
|
7118
|
+
id: "openai/gpt-oss-20b",
|
|
7119
|
+
name: "gpt-oss-20b",
|
|
7120
|
+
match: {
|
|
7121
|
+
or: [
|
|
7122
|
+
{
|
|
7123
|
+
equals: "openai/gpt-oss-20b"
|
|
7124
|
+
},
|
|
7125
|
+
{
|
|
7126
|
+
equals: "openai/gpt-oss-20b-fast"
|
|
7127
|
+
}
|
|
7128
|
+
]
|
|
7129
|
+
},
|
|
7130
|
+
context_window: 131072,
|
|
7131
|
+
prices: {
|
|
7132
|
+
input_mtok: 0.05,
|
|
7133
|
+
output_mtok: 0.18
|
|
7134
|
+
}
|
|
7050
7135
|
}
|
|
7051
7136
|
]
|
|
7052
7137
|
},
|
|
@@ -7113,7 +7198,10 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
7113
7198
|
}
|
|
7114
7199
|
]
|
|
7115
7200
|
},
|
|
7116
|
-
prices: {
|
|
7201
|
+
prices: {
|
|
7202
|
+
input_mtok: 0.2,
|
|
7203
|
+
output_mtok: 0.4
|
|
7204
|
+
}
|
|
7117
7205
|
},
|
|
7118
7206
|
{
|
|
7119
7207
|
id: "aisingapore/Qwen-SEA-LION-v4-32B-IT",
|
|
@@ -7128,7 +7216,10 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
7128
7216
|
}
|
|
7129
7217
|
]
|
|
7130
7218
|
},
|
|
7131
|
-
prices: {
|
|
7219
|
+
prices: {
|
|
7220
|
+
input_mtok: 0.25,
|
|
7221
|
+
output_mtok: 0.5
|
|
7222
|
+
}
|
|
7132
7223
|
},
|
|
7133
7224
|
{
|
|
7134
7225
|
id: "allenai/Olmo-3-7B-Instruct",
|
|
@@ -7143,22 +7234,10 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
7143
7234
|
}
|
|
7144
7235
|
]
|
|
7145
7236
|
},
|
|
7146
|
-
prices: {
|
|
7147
|
-
|
|
7148
|
-
|
|
7149
|
-
|
|
7150
|
-
name: "Olmo-3-7B-Think",
|
|
7151
|
-
match: {
|
|
7152
|
-
or: [
|
|
7153
|
-
{
|
|
7154
|
-
equals: "allenai/olmo-3-7b-think"
|
|
7155
|
-
},
|
|
7156
|
-
{
|
|
7157
|
-
equals: "allenai/olmo-3-7b-think-fast"
|
|
7158
|
-
}
|
|
7159
|
-
]
|
|
7160
|
-
},
|
|
7161
|
-
prices: {}
|
|
7237
|
+
prices: {
|
|
7238
|
+
input_mtok: 0.1,
|
|
7239
|
+
output_mtok: 0.2
|
|
7240
|
+
}
|
|
7162
7241
|
},
|
|
7163
7242
|
{
|
|
7164
7243
|
id: "allenai/Olmo-3.1-32B-Instruct",
|
|
@@ -7173,22 +7252,10 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
7173
7252
|
}
|
|
7174
7253
|
]
|
|
7175
7254
|
},
|
|
7176
|
-
prices: {
|
|
7177
|
-
|
|
7178
|
-
|
|
7179
|
-
|
|
7180
|
-
name: "Olmo-3.1-32B-Think",
|
|
7181
|
-
match: {
|
|
7182
|
-
or: [
|
|
7183
|
-
{
|
|
7184
|
-
equals: "allenai/olmo-3.1-32b-think"
|
|
7185
|
-
},
|
|
7186
|
-
{
|
|
7187
|
-
equals: "allenai/olmo-3.1-32b-think-fast"
|
|
7188
|
-
}
|
|
7189
|
-
]
|
|
7190
|
-
},
|
|
7191
|
-
prices: {}
|
|
7255
|
+
prices: {
|
|
7256
|
+
input_mtok: 0.2,
|
|
7257
|
+
output_mtok: 0.6
|
|
7258
|
+
}
|
|
7192
7259
|
},
|
|
7193
7260
|
{
|
|
7194
7261
|
id: "dicta-il/DictaLM-3.0-24B-Thinking",
|
|
@@ -7203,7 +7270,10 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
7203
7270
|
}
|
|
7204
7271
|
]
|
|
7205
7272
|
},
|
|
7206
|
-
prices: {
|
|
7273
|
+
prices: {
|
|
7274
|
+
input_mtok: 0.2,
|
|
7275
|
+
output_mtok: 0.4
|
|
7276
|
+
}
|
|
7207
7277
|
},
|
|
7208
7278
|
{
|
|
7209
7279
|
id: "swiss-ai/Apertus-70B-Instruct-2509",
|
|
@@ -7218,7 +7288,10 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
7218
7288
|
}
|
|
7219
7289
|
]
|
|
7220
7290
|
},
|
|
7221
|
-
prices: {
|
|
7291
|
+
prices: {
|
|
7292
|
+
input_mtok: 0.82,
|
|
7293
|
+
output_mtok: 2.92
|
|
7294
|
+
}
|
|
7222
7295
|
},
|
|
7223
7296
|
{
|
|
7224
7297
|
id: "swiss-ai/Apertus-8B-Instruct-2509",
|
|
@@ -7233,7 +7306,10 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
7233
7306
|
}
|
|
7234
7307
|
]
|
|
7235
7308
|
},
|
|
7236
|
-
prices: {
|
|
7309
|
+
prices: {
|
|
7310
|
+
input_mtok: 0.1,
|
|
7311
|
+
output_mtok: 0.2
|
|
7312
|
+
}
|
|
7237
7313
|
},
|
|
7238
7314
|
{
|
|
7239
7315
|
id: "utter-project/EuroLLM-22B-Instruct-2512",
|
|
@@ -7248,8 +7324,11 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
7248
7324
|
}
|
|
7249
7325
|
]
|
|
7250
7326
|
},
|
|
7251
|
-
prices: {
|
|
7252
|
-
|
|
7327
|
+
prices: {
|
|
7328
|
+
input_mtok: 0.1,
|
|
7329
|
+
output_mtok: 0.2
|
|
7330
|
+
}
|
|
7331
|
+
}
|
|
7253
7332
|
]
|
|
7254
7333
|
},
|
|
7255
7334
|
{
|
|
@@ -7525,25 +7604,6 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
7525
7604
|
output_mtok: 0.15
|
|
7526
7605
|
}
|
|
7527
7606
|
},
|
|
7528
|
-
{
|
|
7529
|
-
id: "Qwen/Qwen2.5-72B-Instruct",
|
|
7530
|
-
name: "Qwen2.5-72B-Instruct",
|
|
7531
|
-
match: {
|
|
7532
|
-
or: [
|
|
7533
|
-
{
|
|
7534
|
-
equals: "qwen/qwen2.5-72b-instruct"
|
|
7535
|
-
},
|
|
7536
|
-
{
|
|
7537
|
-
equals: "qwen/qwen2.5-72b-instruct-fast"
|
|
7538
|
-
}
|
|
7539
|
-
]
|
|
7540
|
-
},
|
|
7541
|
-
context_window: 131072,
|
|
7542
|
-
prices: {
|
|
7543
|
-
input_mtok: 1.2,
|
|
7544
|
-
output_mtok: 1.2
|
|
7545
|
-
}
|
|
7546
|
-
},
|
|
7547
7607
|
{
|
|
7548
7608
|
id: "Qwen/Qwen2.5-7B-Instruct",
|
|
7549
7609
|
name: "Qwen2.5-7B-Instruct",
|
|
@@ -7564,22 +7624,10 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
7564
7624
|
}
|
|
7565
7625
|
},
|
|
7566
7626
|
{
|
|
7567
|
-
id: "Qwen/Qwen3-235B-A22B",
|
|
7568
|
-
name: "Qwen3-235B-A22B",
|
|
7627
|
+
id: "Qwen/Qwen3-235B-A22B-Instruct-2507",
|
|
7628
|
+
name: "Qwen3-235B-A22B-Instruct-2507",
|
|
7569
7629
|
match: {
|
|
7570
7630
|
or: [
|
|
7571
|
-
{
|
|
7572
|
-
equals: "qwen/qwen3-235b-a22b"
|
|
7573
|
-
},
|
|
7574
|
-
{
|
|
7575
|
-
equals: "qwen/qwen3-235b-a22b-fast"
|
|
7576
|
-
},
|
|
7577
|
-
{
|
|
7578
|
-
equals: "qwen/qwen3-235b-a22b-fp8"
|
|
7579
|
-
},
|
|
7580
|
-
{
|
|
7581
|
-
equals: "qwen/qwen3-235b-a22b-fp8-fast"
|
|
7582
|
-
},
|
|
7583
7631
|
{
|
|
7584
7632
|
equals: "qwen/qwen3-235b-a22b-instruct-2507"
|
|
7585
7633
|
},
|
|
@@ -7588,7 +7636,7 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
7588
7636
|
}
|
|
7589
7637
|
]
|
|
7590
7638
|
},
|
|
7591
|
-
context_window:
|
|
7639
|
+
context_window: 262144,
|
|
7592
7640
|
prices: {
|
|
7593
7641
|
input_mtok: 0.2,
|
|
7594
7642
|
output_mtok: 0.6
|
|
@@ -7619,6 +7667,25 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
7619
7667
|
output_mtok: 2
|
|
7620
7668
|
}
|
|
7621
7669
|
},
|
|
7670
|
+
{
|
|
7671
|
+
id: "Qwen/Qwen3-Coder-Next-FP8",
|
|
7672
|
+
name: "Qwen3-Coder-Next-FP8",
|
|
7673
|
+
match: {
|
|
7674
|
+
or: [
|
|
7675
|
+
{
|
|
7676
|
+
equals: "qwen/qwen3-coder-next-fp8"
|
|
7677
|
+
},
|
|
7678
|
+
{
|
|
7679
|
+
equals: "qwen/qwen3-coder-next-fp8-fast"
|
|
7680
|
+
}
|
|
7681
|
+
]
|
|
7682
|
+
},
|
|
7683
|
+
context_window: 262144,
|
|
7684
|
+
prices: {
|
|
7685
|
+
input_mtok: 0.5,
|
|
7686
|
+
output_mtok: 1.2
|
|
7687
|
+
}
|
|
7688
|
+
},
|
|
7622
7689
|
{
|
|
7623
7690
|
id: "Qwen/Qwen3-Next-80B-A3B-Instruct",
|
|
7624
7691
|
name: "Qwen3-Next-80B-A3B-Instruct",
|
|
@@ -7639,41 +7706,60 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
7639
7706
|
}
|
|
7640
7707
|
},
|
|
7641
7708
|
{
|
|
7642
|
-
id: "Qwen/Qwen3-
|
|
7643
|
-
name: "Qwen3-
|
|
7709
|
+
id: "Qwen/Qwen3-VL-8B-Instruct",
|
|
7710
|
+
name: "Qwen3-VL-8B-Instruct",
|
|
7644
7711
|
match: {
|
|
7645
7712
|
or: [
|
|
7646
7713
|
{
|
|
7647
|
-
equals: "qwen/qwen3-
|
|
7714
|
+
equals: "qwen/qwen3-vl-8b-instruct"
|
|
7648
7715
|
},
|
|
7649
7716
|
{
|
|
7650
|
-
equals: "qwen/qwen3-
|
|
7717
|
+
equals: "qwen/qwen3-vl-8b-instruct-fast"
|
|
7651
7718
|
}
|
|
7652
7719
|
]
|
|
7653
7720
|
},
|
|
7654
7721
|
context_window: 262144,
|
|
7655
7722
|
prices: {
|
|
7656
|
-
input_mtok: 0.
|
|
7657
|
-
output_mtok:
|
|
7723
|
+
input_mtok: 0.18000000000000002,
|
|
7724
|
+
output_mtok: 0.68
|
|
7658
7725
|
}
|
|
7659
7726
|
},
|
|
7660
7727
|
{
|
|
7661
|
-
id: "Qwen/Qwen3-
|
|
7662
|
-
name: "Qwen3-
|
|
7728
|
+
id: "Qwen/Qwen3.5-397B-A17B",
|
|
7729
|
+
name: "Qwen3.5-397B-A17B",
|
|
7663
7730
|
match: {
|
|
7664
7731
|
or: [
|
|
7665
7732
|
{
|
|
7666
|
-
equals: "qwen/qwen3-
|
|
7733
|
+
equals: "qwen/qwen3.5-397b-a17b"
|
|
7667
7734
|
},
|
|
7668
7735
|
{
|
|
7669
|
-
equals: "qwen/qwen3-
|
|
7736
|
+
equals: "qwen/qwen3.5-397b-a17b-fast"
|
|
7670
7737
|
}
|
|
7671
7738
|
]
|
|
7672
7739
|
},
|
|
7673
7740
|
context_window: 262144,
|
|
7674
7741
|
prices: {
|
|
7675
|
-
input_mtok: 0.
|
|
7676
|
-
output_mtok:
|
|
7742
|
+
input_mtok: 0.6,
|
|
7743
|
+
output_mtok: 3.6
|
|
7744
|
+
}
|
|
7745
|
+
},
|
|
7746
|
+
{
|
|
7747
|
+
id: "Qwen/Qwen3.5-9B",
|
|
7748
|
+
name: "Qwen3.5-9B",
|
|
7749
|
+
match: {
|
|
7750
|
+
or: [
|
|
7751
|
+
{
|
|
7752
|
+
equals: "qwen/qwen3.5-9b"
|
|
7753
|
+
},
|
|
7754
|
+
{
|
|
7755
|
+
equals: "qwen/qwen3.5-9b-fast"
|
|
7756
|
+
}
|
|
7757
|
+
]
|
|
7758
|
+
},
|
|
7759
|
+
context_window: 262144,
|
|
7760
|
+
prices: {
|
|
7761
|
+
input_mtok: 0.1,
|
|
7762
|
+
output_mtok: 0.15
|
|
7677
7763
|
}
|
|
7678
7764
|
},
|
|
7679
7765
|
{
|
|
@@ -7717,44 +7803,6 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
7717
7803
|
output_mtok: 1.25
|
|
7718
7804
|
}
|
|
7719
7805
|
},
|
|
7720
|
-
{
|
|
7721
|
-
id: "deepcogito/cogito-v2-preview-llama-405B",
|
|
7722
|
-
name: "cogito-v2-preview-llama-405B",
|
|
7723
|
-
match: {
|
|
7724
|
-
or: [
|
|
7725
|
-
{
|
|
7726
|
-
equals: "deepcogito/cogito-v2-preview-llama-405b"
|
|
7727
|
-
},
|
|
7728
|
-
{
|
|
7729
|
-
equals: "deepcogito/cogito-v2-preview-llama-405b-fast"
|
|
7730
|
-
}
|
|
7731
|
-
]
|
|
7732
|
-
},
|
|
7733
|
-
context_window: 32768,
|
|
7734
|
-
prices: {
|
|
7735
|
-
input_mtok: 3.5,
|
|
7736
|
-
output_mtok: 3.5
|
|
7737
|
-
}
|
|
7738
|
-
},
|
|
7739
|
-
{
|
|
7740
|
-
id: "deepcogito/cogito-v2-preview-llama-70B",
|
|
7741
|
-
name: "cogito-v2-preview-llama-70B",
|
|
7742
|
-
match: {
|
|
7743
|
-
or: [
|
|
7744
|
-
{
|
|
7745
|
-
equals: "deepcogito/cogito-v2-preview-llama-70b"
|
|
7746
|
-
},
|
|
7747
|
-
{
|
|
7748
|
-
equals: "deepcogito/cogito-v2-preview-llama-70b-fast"
|
|
7749
|
-
}
|
|
7750
|
-
]
|
|
7751
|
-
},
|
|
7752
|
-
context_window: 32768,
|
|
7753
|
-
prices: {
|
|
7754
|
-
input_mtok: 0.88,
|
|
7755
|
-
output_mtok: 0.88
|
|
7756
|
-
}
|
|
7757
|
-
},
|
|
7758
7806
|
{
|
|
7759
7807
|
id: "deepseek-ai/DeepSeek-R1",
|
|
7760
7808
|
name: "DeepSeek-R1",
|
|
@@ -7825,161 +7873,193 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
7825
7873
|
}
|
|
7826
7874
|
},
|
|
7827
7875
|
{
|
|
7828
|
-
id: "
|
|
7829
|
-
name: "
|
|
7876
|
+
id: "google/gemma-3n-E4B-it",
|
|
7877
|
+
name: "gemma-3n-E4B-it",
|
|
7830
7878
|
match: {
|
|
7831
7879
|
or: [
|
|
7832
7880
|
{
|
|
7833
|
-
equals: "
|
|
7881
|
+
equals: "google/gemma-3n-e4b-it"
|
|
7834
7882
|
},
|
|
7835
7883
|
{
|
|
7836
|
-
equals: "
|
|
7884
|
+
equals: "google/gemma-3n-e4b-it-fast"
|
|
7837
7885
|
}
|
|
7838
7886
|
]
|
|
7839
7887
|
},
|
|
7840
|
-
context_window:
|
|
7888
|
+
context_window: 32768,
|
|
7841
7889
|
prices: {
|
|
7842
|
-
input_mtok: 0.
|
|
7843
|
-
output_mtok: 0.
|
|
7890
|
+
input_mtok: 0.02,
|
|
7891
|
+
output_mtok: 0.04
|
|
7844
7892
|
}
|
|
7845
7893
|
},
|
|
7846
7894
|
{
|
|
7847
|
-
id: "meta-llama/Llama-3.
|
|
7848
|
-
name: "Llama-3.
|
|
7895
|
+
id: "meta-llama/Llama-3.3-70B-Instruct",
|
|
7896
|
+
name: "Llama-3.3-70B-Instruct",
|
|
7849
7897
|
match: {
|
|
7850
7898
|
or: [
|
|
7851
7899
|
{
|
|
7852
|
-
equals: "meta-llama/llama-3.
|
|
7900
|
+
equals: "meta-llama/llama-3.3-70b-instruct"
|
|
7853
7901
|
},
|
|
7854
7902
|
{
|
|
7855
|
-
equals: "meta-llama/llama-3.
|
|
7903
|
+
equals: "meta-llama/llama-3.3-70b-instruct-fast"
|
|
7856
7904
|
}
|
|
7857
7905
|
]
|
|
7858
7906
|
},
|
|
7859
7907
|
context_window: 131072,
|
|
7860
7908
|
prices: {
|
|
7861
|
-
input_mtok: 0.
|
|
7862
|
-
output_mtok: 0.
|
|
7909
|
+
input_mtok: 0.88,
|
|
7910
|
+
output_mtok: 0.88
|
|
7863
7911
|
}
|
|
7864
7912
|
},
|
|
7865
7913
|
{
|
|
7866
|
-
id: "meta-llama/Llama-
|
|
7867
|
-
name: "Llama-
|
|
7914
|
+
id: "meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8",
|
|
7915
|
+
name: "Llama-4-Maverick-17B-128E-Instruct-FP8",
|
|
7868
7916
|
match: {
|
|
7869
7917
|
or: [
|
|
7870
7918
|
{
|
|
7871
|
-
equals: "meta-llama/llama-
|
|
7919
|
+
equals: "meta-llama/llama-4-maverick-17b-128e-instruct-fp8"
|
|
7872
7920
|
},
|
|
7873
7921
|
{
|
|
7874
|
-
equals: "meta-llama/llama-
|
|
7922
|
+
equals: "meta-llama/llama-4-maverick-17b-128e-instruct-fp8-fast"
|
|
7875
7923
|
}
|
|
7876
7924
|
]
|
|
7877
7925
|
},
|
|
7878
|
-
context_window:
|
|
7926
|
+
context_window: 1048576,
|
|
7879
7927
|
prices: {
|
|
7880
|
-
input_mtok: 0.
|
|
7881
|
-
output_mtok: 0.
|
|
7928
|
+
input_mtok: 0.27,
|
|
7929
|
+
output_mtok: 0.85
|
|
7882
7930
|
}
|
|
7883
7931
|
},
|
|
7884
7932
|
{
|
|
7885
|
-
id: "
|
|
7886
|
-
name: "
|
|
7933
|
+
id: "moonshotai/Kimi-K2.5",
|
|
7934
|
+
name: "Kimi-K2.5",
|
|
7887
7935
|
match: {
|
|
7888
7936
|
or: [
|
|
7889
7937
|
{
|
|
7890
|
-
equals: "
|
|
7938
|
+
equals: "moonshotai/kimi-k2.5"
|
|
7891
7939
|
},
|
|
7892
7940
|
{
|
|
7893
|
-
equals: "
|
|
7941
|
+
equals: "moonshotai/kimi-k2.5-fast"
|
|
7894
7942
|
}
|
|
7895
7943
|
]
|
|
7896
7944
|
},
|
|
7897
|
-
context_window:
|
|
7945
|
+
context_window: 262144,
|
|
7898
7946
|
prices: {
|
|
7899
|
-
input_mtok: 0.
|
|
7900
|
-
output_mtok:
|
|
7947
|
+
input_mtok: 0.5,
|
|
7948
|
+
output_mtok: 2.8
|
|
7901
7949
|
}
|
|
7902
7950
|
},
|
|
7903
7951
|
{
|
|
7904
|
-
id: "
|
|
7905
|
-
name: "
|
|
7952
|
+
id: "openai/gpt-oss-120b",
|
|
7953
|
+
name: "gpt-oss-120b",
|
|
7906
7954
|
match: {
|
|
7907
7955
|
or: [
|
|
7908
7956
|
{
|
|
7909
|
-
equals: "
|
|
7957
|
+
equals: "openai/gpt-oss-120b"
|
|
7910
7958
|
},
|
|
7911
7959
|
{
|
|
7912
|
-
equals: "
|
|
7960
|
+
equals: "openai/gpt-oss-120b-fast"
|
|
7961
|
+
}
|
|
7962
|
+
]
|
|
7963
|
+
},
|
|
7964
|
+
context_window: 131072,
|
|
7965
|
+
prices: {
|
|
7966
|
+
input_mtok: 0.15,
|
|
7967
|
+
output_mtok: 0.6
|
|
7968
|
+
}
|
|
7969
|
+
},
|
|
7970
|
+
{
|
|
7971
|
+
id: "openai/gpt-oss-20b",
|
|
7972
|
+
name: "gpt-oss-20b",
|
|
7973
|
+
match: {
|
|
7974
|
+
or: [
|
|
7975
|
+
{
|
|
7976
|
+
equals: "openai/gpt-oss-20b"
|
|
7913
7977
|
},
|
|
7914
7978
|
{
|
|
7915
|
-
equals: "
|
|
7979
|
+
equals: "openai/gpt-oss-20b-fast"
|
|
7980
|
+
}
|
|
7981
|
+
]
|
|
7982
|
+
},
|
|
7983
|
+
context_window: 131072,
|
|
7984
|
+
prices: {
|
|
7985
|
+
input_mtok: 0.05,
|
|
7986
|
+
output_mtok: 0.2
|
|
7987
|
+
}
|
|
7988
|
+
},
|
|
7989
|
+
{
|
|
7990
|
+
id: "zai-org/GLM-4.5-Air-FP8",
|
|
7991
|
+
name: "GLM-4.5-Air-FP8",
|
|
7992
|
+
match: {
|
|
7993
|
+
or: [
|
|
7994
|
+
{
|
|
7995
|
+
equals: "zai-org/glm-4.5-air-fp8"
|
|
7916
7996
|
},
|
|
7917
7997
|
{
|
|
7918
|
-
equals: "
|
|
7998
|
+
equals: "zai-org/glm-4.5-air-fp8-fast"
|
|
7919
7999
|
}
|
|
7920
8000
|
]
|
|
7921
8001
|
},
|
|
7922
8002
|
context_window: 131072,
|
|
7923
8003
|
prices: {
|
|
7924
|
-
input_mtok:
|
|
7925
|
-
output_mtok:
|
|
8004
|
+
input_mtok: 0.2,
|
|
8005
|
+
output_mtok: 1.1
|
|
7926
8006
|
}
|
|
7927
8007
|
},
|
|
7928
8008
|
{
|
|
7929
|
-
id: "
|
|
7930
|
-
name: "
|
|
8009
|
+
id: "zai-org/GLM-4.6",
|
|
8010
|
+
name: "GLM-4.6",
|
|
7931
8011
|
match: {
|
|
7932
8012
|
or: [
|
|
7933
8013
|
{
|
|
7934
|
-
equals: "
|
|
8014
|
+
equals: "zai-org/glm-4.6"
|
|
7935
8015
|
},
|
|
7936
8016
|
{
|
|
7937
|
-
equals: "
|
|
8017
|
+
equals: "zai-org/glm-4.6-fast"
|
|
7938
8018
|
}
|
|
7939
8019
|
]
|
|
7940
8020
|
},
|
|
7941
|
-
context_window:
|
|
8021
|
+
context_window: 202752,
|
|
7942
8022
|
prices: {
|
|
7943
|
-
input_mtok:
|
|
7944
|
-
output_mtok:
|
|
8023
|
+
input_mtok: 0.6,
|
|
8024
|
+
output_mtok: 2.2
|
|
7945
8025
|
}
|
|
7946
8026
|
},
|
|
7947
8027
|
{
|
|
7948
|
-
id: "
|
|
7949
|
-
name: "
|
|
8028
|
+
id: "zai-org/GLM-4.7-FP8",
|
|
8029
|
+
name: "GLM-4.7-FP8",
|
|
7950
8030
|
match: {
|
|
7951
8031
|
or: [
|
|
7952
8032
|
{
|
|
7953
|
-
equals: "
|
|
8033
|
+
equals: "zai-org/glm-4.7-fp8"
|
|
7954
8034
|
},
|
|
7955
8035
|
{
|
|
7956
|
-
equals: "
|
|
8036
|
+
equals: "zai-org/glm-4.7-fp8-fast"
|
|
7957
8037
|
}
|
|
7958
8038
|
]
|
|
7959
8039
|
},
|
|
7960
|
-
context_window:
|
|
8040
|
+
context_window: 202752,
|
|
7961
8041
|
prices: {
|
|
7962
|
-
input_mtok: 0.
|
|
7963
|
-
output_mtok:
|
|
8042
|
+
input_mtok: 0.45,
|
|
8043
|
+
output_mtok: 2
|
|
7964
8044
|
}
|
|
7965
8045
|
},
|
|
7966
8046
|
{
|
|
7967
|
-
id: "zai-org/GLM-
|
|
7968
|
-
name: "GLM-
|
|
8047
|
+
id: "zai-org/GLM-5",
|
|
8048
|
+
name: "GLM-5",
|
|
7969
8049
|
match: {
|
|
7970
8050
|
or: [
|
|
7971
8051
|
{
|
|
7972
|
-
equals: "zai-org/glm-
|
|
8052
|
+
equals: "zai-org/glm-5"
|
|
7973
8053
|
},
|
|
7974
8054
|
{
|
|
7975
|
-
equals: "zai-org/glm-
|
|
8055
|
+
equals: "zai-org/glm-5-fast"
|
|
7976
8056
|
}
|
|
7977
8057
|
]
|
|
7978
8058
|
},
|
|
7979
|
-
context_window:
|
|
8059
|
+
context_window: 202752,
|
|
7980
8060
|
prices: {
|
|
7981
|
-
input_mtok:
|
|
7982
|
-
output_mtok:
|
|
8061
|
+
input_mtok: 1,
|
|
8062
|
+
output_mtok: 3.2
|
|
7983
8063
|
}
|
|
7984
8064
|
}
|
|
7985
8065
|
]
|
|
@@ -8254,87 +8334,273 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
8254
8334
|
}
|
|
8255
8335
|
},
|
|
8256
8336
|
{
|
|
8257
|
-
id: "mistral-tiny",
|
|
8258
|
-
name: "Mistral Tiny",
|
|
8259
|
-
description: "Note: This model is being deprecated. Recommended replacement is the newer Ministral 8B",
|
|
8337
|
+
id: "mistral-tiny",
|
|
8338
|
+
name: "Mistral Tiny",
|
|
8339
|
+
description: "Note: This model is being deprecated. Recommended replacement is the newer Ministral 8B",
|
|
8340
|
+
match: {
|
|
8341
|
+
equals: "mistral-tiny"
|
|
8342
|
+
},
|
|
8343
|
+
prices: {
|
|
8344
|
+
input_mtok: 0.25,
|
|
8345
|
+
output_mtok: 0.25
|
|
8346
|
+
},
|
|
8347
|
+
deprecated: !0
|
|
8348
|
+
},
|
|
8349
|
+
{
|
|
8350
|
+
id: "mixtral-8x22b-instruct",
|
|
8351
|
+
name: "Mixtral 8x22B Instruct",
|
|
8352
|
+
description: `Mistral's official instruct fine-tuned version of Mixtral 8x22B. It uses 39B active parameters out of 141B, offering unparalleled cost efficiency for its size. Its strengths include:
|
|
8353
|
+
- strong math, coding, and reasoning
|
|
8354
|
+
- large context length (64k)
|
|
8355
|
+
- fluency in English, French, Italian, German, and Spanish`,
|
|
8356
|
+
match: {
|
|
8357
|
+
equals: "mixtral-8x22b-instruct"
|
|
8358
|
+
},
|
|
8359
|
+
prices: {
|
|
8360
|
+
input_mtok: 0.9,
|
|
8361
|
+
output_mtok: 0.9
|
|
8362
|
+
}
|
|
8363
|
+
},
|
|
8364
|
+
{
|
|
8365
|
+
id: "mixtral-8x7b",
|
|
8366
|
+
name: "Mixtral 8x7B",
|
|
8367
|
+
match: {
|
|
8368
|
+
or: [
|
|
8369
|
+
{
|
|
8370
|
+
starts_with: "mixtral-8x7b"
|
|
8371
|
+
},
|
|
8372
|
+
{
|
|
8373
|
+
equals: "open-mixtral-8x7b"
|
|
8374
|
+
}
|
|
8375
|
+
]
|
|
8376
|
+
},
|
|
8377
|
+
prices: {
|
|
8378
|
+
input_mtok: 0.7,
|
|
8379
|
+
output_mtok: 0.7
|
|
8380
|
+
}
|
|
8381
|
+
},
|
|
8382
|
+
{
|
|
8383
|
+
id: "pixtral-12b",
|
|
8384
|
+
name: "Pixtral 12B",
|
|
8385
|
+
description: "The first multi-modal, text+image-to-text model from Mistral AI. Its weights were launched via torrent: https://x.com/mistralai/status/1833758285167722836.",
|
|
8386
|
+
match: {
|
|
8387
|
+
or: [
|
|
8388
|
+
{
|
|
8389
|
+
equals: "pixtral-12b"
|
|
8390
|
+
},
|
|
8391
|
+
{
|
|
8392
|
+
equals: "pixtral-12b-latest"
|
|
8393
|
+
}
|
|
8394
|
+
]
|
|
8395
|
+
},
|
|
8396
|
+
prices: {
|
|
8397
|
+
input_mtok: 0.15,
|
|
8398
|
+
output_mtok: 0.15
|
|
8399
|
+
}
|
|
8400
|
+
},
|
|
8401
|
+
{
|
|
8402
|
+
id: "pixtral-large",
|
|
8403
|
+
name: "Pixtral Large 2411",
|
|
8404
|
+
description: "Pixtral Large is a 124B parameter, open-weight, multimodal model built on top of Mistral Large 2. The model is able to understand documents, charts and natural images.",
|
|
8405
|
+
match: {
|
|
8406
|
+
or: [
|
|
8407
|
+
{
|
|
8408
|
+
equals: "pixtral-large-latest"
|
|
8409
|
+
},
|
|
8410
|
+
{
|
|
8411
|
+
equals: "pixtral-large-2411"
|
|
8412
|
+
}
|
|
8413
|
+
]
|
|
8414
|
+
},
|
|
8415
|
+
prices: {
|
|
8416
|
+
input_mtok: 2,
|
|
8417
|
+
output_mtok: 6
|
|
8418
|
+
}
|
|
8419
|
+
}
|
|
8420
|
+
]
|
|
8421
|
+
},
|
|
8422
|
+
{
|
|
8423
|
+
id: "moonshotai",
|
|
8424
|
+
name: "MoonshotAi",
|
|
8425
|
+
pricing_urls: ["https://platform.moonshot.ai/docs/pricing/chat#product-pricing"],
|
|
8426
|
+
api_pattern: "https://api\\.moonshot\\.",
|
|
8427
|
+
model_match: {
|
|
8428
|
+
or: [
|
|
8429
|
+
{
|
|
8430
|
+
starts_with: "kimi"
|
|
8431
|
+
},
|
|
8432
|
+
{
|
|
8433
|
+
starts_with: "moonshot"
|
|
8434
|
+
}
|
|
8435
|
+
]
|
|
8436
|
+
},
|
|
8437
|
+
provider_match: {
|
|
8438
|
+
contains: "moonshot"
|
|
8439
|
+
},
|
|
8440
|
+
extractors: [
|
|
8441
|
+
{
|
|
8442
|
+
api_flavor: "chat",
|
|
8443
|
+
root: "usage",
|
|
8444
|
+
model_path: "model",
|
|
8445
|
+
mappings: [
|
|
8446
|
+
{
|
|
8447
|
+
path: "prompt_tokens",
|
|
8448
|
+
dest: "input_tokens",
|
|
8449
|
+
required: !0
|
|
8450
|
+
},
|
|
8451
|
+
{
|
|
8452
|
+
path: ["prompt_tokens_details", "cached_tokens"],
|
|
8453
|
+
dest: "cache_read_tokens",
|
|
8454
|
+
required: !1
|
|
8455
|
+
},
|
|
8456
|
+
{
|
|
8457
|
+
path: "completion_tokens",
|
|
8458
|
+
dest: "output_tokens",
|
|
8459
|
+
required: !0
|
|
8460
|
+
}
|
|
8461
|
+
]
|
|
8462
|
+
}
|
|
8463
|
+
],
|
|
8464
|
+
models: [
|
|
8465
|
+
{
|
|
8466
|
+
id: "kimi-k2-0711-preview",
|
|
8467
|
+
name: "Kimi K2 0711 Preview",
|
|
8468
|
+
description: "MoE foundation model with exceptional coding and agent capabilities, featuring 1 trillion total parameters and 32 billion activated parameters.",
|
|
8469
|
+
match: {
|
|
8470
|
+
equals: "kimi-k2-0711-preview"
|
|
8471
|
+
},
|
|
8472
|
+
context_window: 131072,
|
|
8473
|
+
prices: {
|
|
8474
|
+
input_mtok: 0.6,
|
|
8475
|
+
cache_read_mtok: 0.15,
|
|
8476
|
+
output_mtok: 2.5
|
|
8477
|
+
}
|
|
8478
|
+
},
|
|
8479
|
+
{
|
|
8480
|
+
id: "kimi-k2-0905-preview",
|
|
8481
|
+
name: "Kimi K2 0905 Preview",
|
|
8482
|
+
description: "Based on kimi-k2-0711-preview, with enhanced agentic coding abilities, improved frontend code quality and practicality, and better context understanding. MoE foundation model with 1 trillion total parameters and 32 billion activated parameters.",
|
|
8483
|
+
match: {
|
|
8484
|
+
equals: "kimi-k2-0905-preview"
|
|
8485
|
+
},
|
|
8486
|
+
context_window: 262144,
|
|
8487
|
+
prices: {
|
|
8488
|
+
input_mtok: 0.6,
|
|
8489
|
+
cache_read_mtok: 0.15,
|
|
8490
|
+
output_mtok: 2.5
|
|
8491
|
+
}
|
|
8492
|
+
},
|
|
8493
|
+
{
|
|
8494
|
+
id: "kimi-k2-thinking",
|
|
8495
|
+
name: "Kimi K2 Thinking",
|
|
8496
|
+
description: "A thinking model with general agentic and reasoning capabilities, specializing in deep reasoning tasks.",
|
|
8497
|
+
match: {
|
|
8498
|
+
equals: "kimi-k2-thinking"
|
|
8499
|
+
},
|
|
8500
|
+
context_window: 262144,
|
|
8501
|
+
prices: {
|
|
8502
|
+
input_mtok: 0.6,
|
|
8503
|
+
cache_read_mtok: 0.15,
|
|
8504
|
+
output_mtok: 2.5
|
|
8505
|
+
}
|
|
8506
|
+
},
|
|
8507
|
+
{
|
|
8508
|
+
id: "kimi-k2-thinking-turbo",
|
|
8509
|
+
name: "Kimi K2 Thinking Turbo",
|
|
8510
|
+
description: "High-speed version of kimi-k2-thinking, suitable for scenarios requiring both deep reasoning and extremely fast responses.",
|
|
8511
|
+
match: {
|
|
8512
|
+
equals: "kimi-k2-thinking-turbo"
|
|
8513
|
+
},
|
|
8514
|
+
context_window: 262144,
|
|
8515
|
+
prices: {
|
|
8516
|
+
input_mtok: 1.15,
|
|
8517
|
+
cache_read_mtok: 0.15,
|
|
8518
|
+
output_mtok: 8
|
|
8519
|
+
}
|
|
8520
|
+
},
|
|
8521
|
+
{
|
|
8522
|
+
id: "kimi-k2-turbo-preview",
|
|
8523
|
+
name: "Kimi K2 Turbo Preview",
|
|
8524
|
+
description: "High-speed version of kimi-k2, always aligned with the latest kimi-k2. Same model parameters as kimi-k2, output speed up to 60 tokens/sec (max 100 tokens/sec).",
|
|
8260
8525
|
match: {
|
|
8261
|
-
|
|
8526
|
+
starts_with: "kimi-k2-turbo"
|
|
8262
8527
|
},
|
|
8528
|
+
context_window: 262144,
|
|
8263
8529
|
prices: {
|
|
8264
|
-
input_mtok:
|
|
8265
|
-
|
|
8266
|
-
|
|
8267
|
-
|
|
8530
|
+
input_mtok: 1.15,
|
|
8531
|
+
cache_read_mtok: 0.15,
|
|
8532
|
+
output_mtok: 8
|
|
8533
|
+
}
|
|
8268
8534
|
},
|
|
8269
8535
|
{
|
|
8270
|
-
id: "
|
|
8271
|
-
name: "
|
|
8272
|
-
description:
|
|
8273
|
-
- strong math, coding, and reasoning
|
|
8274
|
-
- large context length (64k)
|
|
8275
|
-
- fluency in English, French, Italian, German, and Spanish`,
|
|
8536
|
+
id: "kimi-k2.5",
|
|
8537
|
+
name: "Kimi K2.5",
|
|
8538
|
+
description: "Kimi's most versatile model featuring a native multimodal architecture that supports both visual and text input, thinking and non-thinking modes, and dialogue and agent tasks. Supports automatic context caching, ToolCalls, JSON Mode, Partial Mode, and internet search.",
|
|
8276
8539
|
match: {
|
|
8277
|
-
|
|
8540
|
+
starts_with: "kimi-k2.5"
|
|
8278
8541
|
},
|
|
8542
|
+
context_window: 262144,
|
|
8279
8543
|
prices: {
|
|
8280
|
-
input_mtok: 0.
|
|
8281
|
-
|
|
8544
|
+
input_mtok: 0.6,
|
|
8545
|
+
cache_read_mtok: 0.1,
|
|
8546
|
+
output_mtok: 3
|
|
8282
8547
|
}
|
|
8283
8548
|
},
|
|
8284
8549
|
{
|
|
8285
|
-
id: "
|
|
8286
|
-
name: "
|
|
8550
|
+
id: "moonshot-v1-128k",
|
|
8551
|
+
name: "Moonshot V1 128K",
|
|
8287
8552
|
match: {
|
|
8288
8553
|
or: [
|
|
8289
8554
|
{
|
|
8290
|
-
|
|
8555
|
+
equals: "moonshot-v1-128k"
|
|
8291
8556
|
},
|
|
8292
8557
|
{
|
|
8293
|
-
equals: "
|
|
8558
|
+
equals: "moonshot-v1-128k-vision-preview"
|
|
8294
8559
|
}
|
|
8295
8560
|
]
|
|
8296
8561
|
},
|
|
8562
|
+
context_window: 131072,
|
|
8297
8563
|
prices: {
|
|
8298
|
-
input_mtok:
|
|
8299
|
-
output_mtok:
|
|
8564
|
+
input_mtok: 2,
|
|
8565
|
+
output_mtok: 5
|
|
8300
8566
|
}
|
|
8301
8567
|
},
|
|
8302
8568
|
{
|
|
8303
|
-
id: "
|
|
8304
|
-
name: "
|
|
8305
|
-
description: "The first multi-modal, text+image-to-text model from Mistral AI. Its weights were launched via torrent: https://x.com/mistralai/status/1833758285167722836.",
|
|
8569
|
+
id: "moonshot-v1-32k",
|
|
8570
|
+
name: "Moonshot V1 32K",
|
|
8306
8571
|
match: {
|
|
8307
8572
|
or: [
|
|
8308
8573
|
{
|
|
8309
|
-
equals: "
|
|
8574
|
+
equals: "moonshot-v1-32k"
|
|
8310
8575
|
},
|
|
8311
8576
|
{
|
|
8312
|
-
equals: "
|
|
8577
|
+
equals: "moonshot-v1-32k-vision-preview"
|
|
8313
8578
|
}
|
|
8314
8579
|
]
|
|
8315
8580
|
},
|
|
8581
|
+
context_window: 32768,
|
|
8316
8582
|
prices: {
|
|
8317
|
-
input_mtok:
|
|
8318
|
-
output_mtok:
|
|
8583
|
+
input_mtok: 1,
|
|
8584
|
+
output_mtok: 3
|
|
8319
8585
|
}
|
|
8320
8586
|
},
|
|
8321
8587
|
{
|
|
8322
|
-
id: "
|
|
8323
|
-
name: "
|
|
8324
|
-
description: "Pixtral Large is a 124B parameter, open-weight, multimodal model built on top of Mistral Large 2. The model is able to understand documents, charts and natural images.",
|
|
8588
|
+
id: "moonshot-v1-8k",
|
|
8589
|
+
name: "Moonshot V1 8K",
|
|
8325
8590
|
match: {
|
|
8326
8591
|
or: [
|
|
8327
8592
|
{
|
|
8328
|
-
equals: "
|
|
8593
|
+
equals: "moonshot-v1-8k"
|
|
8329
8594
|
},
|
|
8330
8595
|
{
|
|
8331
|
-
equals: "
|
|
8596
|
+
equals: "moonshot-v1-8k-vision-preview"
|
|
8332
8597
|
}
|
|
8333
8598
|
]
|
|
8334
8599
|
},
|
|
8600
|
+
context_window: 8192,
|
|
8335
8601
|
prices: {
|
|
8336
|
-
input_mtok: 2,
|
|
8337
|
-
output_mtok:
|
|
8602
|
+
input_mtok: 0.2,
|
|
8603
|
+
output_mtok: 2
|
|
8338
8604
|
}
|
|
8339
8605
|
}
|
|
8340
8606
|
]
|
|
@@ -9245,6 +9511,7 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
9245
9511
|
},
|
|
9246
9512
|
context_window: 128e3,
|
|
9247
9513
|
prices: {
|
|
9514
|
+
input_mtok: 2.5,
|
|
9248
9515
|
output_mtok: 10,
|
|
9249
9516
|
input_audio_mtok: 2.5
|
|
9250
9517
|
}
|
|
@@ -9295,6 +9562,7 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
9295
9562
|
starts_with: "gpt-4o-mini-audio"
|
|
9296
9563
|
},
|
|
9297
9564
|
prices: {
|
|
9565
|
+
input_mtok: 0.15,
|
|
9298
9566
|
output_mtok: 0.6,
|
|
9299
9567
|
input_audio_mtok: 0.15
|
|
9300
9568
|
}
|
|
@@ -9331,6 +9599,7 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
9331
9599
|
},
|
|
9332
9600
|
prices: {
|
|
9333
9601
|
input_mtok: 0.6,
|
|
9602
|
+
output_mtok: 12,
|
|
9334
9603
|
output_audio_mtok: 12
|
|
9335
9604
|
}
|
|
9336
9605
|
},
|
|
@@ -9649,10 +9918,282 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
9649
9918
|
}
|
|
9650
9919
|
]
|
|
9651
9920
|
},
|
|
9652
|
-
context_window: 4e5,
|
|
9921
|
+
context_window: 4e5,
|
|
9922
|
+
prices: {
|
|
9923
|
+
input_mtok: 21,
|
|
9924
|
+
output_mtok: 168
|
|
9925
|
+
}
|
|
9926
|
+
},
|
|
9927
|
+
{
|
|
9928
|
+
id: "gpt-5.3",
|
|
9929
|
+
name: "GPT-5.3 Chat",
|
|
9930
|
+
description: "GPT-5.3 Instant model used in ChatGPT",
|
|
9931
|
+
match: {
|
|
9932
|
+
or: [
|
|
9933
|
+
{
|
|
9934
|
+
equals: "gpt-5.3"
|
|
9935
|
+
},
|
|
9936
|
+
{
|
|
9937
|
+
equals: "gpt-5-3"
|
|
9938
|
+
},
|
|
9939
|
+
{
|
|
9940
|
+
equals: "gpt-5.3-chat"
|
|
9941
|
+
},
|
|
9942
|
+
{
|
|
9943
|
+
equals: "gpt-5.3-chat-latest"
|
|
9944
|
+
},
|
|
9945
|
+
{
|
|
9946
|
+
equals: "gpt-5-3-chat"
|
|
9947
|
+
},
|
|
9948
|
+
{
|
|
9949
|
+
equals: "gpt-5-3-chat-latest"
|
|
9950
|
+
}
|
|
9951
|
+
]
|
|
9952
|
+
},
|
|
9953
|
+
context_window: 128e3,
|
|
9954
|
+
prices: {
|
|
9955
|
+
input_mtok: 1.75,
|
|
9956
|
+
cache_read_mtok: 0.175,
|
|
9957
|
+
output_mtok: 14
|
|
9958
|
+
}
|
|
9959
|
+
},
|
|
9960
|
+
{
|
|
9961
|
+
id: "gpt-5.3-codex",
|
|
9962
|
+
name: "GPT-5.3-Codex",
|
|
9963
|
+
description: "The most capable agentic coding model",
|
|
9964
|
+
match: {
|
|
9965
|
+
or: [
|
|
9966
|
+
{
|
|
9967
|
+
equals: "gpt-5.3-codex"
|
|
9968
|
+
},
|
|
9969
|
+
{
|
|
9970
|
+
equals: "gpt-5-3-codex"
|
|
9971
|
+
}
|
|
9972
|
+
]
|
|
9973
|
+
},
|
|
9974
|
+
context_window: 4e5,
|
|
9975
|
+
prices: {
|
|
9976
|
+
input_mtok: 1.75,
|
|
9977
|
+
cache_read_mtok: 0.175,
|
|
9978
|
+
output_mtok: 14
|
|
9979
|
+
}
|
|
9980
|
+
},
|
|
9981
|
+
{
|
|
9982
|
+
id: "gpt-5.4",
|
|
9983
|
+
name: "GPT-5.4",
|
|
9984
|
+
description: "OpenAI's most capable model with a 1.05M token context window.",
|
|
9985
|
+
match: {
|
|
9986
|
+
or: [
|
|
9987
|
+
{
|
|
9988
|
+
equals: "gpt-5.4"
|
|
9989
|
+
},
|
|
9990
|
+
{
|
|
9991
|
+
equals: "gpt-5.4-2026-03-05"
|
|
9992
|
+
},
|
|
9993
|
+
{
|
|
9994
|
+
equals: "gpt-5-4"
|
|
9995
|
+
},
|
|
9996
|
+
{
|
|
9997
|
+
equals: "gpt-5-4-2026-03-05"
|
|
9998
|
+
}
|
|
9999
|
+
]
|
|
10000
|
+
},
|
|
10001
|
+
context_window: 105e4,
|
|
10002
|
+
prices: {
|
|
10003
|
+
input_mtok: {
|
|
10004
|
+
base: 2.5,
|
|
10005
|
+
tiers: [
|
|
10006
|
+
{
|
|
10007
|
+
start: 272e3,
|
|
10008
|
+
price: 5
|
|
10009
|
+
}
|
|
10010
|
+
]
|
|
10011
|
+
},
|
|
10012
|
+
cache_read_mtok: {
|
|
10013
|
+
base: 0.25,
|
|
10014
|
+
tiers: [
|
|
10015
|
+
{
|
|
10016
|
+
start: 272e3,
|
|
10017
|
+
price: 0.5
|
|
10018
|
+
}
|
|
10019
|
+
]
|
|
10020
|
+
},
|
|
10021
|
+
output_mtok: {
|
|
10022
|
+
base: 15,
|
|
10023
|
+
tiers: [
|
|
10024
|
+
{
|
|
10025
|
+
start: 272e3,
|
|
10026
|
+
price: 22.5
|
|
10027
|
+
}
|
|
10028
|
+
]
|
|
10029
|
+
}
|
|
10030
|
+
}
|
|
10031
|
+
},
|
|
10032
|
+
{
|
|
10033
|
+
id: "gpt-5.4-mini",
|
|
10034
|
+
name: "GPT-5.4 mini",
|
|
10035
|
+
description: "Our strongest mini model yet for coding, computer use, and subagents.",
|
|
10036
|
+
match: {
|
|
10037
|
+
or: [
|
|
10038
|
+
{
|
|
10039
|
+
equals: "gpt-5.4-mini"
|
|
10040
|
+
},
|
|
10041
|
+
{
|
|
10042
|
+
equals: "gpt-5.4-mini-2026-03-17"
|
|
10043
|
+
},
|
|
10044
|
+
{
|
|
10045
|
+
equals: "gpt-5-4-mini"
|
|
10046
|
+
},
|
|
10047
|
+
{
|
|
10048
|
+
equals: "gpt-5-4-mini-2026-03-17"
|
|
10049
|
+
}
|
|
10050
|
+
]
|
|
10051
|
+
},
|
|
10052
|
+
context_window: 4e5,
|
|
10053
|
+
prices: {
|
|
10054
|
+
input_mtok: 0.75,
|
|
10055
|
+
cache_read_mtok: 0.075,
|
|
10056
|
+
output_mtok: 4.5
|
|
10057
|
+
}
|
|
10058
|
+
},
|
|
10059
|
+
{
|
|
10060
|
+
id: "gpt-5.4-nano",
|
|
10061
|
+
name: "GPT-5.4 nano",
|
|
10062
|
+
description: "Our cheapest GPT-5.4-class model for simple high-volume tasks.",
|
|
10063
|
+
match: {
|
|
10064
|
+
or: [
|
|
10065
|
+
{
|
|
10066
|
+
equals: "gpt-5.4-nano"
|
|
10067
|
+
},
|
|
10068
|
+
{
|
|
10069
|
+
equals: "gpt-5.4-nano-2026-03-17"
|
|
10070
|
+
},
|
|
10071
|
+
{
|
|
10072
|
+
equals: "gpt-5-4-nano"
|
|
10073
|
+
},
|
|
10074
|
+
{
|
|
10075
|
+
equals: "gpt-5-4-nano-2026-03-17"
|
|
10076
|
+
}
|
|
10077
|
+
]
|
|
10078
|
+
},
|
|
10079
|
+
context_window: 4e5,
|
|
10080
|
+
prices: {
|
|
10081
|
+
input_mtok: 0.2,
|
|
10082
|
+
cache_read_mtok: 0.02,
|
|
10083
|
+
output_mtok: 1.25
|
|
10084
|
+
}
|
|
10085
|
+
},
|
|
10086
|
+
{
|
|
10087
|
+
id: "gpt-5.4-pro",
|
|
10088
|
+
name: "GPT-5.4 Pro",
|
|
10089
|
+
description: "Version of GPT-5.4 that produces smarter and more precise responses.",
|
|
10090
|
+
match: {
|
|
10091
|
+
or: [
|
|
10092
|
+
{
|
|
10093
|
+
equals: "gpt-5.4-pro"
|
|
10094
|
+
},
|
|
10095
|
+
{
|
|
10096
|
+
equals: "gpt-5.4-pro-2026-03-05"
|
|
10097
|
+
},
|
|
10098
|
+
{
|
|
10099
|
+
equals: "gpt-5-4-pro"
|
|
10100
|
+
},
|
|
10101
|
+
{
|
|
10102
|
+
equals: "gpt-5-4-pro-2026-03-05"
|
|
10103
|
+
}
|
|
10104
|
+
]
|
|
10105
|
+
},
|
|
10106
|
+
context_window: 105e4,
|
|
10107
|
+
prices: {
|
|
10108
|
+
input_mtok: {
|
|
10109
|
+
base: 30,
|
|
10110
|
+
tiers: [
|
|
10111
|
+
{
|
|
10112
|
+
start: 272e3,
|
|
10113
|
+
price: 60
|
|
10114
|
+
}
|
|
10115
|
+
]
|
|
10116
|
+
},
|
|
10117
|
+
output_mtok: {
|
|
10118
|
+
base: 180,
|
|
10119
|
+
tiers: [
|
|
10120
|
+
{
|
|
10121
|
+
start: 272e3,
|
|
10122
|
+
price: 270
|
|
10123
|
+
}
|
|
10124
|
+
]
|
|
10125
|
+
}
|
|
10126
|
+
}
|
|
10127
|
+
},
|
|
10128
|
+
{
|
|
10129
|
+
id: "gpt-5.5",
|
|
10130
|
+
name: "GPT-5.5",
|
|
10131
|
+
description: "The best model for coding and agentic tasks across industries",
|
|
10132
|
+
match: {
|
|
10133
|
+
or: [
|
|
10134
|
+
{
|
|
10135
|
+
equals: "gpt-5.5"
|
|
10136
|
+
},
|
|
10137
|
+
{
|
|
10138
|
+
equals: "gpt-5.5-2026-04-23"
|
|
10139
|
+
},
|
|
10140
|
+
{
|
|
10141
|
+
equals: "gpt-5-5"
|
|
10142
|
+
},
|
|
10143
|
+
{
|
|
10144
|
+
equals: "gpt-5-5-2026-04-23"
|
|
10145
|
+
},
|
|
10146
|
+
{
|
|
10147
|
+
equals: "gpt-5.5-chat"
|
|
10148
|
+
},
|
|
10149
|
+
{
|
|
10150
|
+
equals: "gpt-5.5-chat-latest"
|
|
10151
|
+
},
|
|
10152
|
+
{
|
|
10153
|
+
equals: "gpt-5-5-chat"
|
|
10154
|
+
},
|
|
10155
|
+
{
|
|
10156
|
+
equals: "gpt-5-5-chat-latest"
|
|
10157
|
+
},
|
|
10158
|
+
{
|
|
10159
|
+
equals: "gpt-5.5-codex"
|
|
10160
|
+
},
|
|
10161
|
+
{
|
|
10162
|
+
equals: "gpt-5-5-codex"
|
|
10163
|
+
}
|
|
10164
|
+
]
|
|
10165
|
+
},
|
|
10166
|
+
context_window: 1e6,
|
|
10167
|
+
prices: {
|
|
10168
|
+
input_mtok: 5,
|
|
10169
|
+
cache_read_mtok: 0.5,
|
|
10170
|
+
output_mtok: 30
|
|
10171
|
+
}
|
|
10172
|
+
},
|
|
10173
|
+
{
|
|
10174
|
+
id: "gpt-5.5-pro",
|
|
10175
|
+
name: "GPT-5.5 Pro",
|
|
10176
|
+
description: "Version of GPT-5.5 that produces smarter and more precise responses.",
|
|
10177
|
+
match: {
|
|
10178
|
+
or: [
|
|
10179
|
+
{
|
|
10180
|
+
equals: "gpt-5.5-pro"
|
|
10181
|
+
},
|
|
10182
|
+
{
|
|
10183
|
+
equals: "gpt-5.5-pro-2026-04-23"
|
|
10184
|
+
},
|
|
10185
|
+
{
|
|
10186
|
+
equals: "gpt-5-5-pro"
|
|
10187
|
+
},
|
|
10188
|
+
{
|
|
10189
|
+
equals: "gpt-5-5-pro-2026-04-23"
|
|
10190
|
+
}
|
|
10191
|
+
]
|
|
10192
|
+
},
|
|
10193
|
+
context_window: 1e6,
|
|
9653
10194
|
prices: {
|
|
9654
|
-
input_mtok:
|
|
9655
|
-
output_mtok:
|
|
10195
|
+
input_mtok: 30,
|
|
10196
|
+
output_mtok: 180
|
|
9656
10197
|
}
|
|
9657
10198
|
},
|
|
9658
10199
|
{
|
|
@@ -9976,6 +10517,45 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
9976
10517
|
name: "OpenRouter",
|
|
9977
10518
|
pricing_urls: ["https://openrouter.ai/models"],
|
|
9978
10519
|
api_pattern: "https://(api\\.)?openrouter\\.ai",
|
|
10520
|
+
extractors: [
|
|
10521
|
+
{
|
|
10522
|
+
api_flavor: "chat",
|
|
10523
|
+
root: "usage",
|
|
10524
|
+
model_path: "model",
|
|
10525
|
+
mappings: [
|
|
10526
|
+
{
|
|
10527
|
+
path: "prompt_tokens",
|
|
10528
|
+
dest: "input_tokens",
|
|
10529
|
+
required: !0
|
|
10530
|
+
},
|
|
10531
|
+
{
|
|
10532
|
+
path: ["prompt_tokens_details", "cached_tokens"],
|
|
10533
|
+
dest: "cache_read_tokens",
|
|
10534
|
+
required: !1
|
|
10535
|
+
},
|
|
10536
|
+
{
|
|
10537
|
+
path: ["prompt_tokens_details", "cache_write_tokens"],
|
|
10538
|
+
dest: "cache_write_tokens",
|
|
10539
|
+
required: !1
|
|
10540
|
+
},
|
|
10541
|
+
{
|
|
10542
|
+
path: ["prompt_tokens_details", "audio_tokens"],
|
|
10543
|
+
dest: "input_audio_tokens",
|
|
10544
|
+
required: !1
|
|
10545
|
+
},
|
|
10546
|
+
{
|
|
10547
|
+
path: ["completion_tokens_details", "audio_tokens"],
|
|
10548
|
+
dest: "output_audio_tokens",
|
|
10549
|
+
required: !1
|
|
10550
|
+
},
|
|
10551
|
+
{
|
|
10552
|
+
path: "completion_tokens",
|
|
10553
|
+
dest: "output_tokens",
|
|
10554
|
+
required: !0
|
|
10555
|
+
}
|
|
10556
|
+
]
|
|
10557
|
+
}
|
|
10558
|
+
],
|
|
9979
10559
|
models: [
|
|
9980
10560
|
{
|
|
9981
10561
|
id: "01-ai/yi-large",
|
|
@@ -10367,6 +10947,18 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
10367
10947
|
{
|
|
10368
10948
|
equals: "anthropic/claude-haiku-4.5"
|
|
10369
10949
|
},
|
|
10950
|
+
{
|
|
10951
|
+
equals: "anthropic/claude-4.5-haiku-20251001"
|
|
10952
|
+
},
|
|
10953
|
+
{
|
|
10954
|
+
equals: "anthropic/claude-4.5-haiku-20251001:beta"
|
|
10955
|
+
},
|
|
10956
|
+
{
|
|
10957
|
+
equals: "anthropic/claude-haiku-4.5-20251001"
|
|
10958
|
+
},
|
|
10959
|
+
{
|
|
10960
|
+
equals: "anthropic/claude-haiku-4.5-20251001:beta"
|
|
10961
|
+
},
|
|
10370
10962
|
{
|
|
10371
10963
|
equals: "anthropic/claude-haiku-4.5:beta"
|
|
10372
10964
|
}
|
|
@@ -10386,6 +10978,18 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
10386
10978
|
{
|
|
10387
10979
|
equals: "anthropic/claude-opus-4.5"
|
|
10388
10980
|
},
|
|
10981
|
+
{
|
|
10982
|
+
equals: "anthropic/claude-4.5-opus-20251124"
|
|
10983
|
+
},
|
|
10984
|
+
{
|
|
10985
|
+
equals: "anthropic/claude-4.5-opus-20251124:beta"
|
|
10986
|
+
},
|
|
10987
|
+
{
|
|
10988
|
+
equals: "anthropic/claude-opus-4.5-20251124"
|
|
10989
|
+
},
|
|
10990
|
+
{
|
|
10991
|
+
equals: "anthropic/claude-opus-4.5-20251124:beta"
|
|
10992
|
+
},
|
|
10389
10993
|
{
|
|
10390
10994
|
equals: "anthropic/claude-opus-4.5:beta"
|
|
10391
10995
|
}
|
|
@@ -10405,48 +11009,51 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
10405
11009
|
{
|
|
10406
11010
|
equals: "anthropic/claude-opus-4.6"
|
|
10407
11011
|
},
|
|
11012
|
+
{
|
|
11013
|
+
equals: "anthropic/claude-4.6-opus-20260205"
|
|
11014
|
+
},
|
|
11015
|
+
{
|
|
11016
|
+
equals: "anthropic/claude-4.6-opus-20260205:beta"
|
|
11017
|
+
},
|
|
11018
|
+
{
|
|
11019
|
+
equals: "anthropic/claude-opus-4.6-20260205"
|
|
11020
|
+
},
|
|
11021
|
+
{
|
|
11022
|
+
equals: "anthropic/claude-opus-4.6-20260205:beta"
|
|
11023
|
+
},
|
|
10408
11024
|
{
|
|
10409
11025
|
equals: "anthropic/claude-opus-4.6:beta"
|
|
10410
11026
|
}
|
|
10411
11027
|
]
|
|
10412
11028
|
},
|
|
11029
|
+
context_window: 1e6,
|
|
11030
|
+
price_comments: "Flat pricing across full 1M context window (no tiered pricing). Ref: https://platform.claude.com/docs/en/about-claude/pricing#long-context-pricing",
|
|
10413
11031
|
prices: {
|
|
10414
|
-
input_mtok:
|
|
10415
|
-
|
|
10416
|
-
|
|
10417
|
-
|
|
10418
|
-
|
|
10419
|
-
|
|
10420
|
-
|
|
10421
|
-
|
|
10422
|
-
|
|
10423
|
-
|
|
10424
|
-
|
|
10425
|
-
|
|
10426
|
-
|
|
10427
|
-
|
|
10428
|
-
|
|
10429
|
-
|
|
10430
|
-
|
|
10431
|
-
|
|
10432
|
-
|
|
10433
|
-
|
|
10434
|
-
|
|
10435
|
-
|
|
10436
|
-
|
|
10437
|
-
|
|
10438
|
-
|
|
10439
|
-
]
|
|
10440
|
-
},
|
|
10441
|
-
output_mtok: {
|
|
10442
|
-
base: 25,
|
|
10443
|
-
tiers: [
|
|
10444
|
-
{
|
|
10445
|
-
start: 2e5,
|
|
10446
|
-
price: 37.5
|
|
10447
|
-
}
|
|
10448
|
-
]
|
|
10449
|
-
}
|
|
11032
|
+
input_mtok: 5,
|
|
11033
|
+
cache_write_mtok: 6.25,
|
|
11034
|
+
cache_read_mtok: 0.5,
|
|
11035
|
+
output_mtok: 25
|
|
11036
|
+
}
|
|
11037
|
+
},
|
|
11038
|
+
{
|
|
11039
|
+
id: "anthropic/claude-opus-4.7",
|
|
11040
|
+
match: {
|
|
11041
|
+
or: [
|
|
11042
|
+
{
|
|
11043
|
+
equals: "anthropic/claude-opus-4.7"
|
|
11044
|
+
},
|
|
11045
|
+
{
|
|
11046
|
+
equals: "anthropic/claude-opus-4.7:beta"
|
|
11047
|
+
}
|
|
11048
|
+
]
|
|
11049
|
+
},
|
|
11050
|
+
context_window: 1e6,
|
|
11051
|
+
price_comments: "Flat pricing across full 1M context window (no tiered pricing). Ref: https://platform.claude.com/docs/en/about-claude/pricing#long-context-pricing",
|
|
11052
|
+
prices: {
|
|
11053
|
+
input_mtok: 5,
|
|
11054
|
+
cache_write_mtok: 6.25,
|
|
11055
|
+
cache_read_mtok: 0.5,
|
|
11056
|
+
output_mtok: 25
|
|
10450
11057
|
}
|
|
10451
11058
|
},
|
|
10452
11059
|
{
|
|
@@ -10456,12 +11063,25 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
10456
11063
|
{
|
|
10457
11064
|
equals: "anthropic/claude-sonnet-4.5"
|
|
10458
11065
|
},
|
|
11066
|
+
{
|
|
11067
|
+
equals: "anthropic/claude-4.5-sonnet-20250929"
|
|
11068
|
+
},
|
|
11069
|
+
{
|
|
11070
|
+
equals: "anthropic/claude-4.5-sonnet-20250929:beta"
|
|
11071
|
+
},
|
|
11072
|
+
{
|
|
11073
|
+
equals: "anthropic/claude-sonnet-4.5-20250929"
|
|
11074
|
+
},
|
|
11075
|
+
{
|
|
11076
|
+
equals: "anthropic/claude-sonnet-4.5-20250929:beta"
|
|
11077
|
+
},
|
|
10459
11078
|
{
|
|
10460
11079
|
equals: "anthropic/claude-sonnet-4.5:beta"
|
|
10461
11080
|
}
|
|
10462
11081
|
]
|
|
10463
11082
|
},
|
|
10464
11083
|
context_window: 1e6,
|
|
11084
|
+
price_comments: "Tiered pricing: Unlike 4.6 models, Sonnet 4.5 has long-context surcharge. Ref: https://platform.claude.com/docs/en/about-claude/pricing#long-context-pricing",
|
|
10465
11085
|
prices: {
|
|
10466
11086
|
input_mtok: {
|
|
10467
11087
|
base: 3,
|
|
@@ -10501,6 +11121,39 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
10501
11121
|
}
|
|
10502
11122
|
}
|
|
10503
11123
|
},
|
|
11124
|
+
{
|
|
11125
|
+
id: "anthropic/claude-sonnet-4.6",
|
|
11126
|
+
match: {
|
|
11127
|
+
or: [
|
|
11128
|
+
{
|
|
11129
|
+
equals: "anthropic/claude-sonnet-4.6"
|
|
11130
|
+
},
|
|
11131
|
+
{
|
|
11132
|
+
equals: "anthropic/claude-4.6-sonnet-20260217"
|
|
11133
|
+
},
|
|
11134
|
+
{
|
|
11135
|
+
equals: "anthropic/claude-4.6-sonnet-20260217:beta"
|
|
11136
|
+
},
|
|
11137
|
+
{
|
|
11138
|
+
equals: "anthropic/claude-sonnet-4.6-20260217"
|
|
11139
|
+
},
|
|
11140
|
+
{
|
|
11141
|
+
equals: "anthropic/claude-sonnet-4.6-20260217:beta"
|
|
11142
|
+
},
|
|
11143
|
+
{
|
|
11144
|
+
equals: "anthropic/claude-sonnet-4.6:beta"
|
|
11145
|
+
}
|
|
11146
|
+
]
|
|
11147
|
+
},
|
|
11148
|
+
context_window: 1e6,
|
|
11149
|
+
price_comments: "Flat pricing across full 1M context window (no tiered pricing). Ref: https://platform.claude.com/docs/en/about-claude/pricing#long-context-pricing",
|
|
11150
|
+
prices: {
|
|
11151
|
+
input_mtok: 3,
|
|
11152
|
+
cache_write_mtok: 3.75,
|
|
11153
|
+
cache_read_mtok: 0.3,
|
|
11154
|
+
output_mtok: 15
|
|
11155
|
+
}
|
|
11156
|
+
},
|
|
10504
11157
|
{
|
|
10505
11158
|
id: "anubis-pro-105b-v1",
|
|
10506
11159
|
name: "Anubis Pro 105B V1",
|
|
@@ -11392,6 +12045,19 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
11392
12045
|
},
|
|
11393
12046
|
prices: {}
|
|
11394
12047
|
},
|
|
12048
|
+
{
|
|
12049
|
+
id: "deepseek/deepseek-v3.2",
|
|
12050
|
+
name: "DeepSeek V3.2",
|
|
12051
|
+
match: {
|
|
12052
|
+
equals: "deepseek/deepseek-v3.2"
|
|
12053
|
+
},
|
|
12054
|
+
context_window: 131072,
|
|
12055
|
+
prices: {
|
|
12056
|
+
input_mtok: 0.252,
|
|
12057
|
+
cache_read_mtok: 0.0252,
|
|
12058
|
+
output_mtok: 0.378
|
|
12059
|
+
}
|
|
12060
|
+
},
|
|
11395
12061
|
{
|
|
11396
12062
|
id: "deepseek/deepseek-v3.2-exp",
|
|
11397
12063
|
name: "DeepSeek V3.2 Experimental",
|
|
@@ -15593,7 +16259,14 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
15593
16259
|
id: "qwen/qwen3-max",
|
|
15594
16260
|
name: "Qwen 3 Max",
|
|
15595
16261
|
match: {
|
|
15596
|
-
|
|
16262
|
+
or: [
|
|
16263
|
+
{
|
|
16264
|
+
equals: "qwen/qwen3-max"
|
|
16265
|
+
},
|
|
16266
|
+
{
|
|
16267
|
+
equals: "qwen/qwen3-max-thinking"
|
|
16268
|
+
}
|
|
16269
|
+
]
|
|
15597
16270
|
},
|
|
15598
16271
|
prices: {
|
|
15599
16272
|
input_mtok: 1.2,
|
|
@@ -15767,6 +16440,17 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
15767
16440
|
},
|
|
15768
16441
|
prices: {}
|
|
15769
16442
|
},
|
|
16443
|
+
{
|
|
16444
|
+
id: "qwen3.5-plus-02-15",
|
|
16445
|
+
name: "Qwen3.5 plus-02-15",
|
|
16446
|
+
match: {
|
|
16447
|
+
equals: "qwen3.5-plus-02-15"
|
|
16448
|
+
},
|
|
16449
|
+
prices: {
|
|
16450
|
+
input_mtok: 0.4,
|
|
16451
|
+
output_mtok: 2.4
|
|
16452
|
+
}
|
|
16453
|
+
},
|
|
15770
16454
|
{
|
|
15771
16455
|
id: "qwerky-72b:free",
|
|
15772
16456
|
name: "Qwerky 72B (free)",
|
|
@@ -16461,25 +17145,6 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
16461
17145
|
output_mtok: 0.11
|
|
16462
17146
|
}
|
|
16463
17147
|
},
|
|
16464
|
-
{
|
|
16465
|
-
id: "Meta-Llama-3_1-70B-Instruct",
|
|
16466
|
-
name: "Meta-Llama-3_1-70B-Instruct",
|
|
16467
|
-
match: {
|
|
16468
|
-
or: [
|
|
16469
|
-
{
|
|
16470
|
-
equals: "Meta-Llama-3_1-70B-Instruct"
|
|
16471
|
-
},
|
|
16472
|
-
{
|
|
16473
|
-
equals: "meta-llama-3_1-70b-instruct"
|
|
16474
|
-
}
|
|
16475
|
-
]
|
|
16476
|
-
},
|
|
16477
|
-
context_window: 131072,
|
|
16478
|
-
prices: {
|
|
16479
|
-
input_mtok: 0.74,
|
|
16480
|
-
output_mtok: 0.74
|
|
16481
|
-
}
|
|
16482
|
-
},
|
|
16483
17148
|
{
|
|
16484
17149
|
id: "Meta-Llama-3_3-70B-Instruct",
|
|
16485
17150
|
name: "Meta-Llama-3_3-70B-Instruct",
|
|
@@ -16575,25 +17240,6 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
16575
17240
|
output_mtok: 0.7
|
|
16576
17241
|
}
|
|
16577
17242
|
},
|
|
16578
|
-
{
|
|
16579
|
-
id: "Qwen2.5-Coder-32B-Instruct",
|
|
16580
|
-
name: "Qwen2.5-Coder-32B-Instruct",
|
|
16581
|
-
match: {
|
|
16582
|
-
or: [
|
|
16583
|
-
{
|
|
16584
|
-
equals: "Qwen2.5-Coder-32B-Instruct"
|
|
16585
|
-
},
|
|
16586
|
-
{
|
|
16587
|
-
equals: "qwen2.5-coder-32b-instruct"
|
|
16588
|
-
}
|
|
16589
|
-
]
|
|
16590
|
-
},
|
|
16591
|
-
context_window: 32768,
|
|
16592
|
-
prices: {
|
|
16593
|
-
input_mtok: 0.96,
|
|
16594
|
-
output_mtok: 0.96
|
|
16595
|
-
}
|
|
16596
|
-
},
|
|
16597
17243
|
{
|
|
16598
17244
|
id: "Qwen2.5-VL-72B-Instruct",
|
|
16599
17245
|
name: "Qwen2.5-VL-72B-Instruct",
|
|
@@ -16707,18 +17353,6 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
16707
17353
|
input_mtok: 0.05,
|
|
16708
17354
|
output_mtok: 0.18
|
|
16709
17355
|
}
|
|
16710
|
-
},
|
|
16711
|
-
{
|
|
16712
|
-
id: "llava-next-mistral-7b",
|
|
16713
|
-
name: "llava-next-mistral-7b",
|
|
16714
|
-
match: {
|
|
16715
|
-
equals: "llava-next-mistral-7b"
|
|
16716
|
-
},
|
|
16717
|
-
context_window: 32768,
|
|
16718
|
-
prices: {
|
|
16719
|
-
input_mtok: 0.32,
|
|
16720
|
-
output_mtok: 0.32
|
|
16721
|
-
}
|
|
16722
17356
|
}
|
|
16723
17357
|
]
|
|
16724
17358
|
},
|
|
@@ -17640,6 +18274,28 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
17640
18274
|
equals: "xai"
|
|
17641
18275
|
},
|
|
17642
18276
|
extractors: [
|
|
18277
|
+
{
|
|
18278
|
+
api_flavor: "default",
|
|
18279
|
+
root: "usage",
|
|
18280
|
+
model_path: "model",
|
|
18281
|
+
mappings: [
|
|
18282
|
+
{
|
|
18283
|
+
path: "prompt_tokens",
|
|
18284
|
+
dest: "input_tokens",
|
|
18285
|
+
required: !0
|
|
18286
|
+
},
|
|
18287
|
+
{
|
|
18288
|
+
path: "cached_prompt_text_tokens",
|
|
18289
|
+
dest: "cache_read_tokens",
|
|
18290
|
+
required: !1
|
|
18291
|
+
},
|
|
18292
|
+
{
|
|
18293
|
+
path: "completion_tokens",
|
|
18294
|
+
dest: "output_tokens",
|
|
18295
|
+
required: !0
|
|
18296
|
+
}
|
|
18297
|
+
]
|
|
18298
|
+
},
|
|
17643
18299
|
{
|
|
17644
18300
|
api_flavor: "chat",
|
|
17645
18301
|
root: "usage",
|
|
@@ -17926,6 +18582,30 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
17926
18582
|
output_mtok: 0.5
|
|
17927
18583
|
}
|
|
17928
18584
|
},
|
|
18585
|
+
{
|
|
18586
|
+
id: "grok-4.3",
|
|
18587
|
+
name: "Grok 4.3",
|
|
18588
|
+
description: "Most advanced flagship model, leading the industry in non-hallucination rate, agentic tool calling, and instruction following capabilities. Supports text and image inputs with text outputs, function calling, structured outputs, and reasoning.",
|
|
18589
|
+
match: {
|
|
18590
|
+
or: [
|
|
18591
|
+
{
|
|
18592
|
+
equals: "grok-4.3"
|
|
18593
|
+
},
|
|
18594
|
+
{
|
|
18595
|
+
equals: "grok-4.3-latest"
|
|
18596
|
+
},
|
|
18597
|
+
{
|
|
18598
|
+
equals: "grok-latest"
|
|
18599
|
+
}
|
|
18600
|
+
]
|
|
18601
|
+
},
|
|
18602
|
+
context_window: 1e6,
|
|
18603
|
+
prices: {
|
|
18604
|
+
input_mtok: 1.25,
|
|
18605
|
+
cache_read_mtok: 0.2,
|
|
18606
|
+
output_mtok: 2.5
|
|
18607
|
+
}
|
|
18608
|
+
},
|
|
17929
18609
|
{
|
|
17930
18610
|
id: "grok-code-fast-1",
|
|
17931
18611
|
name: "Grok Code Fast 1",
|
|
@@ -17953,243 +18633,244 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
17953
18633
|
]
|
|
17954
18634
|
}
|
|
17955
18635
|
];
|
|
17956
|
-
function
|
|
17957
|
-
if (
|
|
17958
|
-
let a =
|
|
17959
|
-
for (const o of
|
|
18636
|
+
function S(t, e, i) {
|
|
18637
|
+
if (e <= 0) return 0;
|
|
18638
|
+
let a = t.base;
|
|
18639
|
+
for (const o of t.tiers)
|
|
17960
18640
|
i > o.start && (a = o.price);
|
|
17961
|
-
return a *
|
|
18641
|
+
return a * e / 1e6;
|
|
17962
18642
|
}
|
|
17963
|
-
function
|
|
17964
|
-
return
|
|
18643
|
+
function d(t, e, i, a) {
|
|
18644
|
+
return t === void 0 || e === void 0 ? 0 : typeof t == "number" ? t * e / 1e6 : S(t, e, a);
|
|
17965
18645
|
}
|
|
17966
|
-
function
|
|
18646
|
+
function A(t, e) {
|
|
17967
18647
|
let i = 0, a = 0;
|
|
17968
|
-
const o =
|
|
17969
|
-
let
|
|
17970
|
-
if (u
|
|
18648
|
+
const o = t.input_tokens ?? 0, r = t.cache_read_tokens ?? 0, m = t.cache_write_tokens ?? 0, n = t.cache_audio_read_tokens ?? 0, s = t.input_audio_tokens ?? 0, p = t.output_audio_tokens ?? 0, u = e.cache_audio_read_mtok === void 0 ? 0 : n, c = e.cache_audio_read_mtok === void 0 && e.cache_read_mtok !== void 0 ? n : 0;
|
|
18649
|
+
let l = 0;
|
|
18650
|
+
if (e.input_audio_mtok !== void 0 && (l = s - u - c), l < 0)
|
|
17971
18651
|
throw new Error("cache_audio_read_tokens cannot be greater than input_audio_tokens");
|
|
17972
|
-
let
|
|
17973
|
-
if (
|
|
17974
|
-
throw new Error("Uncached text input tokens cannot be negative");
|
|
17975
|
-
let p = s;
|
|
17976
|
-
if (p -= n, p < 0)
|
|
18652
|
+
let w = 0;
|
|
18653
|
+
if (e.cache_read_mtok !== void 0 && (w = r - u), w < 0)
|
|
17977
18654
|
throw new Error("cache_audio_read_tokens cannot be greater than cache_read_tokens");
|
|
17978
|
-
|
|
17979
|
-
let
|
|
17980
|
-
if (
|
|
18655
|
+
const M = e.cache_write_mtok === void 0 ? 0 : m;
|
|
18656
|
+
let b = 0;
|
|
18657
|
+
if (e.input_mtok !== void 0 && (b = o - w - M - l - u), b < 0)
|
|
18658
|
+
throw new Error("Uncached text input tokens cannot be negative");
|
|
18659
|
+
i += d(e.input_mtok, b, "input_mtok", o), i += d(e.cache_read_mtok, w, "cache_read_mtok", o), i += d(e.cache_write_mtok, M, "cache_write_mtok", o), i += d(e.input_audio_mtok, l, "input_audio_mtok", o), i += d(e.cache_audio_read_mtok, u, "cache_audio_read_mtok", o);
|
|
18660
|
+
let f = 0;
|
|
18661
|
+
if (e.output_mtok !== void 0 && (f = (t.output_tokens ?? 0) - (e.output_audio_mtok === void 0 ? 0 : p)), f < 0)
|
|
17981
18662
|
throw new Error("output_audio_tokens cannot be greater than output_tokens");
|
|
17982
|
-
a +=
|
|
17983
|
-
let
|
|
17984
|
-
return
|
|
18663
|
+
a += d(e.output_mtok, f, "output_mtok", o), a += d(e.output_audio_mtok, t.output_audio_tokens, "output_audio_mtok", o);
|
|
18664
|
+
let y = i + a;
|
|
18665
|
+
return e.requests_kcount !== void 0 && (y += e.requests_kcount / 1e3), {
|
|
17985
18666
|
input_price: i,
|
|
17986
18667
|
output_price: a,
|
|
17987
|
-
total_price:
|
|
18668
|
+
total_price: y
|
|
17988
18669
|
};
|
|
17989
18670
|
}
|
|
17990
|
-
function
|
|
17991
|
-
if (!Array.isArray(
|
|
17992
|
-
return
|
|
17993
|
-
for (let i =
|
|
17994
|
-
const a =
|
|
18671
|
+
function G(t, e) {
|
|
18672
|
+
if (!Array.isArray(t.prices))
|
|
18673
|
+
return t.prices;
|
|
18674
|
+
for (let i = t.prices.length - 1; i >= 0; i--) {
|
|
18675
|
+
const a = t.prices[i], o = a.constraint;
|
|
17995
18676
|
if (o === void 0)
|
|
17996
18677
|
return a.prices;
|
|
17997
18678
|
if (o.type === "start_date") {
|
|
17998
|
-
if (
|
|
18679
|
+
if (e >= new Date(o.start_date))
|
|
17999
18680
|
return a.prices;
|
|
18000
18681
|
} else {
|
|
18001
|
-
const
|
|
18682
|
+
const r = e.toISOString().slice(11, 19), m = o.start_time, n = o.end_time;
|
|
18002
18683
|
if (n < m) {
|
|
18003
|
-
if (
|
|
18684
|
+
if (r >= m || r < n)
|
|
18004
18685
|
return a.prices;
|
|
18005
|
-
} else if (
|
|
18686
|
+
} else if (r >= m && r < n)
|
|
18006
18687
|
return a.prices;
|
|
18007
18688
|
}
|
|
18008
18689
|
}
|
|
18009
|
-
return
|
|
18690
|
+
return t.prices[0].prices;
|
|
18010
18691
|
}
|
|
18011
|
-
function g(
|
|
18012
|
-
return "or" in
|
|
18692
|
+
function g(t, e) {
|
|
18693
|
+
return "or" in t ? t.or.some((i) => g(i, e)) : "and" in t ? t.and.every((i) => g(i, e)) : "equals" in t ? e === t.equals : "starts_with" in t ? e.startsWith(t.starts_with) : "ends_with" in t ? e.endsWith(t.ends_with) : "contains" in t ? e.includes(t.contains) : "regex" in t ? new RegExp(t.regex).test(e) : !1;
|
|
18013
18694
|
}
|
|
18014
|
-
function
|
|
18015
|
-
const i =
|
|
18016
|
-
return a ||
|
|
18695
|
+
function z(t, e) {
|
|
18696
|
+
const i = e.toLowerCase().trim(), a = t.find((o) => o.id === i);
|
|
18697
|
+
return a || t.find((o) => o.provider_match && g(o.provider_match, i));
|
|
18017
18698
|
}
|
|
18018
|
-
function
|
|
18699
|
+
function x(t, { modelId: e, providerApiUrl: i, providerId: a }) {
|
|
18019
18700
|
if (a) {
|
|
18020
|
-
const o =
|
|
18701
|
+
const o = z(t, a);
|
|
18021
18702
|
if (o || a.toLowerCase() !== "litellm")
|
|
18022
18703
|
return o;
|
|
18023
18704
|
}
|
|
18024
18705
|
if (i)
|
|
18025
|
-
return
|
|
18026
|
-
if (
|
|
18027
|
-
return
|
|
18706
|
+
return t.find((o) => new RegExp(o.api_pattern).test(i));
|
|
18707
|
+
if (e)
|
|
18708
|
+
return t.find((o) => o.model_match && g(o.model_match, e));
|
|
18028
18709
|
}
|
|
18029
|
-
function
|
|
18030
|
-
return
|
|
18710
|
+
function R(t, e) {
|
|
18711
|
+
return t.find((i) => g(i.match, e));
|
|
18031
18712
|
}
|
|
18032
|
-
function
|
|
18033
|
-
const a =
|
|
18713
|
+
function P(t, e, i) {
|
|
18714
|
+
const a = R(t.models, e);
|
|
18034
18715
|
if (a) return a;
|
|
18035
|
-
if (
|
|
18036
|
-
for (const o of
|
|
18037
|
-
const
|
|
18038
|
-
if (
|
|
18039
|
-
const m =
|
|
18716
|
+
if (t.fallback_model_providers && i)
|
|
18717
|
+
for (const o of t.fallback_model_providers) {
|
|
18718
|
+
const r = i.find((m) => m.id === o);
|
|
18719
|
+
if (r) {
|
|
18720
|
+
const m = P(r, e);
|
|
18040
18721
|
if (m) return m;
|
|
18041
18722
|
}
|
|
18042
18723
|
}
|
|
18043
18724
|
}
|
|
18044
|
-
const
|
|
18045
|
-
let h =
|
|
18046
|
-
function
|
|
18047
|
-
|
|
18048
|
-
|
|
18049
|
-
})) : (
|
|
18725
|
+
const C = "https://raw.githubusercontent.com/pydantic/genai-prices/main/prices/data.json";
|
|
18726
|
+
let h = Q, B = Promise.resolve(Q), I = null;
|
|
18727
|
+
function D(t) {
|
|
18728
|
+
t !== null && ("then" in t ? (B = t, t.then((e) => {
|
|
18729
|
+
e !== null && (h = e);
|
|
18730
|
+
})) : (B = Promise.resolve(t), h = t));
|
|
18050
18731
|
}
|
|
18051
|
-
function
|
|
18052
|
-
|
|
18732
|
+
function N(t) {
|
|
18733
|
+
I = t;
|
|
18053
18734
|
}
|
|
18054
|
-
function
|
|
18055
|
-
|
|
18056
|
-
onCalc:
|
|
18057
|
-
remoteDataUrl:
|
|
18058
|
-
setProviderData:
|
|
18735
|
+
function F(t) {
|
|
18736
|
+
t({
|
|
18737
|
+
onCalc: N,
|
|
18738
|
+
remoteDataUrl: C,
|
|
18739
|
+
setProviderData: D
|
|
18059
18740
|
});
|
|
18060
18741
|
}
|
|
18061
|
-
function
|
|
18062
|
-
return
|
|
18742
|
+
function K() {
|
|
18743
|
+
return B;
|
|
18063
18744
|
}
|
|
18064
|
-
function
|
|
18065
|
-
|
|
18066
|
-
let a =
|
|
18745
|
+
function j(t, e, i) {
|
|
18746
|
+
I?.();
|
|
18747
|
+
let a = e.toLowerCase().trim(), o = i?.providerId;
|
|
18067
18748
|
if (o && o.toLowerCase() === "litellm" && a.includes("/")) {
|
|
18068
|
-
const
|
|
18069
|
-
|
|
18749
|
+
const u = a.indexOf("/"), c = a.slice(0, u), l = a.slice(u + 1);
|
|
18750
|
+
c && l && x(h, { providerId: c }) && (o = c, a = l);
|
|
18070
18751
|
}
|
|
18071
|
-
const
|
|
18072
|
-
if (!
|
|
18073
|
-
const m =
|
|
18752
|
+
const r = i?.provider ?? x(h, { modelId: a, providerApiUrl: i?.providerApiUrl, providerId: o });
|
|
18753
|
+
if (!r) return null;
|
|
18754
|
+
const m = P(r, a, h);
|
|
18074
18755
|
if (!m) return null;
|
|
18075
|
-
const n = i?.timestamp ?? /* @__PURE__ */ new Date(),
|
|
18756
|
+
const n = i?.timestamp ?? /* @__PURE__ */ new Date(), s = G(m, n), p = A(t, s);
|
|
18076
18757
|
return {
|
|
18077
18758
|
auto_update_timestamp: void 0,
|
|
18078
18759
|
model: m,
|
|
18079
|
-
model_price:
|
|
18080
|
-
provider:
|
|
18081
|
-
...
|
|
18760
|
+
model_price: s,
|
|
18761
|
+
provider: r,
|
|
18762
|
+
...p
|
|
18082
18763
|
};
|
|
18083
18764
|
}
|
|
18084
|
-
function
|
|
18085
|
-
return
|
|
18765
|
+
function H(t) {
|
|
18766
|
+
return I?.(), x(h, t);
|
|
18086
18767
|
}
|
|
18087
|
-
function
|
|
18088
|
-
if (i = i ?? "default", !
|
|
18768
|
+
function $(t, e, i) {
|
|
18769
|
+
if (i = i ?? "default", !t.extractors)
|
|
18089
18770
|
throw new Error("No extraction logic defined for this provider");
|
|
18090
|
-
const a =
|
|
18771
|
+
const a = t.extractors.find((s) => s.api_flavor === i);
|
|
18091
18772
|
if (!a) {
|
|
18092
|
-
const
|
|
18093
|
-
throw new Error(`Unknown apiFlavor '${i}', allowed values: ${
|
|
18773
|
+
const s = t.extractors.map((p) => p.api_flavor).join(", ");
|
|
18774
|
+
throw new Error(`Unknown apiFlavor '${i}', allowed values: ${s}`);
|
|
18094
18775
|
}
|
|
18095
|
-
if (!q.guard(
|
|
18096
|
-
throw new Error(`Expected response data to be a mapping object, got ${
|
|
18097
|
-
const o =
|
|
18098
|
-
for (const
|
|
18099
|
-
const
|
|
18100
|
-
if (
|
|
18101
|
-
const
|
|
18102
|
-
n[
|
|
18776
|
+
if (!q.guard(e))
|
|
18777
|
+
throw new Error(`Expected response data to be a mapping object, got ${_(e)}`);
|
|
18778
|
+
const o = v(a.model_path, e, V, !1, []), r = T(a.root), m = v(r, e, q, !0, []), n = {};
|
|
18779
|
+
for (const s of a.mappings) {
|
|
18780
|
+
const p = v(s.path, m, O, s.required, r);
|
|
18781
|
+
if (p !== null) {
|
|
18782
|
+
const u = n[s.dest] ?? 0;
|
|
18783
|
+
n[s.dest] = u + p;
|
|
18103
18784
|
}
|
|
18104
18785
|
}
|
|
18105
18786
|
if (!Object.keys(n).length)
|
|
18106
18787
|
throw new Error(`No usage information found at ${JSON.stringify(a.root)}`);
|
|
18107
18788
|
return { model: o, usage: n };
|
|
18108
18789
|
}
|
|
18109
|
-
function
|
|
18110
|
-
const [
|
|
18111
|
-
if (typeof
|
|
18112
|
-
throw new Error(`Expected last step of path to be a string, got ${
|
|
18790
|
+
function v(t, e, i, a, o) {
|
|
18791
|
+
const [r, ...m] = T(t).reverse();
|
|
18792
|
+
if (typeof r != "string")
|
|
18793
|
+
throw new Error(`Expected last step of path to be a string, got ${_(r)}`);
|
|
18113
18794
|
m.reverse();
|
|
18114
|
-
let n =
|
|
18115
|
-
const
|
|
18116
|
-
for (const
|
|
18117
|
-
if (
|
|
18795
|
+
let n = e;
|
|
18796
|
+
const s = [];
|
|
18797
|
+
for (const u of m) {
|
|
18798
|
+
if (s.push(u), typeof u == "object")
|
|
18118
18799
|
if (Array.isArray(n))
|
|
18119
|
-
n =
|
|
18800
|
+
n = E(u, n);
|
|
18120
18801
|
else {
|
|
18121
18802
|
if (a)
|
|
18122
|
-
throw new Error(`Expected \`${
|
|
18803
|
+
throw new Error(`Expected \`${k(o, s)}\` value to be a mapping, got ${_(n)}`);
|
|
18123
18804
|
return null;
|
|
18124
18805
|
}
|
|
18125
18806
|
else if (q.guard(n))
|
|
18126
|
-
n = n[
|
|
18807
|
+
n = n[u];
|
|
18127
18808
|
else {
|
|
18128
18809
|
if (a)
|
|
18129
|
-
throw new Error(`Expected \`${
|
|
18810
|
+
throw new Error(`Expected \`${k(o, s)}\` value to be a mapping, got ${_(n)}`);
|
|
18130
18811
|
return null;
|
|
18131
18812
|
}
|
|
18132
18813
|
if (typeof n > "u")
|
|
18133
18814
|
if (a) {
|
|
18134
|
-
const
|
|
18135
|
-
throw new Error(`${
|
|
18815
|
+
const c = typeof u == "object" ? "Unable to find item" : "Missing value";
|
|
18816
|
+
throw new Error(`${c} at \`${k(o, s)}\``);
|
|
18136
18817
|
} else
|
|
18137
18818
|
return null;
|
|
18138
18819
|
}
|
|
18139
18820
|
if (!q.guard(n)) {
|
|
18140
18821
|
if (a)
|
|
18141
|
-
throw new Error(`Expected \`${
|
|
18822
|
+
throw new Error(`Expected \`${k(o, s)}\` value to be a mapping, got ${_(n)}`);
|
|
18142
18823
|
return null;
|
|
18143
18824
|
}
|
|
18144
|
-
const
|
|
18145
|
-
if (typeof
|
|
18825
|
+
const p = n[r];
|
|
18826
|
+
if (typeof p > "u") {
|
|
18146
18827
|
if (a)
|
|
18147
|
-
throw
|
|
18828
|
+
throw s.push(r), new Error(`Missing value at \`${k(o, s)}\``);
|
|
18148
18829
|
return null;
|
|
18149
18830
|
}
|
|
18150
|
-
if (i.guard(
|
|
18151
|
-
return
|
|
18831
|
+
if (i.guard(p))
|
|
18832
|
+
return p;
|
|
18152
18833
|
if (a)
|
|
18153
|
-
throw
|
|
18834
|
+
throw s.push(r), new Error(`Expected \`${k(o, s)}\` value to be a ${i.name}, got ${_(p)}`);
|
|
18154
18835
|
return null;
|
|
18155
18836
|
}
|
|
18156
|
-
function
|
|
18157
|
-
for (const i of
|
|
18837
|
+
function E(t, e) {
|
|
18838
|
+
for (const i of e)
|
|
18158
18839
|
if (q.guard(i)) {
|
|
18159
|
-
const a = i[
|
|
18160
|
-
if (typeof a == "string" && g(
|
|
18840
|
+
const a = i[t.field];
|
|
18841
|
+
if (typeof a == "string" && g(t.match, a))
|
|
18161
18842
|
return i;
|
|
18162
18843
|
}
|
|
18163
18844
|
}
|
|
18164
|
-
function
|
|
18165
|
-
return Array.isArray(
|
|
18845
|
+
function T(t) {
|
|
18846
|
+
return Array.isArray(t) ? [...t] : [t];
|
|
18166
18847
|
}
|
|
18167
|
-
function
|
|
18168
|
-
return
|
|
18848
|
+
function _(t) {
|
|
18849
|
+
return t === null ? "null" : Array.isArray(t) ? "array" : typeof t == "object" ? "mapping" : typeof t;
|
|
18169
18850
|
}
|
|
18170
18851
|
const q = {
|
|
18171
|
-
guard: (
|
|
18852
|
+
guard: (t) => _(t) === "mapping",
|
|
18172
18853
|
name: "mapping"
|
|
18173
|
-
},
|
|
18174
|
-
guard: (
|
|
18854
|
+
}, V = {
|
|
18855
|
+
guard: (t) => typeof t == "string",
|
|
18175
18856
|
name: "string"
|
|
18176
|
-
},
|
|
18177
|
-
guard: (
|
|
18857
|
+
}, O = {
|
|
18858
|
+
guard: (t) => typeof t == "number",
|
|
18178
18859
|
name: "number"
|
|
18179
|
-
},
|
|
18180
|
-
class
|
|
18860
|
+
}, k = (t, e) => [...t.map(L), ...e.map(L)].join("."), L = (t) => typeof t == "string" ? t : JSON.stringify(t);
|
|
18861
|
+
class U {
|
|
18181
18862
|
base;
|
|
18182
18863
|
tiers;
|
|
18183
|
-
constructor(
|
|
18184
|
-
this.base =
|
|
18864
|
+
constructor(e) {
|
|
18865
|
+
this.base = e.base, this.tiers = [...e.tiers].sort((i, a) => i.start - a.start);
|
|
18185
18866
|
}
|
|
18186
18867
|
}
|
|
18187
18868
|
export {
|
|
18188
|
-
|
|
18189
|
-
|
|
18190
|
-
|
|
18191
|
-
|
|
18192
|
-
|
|
18193
|
-
|
|
18194
|
-
|
|
18869
|
+
C as REMOTE_DATA_JSON_URL,
|
|
18870
|
+
U as TieredPrices,
|
|
18871
|
+
j as calcPrice,
|
|
18872
|
+
$ as extractUsage,
|
|
18873
|
+
H as findProvider,
|
|
18874
|
+
F as updatePrices,
|
|
18875
|
+
K as waitForUpdate
|
|
18195
18876
|
};
|