@mate-academy/llm-gateway 8.8.4 → 8.9.0
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/README.md +5 -4
- package/dist/LLMService.constants.d.ts +11707 -4011
- package/dist/providers/LLMAPI/LLMAPI.constants.d.ts +20088 -8544
- package/dist/providers/LLMAPI/LLMAPI.constants.js +2505 -475
- package/dist/providers/LLMAPI/LLMAPI.constants.js.map +1 -1
- package/dist/providers/LLMAPI/LLMAPI.typedefs.d.ts +163 -19
- package/dist/providers/LLMAPI/LLMAPI.typedefs.js +179 -18
- package/dist/providers/LLMAPI/LLMAPI.typedefs.js.map +1 -1
- package/package.json +1 -1
|
@@ -93,6 +93,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
93
93
|
},
|
|
94
94
|
pricing: {
|
|
95
95
|
getPriceForTextInput: (tokens) => 2.5 * tokens / 1_000_000,
|
|
96
|
+
getPriceForCachedTextInput: (tokens) => 1.25 * tokens / 1_000_000,
|
|
96
97
|
getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000,
|
|
97
98
|
getPriceForAudioInput: () => 0,
|
|
98
99
|
getPriceForAudioOutput: () => 0,
|
|
@@ -118,6 +119,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
118
119
|
},
|
|
119
120
|
pricing: {
|
|
120
121
|
getPriceForTextInput: (tokens) => 0.15 * tokens / 1_000_000,
|
|
122
|
+
getPriceForCachedTextInput: (tokens) => 0.075 * tokens / 1_000_000,
|
|
121
123
|
getPriceForTextOutput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
122
124
|
getPriceForAudioInput: () => 0,
|
|
123
125
|
getPriceForAudioOutput: () => 0,
|
|
@@ -398,6 +400,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
398
400
|
},
|
|
399
401
|
pricing: {
|
|
400
402
|
getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000,
|
|
403
|
+
getPriceForCachedTextInput: (tokens) => 0.025 * tokens / 1_000_000,
|
|
401
404
|
getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000,
|
|
402
405
|
getPriceForAudioInput: () => 0,
|
|
403
406
|
getPriceForAudioOutput: () => 0,
|
|
@@ -425,6 +428,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
425
428
|
},
|
|
426
429
|
pricing: {
|
|
427
430
|
getPriceForTextInput: (tokens) => 0.05 * tokens / 1_000_000,
|
|
431
|
+
getPriceForCachedTextInput: (tokens) => 0.005 * tokens / 1_000_000,
|
|
428
432
|
getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000,
|
|
429
433
|
getPriceForAudioInput: () => 0,
|
|
430
434
|
getPriceForAudioOutput: () => 0,
|
|
@@ -450,7 +454,6 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
450
454
|
},
|
|
451
455
|
pricing: {
|
|
452
456
|
getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000,
|
|
453
|
-
getPriceForCachedTextInput: (tokens) => 0.125 * tokens / 1_000_000,
|
|
454
457
|
getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000,
|
|
455
458
|
getPriceForAudioInput: () => 0,
|
|
456
459
|
getPriceForAudioOutput: () => 0,
|
|
@@ -555,7 +558,6 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
555
558
|
},
|
|
556
559
|
pricing: {
|
|
557
560
|
getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000,
|
|
558
|
-
getPriceForCachedTextInput: (tokens) => 0.125 * tokens / 1_000_000,
|
|
559
561
|
getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000,
|
|
560
562
|
getPriceForAudioInput: () => 0,
|
|
561
563
|
getPriceForAudioOutput: () => 0,
|
|
@@ -609,6 +611,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
609
611
|
},
|
|
610
612
|
pricing: {
|
|
611
613
|
getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000,
|
|
614
|
+
getPriceForCachedTextInput: (tokens) => 0.175 * tokens / 1_000_000,
|
|
612
615
|
getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000,
|
|
613
616
|
getPriceForAudioInput: () => 0,
|
|
614
617
|
getPriceForAudioOutput: () => 0,
|
|
@@ -659,6 +662,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
659
662
|
},
|
|
660
663
|
pricing: {
|
|
661
664
|
getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000,
|
|
665
|
+
getPriceForCachedTextInput: (tokens) => 0.175 * tokens / 1_000_000,
|
|
662
666
|
getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000,
|
|
663
667
|
getPriceForAudioInput: () => 0,
|
|
664
668
|
getPriceForAudioOutput: () => 0,
|
|
@@ -684,6 +688,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
684
688
|
},
|
|
685
689
|
pricing: {
|
|
686
690
|
getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000,
|
|
691
|
+
getPriceForCachedTextInput: (tokens) => 0.175 * tokens / 1_000_000,
|
|
687
692
|
getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000,
|
|
688
693
|
getPriceForAudioInput: () => 0,
|
|
689
694
|
getPriceForAudioOutput: () => 0,
|
|
@@ -711,6 +716,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
711
716
|
},
|
|
712
717
|
pricing: {
|
|
713
718
|
getPriceForTextInput: (tokens) => 2.5 * tokens / 1_000_000,
|
|
719
|
+
getPriceForCachedTextInput: (tokens) => 0.25 * tokens / 1_000_000,
|
|
714
720
|
getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
|
|
715
721
|
getPriceForAudioInput: () => 0,
|
|
716
722
|
getPriceForAudioOutput: () => 0,
|
|
@@ -736,6 +742,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
736
742
|
},
|
|
737
743
|
pricing: {
|
|
738
744
|
getPriceForTextInput: (tokens) => 30 * tokens / 1_000_000,
|
|
745
|
+
getPriceForCachedTextInput: (tokens) => 3 * tokens / 1_000_000,
|
|
739
746
|
getPriceForTextOutput: (tokens) => 180 * tokens / 1_000_000,
|
|
740
747
|
getPriceForAudioInput: () => 0,
|
|
741
748
|
getPriceForAudioOutput: () => 0,
|
|
@@ -762,6 +769,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
762
769
|
},
|
|
763
770
|
pricing: {
|
|
764
771
|
getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000,
|
|
772
|
+
getPriceForCachedTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
765
773
|
getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
|
|
766
774
|
getPriceForAudioInput: () => 0,
|
|
767
775
|
getPriceForAudioOutput: () => 0,
|
|
@@ -787,6 +795,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
787
795
|
},
|
|
788
796
|
pricing: {
|
|
789
797
|
getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000,
|
|
798
|
+
getPriceForCachedTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
790
799
|
getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
|
|
791
800
|
getPriceForAudioInput: () => 0,
|
|
792
801
|
getPriceForAudioOutput: () => 0,
|
|
@@ -812,6 +821,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
812
821
|
},
|
|
813
822
|
pricing: {
|
|
814
823
|
getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000,
|
|
824
|
+
getPriceForCachedTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
815
825
|
getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
|
|
816
826
|
getPriceForAudioInput: () => 0,
|
|
817
827
|
getPriceForAudioOutput: () => 0,
|
|
@@ -837,6 +847,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
837
847
|
},
|
|
838
848
|
pricing: {
|
|
839
849
|
getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000,
|
|
850
|
+
getPriceForCachedTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
840
851
|
getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
|
|
841
852
|
getPriceForAudioInput: () => 0,
|
|
842
853
|
getPriceForAudioOutput: () => 0,
|
|
@@ -862,6 +873,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
862
873
|
},
|
|
863
874
|
pricing: {
|
|
864
875
|
getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000,
|
|
876
|
+
getPriceForCachedTextInput: (tokens) => 0.1 * tokens / 1_000_000,
|
|
865
877
|
getPriceForTextOutput: (tokens) => 5 * tokens / 1_000_000,
|
|
866
878
|
getPriceForAudioInput: () => 0,
|
|
867
879
|
getPriceForAudioOutput: () => 0,
|
|
@@ -887,6 +899,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
887
899
|
},
|
|
888
900
|
pricing: {
|
|
889
901
|
getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000,
|
|
902
|
+
getPriceForCachedTextInput: (tokens) => 0.1 * tokens / 1_000_000,
|
|
890
903
|
getPriceForTextOutput: (tokens) => 5 * tokens / 1_000_000,
|
|
891
904
|
getPriceForAudioInput: () => 0,
|
|
892
905
|
getPriceForAudioOutput: () => 0,
|
|
@@ -912,6 +925,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
912
925
|
},
|
|
913
926
|
pricing: {
|
|
914
927
|
getPriceForTextInput: (tokens) => 15 * tokens / 1_000_000,
|
|
928
|
+
getPriceForCachedTextInput: (tokens) => 1.5 * tokens / 1_000_000,
|
|
915
929
|
getPriceForTextOutput: (tokens) => 75 * tokens / 1_000_000,
|
|
916
930
|
getPriceForAudioInput: () => 0,
|
|
917
931
|
getPriceForAudioOutput: () => 0,
|
|
@@ -937,6 +951,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
937
951
|
},
|
|
938
952
|
pricing: {
|
|
939
953
|
getPriceForTextInput: (tokens) => 15 * tokens / 1_000_000,
|
|
954
|
+
getPriceForCachedTextInput: (tokens) => 1.5 * tokens / 1_000_000,
|
|
940
955
|
getPriceForTextOutput: (tokens) => 75 * tokens / 1_000_000,
|
|
941
956
|
getPriceForAudioInput: () => 0,
|
|
942
957
|
getPriceForAudioOutput: () => 0,
|
|
@@ -962,6 +977,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
962
977
|
},
|
|
963
978
|
pricing: {
|
|
964
979
|
getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000,
|
|
980
|
+
getPriceForCachedTextInput: (tokens) => 0.5 * tokens / 1_000_000,
|
|
965
981
|
getPriceForTextOutput: (tokens) => 25 * tokens / 1_000_000,
|
|
966
982
|
getPriceForAudioInput: () => 0,
|
|
967
983
|
getPriceForAudioOutput: () => 0,
|
|
@@ -987,6 +1003,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
987
1003
|
},
|
|
988
1004
|
pricing: {
|
|
989
1005
|
getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000,
|
|
1006
|
+
getPriceForCachedTextInput: (tokens) => 0.5 * tokens / 1_000_000,
|
|
990
1007
|
getPriceForTextOutput: (tokens) => 25 * tokens / 1_000_000,
|
|
991
1008
|
getPriceForAudioInput: () => 0,
|
|
992
1009
|
getPriceForAudioOutput: () => 0,
|
|
@@ -1013,6 +1030,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1013
1030
|
},
|
|
1014
1031
|
pricing: {
|
|
1015
1032
|
getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000,
|
|
1033
|
+
getPriceForCachedTextInput: (tokens) => 0.125 * tokens / 1_000_000,
|
|
1016
1034
|
getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000,
|
|
1017
1035
|
getPriceForAudioInput: () => 0,
|
|
1018
1036
|
getPriceForAudioOutput: () => 0,
|
|
@@ -1038,6 +1056,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1038
1056
|
},
|
|
1039
1057
|
pricing: {
|
|
1040
1058
|
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
1059
|
+
getPriceForCachedTextInput: (tokens) => 0.03 * tokens / 1_000_000,
|
|
1041
1060
|
getPriceForTextOutput: (tokens) => 2.5 * tokens / 1_000_000,
|
|
1042
1061
|
getPriceForAudioInput: () => 0,
|
|
1043
1062
|
getPriceForAudioOutput: () => 0,
|
|
@@ -1063,6 +1082,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1063
1082
|
},
|
|
1064
1083
|
pricing: {
|
|
1065
1084
|
getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000,
|
|
1085
|
+
getPriceForCachedTextInput: (tokens) => 0.01 * tokens / 1_000_000,
|
|
1066
1086
|
getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000,
|
|
1067
1087
|
getPriceForAudioInput: () => 0,
|
|
1068
1088
|
getPriceForAudioOutput: () => 0,
|
|
@@ -1088,6 +1108,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1088
1108
|
},
|
|
1089
1109
|
pricing: {
|
|
1090
1110
|
getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000,
|
|
1111
|
+
getPriceForCachedTextInput: (tokens) => 0.2 * tokens / 1_000_000,
|
|
1091
1112
|
getPriceForTextOutput: (tokens) => 12 * tokens / 1_000_000,
|
|
1092
1113
|
getPriceForAudioInput: () => 0,
|
|
1093
1114
|
getPriceForAudioOutput: () => 0,
|
|
@@ -1113,6 +1134,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1113
1134
|
},
|
|
1114
1135
|
pricing: {
|
|
1115
1136
|
getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000,
|
|
1137
|
+
getPriceForCachedTextInput: (tokens) => 0.05 * tokens / 1_000_000,
|
|
1116
1138
|
getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000,
|
|
1117
1139
|
getPriceForAudioInput: () => 0,
|
|
1118
1140
|
getPriceForAudioOutput: () => 0,
|
|
@@ -1138,6 +1160,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1138
1160
|
},
|
|
1139
1161
|
pricing: {
|
|
1140
1162
|
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
1163
|
+
getPriceForCachedTextInput: (tokens) => 0.03 * tokens / 1_000_000,
|
|
1141
1164
|
getPriceForTextOutput: (tokens) => 30 * tokens / 1_000_000,
|
|
1142
1165
|
getPriceForAudioInput: () => 0,
|
|
1143
1166
|
getPriceForAudioOutput: () => 0,
|
|
@@ -1417,6 +1440,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1417
1440
|
},
|
|
1418
1441
|
pricing: {
|
|
1419
1442
|
getPriceForTextInput: (tokens) => 0.28 * tokens / 1_000_000,
|
|
1443
|
+
getPriceForCachedTextInput: (tokens) => 0.028 * tokens / 1_000_000,
|
|
1420
1444
|
getPriceForTextOutput: (tokens) => 0.42 * tokens / 1_000_000,
|
|
1421
1445
|
getPriceForAudioInput: () => 0,
|
|
1422
1446
|
getPriceForAudioOutput: () => 0,
|
|
@@ -1694,6 +1718,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1694
1718
|
},
|
|
1695
1719
|
pricing: {
|
|
1696
1720
|
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
1721
|
+
getPriceForCachedTextInput: (tokens) => 0.03 * tokens / 1_000_000,
|
|
1697
1722
|
getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000,
|
|
1698
1723
|
getPriceForAudioInput: () => 0,
|
|
1699
1724
|
getPriceForAudioOutput: () => 0,
|
|
@@ -1719,6 +1744,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1719
1744
|
},
|
|
1720
1745
|
pricing: {
|
|
1721
1746
|
getPriceForTextInput: (tokens) => 0.2 * tokens / 1_000_000,
|
|
1747
|
+
getPriceForCachedTextInput: (tokens) => 0.03 * tokens / 1_000_000,
|
|
1722
1748
|
getPriceForTextOutput: (tokens) => 1 * tokens / 1_000_000,
|
|
1723
1749
|
getPriceForAudioInput: () => 0,
|
|
1724
1750
|
getPriceForAudioOutput: () => 0,
|
|
@@ -1820,6 +1846,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1820
1846
|
},
|
|
1821
1847
|
pricing: {
|
|
1822
1848
|
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
1849
|
+
getPriceForCachedTextInput: (tokens) => 0.1 * tokens / 1_000_000,
|
|
1823
1850
|
getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000,
|
|
1824
1851
|
getPriceForAudioInput: () => 0,
|
|
1825
1852
|
getPriceForAudioOutput: () => 0,
|
|
@@ -1896,6 +1923,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1896
1923
|
},
|
|
1897
1924
|
pricing: {
|
|
1898
1925
|
getPriceForTextInput: (tokens) => 0.4 * tokens / 1_000_000,
|
|
1926
|
+
getPriceForCachedTextInput: (tokens) => 0.08 * tokens / 1_000_000,
|
|
1899
1927
|
getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000,
|
|
1900
1928
|
getPriceForAudioInput: () => 0,
|
|
1901
1929
|
getPriceForAudioOutput: () => 0,
|
|
@@ -1921,6 +1949,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1921
1949
|
},
|
|
1922
1950
|
pricing: {
|
|
1923
1951
|
getPriceForTextInput: (tokens) => 0.4 * tokens / 1_000_000,
|
|
1952
|
+
getPriceForCachedTextInput: (tokens) => 0.08 * tokens / 1_000_000,
|
|
1924
1953
|
getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000,
|
|
1925
1954
|
getPriceForAudioInput: () => 0,
|
|
1926
1955
|
getPriceForAudioOutput: () => 0,
|
|
@@ -1946,6 +1975,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1946
1975
|
},
|
|
1947
1976
|
pricing: {
|
|
1948
1977
|
getPriceForTextInput: (tokens) => 0.05 * tokens / 1_000_000,
|
|
1978
|
+
getPriceForCachedTextInput: (tokens) => 0.01 * tokens / 1_000_000,
|
|
1949
1979
|
getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000,
|
|
1950
1980
|
getPriceForAudioInput: () => 0,
|
|
1951
1981
|
getPriceForAudioOutput: () => 0,
|
|
@@ -2121,6 +2151,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2121
2151
|
},
|
|
2122
2152
|
pricing: {
|
|
2123
2153
|
getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000,
|
|
2154
|
+
getPriceForCachedTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
2124
2155
|
getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
|
|
2125
2156
|
getPriceForAudioInput: () => 0,
|
|
2126
2157
|
getPriceForAudioOutput: () => 0,
|
|
@@ -2146,6 +2177,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2146
2177
|
},
|
|
2147
2178
|
pricing: {
|
|
2148
2179
|
getPriceForTextInput: (tokens) => 1.2 * tokens / 1_000_000,
|
|
2180
|
+
getPriceForCachedTextInput: (tokens) => 0.24 * tokens / 1_000_000,
|
|
2149
2181
|
getPriceForTextOutput: (tokens) => 6 * tokens / 1_000_000,
|
|
2150
2182
|
getPriceForAudioInput: () => 0,
|
|
2151
2183
|
getPriceForAudioOutput: () => 0,
|
|
@@ -2421,6 +2453,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2421
2453
|
},
|
|
2422
2454
|
pricing: {
|
|
2423
2455
|
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
2456
|
+
getPriceForCachedTextInput: (tokens) => 0.06 * tokens / 1_000_000,
|
|
2424
2457
|
getPriceForTextOutput: (tokens) => 1.5 * tokens / 1_000_000,
|
|
2425
2458
|
getPriceForAudioInput: () => 0,
|
|
2426
2459
|
getPriceForAudioOutput: () => 0,
|
|
@@ -2496,6 +2529,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2496
2529
|
},
|
|
2497
2530
|
pricing: {
|
|
2498
2531
|
getPriceForTextInput: (tokens) => 0.2 * tokens / 1_000_000,
|
|
2532
|
+
getPriceForCachedTextInput: (tokens) => 0.04 * tokens / 1_000_000,
|
|
2499
2533
|
getPriceForTextOutput: (tokens) => 1.6 * tokens / 1_000_000,
|
|
2500
2534
|
getPriceForAudioInput: () => 0,
|
|
2501
2535
|
getPriceForAudioOutput: () => 0,
|
|
@@ -2521,6 +2555,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2521
2555
|
},
|
|
2522
2556
|
pricing: {
|
|
2523
2557
|
getPriceForTextInput: (tokens) => 0.05 * tokens / 1_000_000,
|
|
2558
|
+
getPriceForCachedTextInput: (tokens) => 0.01 * tokens / 1_000_000,
|
|
2524
2559
|
getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000,
|
|
2525
2560
|
getPriceForAudioInput: () => 0,
|
|
2526
2561
|
getPriceForAudioOutput: () => 0,
|
|
@@ -2672,6 +2707,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2672
2707
|
},
|
|
2673
2708
|
pricing: {
|
|
2674
2709
|
getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000,
|
|
2710
|
+
getPriceForCachedTextInput: (tokens) => 0.2 * tokens / 1_000_000,
|
|
2675
2711
|
getPriceForTextOutput: (tokens) => 3.2 * tokens / 1_000_000,
|
|
2676
2712
|
getPriceForAudioInput: () => 0,
|
|
2677
2713
|
getPriceForAudioOutput: () => 0,
|
|
@@ -2697,6 +2733,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2697
2733
|
},
|
|
2698
2734
|
pricing: {
|
|
2699
2735
|
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
2736
|
+
getPriceForCachedTextInput: (tokens) => 0.11 * tokens / 1_000_000,
|
|
2700
2737
|
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
2701
2738
|
getPriceForAudioInput: () => 0,
|
|
2702
2739
|
getPriceForAudioOutput: () => 0,
|
|
@@ -2722,6 +2759,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2722
2759
|
},
|
|
2723
2760
|
pricing: {
|
|
2724
2761
|
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
2762
|
+
getPriceForCachedTextInput: (tokens) => 0.11 * tokens / 1_000_000,
|
|
2725
2763
|
getPriceForTextOutput: (tokens) => 1.8 * tokens / 1_000_000,
|
|
2726
2764
|
getPriceForAudioInput: () => 0,
|
|
2727
2765
|
getPriceForAudioOutput: () => 0,
|
|
@@ -2747,6 +2785,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2747
2785
|
},
|
|
2748
2786
|
pricing: {
|
|
2749
2787
|
getPriceForTextInput: (tokens) => 0.2 * tokens / 1_000_000,
|
|
2788
|
+
getPriceForCachedTextInput: (tokens) => 0.03 * tokens / 1_000_000,
|
|
2750
2789
|
getPriceForTextOutput: (tokens) => 1.1 * tokens / 1_000_000,
|
|
2751
2790
|
getPriceForAudioInput: () => 0,
|
|
2752
2791
|
getPriceForAudioOutput: () => 0,
|
|
@@ -2772,6 +2811,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2772
2811
|
},
|
|
2773
2812
|
pricing: {
|
|
2774
2813
|
getPriceForTextInput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
2814
|
+
getPriceForCachedTextInput: (tokens) => 0.45 * tokens / 1_000_000,
|
|
2775
2815
|
getPriceForTextOutput: (tokens) => 8.9 * tokens / 1_000_000,
|
|
2776
2816
|
getPriceForAudioInput: () => 0,
|
|
2777
2817
|
getPriceForAudioOutput: () => 0,
|
|
@@ -2797,6 +2837,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2797
2837
|
},
|
|
2798
2838
|
pricing: {
|
|
2799
2839
|
getPriceForTextInput: (tokens) => 1.1 * tokens / 1_000_000,
|
|
2840
|
+
getPriceForCachedTextInput: (tokens) => 0.22 * tokens / 1_000_000,
|
|
2800
2841
|
getPriceForTextOutput: (tokens) => 4.5 * tokens / 1_000_000,
|
|
2801
2842
|
getPriceForAudioInput: () => 0,
|
|
2802
2843
|
getPriceForAudioOutput: () => 0,
|
|
@@ -2822,6 +2863,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2822
2863
|
},
|
|
2823
2864
|
pricing: {
|
|
2824
2865
|
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
2866
|
+
getPriceForCachedTextInput: (tokens) => 0.11 * tokens / 1_000_000,
|
|
2825
2867
|
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
2826
2868
|
getPriceForAudioInput: () => 0,
|
|
2827
2869
|
getPriceForAudioOutput: () => 0,
|
|
@@ -2847,6 +2889,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2847
2889
|
},
|
|
2848
2890
|
pricing: {
|
|
2849
2891
|
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
2892
|
+
getPriceForCachedTextInput: (tokens) => 0.055 * tokens / 1_000_000,
|
|
2850
2893
|
getPriceForTextOutput: (tokens) => 0.9 * tokens / 1_000_000,
|
|
2851
2894
|
getPriceForAudioInput: () => 0,
|
|
2852
2895
|
getPriceForAudioOutput: () => 0,
|
|
@@ -2872,6 +2915,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2872
2915
|
},
|
|
2873
2916
|
pricing: {
|
|
2874
2917
|
getPriceForTextInput: (tokens) => 0.04 * tokens / 1_000_000,
|
|
2918
|
+
getPriceForCachedTextInput: (tokens) => 0.004 * tokens / 1_000_000,
|
|
2875
2919
|
getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000,
|
|
2876
2920
|
getPriceForAudioInput: () => 0,
|
|
2877
2921
|
getPriceForAudioOutput: () => 0,
|
|
@@ -2897,6 +2941,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2897
2941
|
},
|
|
2898
2942
|
pricing: {
|
|
2899
2943
|
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
2944
|
+
getPriceForCachedTextInput: (tokens) => 0.11 * tokens / 1_000_000,
|
|
2900
2945
|
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
2901
2946
|
getPriceForAudioInput: () => 0,
|
|
2902
2947
|
getPriceForAudioOutput: () => 0,
|
|
@@ -2922,6 +2967,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2922
2967
|
},
|
|
2923
2968
|
pricing: {
|
|
2924
2969
|
getPriceForTextInput: (tokens) => 0.07 * tokens / 1_000_000,
|
|
2970
|
+
getPriceForCachedTextInput: (tokens) => 0.01 * tokens / 1_000_000,
|
|
2925
2971
|
getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000,
|
|
2926
2972
|
getPriceForAudioInput: () => 0,
|
|
2927
2973
|
getPriceForAudioOutput: () => 0,
|
|
@@ -2973,6 +3019,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2973
3019
|
},
|
|
2974
3020
|
pricing: {
|
|
2975
3021
|
getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000,
|
|
3022
|
+
getPriceForCachedTextInput: (tokens) => 0.175 * tokens / 1_000_000,
|
|
2976
3023
|
getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000,
|
|
2977
3024
|
getPriceForAudioInput: () => 0,
|
|
2978
3025
|
getPriceForAudioOutput: () => 0,
|
|
@@ -2998,6 +3045,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2998
3045
|
},
|
|
2999
3046
|
pricing: {
|
|
3000
3047
|
getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000,
|
|
3048
|
+
getPriceForCachedTextInput: (tokens) => 0.175 * tokens / 1_000_000,
|
|
3001
3049
|
getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000,
|
|
3002
3050
|
getPriceForAudioInput: () => 0,
|
|
3003
3051
|
getPriceForAudioOutput: () => 0,
|
|
@@ -3023,6 +3071,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3023
3071
|
},
|
|
3024
3072
|
pricing: {
|
|
3025
3073
|
getPriceForTextInput: (tokens) => 0.75 * tokens / 1_000_000,
|
|
3074
|
+
getPriceForCachedTextInput: (tokens) => 0.07 * tokens / 1_000_000,
|
|
3026
3075
|
getPriceForTextOutput: (tokens) => 4.5 * tokens / 1_000_000,
|
|
3027
3076
|
getPriceForAudioInput: () => 0,
|
|
3028
3077
|
getPriceForAudioOutput: () => 0,
|
|
@@ -3048,6 +3097,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3048
3097
|
},
|
|
3049
3098
|
pricing: {
|
|
3050
3099
|
getPriceForTextInput: (tokens) => 0.2 * tokens / 1_000_000,
|
|
3100
|
+
getPriceForCachedTextInput: (tokens) => 0.02 * tokens / 1_000_000,
|
|
3051
3101
|
getPriceForTextOutput: (tokens) => 1.25 * tokens / 1_000_000,
|
|
3052
3102
|
getPriceForAudioInput: () => 0,
|
|
3053
3103
|
getPriceForAudioOutput: () => 0,
|
|
@@ -3073,6 +3123,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3073
3123
|
},
|
|
3074
3124
|
pricing: {
|
|
3075
3125
|
getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000,
|
|
3126
|
+
getPriceForCachedTextInput: (tokens) => 0.125 * tokens / 1_000_000,
|
|
3076
3127
|
getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000,
|
|
3077
3128
|
getPriceForAudioInput: () => 0,
|
|
3078
3129
|
getPriceForAudioOutput: () => 0,
|
|
@@ -3103,6 +3154,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3103
3154
|
},
|
|
3104
3155
|
pricing: {
|
|
3105
3156
|
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
3157
|
+
getPriceForCachedTextInput: (tokens) => 0.1 * tokens / 1_000_000,
|
|
3106
3158
|
getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000,
|
|
3107
3159
|
getPriceForAudioInput: () => 0,
|
|
3108
3160
|
getPriceForAudioOutput: () => 0,
|
|
@@ -3129,6 +3181,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3129
3181
|
},
|
|
3130
3182
|
pricing: {
|
|
3131
3183
|
getPriceForTextInput: (tokens) => 0.108 * tokens / 1_000_000,
|
|
3184
|
+
getPriceForCachedTextInput: (tokens) => 0.06 * tokens / 1_000_000,
|
|
3132
3185
|
getPriceForTextOutput: (tokens) => 0.675 * tokens / 1_000_000,
|
|
3133
3186
|
getPriceForAudioInput: () => 0,
|
|
3134
3187
|
getPriceForAudioOutput: () => 0,
|
|
@@ -3255,6 +3308,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3255
3308
|
},
|
|
3256
3309
|
pricing: {
|
|
3257
3310
|
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
3311
|
+
getPriceForCachedTextInput: (tokens) => 0.11 * tokens / 1_000_000,
|
|
3258
3312
|
getPriceForTextOutput: (tokens) => 1.8 * tokens / 1_000_000,
|
|
3259
3313
|
getPriceForAudioInput: () => 0,
|
|
3260
3314
|
getPriceForAudioOutput: () => 0,
|
|
@@ -3280,6 +3334,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3280
3334
|
},
|
|
3281
3335
|
pricing: {
|
|
3282
3336
|
getPriceForTextInput: (tokens) => 0.13 * tokens / 1_000_000,
|
|
3337
|
+
getPriceForCachedTextInput: (tokens) => 0.03 * tokens / 1_000_000,
|
|
3283
3338
|
getPriceForTextOutput: (tokens) => 0.85 * tokens / 1_000_000,
|
|
3284
3339
|
getPriceForAudioInput: () => 0,
|
|
3285
3340
|
getPriceForAudioOutput: () => 0,
|
|
@@ -3305,6 +3360,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3305
3360
|
},
|
|
3306
3361
|
pricing: {
|
|
3307
3362
|
getPriceForTextInput: (tokens) => 0.2 * tokens / 1_000_000,
|
|
3363
|
+
getPriceForCachedTextInput: (tokens) => 0.03 * tokens / 1_000_000,
|
|
3308
3364
|
getPriceForTextOutput: (tokens) => 1.1 * tokens / 1_000_000,
|
|
3309
3365
|
getPriceForAudioInput: () => 0,
|
|
3310
3366
|
getPriceForAudioOutput: () => 0,
|
|
@@ -3330,6 +3386,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3330
3386
|
},
|
|
3331
3387
|
pricing: {
|
|
3332
3388
|
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
3389
|
+
getPriceForCachedTextInput: (tokens) => 0.11 * tokens / 1_000_000,
|
|
3333
3390
|
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
3334
3391
|
getPriceForAudioInput: () => 0,
|
|
3335
3392
|
getPriceForAudioOutput: () => 0,
|
|
@@ -3355,6 +3412,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3355
3412
|
},
|
|
3356
3413
|
pricing: {
|
|
3357
3414
|
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
3415
|
+
getPriceForCachedTextInput: (tokens) => 0.11 * tokens / 1_000_000,
|
|
3358
3416
|
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
3359
3417
|
getPriceForAudioInput: () => 0,
|
|
3360
3418
|
getPriceForAudioOutput: () => 0,
|
|
@@ -3380,6 +3438,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3380
3438
|
},
|
|
3381
3439
|
pricing: {
|
|
3382
3440
|
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
3441
|
+
getPriceForCachedTextInput: (tokens) => 0.055 * tokens / 1_000_000,
|
|
3383
3442
|
getPriceForTextOutput: (tokens) => 0.9 * tokens / 1_000_000,
|
|
3384
3443
|
getPriceForAudioInput: () => 0,
|
|
3385
3444
|
getPriceForAudioOutput: () => 0,
|
|
@@ -3405,6 +3464,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3405
3464
|
},
|
|
3406
3465
|
pricing: {
|
|
3407
3466
|
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
3467
|
+
getPriceForCachedTextInput: (tokens) => 0.11 * tokens / 1_000_000,
|
|
3408
3468
|
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
3409
3469
|
getPriceForAudioInput: () => 0,
|
|
3410
3470
|
getPriceForAudioOutput: () => 0,
|
|
@@ -3430,6 +3490,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3430
3490
|
},
|
|
3431
3491
|
pricing: {
|
|
3432
3492
|
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
3493
|
+
getPriceForCachedTextInput: (tokens) => 0.11 * tokens / 1_000_000,
|
|
3433
3494
|
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
3434
3495
|
getPriceForAudioInput: () => 0,
|
|
3435
3496
|
getPriceForAudioOutput: () => 0,
|
|
@@ -3455,6 +3516,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3455
3516
|
},
|
|
3456
3517
|
pricing: {
|
|
3457
3518
|
getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000,
|
|
3519
|
+
getPriceForCachedTextInput: (tokens) => 0.2 * tokens / 1_000_000,
|
|
3458
3520
|
getPriceForTextOutput: (tokens) => 3.2 * tokens / 1_000_000,
|
|
3459
3521
|
getPriceForAudioInput: () => 0,
|
|
3460
3522
|
getPriceForAudioOutput: () => 0,
|
|
@@ -3516,7 +3578,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3516
3578
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI_OPENAI,
|
|
3517
3579
|
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
3518
3580
|
config: { temperature: 1, reasoning_effort: 'minimal', verbosity: 'medium' },
|
|
3519
|
-
pricing: { getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3581
|
+
pricing: { getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.025 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3520
3582
|
capabilities: {
|
|
3521
3583
|
vision: true,
|
|
3522
3584
|
tools: true,
|
|
@@ -3530,7 +3592,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3530
3592
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI_AZURE,
|
|
3531
3593
|
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
3532
3594
|
config: { temperature: 1, reasoning_effort: 'minimal', verbosity: 'medium' },
|
|
3533
|
-
pricing: { getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3595
|
+
pricing: { getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.025 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3534
3596
|
capabilities: {
|
|
3535
3597
|
vision: true,
|
|
3536
3598
|
tools: true,
|
|
@@ -3544,7 +3606,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3544
3606
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO_OPENAI,
|
|
3545
3607
|
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
3546
3608
|
config: { temperature: 1, reasoning_effort: 'minimal', verbosity: 'medium' },
|
|
3547
|
-
pricing: { getPriceForTextInput: (tokens) => 0.05 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3609
|
+
pricing: { getPriceForTextInput: (tokens) => 0.05 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.005 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3548
3610
|
capabilities: {
|
|
3549
3611
|
vision: false,
|
|
3550
3612
|
tools: true,
|
|
@@ -3558,7 +3620,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3558
3620
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO_AZURE,
|
|
3559
3621
|
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
3560
3622
|
config: { temperature: 1, reasoning_effort: 'minimal', verbosity: 'medium' },
|
|
3561
|
-
pricing: { getPriceForTextInput: (tokens) => 0.05 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3623
|
+
pricing: { getPriceForTextInput: (tokens) => 0.05 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.005 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3562
3624
|
capabilities: {
|
|
3563
3625
|
vision: false,
|
|
3564
3626
|
tools: true,
|
|
@@ -3644,7 +3706,6 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3644
3706
|
config: { temperature: 1 },
|
|
3645
3707
|
pricing: {
|
|
3646
3708
|
getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000,
|
|
3647
|
-
getPriceForCachedTextInput: (tokens) => 0.125 * tokens / 1_000_000,
|
|
3648
3709
|
getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000,
|
|
3649
3710
|
getPriceForAudioInput: () => 0,
|
|
3650
3711
|
getPriceForAudioOutput: () => 0,
|
|
@@ -3665,7 +3726,6 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3665
3726
|
config: { temperature: 1 },
|
|
3666
3727
|
pricing: {
|
|
3667
3728
|
getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000,
|
|
3668
|
-
getPriceForCachedTextInput: (tokens) => 0.125 * tokens / 1_000_000,
|
|
3669
3729
|
getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000,
|
|
3670
3730
|
getPriceForAudioInput: () => 0,
|
|
3671
3731
|
getPriceForAudioOutput: () => 0,
|
|
@@ -3726,7 +3786,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3726
3786
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_OPENAI,
|
|
3727
3787
|
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
3728
3788
|
config: { temperature: 1, reasoning_effort: 'none', verbosity: 'medium' },
|
|
3729
|
-
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3789
|
+
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.175 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3730
3790
|
capabilities: {
|
|
3731
3791
|
vision: true,
|
|
3732
3792
|
tools: true,
|
|
@@ -3740,7 +3800,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3740
3800
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_AZURE,
|
|
3741
3801
|
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
3742
3802
|
config: { temperature: 1, reasoning_effort: 'none', verbosity: 'medium' },
|
|
3743
|
-
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3803
|
+
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.175 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3744
3804
|
capabilities: {
|
|
3745
3805
|
vision: true,
|
|
3746
3806
|
tools: true,
|
|
@@ -3754,7 +3814,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3754
3814
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX_OPENAI,
|
|
3755
3815
|
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
3756
3816
|
config: { temperature: 1 },
|
|
3757
|
-
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3817
|
+
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.175 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3758
3818
|
capabilities: {
|
|
3759
3819
|
vision: true,
|
|
3760
3820
|
tools: true,
|
|
@@ -3768,7 +3828,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3768
3828
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX_AZURE,
|
|
3769
3829
|
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
3770
3830
|
config: { temperature: 1 },
|
|
3771
|
-
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3831
|
+
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.175 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3772
3832
|
capabilities: {
|
|
3773
3833
|
vision: true,
|
|
3774
3834
|
tools: true,
|
|
@@ -3782,7 +3842,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3782
3842
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX_OPENAI,
|
|
3783
3843
|
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
3784
3844
|
config: { temperature: 1 },
|
|
3785
|
-
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3845
|
+
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.175 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3786
3846
|
capabilities: {
|
|
3787
3847
|
vision: true,
|
|
3788
3848
|
tools: true,
|
|
@@ -3796,7 +3856,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3796
3856
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX_AZURE,
|
|
3797
3857
|
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
3798
3858
|
config: { temperature: 1 },
|
|
3799
|
-
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3859
|
+
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.175 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3800
3860
|
capabilities: {
|
|
3801
3861
|
vision: true,
|
|
3802
3862
|
tools: true,
|
|
@@ -3810,7 +3870,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3810
3870
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_OPENAI,
|
|
3811
3871
|
limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
|
|
3812
3872
|
config: { temperature: 1, reasoning_effort: 'none', verbosity: 'medium' },
|
|
3813
|
-
pricing: { getPriceForTextInput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3873
|
+
pricing: { getPriceForTextInput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3814
3874
|
capabilities: {
|
|
3815
3875
|
vision: true,
|
|
3816
3876
|
tools: true,
|
|
@@ -3824,7 +3884,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3824
3884
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_AZURE,
|
|
3825
3885
|
limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
|
|
3826
3886
|
config: { temperature: 1, reasoning_effort: 'none', verbosity: 'medium' },
|
|
3827
|
-
pricing: { getPriceForTextInput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3887
|
+
pricing: { getPriceForTextInput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3828
3888
|
capabilities: {
|
|
3829
3889
|
vision: true,
|
|
3830
3890
|
tools: true,
|
|
@@ -3838,7 +3898,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3838
3898
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO_OPENAI,
|
|
3839
3899
|
limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
|
|
3840
3900
|
config: { temperature: 1 },
|
|
3841
|
-
pricing: { getPriceForTextInput: (tokens) => 30 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 180 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3901
|
+
pricing: { getPriceForTextInput: (tokens) => 30 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 180 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3842
3902
|
capabilities: {
|
|
3843
3903
|
vision: true,
|
|
3844
3904
|
tools: true,
|
|
@@ -3852,7 +3912,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3852
3912
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO_AZURE,
|
|
3853
3913
|
limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
|
|
3854
3914
|
config: { temperature: 1 },
|
|
3855
|
-
pricing: { getPriceForTextInput: (tokens) => 30 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 180 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3915
|
+
pricing: { getPriceForTextInput: (tokens) => 30 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 180 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3856
3916
|
capabilities: {
|
|
3857
3917
|
vision: true,
|
|
3858
3918
|
tools: true,
|
|
@@ -3867,7 +3927,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3867
3927
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_PRO_GOOGLE_AI_STUDIO,
|
|
3868
3928
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
3869
3929
|
config: { temperature: 0.2 },
|
|
3870
|
-
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3930
|
+
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.125 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3871
3931
|
capabilities: {
|
|
3872
3932
|
vision: true,
|
|
3873
3933
|
tools: true,
|
|
@@ -3881,7 +3941,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3881
3941
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_PRO_GOOGLE_VERTEX,
|
|
3882
3942
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
3883
3943
|
config: { temperature: 0.2 },
|
|
3884
|
-
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3944
|
+
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.125 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3885
3945
|
capabilities: {
|
|
3886
3946
|
vision: true,
|
|
3887
3947
|
tools: true,
|
|
@@ -3895,7 +3955,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3895
3955
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_GOOGLE_AI_STUDIO,
|
|
3896
3956
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
3897
3957
|
config: { temperature: 0.2 },
|
|
3898
|
-
pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3958
|
+
pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.03 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3899
3959
|
capabilities: {
|
|
3900
3960
|
vision: true,
|
|
3901
3961
|
tools: true,
|
|
@@ -3909,7 +3969,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3909
3969
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_GOOGLE_VERTEX,
|
|
3910
3970
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
3911
3971
|
config: { temperature: 0.2 },
|
|
3912
|
-
pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3972
|
+
pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.03 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3913
3973
|
capabilities: {
|
|
3914
3974
|
vision: true,
|
|
3915
3975
|
tools: true,
|
|
@@ -3923,7 +3983,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3923
3983
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_GOOGLE_AI_STUDIO,
|
|
3924
3984
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
3925
3985
|
config: { temperature: 0.2 },
|
|
3926
|
-
pricing: { getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3986
|
+
pricing: { getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.01 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3927
3987
|
capabilities: {
|
|
3928
3988
|
vision: true,
|
|
3929
3989
|
tools: true,
|
|
@@ -3937,7 +3997,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3937
3997
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_GOOGLE_VERTEX,
|
|
3938
3998
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
3939
3999
|
config: { temperature: 0.2 },
|
|
3940
|
-
pricing: { getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
4000
|
+
pricing: { getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.01 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3941
4001
|
capabilities: {
|
|
3942
4002
|
vision: true,
|
|
3943
4003
|
tools: true,
|
|
@@ -3951,7 +4011,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3951
4011
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW_GOOGLE_AI_STUDIO,
|
|
3952
4012
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
3953
4013
|
config: { temperature: 0.2 },
|
|
3954
|
-
pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 12 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
4014
|
+
pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 12 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3955
4015
|
capabilities: {
|
|
3956
4016
|
vision: true,
|
|
3957
4017
|
tools: true,
|
|
@@ -3965,7 +4025,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3965
4025
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW_GOOGLE_VERTEX,
|
|
3966
4026
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
3967
4027
|
config: { temperature: 0.2 },
|
|
3968
|
-
pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 12 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
4028
|
+
pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 12 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3969
4029
|
capabilities: {
|
|
3970
4030
|
vision: true,
|
|
3971
4031
|
tools: true,
|
|
@@ -3979,7 +4039,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3979
4039
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW_GOOGLE_AI_STUDIO,
|
|
3980
4040
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
3981
4041
|
config: { temperature: 0.2 },
|
|
3982
|
-
pricing: { getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
4042
|
+
pricing: { getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.05 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3983
4043
|
capabilities: {
|
|
3984
4044
|
vision: true,
|
|
3985
4045
|
tools: true,
|
|
@@ -3993,7 +4053,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3993
4053
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW_GOOGLE_VERTEX,
|
|
3994
4054
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
3995
4055
|
config: { temperature: 0.2 },
|
|
3996
|
-
pricing: { getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
4056
|
+
pricing: { getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.05 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
3997
4057
|
capabilities: {
|
|
3998
4058
|
vision: true,
|
|
3999
4059
|
tools: true,
|
|
@@ -4007,7 +4067,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4007
4067
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE_GOOGLE_AI_STUDIO,
|
|
4008
4068
|
limits: { maxInputTokens: 32_768, maxOutputTokens: 65_536 },
|
|
4009
4069
|
config: { temperature: 0.2 },
|
|
4010
|
-
pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 30 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
4070
|
+
pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.03 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 30 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
4011
4071
|
capabilities: {
|
|
4012
4072
|
vision: true,
|
|
4013
4073
|
tools: false,
|
|
@@ -4021,7 +4081,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4021
4081
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE_GOOGLE_VERTEX,
|
|
4022
4082
|
limits: { maxInputTokens: 32_768, maxOutputTokens: 65_536 },
|
|
4023
4083
|
config: { temperature: 0.2 },
|
|
4024
|
-
pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 30 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
4084
|
+
pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.03 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 30 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
4025
4085
|
capabilities: {
|
|
4026
4086
|
vision: true,
|
|
4027
4087
|
tools: false,
|
|
@@ -4036,7 +4096,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4036
4096
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_MAX_PREVIEW_ALIBABA,
|
|
4037
4097
|
limits: { maxInputTokens: 262_144, maxOutputTokens: 32_768 },
|
|
4038
4098
|
config: { temperature: 0.2 },
|
|
4039
|
-
pricing: { getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
4099
|
+
pricing: { getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.6 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
4040
4100
|
capabilities: {
|
|
4041
4101
|
vision: true,
|
|
4042
4102
|
tools: true,
|
|
@@ -4057,6 +4117,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4057
4117
|
},
|
|
4058
4118
|
pricing: {
|
|
4059
4119
|
getPriceForTextInput: (tokens) => 15 * tokens / 1_000_000,
|
|
4120
|
+
getPriceForCachedTextInput: (tokens) => 1.5 * tokens / 1_000_000,
|
|
4060
4121
|
getPriceForTextOutput: (tokens) => 75 * tokens / 1_000_000,
|
|
4061
4122
|
getPriceForAudioInput: () => 0,
|
|
4062
4123
|
getPriceForAudioOutput: () => 0,
|
|
@@ -4082,6 +4143,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4082
4143
|
},
|
|
4083
4144
|
pricing: {
|
|
4084
4145
|
getPriceForTextInput: (tokens) => 15 * tokens / 1_000_000,
|
|
4146
|
+
getPriceForCachedTextInput: (tokens) => 1.5 * tokens / 1_000_000,
|
|
4085
4147
|
getPriceForTextOutput: (tokens) => 75 * tokens / 1_000_000,
|
|
4086
4148
|
getPriceForAudioInput: () => 0,
|
|
4087
4149
|
getPriceForAudioOutput: () => 0,
|
|
@@ -4107,6 +4169,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4107
4169
|
},
|
|
4108
4170
|
pricing: {
|
|
4109
4171
|
getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000,
|
|
4172
|
+
getPriceForCachedTextInput: (tokens) => 0.5 * tokens / 1_000_000,
|
|
4110
4173
|
getPriceForTextOutput: (tokens) => 25 * tokens / 1_000_000,
|
|
4111
4174
|
getPriceForAudioInput: () => 0,
|
|
4112
4175
|
getPriceForAudioOutput: () => 0,
|
|
@@ -4132,6 +4195,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4132
4195
|
},
|
|
4133
4196
|
pricing: {
|
|
4134
4197
|
getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000,
|
|
4198
|
+
getPriceForCachedTextInput: (tokens) => 0.5 * tokens / 1_000_000,
|
|
4135
4199
|
getPriceForTextOutput: (tokens) => 25 * tokens / 1_000_000,
|
|
4136
4200
|
getPriceForAudioInput: () => 0,
|
|
4137
4201
|
getPriceForAudioOutput: () => 0,
|
|
@@ -4146,31 +4210,6 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4146
4210
|
structuredOutputs: true,
|
|
4147
4211
|
},
|
|
4148
4212
|
},
|
|
4149
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_20250514_ANTHROPIC]: {
|
|
4150
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_20250514_ANTHROPIC,
|
|
4151
|
-
limits: {
|
|
4152
|
-
maxInputTokens: 200_000,
|
|
4153
|
-
maxOutputTokens: 32_768,
|
|
4154
|
-
},
|
|
4155
|
-
config: {
|
|
4156
|
-
temperature: 0.2,
|
|
4157
|
-
},
|
|
4158
|
-
pricing: {
|
|
4159
|
-
getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000,
|
|
4160
|
-
getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
|
|
4161
|
-
getPriceForAudioInput: () => 0,
|
|
4162
|
-
getPriceForAudioOutput: () => 0,
|
|
4163
|
-
currency: 'USD',
|
|
4164
|
-
},
|
|
4165
|
-
capabilities: {
|
|
4166
|
-
vision: false,
|
|
4167
|
-
tools: true,
|
|
4168
|
-
reasoning: true,
|
|
4169
|
-
webSearch: true,
|
|
4170
|
-
jsonOutput: false,
|
|
4171
|
-
structuredOutputs: false,
|
|
4172
|
-
},
|
|
4173
|
-
},
|
|
4174
4213
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_5_ANTHROPIC]: {
|
|
4175
4214
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_5_ANTHROPIC,
|
|
4176
4215
|
limits: {
|
|
@@ -4182,6 +4221,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4182
4221
|
},
|
|
4183
4222
|
pricing: {
|
|
4184
4223
|
getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000,
|
|
4224
|
+
getPriceForCachedTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
4185
4225
|
getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
|
|
4186
4226
|
getPriceForAudioInput: () => 0,
|
|
4187
4227
|
getPriceForAudioOutput: () => 0,
|
|
@@ -4207,6 +4247,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4207
4247
|
},
|
|
4208
4248
|
pricing: {
|
|
4209
4249
|
getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000,
|
|
4250
|
+
getPriceForCachedTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
4210
4251
|
getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
|
|
4211
4252
|
getPriceForAudioInput: () => 0,
|
|
4212
4253
|
getPriceForAudioOutput: () => 0,
|
|
@@ -4232,6 +4273,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4232
4273
|
},
|
|
4233
4274
|
pricing: {
|
|
4234
4275
|
getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000,
|
|
4276
|
+
getPriceForCachedTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
4235
4277
|
getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
|
|
4236
4278
|
getPriceForAudioInput: () => 0,
|
|
4237
4279
|
getPriceForAudioOutput: () => 0,
|
|
@@ -4271,6 +4313,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4271
4313
|
},
|
|
4272
4314
|
pricing: {
|
|
4273
4315
|
getPriceForTextInput: (tokens) => 15 * tokens / 1_000_000,
|
|
4316
|
+
getPriceForCachedTextInput: (tokens) => 1.5 * tokens / 1_000_000,
|
|
4274
4317
|
getPriceForTextOutput: (tokens) => 75 * tokens / 1_000_000,
|
|
4275
4318
|
getPriceForAudioInput: () => 0,
|
|
4276
4319
|
getPriceForAudioOutput: () => 0,
|
|
@@ -4296,6 +4339,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4296
4339
|
},
|
|
4297
4340
|
pricing: {
|
|
4298
4341
|
getPriceForTextInput: (tokens) => 15 * tokens / 1_000_000,
|
|
4342
|
+
getPriceForCachedTextInput: (tokens) => 1.5 * tokens / 1_000_000,
|
|
4299
4343
|
getPriceForTextOutput: (tokens) => 75 * tokens / 1_000_000,
|
|
4300
4344
|
getPriceForAudioInput: () => 0,
|
|
4301
4345
|
getPriceForAudioOutput: () => 0,
|
|
@@ -4321,6 +4365,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4321
4365
|
},
|
|
4322
4366
|
pricing: {
|
|
4323
4367
|
getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000,
|
|
4368
|
+
getPriceForCachedTextInput: (tokens) => 0.5 * tokens / 1_000_000,
|
|
4324
4369
|
getPriceForTextOutput: (tokens) => 25 * tokens / 1_000_000,
|
|
4325
4370
|
getPriceForAudioInput: () => 0,
|
|
4326
4371
|
getPriceForAudioOutput: () => 0,
|
|
@@ -4346,6 +4391,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4346
4391
|
},
|
|
4347
4392
|
pricing: {
|
|
4348
4393
|
getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000,
|
|
4394
|
+
getPriceForCachedTextInput: (tokens) => 0.5 * tokens / 1_000_000,
|
|
4349
4395
|
getPriceForTextOutput: (tokens) => 25 * tokens / 1_000_000,
|
|
4350
4396
|
getPriceForAudioInput: () => 0,
|
|
4351
4397
|
getPriceForAudioOutput: () => 0,
|
|
@@ -4360,31 +4406,6 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4360
4406
|
structuredOutputs: true,
|
|
4361
4407
|
},
|
|
4362
4408
|
},
|
|
4363
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.ANTHROPIC_CLAUDE_SONNET_4_20250514_V1_0_AWS_BEDROCK]: {
|
|
4364
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.ANTHROPIC_CLAUDE_SONNET_4_20250514_V1_0_AWS_BEDROCK,
|
|
4365
|
-
limits: {
|
|
4366
|
-
maxInputTokens: 200_000,
|
|
4367
|
-
maxOutputTokens: 32_768,
|
|
4368
|
-
},
|
|
4369
|
-
config: {
|
|
4370
|
-
temperature: 0.2,
|
|
4371
|
-
},
|
|
4372
|
-
pricing: {
|
|
4373
|
-
getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000,
|
|
4374
|
-
getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
|
|
4375
|
-
getPriceForAudioInput: () => 0,
|
|
4376
|
-
getPriceForAudioOutput: () => 0,
|
|
4377
|
-
currency: 'USD',
|
|
4378
|
-
},
|
|
4379
|
-
capabilities: {
|
|
4380
|
-
vision: false,
|
|
4381
|
-
tools: true,
|
|
4382
|
-
reasoning: true,
|
|
4383
|
-
webSearch: true,
|
|
4384
|
-
jsonOutput: false,
|
|
4385
|
-
structuredOutputs: false,
|
|
4386
|
-
},
|
|
4387
|
-
},
|
|
4388
4409
|
[LLMAPI_typedefs_1.LLMAPIModelNames.ANTHROPIC_CLAUDE_SONNET_4_5_20250929_V1_0_AWS_BEDROCK]: {
|
|
4389
4410
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.ANTHROPIC_CLAUDE_SONNET_4_5_20250929_V1_0_AWS_BEDROCK,
|
|
4390
4411
|
limits: {
|
|
@@ -4396,6 +4417,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4396
4417
|
},
|
|
4397
4418
|
pricing: {
|
|
4398
4419
|
getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000,
|
|
4420
|
+
getPriceForCachedTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
4399
4421
|
getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
|
|
4400
4422
|
getPriceForAudioInput: () => 0,
|
|
4401
4423
|
getPriceForAudioOutput: () => 0,
|
|
@@ -4421,6 +4443,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4421
4443
|
},
|
|
4422
4444
|
pricing: {
|
|
4423
4445
|
getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000,
|
|
4446
|
+
getPriceForCachedTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
4424
4447
|
getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
|
|
4425
4448
|
getPriceForAudioInput: () => 0,
|
|
4426
4449
|
getPriceForAudioOutput: () => 0,
|
|
@@ -4488,6 +4511,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4488
4511
|
},
|
|
4489
4512
|
pricing: {
|
|
4490
4513
|
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
4514
|
+
getPriceForCachedTextInput: (tokens) => 0.03 * tokens / 1_000_000,
|
|
4491
4515
|
getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000,
|
|
4492
4516
|
getPriceForAudioInput: () => 0,
|
|
4493
4517
|
getPriceForAudioOutput: () => 0,
|
|
@@ -4552,6 +4576,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4552
4576
|
},
|
|
4553
4577
|
pricing: {
|
|
4554
4578
|
getPriceForTextInput: (tokens) => 0.108 * tokens / 1_000_000,
|
|
4579
|
+
getPriceForCachedTextInput: (tokens) => 0.06 * tokens / 1_000_000,
|
|
4555
4580
|
getPriceForTextOutput: (tokens) => 0.675 * tokens / 1_000_000,
|
|
4556
4581
|
getPriceForAudioInput: () => 0,
|
|
4557
4582
|
getPriceForAudioOutput: () => 0,
|
|
@@ -4577,6 +4602,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4577
4602
|
},
|
|
4578
4603
|
pricing: {
|
|
4579
4604
|
getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000,
|
|
4605
|
+
getPriceForCachedTextInput: (tokens) => 0.175 * tokens / 1_000_000,
|
|
4580
4606
|
getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000,
|
|
4581
4607
|
getPriceForAudioInput: () => 0,
|
|
4582
4608
|
getPriceForAudioOutput: () => 0,
|
|
@@ -4602,6 +4628,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4602
4628
|
},
|
|
4603
4629
|
pricing: {
|
|
4604
4630
|
getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000,
|
|
4631
|
+
getPriceForCachedTextInput: (tokens) => 0.175 * tokens / 1_000_000,
|
|
4605
4632
|
getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000,
|
|
4606
4633
|
getPriceForAudioInput: () => 0,
|
|
4607
4634
|
getPriceForAudioOutput: () => 0,
|
|
@@ -4627,6 +4654,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4627
4654
|
},
|
|
4628
4655
|
pricing: {
|
|
4629
4656
|
getPriceForTextInput: (tokens) => 0.75 * tokens / 1_000_000,
|
|
4657
|
+
getPriceForCachedTextInput: (tokens) => 0.07 * tokens / 1_000_000,
|
|
4630
4658
|
getPriceForTextOutput: (tokens) => 4.5 * tokens / 1_000_000,
|
|
4631
4659
|
getPriceForAudioInput: () => 0,
|
|
4632
4660
|
getPriceForAudioOutput: () => 0,
|
|
@@ -4652,6 +4680,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4652
4680
|
},
|
|
4653
4681
|
pricing: {
|
|
4654
4682
|
getPriceForTextInput: (tokens) => 0.2 * tokens / 1_000_000,
|
|
4683
|
+
getPriceForCachedTextInput: (tokens) => 0.02 * tokens / 1_000_000,
|
|
4655
4684
|
getPriceForTextOutput: (tokens) => 1.25 * tokens / 1_000_000,
|
|
4656
4685
|
getPriceForAudioInput: () => 0,
|
|
4657
4686
|
getPriceForAudioOutput: () => 0,
|
|
@@ -4670,7 +4699,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4670
4699
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_DEEPSEEK_CHAT_V3_2_CANOPYWAVE,
|
|
4671
4700
|
limits: { maxInputTokens: 163_840, maxOutputTokens: 8_192 },
|
|
4672
4701
|
config: { temperature: 0.2 },
|
|
4673
|
-
pricing: { getPriceForTextInput: (tokens) => 0.28 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.42 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
4702
|
+
pricing: { getPriceForTextInput: (tokens) => 0.28 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.028 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.42 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
4674
4703
|
capabilities: {
|
|
4675
4704
|
vision: true,
|
|
4676
4705
|
tools: true,
|
|
@@ -4716,6 +4745,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4716
4745
|
},
|
|
4717
4746
|
pricing: {
|
|
4718
4747
|
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
4748
|
+
getPriceForCachedTextInput: (tokens) => 0.03 * tokens / 1_000_000,
|
|
4719
4749
|
getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000,
|
|
4720
4750
|
getPriceForAudioInput: () => 0,
|
|
4721
4751
|
getPriceForAudioOutput: () => 0,
|
|
@@ -4741,6 +4771,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4741
4771
|
},
|
|
4742
4772
|
pricing: {
|
|
4743
4773
|
getPriceForTextInput: (tokens) => 0.405 * tokens / 1_000_000,
|
|
4774
|
+
getPriceForCachedTextInput: (tokens) => 0.1 * tokens / 1_000_000,
|
|
4744
4775
|
getPriceForTextOutput: (tokens) => 1.98 * tokens / 1_000_000,
|
|
4745
4776
|
getPriceForAudioInput: () => 0,
|
|
4746
4777
|
getPriceForAudioOutput: () => 0,
|
|
@@ -4766,6 +4797,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4766
4797
|
},
|
|
4767
4798
|
pricing: {
|
|
4768
4799
|
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
4800
|
+
getPriceForCachedTextInput: (tokens) => 0.11 * tokens / 1_000_000,
|
|
4769
4801
|
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
4770
4802
|
getPriceForAudioInput: () => 0,
|
|
4771
4803
|
getPriceForAudioOutput: () => 0,
|
|
@@ -4791,6 +4823,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4791
4823
|
},
|
|
4792
4824
|
pricing: {
|
|
4793
4825
|
getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000,
|
|
4826
|
+
getPriceForCachedTextInput: (tokens) => 0.2 * tokens / 1_000_000,
|
|
4794
4827
|
getPriceForTextOutput: (tokens) => 3.2 * tokens / 1_000_000,
|
|
4795
4828
|
getPriceForAudioInput: () => 0,
|
|
4796
4829
|
getPriceForAudioOutput: () => 0,
|
|
@@ -4858,6 +4891,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4858
4891
|
},
|
|
4859
4892
|
pricing: {
|
|
4860
4893
|
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
4894
|
+
getPriceForCachedTextInput: (tokens) => 0.03 * tokens / 1_000_000,
|
|
4861
4895
|
getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000,
|
|
4862
4896
|
getPriceForAudioInput: () => 0,
|
|
4863
4897
|
getPriceForAudioOutput: () => 0,
|
|
@@ -4883,6 +4917,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4883
4917
|
},
|
|
4884
4918
|
pricing: {
|
|
4885
4919
|
getPriceForTextInput: (tokens) => 0.405 * tokens / 1_000_000,
|
|
4920
|
+
getPriceForCachedTextInput: (tokens) => 0.1 * tokens / 1_000_000,
|
|
4886
4921
|
getPriceForTextOutput: (tokens) => 1.98 * tokens / 1_000_000,
|
|
4887
4922
|
getPriceForAudioInput: () => 0,
|
|
4888
4923
|
getPriceForAudioOutput: () => 0,
|
|
@@ -4908,6 +4943,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4908
4943
|
},
|
|
4909
4944
|
pricing: {
|
|
4910
4945
|
getPriceForTextInput: (tokens) => 0.108 * tokens / 1_000_000,
|
|
4946
|
+
getPriceForCachedTextInput: (tokens) => 0.06 * tokens / 1_000_000,
|
|
4911
4947
|
getPriceForTextOutput: (tokens) => 0.675 * tokens / 1_000_000,
|
|
4912
4948
|
getPriceForAudioInput: () => 0,
|
|
4913
4949
|
getPriceForAudioOutput: () => 0,
|
|
@@ -4933,6 +4969,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4933
4969
|
},
|
|
4934
4970
|
pricing: {
|
|
4935
4971
|
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
4972
|
+
getPriceForCachedTextInput: (tokens) => 0.11 * tokens / 1_000_000,
|
|
4936
4973
|
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
4937
4974
|
getPriceForAudioInput: () => 0,
|
|
4938
4975
|
getPriceForAudioOutput: () => 0,
|
|
@@ -4958,6 +4995,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4958
4995
|
},
|
|
4959
4996
|
pricing: {
|
|
4960
4997
|
getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000,
|
|
4998
|
+
getPriceForCachedTextInput: (tokens) => 0.2 * tokens / 1_000_000,
|
|
4961
4999
|
getPriceForTextOutput: (tokens) => 3.2 * tokens / 1_000_000,
|
|
4962
5000
|
getPriceForAudioInput: () => 0,
|
|
4963
5001
|
getPriceForAudioOutput: () => 0,
|
|
@@ -4990,7 +5028,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4990
5028
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_PRO_IMAGE_PREVIEW,
|
|
4991
5029
|
limits: { maxInputTokens: 65_536, maxOutputTokens: 8_192 },
|
|
4992
5030
|
config: { temperature: 0.2 },
|
|
4993
|
-
pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 12 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5031
|
+
pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 12 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
4994
5032
|
capabilities: {
|
|
4995
5033
|
vision: true,
|
|
4996
5034
|
tools: false,
|
|
@@ -5018,7 +5056,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
5018
5056
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_TURBO,
|
|
5019
5057
|
limits: { maxInputTokens: 200_000, maxOutputTokens: 65_536 },
|
|
5020
5058
|
config: { temperature: 0.2 },
|
|
5021
|
-
pricing: { getPriceForTextInput: (tokens) => 1.2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5059
|
+
pricing: { getPriceForTextInput: (tokens) => 1.2 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.24 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5022
5060
|
capabilities: {
|
|
5023
5061
|
vision: false,
|
|
5024
5062
|
tools: true,
|
|
@@ -5032,7 +5070,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
5032
5070
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_1,
|
|
5033
5071
|
limits: { maxInputTokens: 202_800, maxOutputTokens: 65_536 },
|
|
5034
5072
|
config: { temperature: 0.2 },
|
|
5035
|
-
pricing: { getPriceForTextInput: (tokens) => 1.4 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5073
|
+
pricing: { getPriceForTextInput: (tokens) => 1.4 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.26 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5036
5074
|
capabilities: {
|
|
5037
5075
|
vision: false,
|
|
5038
5076
|
tools: true,
|
|
@@ -5046,7 +5084,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
5046
5084
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5V_TURBO,
|
|
5047
5085
|
limits: { maxInputTokens: 200_000, maxOutputTokens: 16_384 },
|
|
5048
5086
|
config: { temperature: 0.2 },
|
|
5049
|
-
pricing: { getPriceForTextInput: (tokens) => 1.2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5087
|
+
pricing: { getPriceForTextInput: (tokens) => 1.2 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.24 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5050
5088
|
capabilities: {
|
|
5051
5089
|
vision: true,
|
|
5052
5090
|
tools: true,
|
|
@@ -5088,7 +5126,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
5088
5126
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_PRO_IMAGE_PREVIEW_GOOGLE_AI_STUDIO,
|
|
5089
5127
|
limits: { maxInputTokens: 65_536, maxOutputTokens: 8_192 },
|
|
5090
5128
|
config: { temperature: 0.2 },
|
|
5091
|
-
pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 12 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5129
|
+
pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 12 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5092
5130
|
capabilities: {
|
|
5093
5131
|
vision: true,
|
|
5094
5132
|
tools: false,
|
|
@@ -5116,7 +5154,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
5116
5154
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_PRO_IMAGE_PREVIEW_GOOGLE_VERTEX,
|
|
5117
5155
|
limits: { maxInputTokens: 65_536, maxOutputTokens: 8_192 },
|
|
5118
5156
|
config: { temperature: 0.2 },
|
|
5119
|
-
pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 12 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5157
|
+
pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 12 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5120
5158
|
capabilities: {
|
|
5121
5159
|
vision: true,
|
|
5122
5160
|
tools: false,
|
|
@@ -5183,7 +5221,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
5183
5221
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_HIGHSPEED,
|
|
5184
5222
|
limits: { maxInputTokens: 204_800, maxOutputTokens: 32_768 },
|
|
5185
5223
|
config: { temperature: 0.2 },
|
|
5186
|
-
pricing: { getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5224
|
+
pricing: { getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.03 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5187
5225
|
capabilities: {
|
|
5188
5226
|
vision: false,
|
|
5189
5227
|
tools: true,
|
|
@@ -5197,7 +5235,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
5197
5235
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_7,
|
|
5198
5236
|
limits: { maxInputTokens: 204_800, maxOutputTokens: 65_536 },
|
|
5199
5237
|
config: { temperature: 0.2 },
|
|
5200
|
-
pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5238
|
+
pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.06 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5201
5239
|
capabilities: {
|
|
5202
5240
|
vision: false,
|
|
5203
5241
|
tools: true,
|
|
@@ -5243,6 +5281,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
5243
5281
|
},
|
|
5244
5282
|
pricing: {
|
|
5245
5283
|
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
5284
|
+
getPriceForCachedTextInput: (tokens) => 0.03 * tokens / 1_000_000,
|
|
5246
5285
|
getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000,
|
|
5247
5286
|
getPriceForAudioInput: () => 0,
|
|
5248
5287
|
getPriceForAudioOutput: () => 0,
|
|
@@ -5516,6 +5555,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
5516
5555
|
},
|
|
5517
5556
|
pricing: {
|
|
5518
5557
|
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
5558
|
+
getPriceForCachedTextInput: (tokens) => 0.03 * tokens / 1_000_000,
|
|
5519
5559
|
getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000,
|
|
5520
5560
|
getPriceForAudioInput: () => 0,
|
|
5521
5561
|
getPriceForAudioOutput: () => 0,
|
|
@@ -5591,6 +5631,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
5591
5631
|
},
|
|
5592
5632
|
pricing: {
|
|
5593
5633
|
getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000,
|
|
5634
|
+
getPriceForCachedTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
5594
5635
|
getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
|
|
5595
5636
|
getPriceForAudioInput: () => 0,
|
|
5596
5637
|
getPriceForAudioOutput: () => 0,
|
|
@@ -5716,6 +5757,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
5716
5757
|
},
|
|
5717
5758
|
pricing: {
|
|
5718
5759
|
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
5760
|
+
getPriceForCachedTextInput: (tokens) => 0.11 * tokens / 1_000_000,
|
|
5719
5761
|
getPriceForTextOutput: (tokens) => 1.8 * tokens / 1_000_000,
|
|
5720
5762
|
getPriceForAudioInput: () => 0,
|
|
5721
5763
|
getPriceForAudioOutput: () => 0,
|
|
@@ -5741,6 +5783,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
5741
5783
|
},
|
|
5742
5784
|
pricing: {
|
|
5743
5785
|
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
5786
|
+
getPriceForCachedTextInput: (tokens) => 0.11 * tokens / 1_000_000,
|
|
5744
5787
|
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
5745
5788
|
getPriceForAudioInput: () => 0,
|
|
5746
5789
|
getPriceForAudioOutput: () => 0,
|
|
@@ -5766,6 +5809,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
5766
5809
|
},
|
|
5767
5810
|
pricing: {
|
|
5768
5811
|
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
5812
|
+
getPriceForCachedTextInput: (tokens) => 0.055 * tokens / 1_000_000,
|
|
5769
5813
|
getPriceForTextOutput: (tokens) => 0.9 * tokens / 1_000_000,
|
|
5770
5814
|
getPriceForAudioInput: () => 0,
|
|
5771
5815
|
getPriceForAudioOutput: () => 0,
|
|
@@ -5791,6 +5835,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
5791
5835
|
},
|
|
5792
5836
|
pricing: {
|
|
5793
5837
|
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
5838
|
+
getPriceForCachedTextInput: (tokens) => 0.11 * tokens / 1_000_000,
|
|
5794
5839
|
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
5795
5840
|
getPriceForAudioInput: () => 0,
|
|
5796
5841
|
getPriceForAudioOutput: () => 0,
|
|
@@ -5816,6 +5861,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
5816
5861
|
},
|
|
5817
5862
|
pricing: {
|
|
5818
5863
|
getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000,
|
|
5864
|
+
getPriceForCachedTextInput: (tokens) => 0.2 * tokens / 1_000_000,
|
|
5819
5865
|
getPriceForTextOutput: (tokens) => 3.2 * tokens / 1_000_000,
|
|
5820
5866
|
getPriceForAudioInput: () => 0,
|
|
5821
5867
|
getPriceForAudioOutput: () => 0,
|
|
@@ -5834,7 +5880,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
5834
5880
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CHAT_LATEST_OPENAI,
|
|
5835
5881
|
limits: { maxInputTokens: 128_000, maxOutputTokens: 131_072 },
|
|
5836
5882
|
config: { temperature: 0.2 },
|
|
5837
|
-
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5883
|
+
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.175 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5838
5884
|
capabilities: {
|
|
5839
5885
|
vision: true,
|
|
5840
5886
|
tools: true,
|
|
@@ -5848,7 +5894,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
5848
5894
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CHAT_LATEST_OPENAI,
|
|
5849
5895
|
limits: { maxInputTokens: 128_000, maxOutputTokens: 131_072 },
|
|
5850
5896
|
config: { temperature: 0.2 },
|
|
5851
|
-
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5897
|
+
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.175 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5852
5898
|
capabilities: {
|
|
5853
5899
|
vision: true,
|
|
5854
5900
|
tools: true,
|
|
@@ -5869,6 +5915,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
5869
5915
|
},
|
|
5870
5916
|
pricing: {
|
|
5871
5917
|
getPriceForTextInput: (tokens) => 0.75 * tokens / 1_000_000,
|
|
5918
|
+
getPriceForCachedTextInput: (tokens) => 0.07 * tokens / 1_000_000,
|
|
5872
5919
|
getPriceForTextOutput: (tokens) => 4.5 * tokens / 1_000_000,
|
|
5873
5920
|
getPriceForAudioInput: () => 0,
|
|
5874
5921
|
getPriceForAudioOutput: () => 0,
|
|
@@ -5894,6 +5941,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
5894
5941
|
},
|
|
5895
5942
|
pricing: {
|
|
5896
5943
|
getPriceForTextInput: (tokens) => 0.2 * tokens / 1_000_000,
|
|
5944
|
+
getPriceForCachedTextInput: (tokens) => 0.02 * tokens / 1_000_000,
|
|
5897
5945
|
getPriceForTextOutput: (tokens) => 1.25 * tokens / 1_000_000,
|
|
5898
5946
|
getPriceForAudioInput: () => 0,
|
|
5899
5947
|
getPriceForAudioOutput: () => 0,
|
|
@@ -6052,7 +6100,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
6052
6100
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_6_PLUS,
|
|
6053
6101
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
6054
6102
|
config: { temperature: 0.2 },
|
|
6055
|
-
pricing: { getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6103
|
+
pricing: { getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.05 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6056
6104
|
capabilities: {
|
|
6057
6105
|
vision: true,
|
|
6058
6106
|
tools: true,
|
|
@@ -6073,6 +6121,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
6073
6121
|
},
|
|
6074
6122
|
pricing: {
|
|
6075
6123
|
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
6124
|
+
getPriceForCachedTextInput: (tokens) => 0.03 * tokens / 1_000_000,
|
|
6076
6125
|
getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000,
|
|
6077
6126
|
getPriceForAudioInput: () => 0,
|
|
6078
6127
|
getPriceForAudioOutput: () => 0,
|
|
@@ -6091,7 +6140,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
6091
6140
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GOOGLE_FLASH_IMAGE_2_5_TOGETHERAI,
|
|
6092
6141
|
limits: { maxInputTokens: 32_768, maxOutputTokens: 8_192 },
|
|
6093
6142
|
config: { temperature: 0.2 },
|
|
6094
|
-
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6143
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.03 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6095
6144
|
capabilities: {
|
|
6096
6145
|
vision: true,
|
|
6097
6146
|
tools: false,
|
|
@@ -6112,6 +6161,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
6112
6161
|
},
|
|
6113
6162
|
pricing: {
|
|
6114
6163
|
getPriceForTextInput: (tokens) => 0.405 * tokens / 1_000_000,
|
|
6164
|
+
getPriceForCachedTextInput: (tokens) => 0.1 * tokens / 1_000_000,
|
|
6115
6165
|
getPriceForTextOutput: (tokens) => 1.98 * tokens / 1_000_000,
|
|
6116
6166
|
getPriceForAudioInput: () => 0,
|
|
6117
6167
|
getPriceForAudioOutput: () => 0,
|
|
@@ -6130,7 +6180,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
6130
6180
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_ORG_GLM_5_1_TOGETHERAI,
|
|
6131
6181
|
limits: { maxInputTokens: 202_800, maxOutputTokens: 65_536 },
|
|
6132
6182
|
config: { temperature: 0.2 },
|
|
6133
|
-
pricing: { getPriceForTextInput: (tokens) => 1.4 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6183
|
+
pricing: { getPriceForTextInput: (tokens) => 1.4 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.26 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6134
6184
|
capabilities: {
|
|
6135
6185
|
vision: false,
|
|
6136
6186
|
tools: true,
|
|
@@ -6158,7 +6208,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
6158
6208
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_1_ZAI,
|
|
6159
6209
|
limits: { maxInputTokens: 202_800, maxOutputTokens: 65_536 },
|
|
6160
6210
|
config: { temperature: 0.2 },
|
|
6161
|
-
pricing: { getPriceForTextInput: (tokens) => 1.4 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6211
|
+
pricing: { getPriceForTextInput: (tokens) => 1.4 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.26 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6162
6212
|
capabilities: {
|
|
6163
6213
|
vision: false,
|
|
6164
6214
|
tools: true,
|
|
@@ -6173,7 +6223,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
6173
6223
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_7_ANTHROPIC,
|
|
6174
6224
|
limits: { maxInputTokens: 1_000_000, maxOutputTokens: 128_000 },
|
|
6175
6225
|
config: { temperature: 0.2 },
|
|
6176
|
-
pricing: { getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 25 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6226
|
+
pricing: { getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 25 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6177
6227
|
capabilities: {
|
|
6178
6228
|
vision: true,
|
|
6179
6229
|
tools: true,
|
|
@@ -6187,7 +6237,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
6187
6237
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.ANTHROPIC_CLAUDE_OPUS_4_7_AWS_BEDROCK,
|
|
6188
6238
|
limits: { maxInputTokens: 1_000_000, maxOutputTokens: 128_000 },
|
|
6189
6239
|
config: { temperature: 0.2 },
|
|
6190
|
-
pricing: { getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 25 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6240
|
+
pricing: { getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 25 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6191
6241
|
capabilities: {
|
|
6192
6242
|
vision: true,
|
|
6193
6243
|
tools: true,
|
|
@@ -6201,7 +6251,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
6201
6251
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_5_AZURE,
|
|
6202
6252
|
limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
|
|
6203
6253
|
config: { temperature: 0.2 },
|
|
6204
|
-
pricing: { getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 30 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6254
|
+
pricing: { getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 30 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6205
6255
|
capabilities: {
|
|
6206
6256
|
vision: true,
|
|
6207
6257
|
tools: true,
|
|
@@ -6215,7 +6265,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
6215
6265
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_6_AZURE,
|
|
6216
6266
|
limits: { maxInputTokens: 262_144, maxOutputTokens: 262_144 },
|
|
6217
6267
|
config: { temperature: 0.2 },
|
|
6218
|
-
pricing: { getPriceForTextInput: (tokens) => 0.95 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6268
|
+
pricing: { getPriceForTextInput: (tokens) => 0.95 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.16 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6219
6269
|
capabilities: {
|
|
6220
6270
|
vision: true,
|
|
6221
6271
|
tools: true,
|
|
@@ -6229,7 +6279,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
6229
6279
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_DEEPSEEK_V4_FLASH_CANOPYWAVE,
|
|
6230
6280
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 384_000 },
|
|
6231
6281
|
config: { temperature: 0.2 },
|
|
6232
|
-
pricing: { getPriceForTextInput: (tokens) => 0.14 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.28 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6282
|
+
pricing: { getPriceForTextInput: (tokens) => 0.14 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.0028 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.28 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6233
6283
|
capabilities: {
|
|
6234
6284
|
vision: false,
|
|
6235
6285
|
tools: true,
|
|
@@ -6243,7 +6293,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
6243
6293
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MOONSHOTAI_KIMI_K2_6_CANOPYWAVE,
|
|
6244
6294
|
limits: { maxInputTokens: 262_144, maxOutputTokens: 262_144 },
|
|
6245
6295
|
config: { temperature: 0.2 },
|
|
6246
|
-
pricing: { getPriceForTextInput: (tokens) => 0.95 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6296
|
+
pricing: { getPriceForTextInput: (tokens) => 0.95 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.16 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6247
6297
|
capabilities: {
|
|
6248
6298
|
vision: true,
|
|
6249
6299
|
tools: true,
|
|
@@ -6257,7 +6307,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
6257
6307
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_GLM_5_1_CANOPYWAVE,
|
|
6258
6308
|
limits: { maxInputTokens: 202_800, maxOutputTokens: 65_536 },
|
|
6259
6309
|
config: { temperature: 0.2 },
|
|
6260
|
-
pricing: { getPriceForTextInput: (tokens) => 1.4 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6310
|
+
pricing: { getPriceForTextInput: (tokens) => 1.4 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.26 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6261
6311
|
capabilities: {
|
|
6262
6312
|
vision: false,
|
|
6263
6313
|
tools: true,
|
|
@@ -6271,110 +6321,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
6271
6321
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_7,
|
|
6272
6322
|
limits: { maxInputTokens: 1_000_000, maxOutputTokens: 128_000 },
|
|
6273
6323
|
config: { temperature: 0.2 },
|
|
6274
|
-
pricing: { getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 25 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6275
|
-
capabilities: {
|
|
6276
|
-
vision: true,
|
|
6277
|
-
tools: true,
|
|
6278
|
-
reasoning: true,
|
|
6279
|
-
webSearch: false,
|
|
6280
|
-
jsonOutput: false,
|
|
6281
|
-
structuredOutputs: false,
|
|
6282
|
-
},
|
|
6283
|
-
},
|
|
6284
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.CF_META_LLAMA_3_1_8B_INSTRUCT_CLOUDFLARE]: {
|
|
6285
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.CF_META_LLAMA_3_1_8B_INSTRUCT_CLOUDFLARE,
|
|
6286
|
-
limits: {
|
|
6287
|
-
maxInputTokens: 128_000,
|
|
6288
|
-
maxOutputTokens: 8_192,
|
|
6289
|
-
},
|
|
6290
|
-
config: {
|
|
6291
|
-
temperature: 0.2,
|
|
6292
|
-
},
|
|
6293
|
-
pricing: {
|
|
6294
|
-
getPriceForTextInput: (tokens) => 0.22 * tokens / 1_000_000,
|
|
6295
|
-
getPriceForTextOutput: (tokens) => 0.22 * tokens / 1_000_000,
|
|
6296
|
-
getPriceForAudioInput: () => 0,
|
|
6297
|
-
getPriceForAudioOutput: () => 0,
|
|
6298
|
-
currency: 'USD',
|
|
6299
|
-
},
|
|
6300
|
-
capabilities: {
|
|
6301
|
-
vision: false,
|
|
6302
|
-
tools: false,
|
|
6303
|
-
reasoning: false,
|
|
6304
|
-
webSearch: false,
|
|
6305
|
-
jsonOutput: true,
|
|
6306
|
-
structuredOutputs: false,
|
|
6307
|
-
},
|
|
6308
|
-
},
|
|
6309
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.CF_META_LLAMA_3_2_3B_INSTRUCT_CLOUDFLARE]: {
|
|
6310
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.CF_META_LLAMA_3_2_3B_INSTRUCT_CLOUDFLARE,
|
|
6311
|
-
limits: {
|
|
6312
|
-
maxInputTokens: 32_768,
|
|
6313
|
-
maxOutputTokens: 8_192,
|
|
6314
|
-
},
|
|
6315
|
-
config: {
|
|
6316
|
-
temperature: 0.2,
|
|
6317
|
-
},
|
|
6318
|
-
pricing: {
|
|
6319
|
-
getPriceForTextInput: (tokens) => 0.03 * tokens / 1_000_000,
|
|
6320
|
-
getPriceForTextOutput: (tokens) => 0.05 * tokens / 1_000_000,
|
|
6321
|
-
getPriceForAudioInput: () => 0,
|
|
6322
|
-
getPriceForAudioOutput: () => 0,
|
|
6323
|
-
currency: 'USD',
|
|
6324
|
-
},
|
|
6325
|
-
capabilities: {
|
|
6326
|
-
vision: false,
|
|
6327
|
-
tools: false,
|
|
6328
|
-
reasoning: false,
|
|
6329
|
-
webSearch: false,
|
|
6330
|
-
jsonOutput: true,
|
|
6331
|
-
structuredOutputs: false,
|
|
6332
|
-
},
|
|
6333
|
-
},
|
|
6334
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.CF_META_LLAMA_4_SCOUT_17B_16E_INSTRUCT_CLOUDFLARE]: {
|
|
6335
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.CF_META_LLAMA_4_SCOUT_17B_16E_INSTRUCT_CLOUDFLARE,
|
|
6336
|
-
limits: { maxInputTokens: 131_072, maxOutputTokens: 8_192 },
|
|
6337
|
-
config: { temperature: 0.2 },
|
|
6338
|
-
pricing: { getPriceForTextInput: (tokens) => 0.18 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.59 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6339
|
-
capabilities: {
|
|
6340
|
-
vision: true,
|
|
6341
|
-
tools: false,
|
|
6342
|
-
reasoning: false,
|
|
6343
|
-
webSearch: false,
|
|
6344
|
-
jsonOutput: true,
|
|
6345
|
-
structuredOutputs: false,
|
|
6346
|
-
},
|
|
6347
|
-
},
|
|
6348
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.CF_MOONSHOTAI_KIMI_K2_5_CLOUDFLARE]: {
|
|
6349
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.CF_MOONSHOTAI_KIMI_K2_5_CLOUDFLARE,
|
|
6350
|
-
limits: {
|
|
6351
|
-
maxInputTokens: 262_144,
|
|
6352
|
-
maxOutputTokens: 128_000,
|
|
6353
|
-
},
|
|
6354
|
-
config: {
|
|
6355
|
-
temperature: 0.2,
|
|
6356
|
-
},
|
|
6357
|
-
pricing: {
|
|
6358
|
-
getPriceForTextInput: (tokens) => 0.405 * tokens / 1_000_000,
|
|
6359
|
-
getPriceForTextOutput: (tokens) => 1.98 * tokens / 1_000_000,
|
|
6360
|
-
getPriceForAudioInput: () => 0,
|
|
6361
|
-
getPriceForAudioOutput: () => 0,
|
|
6362
|
-
currency: 'USD',
|
|
6363
|
-
},
|
|
6364
|
-
capabilities: {
|
|
6365
|
-
vision: true,
|
|
6366
|
-
tools: true,
|
|
6367
|
-
reasoning: false,
|
|
6368
|
-
webSearch: false,
|
|
6369
|
-
jsonOutput: true,
|
|
6370
|
-
structuredOutputs: false,
|
|
6371
|
-
},
|
|
6372
|
-
},
|
|
6373
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.CF_MOONSHOTAI_KIMI_K2_6_CLOUDFLARE]: {
|
|
6374
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.CF_MOONSHOTAI_KIMI_K2_6_CLOUDFLARE,
|
|
6375
|
-
limits: { maxInputTokens: 262_144, maxOutputTokens: 262_144 },
|
|
6376
|
-
config: { temperature: 0.2 },
|
|
6377
|
-
pricing: { getPriceForTextInput: (tokens) => 0.95 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6324
|
+
pricing: { getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 25 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6378
6325
|
capabilities: {
|
|
6379
6326
|
vision: true,
|
|
6380
6327
|
tools: true,
|
|
@@ -6384,75 +6331,11 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
6384
6331
|
structuredOutputs: false,
|
|
6385
6332
|
},
|
|
6386
6333
|
},
|
|
6387
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.CF_OPENAI_GPT_OSS_120B_CLOUDFLARE]: {
|
|
6388
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.CF_OPENAI_GPT_OSS_120B_CLOUDFLARE,
|
|
6389
|
-
limits: { maxInputTokens: 131_072, maxOutputTokens: 65_536 },
|
|
6390
|
-
config: { temperature: 0.2 },
|
|
6391
|
-
pricing: { getPriceForTextInput: (tokens) => 0.35 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.75 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6392
|
-
capabilities: {
|
|
6393
|
-
vision: false,
|
|
6394
|
-
tools: true,
|
|
6395
|
-
reasoning: true,
|
|
6396
|
-
webSearch: false,
|
|
6397
|
-
jsonOutput: true,
|
|
6398
|
-
structuredOutputs: false,
|
|
6399
|
-
},
|
|
6400
|
-
},
|
|
6401
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.CF_OPENAI_GPT_OSS_20B_CLOUDFLARE]: {
|
|
6402
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.CF_OPENAI_GPT_OSS_20B_CLOUDFLARE,
|
|
6403
|
-
limits: {
|
|
6404
|
-
maxInputTokens: 131_072,
|
|
6405
|
-
maxOutputTokens: 32_768,
|
|
6406
|
-
},
|
|
6407
|
-
config: {
|
|
6408
|
-
temperature: 0.2,
|
|
6409
|
-
},
|
|
6410
|
-
pricing: {
|
|
6411
|
-
getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000,
|
|
6412
|
-
getPriceForTextOutput: (tokens) => 0.5 * tokens / 1_000_000,
|
|
6413
|
-
getPriceForAudioInput: () => 0,
|
|
6414
|
-
getPriceForAudioOutput: () => 0,
|
|
6415
|
-
currency: 'USD',
|
|
6416
|
-
},
|
|
6417
|
-
capabilities: {
|
|
6418
|
-
vision: false,
|
|
6419
|
-
tools: true,
|
|
6420
|
-
reasoning: true,
|
|
6421
|
-
webSearch: false,
|
|
6422
|
-
jsonOutput: true,
|
|
6423
|
-
structuredOutputs: false,
|
|
6424
|
-
},
|
|
6425
|
-
},
|
|
6426
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.CF_QWEN_QWEN3_30B_A3B_FP8_CLOUDFLARE]: {
|
|
6427
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.CF_QWEN_QWEN3_30B_A3B_FP8_CLOUDFLARE,
|
|
6428
|
-
limits: {
|
|
6429
|
-
maxInputTokens: 40_960,
|
|
6430
|
-
maxOutputTokens: 16_384,
|
|
6431
|
-
},
|
|
6432
|
-
config: {
|
|
6433
|
-
temperature: 0.2,
|
|
6434
|
-
},
|
|
6435
|
-
pricing: {
|
|
6436
|
-
getPriceForTextInput: (tokens) => 0.09 * tokens / 1_000_000,
|
|
6437
|
-
getPriceForTextOutput: (tokens) => 0.45 * tokens / 1_000_000,
|
|
6438
|
-
getPriceForAudioInput: () => 0,
|
|
6439
|
-
getPriceForAudioOutput: () => 0,
|
|
6440
|
-
currency: 'USD',
|
|
6441
|
-
},
|
|
6442
|
-
capabilities: {
|
|
6443
|
-
vision: false,
|
|
6444
|
-
tools: false,
|
|
6445
|
-
reasoning: false,
|
|
6446
|
-
webSearch: false,
|
|
6447
|
-
jsonOutput: false,
|
|
6448
|
-
structuredOutputs: false,
|
|
6449
|
-
},
|
|
6450
|
-
},
|
|
6451
6334
|
[LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_V4_FLASH]: {
|
|
6452
6335
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_V4_FLASH,
|
|
6453
6336
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 384_000 },
|
|
6454
6337
|
config: { temperature: 0.2 },
|
|
6455
|
-
pricing: { getPriceForTextInput: (tokens) => 0.14 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.28 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6338
|
+
pricing: { getPriceForTextInput: (tokens) => 0.14 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.0028 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.28 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6456
6339
|
capabilities: {
|
|
6457
6340
|
vision: false,
|
|
6458
6341
|
tools: true,
|
|
@@ -6466,7 +6349,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
6466
6349
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_V4_PRO,
|
|
6467
6350
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 384_000 },
|
|
6468
6351
|
config: { temperature: 0.2 },
|
|
6469
|
-
pricing: { getPriceForTextInput: (tokens) => 1.74 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3.48 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6352
|
+
pricing: { getPriceForTextInput: (tokens) => 1.74 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.003625 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3.48 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6470
6353
|
capabilities: {
|
|
6471
6354
|
vision: false,
|
|
6472
6355
|
tools: true,
|
|
@@ -6480,7 +6363,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
6480
6363
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_V4_FLASH_DEEPSEEK,
|
|
6481
6364
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 384_000 },
|
|
6482
6365
|
config: { temperature: 0.2 },
|
|
6483
|
-
pricing: { getPriceForTextInput: (tokens) => 0.14 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.28 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6366
|
+
pricing: { getPriceForTextInput: (tokens) => 0.14 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.0028 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.28 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6484
6367
|
capabilities: {
|
|
6485
6368
|
vision: false,
|
|
6486
6369
|
tools: true,
|
|
@@ -6494,7 +6377,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
6494
6377
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_V4_PRO_DEEPSEEK,
|
|
6495
6378
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 384_000 },
|
|
6496
6379
|
config: { temperature: 0.2 },
|
|
6497
|
-
pricing: { getPriceForTextInput: (tokens) => 1.74 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3.48 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6380
|
+
pricing: { getPriceForTextInput: (tokens) => 1.74 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.003625 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3.48 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6498
6381
|
capabilities: {
|
|
6499
6382
|
vision: false,
|
|
6500
6383
|
tools: true,
|
|
@@ -6522,7 +6405,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
6522
6405
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_5,
|
|
6523
6406
|
limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
|
|
6524
6407
|
config: { temperature: 0.2 },
|
|
6525
|
-
pricing: { getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 30 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6408
|
+
pricing: { getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 30 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6526
6409
|
capabilities: {
|
|
6527
6410
|
vision: true,
|
|
6528
6411
|
tools: true,
|
|
@@ -6536,7 +6419,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
6536
6419
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_6,
|
|
6537
6420
|
limits: { maxInputTokens: 262_144, maxOutputTokens: 262_144 },
|
|
6538
6421
|
config: { temperature: 0.2 },
|
|
6539
|
-
pricing: { getPriceForTextInput: (tokens) => 0.95 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6422
|
+
pricing: { getPriceForTextInput: (tokens) => 0.95 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.16 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6540
6423
|
capabilities: {
|
|
6541
6424
|
vision: true,
|
|
6542
6425
|
tools: true,
|
|
@@ -6550,7 +6433,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
6550
6433
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_6_MOONSHOT,
|
|
6551
6434
|
limits: { maxInputTokens: 262_144, maxOutputTokens: 262_144 },
|
|
6552
6435
|
config: { temperature: 0.2 },
|
|
6553
|
-
pricing: { getPriceForTextInput: (tokens) => 0.95 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6436
|
+
pricing: { getPriceForTextInput: (tokens) => 0.95 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.16 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6554
6437
|
capabilities: {
|
|
6555
6438
|
vision: true,
|
|
6556
6439
|
tools: true,
|
|
@@ -6564,7 +6447,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
6564
6447
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_DEEPSEEK_V4_FLASH_NOVITA,
|
|
6565
6448
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 384_000 },
|
|
6566
6449
|
config: { temperature: 0.2 },
|
|
6567
|
-
pricing: { getPriceForTextInput: (tokens) => 0.14 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.28 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6450
|
+
pricing: { getPriceForTextInput: (tokens) => 0.14 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.0028 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.28 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6568
6451
|
capabilities: {
|
|
6569
6452
|
vision: false,
|
|
6570
6453
|
tools: true,
|
|
@@ -6578,7 +6461,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
6578
6461
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_DEEPSEEK_V4_PRO_NOVITA,
|
|
6579
6462
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 384_000 },
|
|
6580
6463
|
config: { temperature: 0.2 },
|
|
6581
|
-
pricing: { getPriceForTextInput: (tokens) => 1.74 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3.48 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6464
|
+
pricing: { getPriceForTextInput: (tokens) => 1.74 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.135 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3.48 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6582
6465
|
capabilities: {
|
|
6583
6466
|
vision: false,
|
|
6584
6467
|
tools: true,
|
|
@@ -6588,36 +6471,25 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
6588
6471
|
structuredOutputs: false,
|
|
6589
6472
|
},
|
|
6590
6473
|
},
|
|
6591
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
6592
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
6593
|
-
limits: {
|
|
6594
|
-
|
|
6595
|
-
|
|
6596
|
-
},
|
|
6597
|
-
config: {
|
|
6598
|
-
temperature: 0.2,
|
|
6599
|
-
},
|
|
6600
|
-
pricing: {
|
|
6601
|
-
getPriceForTextInput: (tokens) => 0.03 * tokens / 1_000_000,
|
|
6602
|
-
getPriceForTextOutput: (tokens) => 0.05 * tokens / 1_000_000,
|
|
6603
|
-
getPriceForAudioInput: () => 0,
|
|
6604
|
-
getPriceForAudioOutput: () => 0,
|
|
6605
|
-
currency: 'USD',
|
|
6606
|
-
},
|
|
6474
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.MOONSHOTAI_KIMI_K2_6_NOVITA]: {
|
|
6475
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.MOONSHOTAI_KIMI_K2_6_NOVITA,
|
|
6476
|
+
limits: { maxInputTokens: 262_144, maxOutputTokens: 262_144 },
|
|
6477
|
+
config: { temperature: 0.2 },
|
|
6478
|
+
pricing: { getPriceForTextInput: (tokens) => 0.95 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.16 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6607
6479
|
capabilities: {
|
|
6608
|
-
vision:
|
|
6609
|
-
tools:
|
|
6610
|
-
reasoning:
|
|
6480
|
+
vision: true,
|
|
6481
|
+
tools: true,
|
|
6482
|
+
reasoning: true,
|
|
6611
6483
|
webSearch: false,
|
|
6612
|
-
jsonOutput:
|
|
6484
|
+
jsonOutput: false,
|
|
6613
6485
|
structuredOutputs: false,
|
|
6614
6486
|
},
|
|
6615
6487
|
},
|
|
6616
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
6617
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
6618
|
-
limits: { maxInputTokens:
|
|
6488
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_5_OPENAI]: {
|
|
6489
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_5_OPENAI,
|
|
6490
|
+
limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
|
|
6619
6491
|
config: { temperature: 0.2 },
|
|
6620
|
-
pricing: { getPriceForTextInput: (tokens) => 0.
|
|
6492
|
+
pricing: { getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 30 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6621
6493
|
capabilities: {
|
|
6622
6494
|
vision: true,
|
|
6623
6495
|
tools: true,
|
|
@@ -6627,59 +6499,6 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
6627
6499
|
structuredOutputs: false,
|
|
6628
6500
|
},
|
|
6629
6501
|
},
|
|
6630
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_30B_A3B_FP8_NOVITA]: {
|
|
6631
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_30B_A3B_FP8_NOVITA,
|
|
6632
|
-
limits: {
|
|
6633
|
-
maxInputTokens: 40_960,
|
|
6634
|
-
maxOutputTokens: 16_384,
|
|
6635
|
-
},
|
|
6636
|
-
config: {
|
|
6637
|
-
temperature: 0.2,
|
|
6638
|
-
},
|
|
6639
|
-
pricing: {
|
|
6640
|
-
getPriceForTextInput: (tokens) => 0.09 * tokens / 1_000_000,
|
|
6641
|
-
getPriceForTextOutput: (tokens) => 0.45 * tokens / 1_000_000,
|
|
6642
|
-
getPriceForAudioInput: () => 0,
|
|
6643
|
-
getPriceForAudioOutput: () => 0,
|
|
6644
|
-
currency: 'USD',
|
|
6645
|
-
},
|
|
6646
|
-
capabilities: {
|
|
6647
|
-
vision: false,
|
|
6648
|
-
tools: false,
|
|
6649
|
-
reasoning: false,
|
|
6650
|
-
webSearch: false,
|
|
6651
|
-
jsonOutput: false,
|
|
6652
|
-
structuredOutputs: false,
|
|
6653
|
-
},
|
|
6654
|
-
},
|
|
6655
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_5_OPENAI]: {
|
|
6656
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_5_OPENAI,
|
|
6657
|
-
limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
|
|
6658
|
-
config: { temperature: 0.2 },
|
|
6659
|
-
pricing: { getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 30 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6660
|
-
capabilities: {
|
|
6661
|
-
vision: true,
|
|
6662
|
-
tools: true,
|
|
6663
|
-
reasoning: true,
|
|
6664
|
-
webSearch: false,
|
|
6665
|
-
jsonOutput: false,
|
|
6666
|
-
structuredOutputs: false,
|
|
6667
|
-
},
|
|
6668
|
-
},
|
|
6669
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN2_5_CODER_32B_INSTRUCT]: {
|
|
6670
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN2_5_CODER_32B_INSTRUCT,
|
|
6671
|
-
limits: { maxInputTokens: 32_768, maxOutputTokens: 8_192 },
|
|
6672
|
-
config: { temperature: 0.2 },
|
|
6673
|
-
pricing: { getPriceForTextInput: (tokens) => 0.66 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 1 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6674
|
-
capabilities: {
|
|
6675
|
-
vision: false,
|
|
6676
|
-
tools: true,
|
|
6677
|
-
reasoning: false,
|
|
6678
|
-
webSearch: false,
|
|
6679
|
-
jsonOutput: false,
|
|
6680
|
-
structuredOutputs: false,
|
|
6681
|
-
},
|
|
6682
|
-
},
|
|
6683
6502
|
// ─── Cartesia TTS ──────────────────────────────────────
|
|
6684
6503
|
[LLMAPI_typedefs_1.LLMAPIModelNames.SONIC_3_2026_01_12]: {
|
|
6685
6504
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.SONIC_3_2026_01_12,
|
|
@@ -7113,7 +6932,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7113
6932
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_FABLE_5_ANTHROPIC,
|
|
7114
6933
|
limits: { maxInputTokens: 1_000_000, maxOutputTokens: 128_000 },
|
|
7115
6934
|
config: { temperature: 0.2 },
|
|
7116
|
-
pricing: { getPriceForTextInput: (tokens) => 10 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 50 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
6935
|
+
pricing: { getPriceForTextInput: (tokens) => 10 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 1 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 50 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7117
6936
|
capabilities: {
|
|
7118
6937
|
vision: true,
|
|
7119
6938
|
tools: true,
|
|
@@ -7134,6 +6953,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7134
6953
|
},
|
|
7135
6954
|
pricing: {
|
|
7136
6955
|
getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000,
|
|
6956
|
+
getPriceForCachedTextInput: (tokens) => 0.1 * tokens / 1_000_000,
|
|
7137
6957
|
getPriceForTextOutput: (tokens) => 5 * tokens / 1_000_000,
|
|
7138
6958
|
getPriceForAudioInput: () => 0,
|
|
7139
6959
|
getPriceForAudioOutput: () => 0,
|
|
@@ -7159,6 +6979,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7159
6979
|
},
|
|
7160
6980
|
pricing: {
|
|
7161
6981
|
getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000,
|
|
6982
|
+
getPriceForCachedTextInput: (tokens) => 0.1 * tokens / 1_000_000,
|
|
7162
6983
|
getPriceForTextOutput: (tokens) => 5 * tokens / 1_000_000,
|
|
7163
6984
|
getPriceForAudioInput: () => 0,
|
|
7164
6985
|
getPriceForAudioOutput: () => 0,
|
|
@@ -7177,7 +6998,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7177
6998
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_8_ANTHROPIC,
|
|
7178
6999
|
limits: { maxInputTokens: 1_000_000, maxOutputTokens: 128_000 },
|
|
7179
7000
|
config: { temperature: 0.2 },
|
|
7180
|
-
pricing: { getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 25 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7001
|
+
pricing: { getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 25 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7181
7002
|
capabilities: {
|
|
7182
7003
|
vision: true,
|
|
7183
7004
|
tools: true,
|
|
@@ -7191,7 +7012,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7191
7012
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_5_ANTHROPIC,
|
|
7192
7013
|
limits: { maxInputTokens: 128_000, maxOutputTokens: 128_000 },
|
|
7193
7014
|
config: { temperature: 0.2 },
|
|
7194
|
-
pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7015
|
+
pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7195
7016
|
capabilities: {
|
|
7196
7017
|
vision: true,
|
|
7197
7018
|
tools: true,
|
|
@@ -7205,7 +7026,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7205
7026
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.ANTHROPIC_CLAUDE_FABLE_5_AWS_BEDROCK,
|
|
7206
7027
|
limits: { maxInputTokens: 1_000_000, maxOutputTokens: 128_000 },
|
|
7207
7028
|
config: { temperature: 0.2 },
|
|
7208
|
-
pricing: { getPriceForTextInput: (tokens) => 10 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 50 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7029
|
+
pricing: { getPriceForTextInput: (tokens) => 10 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 1 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 50 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7209
7030
|
capabilities: {
|
|
7210
7031
|
vision: true,
|
|
7211
7032
|
tools: true,
|
|
@@ -7226,6 +7047,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7226
7047
|
},
|
|
7227
7048
|
pricing: {
|
|
7228
7049
|
getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000,
|
|
7050
|
+
getPriceForCachedTextInput: (tokens) => 0.1 * tokens / 1_000_000,
|
|
7229
7051
|
getPriceForTextOutput: (tokens) => 5 * tokens / 1_000_000,
|
|
7230
7052
|
getPriceForAudioInput: () => 0,
|
|
7231
7053
|
getPriceForAudioOutput: () => 0,
|
|
@@ -7244,7 +7066,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7244
7066
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.ANTHROPIC_CLAUDE_OPUS_4_8_AWS_BEDROCK,
|
|
7245
7067
|
limits: { maxInputTokens: 1_000_000, maxOutputTokens: 128_000 },
|
|
7246
7068
|
config: { temperature: 0.2 },
|
|
7247
|
-
pricing: { getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 25 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7069
|
+
pricing: { getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 25 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7248
7070
|
capabilities: {
|
|
7249
7071
|
vision: true,
|
|
7250
7072
|
tools: true,
|
|
@@ -7258,7 +7080,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7258
7080
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.ANTHROPIC_CLAUDE_SONNET_5_AWS_BEDROCK,
|
|
7259
7081
|
limits: { maxInputTokens: 128_000, maxOutputTokens: 128_000 },
|
|
7260
7082
|
config: { temperature: 0.2 },
|
|
7261
|
-
pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7083
|
+
pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7262
7084
|
capabilities: {
|
|
7263
7085
|
vision: true,
|
|
7264
7086
|
tools: true,
|
|
@@ -7272,7 +7094,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7272
7094
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_V4_FLASH_AZURE,
|
|
7273
7095
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 384_000 },
|
|
7274
7096
|
config: { temperature: 0.2 },
|
|
7275
|
-
pricing: { getPriceForTextInput: (tokens) => 0.14 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.28 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7097
|
+
pricing: { getPriceForTextInput: (tokens) => 0.14 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.0028 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.28 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7276
7098
|
capabilities: {
|
|
7277
7099
|
vision: false,
|
|
7278
7100
|
tools: true,
|
|
@@ -7286,7 +7108,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7286
7108
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_V4_PRO_AZURE,
|
|
7287
7109
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 384_000 },
|
|
7288
7110
|
config: { temperature: 0.2 },
|
|
7289
|
-
pricing: { getPriceForTextInput: (tokens) => 1.74 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3.48 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7111
|
+
pricing: { getPriceForTextInput: (tokens) => 1.74 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.003625 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3.48 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7290
7112
|
capabilities: {
|
|
7291
7113
|
vision: false,
|
|
7292
7114
|
tools: true,
|
|
@@ -7325,7 +7147,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7325
7147
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_6_LUNA_AZURE,
|
|
7326
7148
|
limits: { maxInputTokens: 128_000, maxOutputTokens: 128_000 },
|
|
7327
7149
|
config: { temperature: 0.2 },
|
|
7328
|
-
pricing: { getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 6 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7150
|
+
pricing: { getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.02 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 6 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7329
7151
|
capabilities: {
|
|
7330
7152
|
vision: true,
|
|
7331
7153
|
tools: true,
|
|
@@ -7339,7 +7161,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7339
7161
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_6_SOL_AZURE,
|
|
7340
7162
|
limits: { maxInputTokens: 128_000, maxOutputTokens: 128_000 },
|
|
7341
7163
|
config: { temperature: 0.2 },
|
|
7342
|
-
pricing: { getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 30 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7164
|
+
pricing: { getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 30 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7343
7165
|
capabilities: {
|
|
7344
7166
|
vision: true,
|
|
7345
7167
|
tools: true,
|
|
@@ -7353,7 +7175,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7353
7175
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_6_TERRA_AZURE,
|
|
7354
7176
|
limits: { maxInputTokens: 128_000, maxOutputTokens: 128_000 },
|
|
7355
7177
|
config: { temperature: 0.2 },
|
|
7356
|
-
pricing: { getPriceForTextInput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7178
|
+
pricing: { getPriceForTextInput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7357
7179
|
capabilities: {
|
|
7358
7180
|
vision: true,
|
|
7359
7181
|
tools: true,
|
|
@@ -7367,7 +7189,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7367
7189
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_3_AZURE,
|
|
7368
7190
|
limits: { maxInputTokens: 1_000_000, maxOutputTokens: 131_072 },
|
|
7369
7191
|
config: { temperature: 0.2 },
|
|
7370
|
-
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7192
|
+
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7371
7193
|
capabilities: {
|
|
7372
7194
|
vision: true,
|
|
7373
7195
|
tools: true,
|
|
@@ -7409,7 +7231,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7409
7231
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_FABLE_5,
|
|
7410
7232
|
limits: { maxInputTokens: 1_000_000, maxOutputTokens: 128_000 },
|
|
7411
7233
|
config: { temperature: 0.2 },
|
|
7412
|
-
pricing: { getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 5 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7234
|
+
pricing: { getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.1 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 5 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7413
7235
|
capabilities: {
|
|
7414
7236
|
vision: true,
|
|
7415
7237
|
tools: true,
|
|
@@ -7423,7 +7245,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7423
7245
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_8,
|
|
7424
7246
|
limits: { maxInputTokens: 1_000_000, maxOutputTokens: 128_000 },
|
|
7425
7247
|
config: { temperature: 0.2 },
|
|
7426
|
-
pricing: { getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 25 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7248
|
+
pricing: { getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 25 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7427
7249
|
capabilities: {
|
|
7428
7250
|
vision: true,
|
|
7429
7251
|
tools: true,
|
|
@@ -7437,7 +7259,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7437
7259
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_5,
|
|
7438
7260
|
limits: { maxInputTokens: 128_000, maxOutputTokens: 128_000 },
|
|
7439
7261
|
config: { temperature: 0.2 },
|
|
7440
|
-
pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7262
|
+
pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7441
7263
|
capabilities: {
|
|
7442
7264
|
vision: true,
|
|
7443
7265
|
tools: true,
|
|
@@ -7447,20 +7269,6 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7447
7269
|
structuredOutputs: false,
|
|
7448
7270
|
},
|
|
7449
7271
|
},
|
|
7450
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.CF_GOOGLE_GEMMA_4_26B_A4B_IT_CLOUDFLARE]: {
|
|
7451
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.CF_GOOGLE_GEMMA_4_26B_A4B_IT_CLOUDFLARE,
|
|
7452
|
-
limits: { maxInputTokens: 256_000, maxOutputTokens: 32_768 },
|
|
7453
|
-
config: { temperature: 0.2 },
|
|
7454
|
-
pricing: { getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7455
|
-
capabilities: {
|
|
7456
|
-
vision: true,
|
|
7457
|
-
tools: true,
|
|
7458
|
-
reasoning: true,
|
|
7459
|
-
webSearch: false,
|
|
7460
|
-
jsonOutput: false,
|
|
7461
|
-
structuredOutputs: false,
|
|
7462
|
-
},
|
|
7463
|
-
},
|
|
7464
7272
|
[LLMAPI_typedefs_1.LLMAPIModelNames.COHERE_EMBED_ENGLISH_V3]: {
|
|
7465
7273
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.COHERE_EMBED_ENGLISH_V3,
|
|
7466
7274
|
limits: { maxInputTokens: 512, maxOutputTokens: 8_192 },
|
|
@@ -7507,7 +7315,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7507
7315
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_5_FLASH,
|
|
7508
7316
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
7509
7317
|
config: { temperature: 0.2 },
|
|
7510
|
-
pricing: { getPriceForTextInput: (tokens) => 1.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 9 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7318
|
+
pricing: { getPriceForTextInput: (tokens) => 1.5 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.15 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 9 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7511
7319
|
capabilities: {
|
|
7512
7320
|
vision: true,
|
|
7513
7321
|
tools: true,
|
|
@@ -7549,7 +7357,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7549
7357
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_5_FLASH_GOOGLE_AI_STUDIO,
|
|
7550
7358
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
7551
7359
|
config: { temperature: 0.2 },
|
|
7552
|
-
pricing: { getPriceForTextInput: (tokens) => 1.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 9 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7360
|
+
pricing: { getPriceForTextInput: (tokens) => 1.5 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.15 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 9 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7553
7361
|
capabilities: {
|
|
7554
7362
|
vision: true,
|
|
7555
7363
|
tools: true,
|
|
@@ -7577,7 +7385,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7577
7385
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_5_FLASH_GOOGLE_VERTEX,
|
|
7578
7386
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
7579
7387
|
config: { temperature: 0.2 },
|
|
7580
|
-
pricing: { getPriceForTextInput: (tokens) => 1.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 9 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7388
|
+
pricing: { getPriceForTextInput: (tokens) => 1.5 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.15 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 9 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7581
7389
|
capabilities: {
|
|
7582
7390
|
vision: true,
|
|
7583
7391
|
tools: true,
|
|
@@ -7606,7 +7414,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7606
7414
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_5_PRO,
|
|
7607
7415
|
limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
|
|
7608
7416
|
config: { temperature: 0.2 },
|
|
7609
|
-
pricing: { getPriceForTextInput: (tokens) => 30 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 180 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7417
|
+
pricing: { getPriceForTextInput: (tokens) => 30 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 180 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7610
7418
|
capabilities: {
|
|
7611
7419
|
vision: true,
|
|
7612
7420
|
tools: true,
|
|
@@ -7662,7 +7470,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7662
7470
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_3,
|
|
7663
7471
|
limits: { maxInputTokens: 1_000_000, maxOutputTokens: 131_072 },
|
|
7664
7472
|
config: { temperature: 0.2 },
|
|
7665
|
-
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7473
|
+
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7666
7474
|
capabilities: {
|
|
7667
7475
|
vision: true,
|
|
7668
7476
|
tools: true,
|
|
@@ -7719,7 +7527,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7719
7527
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_7_CODE,
|
|
7720
7528
|
limits: { maxInputTokens: 262_144, maxOutputTokens: 262_144 },
|
|
7721
7529
|
config: { temperature: 0.2 },
|
|
7722
|
-
pricing: { getPriceForTextInput: (tokens) => 0.95 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7530
|
+
pricing: { getPriceForTextInput: (tokens) => 0.95 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.19 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7723
7531
|
capabilities: {
|
|
7724
7532
|
vision: true,
|
|
7725
7533
|
tools: true,
|
|
@@ -7740,6 +7548,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7740
7548
|
},
|
|
7741
7549
|
pricing: {
|
|
7742
7550
|
getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000,
|
|
7551
|
+
getPriceForCachedTextInput: (tokens) => 0.1 * tokens / 1_000_000,
|
|
7743
7552
|
getPriceForTextOutput: (tokens) => 5 * tokens / 1_000_000,
|
|
7744
7553
|
getPriceForAudioInput: () => 0,
|
|
7745
7554
|
getPriceForAudioOutput: () => 0,
|
|
@@ -7758,7 +7567,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7758
7567
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_8_LLMAPI_ANTHROPIC,
|
|
7759
7568
|
limits: { maxInputTokens: 1_000_000, maxOutputTokens: 128_000 },
|
|
7760
7569
|
config: { temperature: 0.2 },
|
|
7761
|
-
pricing: { getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 25 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7570
|
+
pricing: { getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 25 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7762
7571
|
capabilities: {
|
|
7763
7572
|
vision: true,
|
|
7764
7573
|
tools: true,
|
|
@@ -7779,6 +7588,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7779
7588
|
},
|
|
7780
7589
|
pricing: {
|
|
7781
7590
|
getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000,
|
|
7591
|
+
getPriceForCachedTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
7782
7592
|
getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
|
|
7783
7593
|
getPriceForAudioInput: () => 0,
|
|
7784
7594
|
getPriceForAudioOutput: () => 0,
|
|
@@ -7797,7 +7607,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7797
7607
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI_LLMAPI_OPENAI,
|
|
7798
7608
|
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
7799
7609
|
config: { temperature: 1, reasoning_effort: 'minimal', verbosity: 'medium' },
|
|
7800
|
-
pricing: { getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7610
|
+
pricing: { getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.025 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7801
7611
|
capabilities: {
|
|
7802
7612
|
vision: true,
|
|
7803
7613
|
tools: true,
|
|
@@ -7811,7 +7621,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7811
7621
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_5_LLMAPI_OPENAI,
|
|
7812
7622
|
limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
|
|
7813
7623
|
config: { temperature: 0.2 },
|
|
7814
|
-
pricing: { getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 30 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7624
|
+
pricing: { getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 30 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7815
7625
|
capabilities: {
|
|
7816
7626
|
vision: true,
|
|
7817
7627
|
tools: true,
|
|
@@ -7825,7 +7635,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7825
7635
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MOONSHOTAI_KIMI_K2_6_LLMAPI_OS,
|
|
7826
7636
|
limits: { maxInputTokens: 262_144, maxOutputTokens: 262_144 },
|
|
7827
7637
|
config: { temperature: 0.2 },
|
|
7828
|
-
pricing: { getPriceForTextInput: (tokens) => 0.95 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7638
|
+
pricing: { getPriceForTextInput: (tokens) => 0.95 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.14 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7829
7639
|
capabilities: {
|
|
7830
7640
|
vision: true,
|
|
7831
7641
|
tools: true,
|
|
@@ -7839,7 +7649,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7839
7649
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MOONSHOTAI_KIMI_K2_7_CODE_LLMAPI_OS,
|
|
7840
7650
|
limits: { maxInputTokens: 262_144, maxOutputTokens: 262_144 },
|
|
7841
7651
|
config: { temperature: 0.2 },
|
|
7842
|
-
pricing: { getPriceForTextInput: (tokens) => 0.95 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7652
|
+
pricing: { getPriceForTextInput: (tokens) => 0.95 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.15 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7843
7653
|
capabilities: {
|
|
7844
7654
|
vision: true,
|
|
7845
7655
|
tools: true,
|
|
@@ -7860,6 +7670,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7860
7670
|
},
|
|
7861
7671
|
pricing: {
|
|
7862
7672
|
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
7673
|
+
getPriceForCachedTextInput: (tokens) => 0.11 * tokens / 1_000_000,
|
|
7863
7674
|
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
7864
7675
|
getPriceForAudioInput: () => 0,
|
|
7865
7676
|
getPriceForAudioOutput: () => 0,
|
|
@@ -7885,6 +7696,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7885
7696
|
},
|
|
7886
7697
|
pricing: {
|
|
7887
7698
|
getPriceForTextInput: (tokens) => 0.2 * tokens / 1_000_000,
|
|
7699
|
+
getPriceForCachedTextInput: (tokens) => 0.025 * tokens / 1_000_000,
|
|
7888
7700
|
getPriceForTextOutput: (tokens) => 1.1 * tokens / 1_000_000,
|
|
7889
7701
|
getPriceForAudioInput: () => 0,
|
|
7890
7702
|
getPriceForAudioOutput: () => 0,
|
|
@@ -7910,6 +7722,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7910
7722
|
},
|
|
7911
7723
|
pricing: {
|
|
7912
7724
|
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
7725
|
+
getPriceForCachedTextInput: (tokens) => 0.08 * tokens / 1_000_000,
|
|
7913
7726
|
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
7914
7727
|
getPriceForAudioInput: () => 0,
|
|
7915
7728
|
getPriceForAudioOutput: () => 0,
|
|
@@ -7935,6 +7748,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7935
7748
|
},
|
|
7936
7749
|
pricing: {
|
|
7937
7750
|
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
7751
|
+
getPriceForCachedTextInput: (tokens) => 0.055 * tokens / 1_000_000,
|
|
7938
7752
|
getPriceForTextOutput: (tokens) => 0.9 * tokens / 1_000_000,
|
|
7939
7753
|
getPriceForAudioInput: () => 0,
|
|
7940
7754
|
getPriceForAudioOutput: () => 0,
|
|
@@ -7960,6 +7774,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7960
7774
|
},
|
|
7961
7775
|
pricing: {
|
|
7962
7776
|
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
7777
|
+
getPriceForCachedTextInput: (tokens) => 0.08 * tokens / 1_000_000,
|
|
7963
7778
|
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
7964
7779
|
getPriceForAudioInput: () => 0,
|
|
7965
7780
|
getPriceForAudioOutput: () => 0,
|
|
@@ -7985,6 +7800,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
7985
7800
|
},
|
|
7986
7801
|
pricing: {
|
|
7987
7802
|
getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000,
|
|
7803
|
+
getPriceForCachedTextInput: (tokens) => 0.2 * tokens / 1_000_000,
|
|
7988
7804
|
getPriceForTextOutput: (tokens) => 3.2 * tokens / 1_000_000,
|
|
7989
7805
|
getPriceForAudioInput: () => 0,
|
|
7990
7806
|
getPriceForAudioOutput: () => 0,
|
|
@@ -8003,7 +7819,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
8003
7819
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.Z_AI_GLM_5_TURBO_LLMAPI_OS,
|
|
8004
7820
|
limits: { maxInputTokens: 200_000, maxOutputTokens: 65_536 },
|
|
8005
7821
|
config: { temperature: 0.2 },
|
|
8006
|
-
pricing: { getPriceForTextInput: (tokens) => 1.2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7822
|
+
pricing: { getPriceForTextInput: (tokens) => 1.2 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.24 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8007
7823
|
capabilities: {
|
|
8008
7824
|
vision: false,
|
|
8009
7825
|
tools: true,
|
|
@@ -8017,7 +7833,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
8017
7833
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.Z_AI_GLM_5_1_LLMAPI_OS,
|
|
8018
7834
|
limits: { maxInputTokens: 202_800, maxOutputTokens: 131_072 },
|
|
8019
7835
|
config: { temperature: 0.2 },
|
|
8020
|
-
pricing: { getPriceForTextInput: (tokens) => 1.4 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7836
|
+
pricing: { getPriceForTextInput: (tokens) => 1.4 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.26 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8021
7837
|
capabilities: {
|
|
8022
7838
|
vision: false,
|
|
8023
7839
|
tools: true,
|
|
@@ -8027,25 +7843,11 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
8027
7843
|
structuredOutputs: false,
|
|
8028
7844
|
},
|
|
8029
7845
|
},
|
|
8030
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.MIMO_V2_FLASH]: {
|
|
8031
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.MIMO_V2_FLASH,
|
|
8032
|
-
limits: { maxInputTokens: 262_144, maxOutputTokens: 65_536 },
|
|
8033
|
-
config: { temperature: 0.2 },
|
|
8034
|
-
pricing: { getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8035
|
-
capabilities: {
|
|
8036
|
-
vision: false,
|
|
8037
|
-
tools: true,
|
|
8038
|
-
reasoning: true,
|
|
8039
|
-
webSearch: false,
|
|
8040
|
-
jsonOutput: false,
|
|
8041
|
-
structuredOutputs: false,
|
|
8042
|
-
},
|
|
8043
|
-
},
|
|
8044
7846
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MIMO_V2_5_PRO]: {
|
|
8045
7847
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MIMO_V2_5_PRO,
|
|
8046
7848
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 131_072 },
|
|
8047
7849
|
config: { temperature: 0.2 },
|
|
8048
|
-
pricing: { getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7850
|
+
pricing: { getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8049
7851
|
capabilities: {
|
|
8050
7852
|
vision: false,
|
|
8051
7853
|
tools: true,
|
|
@@ -8059,7 +7861,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
8059
7861
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M3,
|
|
8060
7862
|
limits: { maxInputTokens: 1_000_000, maxOutputTokens: 131_072 },
|
|
8061
7863
|
config: { temperature: 0.2 },
|
|
8062
|
-
pricing: { getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7864
|
+
pricing: { getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.06 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8063
7865
|
capabilities: {
|
|
8064
7866
|
vision: true,
|
|
8065
7867
|
tools: true,
|
|
@@ -8073,7 +7875,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
8073
7875
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M3_MINIMAX,
|
|
8074
7876
|
limits: { maxInputTokens: 1_000_000, maxOutputTokens: 131_072 },
|
|
8075
7877
|
config: { temperature: 0.2 },
|
|
8076
|
-
pricing: { getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7878
|
+
pricing: { getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.06 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8077
7879
|
capabilities: {
|
|
8078
7880
|
vision: true,
|
|
8079
7881
|
tools: true,
|
|
@@ -8101,7 +7903,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
8101
7903
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_7_CODE_MOONSHOT,
|
|
8102
7904
|
limits: { maxInputTokens: 262_144, maxOutputTokens: 262_144 },
|
|
8103
7905
|
config: { temperature: 0.2 },
|
|
8104
|
-
pricing: { getPriceForTextInput: (tokens) => 0.95 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7906
|
+
pricing: { getPriceForTextInput: (tokens) => 0.95 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.19 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8105
7907
|
capabilities: {
|
|
8106
7908
|
vision: true,
|
|
8107
7909
|
tools: true,
|
|
@@ -8115,7 +7917,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
8115
7917
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_ORG_GLM_5_2_NEBIUS,
|
|
8116
7918
|
limits: { maxInputTokens: 1_000_000, maxOutputTokens: 131_072 },
|
|
8117
7919
|
config: { temperature: 0.2 },
|
|
8118
|
-
pricing: { getPriceForTextInput: (tokens) => 1.4 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7920
|
+
pricing: { getPriceForTextInput: (tokens) => 1.4 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.26 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8119
7921
|
capabilities: {
|
|
8120
7922
|
vision: false,
|
|
8121
7923
|
tools: true,
|
|
@@ -8125,25 +7927,11 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
8125
7927
|
structuredOutputs: false,
|
|
8126
7928
|
},
|
|
8127
7929
|
},
|
|
8128
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.GOOGLE_GEMMA_4_26B_A4B_IT_NOVITA]: {
|
|
8129
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GOOGLE_GEMMA_4_26B_A4B_IT_NOVITA,
|
|
8130
|
-
limits: { maxInputTokens: 256_000, maxOutputTokens: 32_768 },
|
|
8131
|
-
config: { temperature: 0.2 },
|
|
8132
|
-
pricing: { getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8133
|
-
capabilities: {
|
|
8134
|
-
vision: true,
|
|
8135
|
-
tools: true,
|
|
8136
|
-
reasoning: true,
|
|
8137
|
-
webSearch: false,
|
|
8138
|
-
jsonOutput: false,
|
|
8139
|
-
structuredOutputs: false,
|
|
8140
|
-
},
|
|
8141
|
-
},
|
|
8142
7930
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_MINIMAX_M3_NOVITA]: {
|
|
8143
7931
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_MINIMAX_M3_NOVITA,
|
|
8144
7932
|
limits: { maxInputTokens: 1_000_000, maxOutputTokens: 131_072 },
|
|
8145
7933
|
config: { temperature: 0.2 },
|
|
8146
|
-
pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7934
|
+
pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.06 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8147
7935
|
capabilities: {
|
|
8148
7936
|
vision: true,
|
|
8149
7937
|
tools: true,
|
|
@@ -8157,7 +7945,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
8157
7945
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MOONSHOTAI_KIMI_K2_7_CODE_NOVITA,
|
|
8158
7946
|
limits: { maxInputTokens: 262_144, maxOutputTokens: 262_144 },
|
|
8159
7947
|
config: { temperature: 0.2 },
|
|
8160
|
-
pricing: { getPriceForTextInput: (tokens) => 0.95 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7948
|
+
pricing: { getPriceForTextInput: (tokens) => 0.95 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.19 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8161
7949
|
capabilities: {
|
|
8162
7950
|
vision: true,
|
|
8163
7951
|
tools: true,
|
|
@@ -8167,25 +7955,11 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
8167
7955
|
structuredOutputs: false,
|
|
8168
7956
|
},
|
|
8169
7957
|
},
|
|
8170
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.XIAOMIMIMO_MIMO_V2_FLASH_NOVITA]: {
|
|
8171
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.XIAOMIMIMO_MIMO_V2_FLASH_NOVITA,
|
|
8172
|
-
limits: { maxInputTokens: 262_144, maxOutputTokens: 65_536 },
|
|
8173
|
-
config: { temperature: 0.2 },
|
|
8174
|
-
pricing: { getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8175
|
-
capabilities: {
|
|
8176
|
-
vision: false,
|
|
8177
|
-
tools: true,
|
|
8178
|
-
reasoning: true,
|
|
8179
|
-
webSearch: false,
|
|
8180
|
-
jsonOutput: false,
|
|
8181
|
-
structuredOutputs: false,
|
|
8182
|
-
},
|
|
8183
|
-
},
|
|
8184
7958
|
[LLMAPI_typedefs_1.LLMAPIModelNames.XIAOMIMIMO_MIMO_V2_5_PRO_NOVITA]: {
|
|
8185
7959
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.XIAOMIMIMO_MIMO_V2_5_PRO_NOVITA,
|
|
8186
7960
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 131_072 },
|
|
8187
7961
|
config: { temperature: 0.2 },
|
|
8188
|
-
pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 6 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7962
|
+
pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.0043 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 6 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8189
7963
|
capabilities: {
|
|
8190
7964
|
vision: false,
|
|
8191
7965
|
tools: true,
|
|
@@ -8199,7 +7973,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
8199
7973
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_ORG_GLM_5_2_NOVITA,
|
|
8200
7974
|
limits: { maxInputTokens: 1_000_000, maxOutputTokens: 131_072 },
|
|
8201
7975
|
config: { temperature: 0.2 },
|
|
8202
|
-
pricing: { getPriceForTextInput: (tokens) => 1.4 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
7976
|
+
pricing: { getPriceForTextInput: (tokens) => 1.4 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.26 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8203
7977
|
capabilities: {
|
|
8204
7978
|
vision: false,
|
|
8205
7979
|
tools: true,
|
|
@@ -8238,7 +8012,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
8238
8012
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_6_LUNA_OPENAI,
|
|
8239
8013
|
limits: { maxInputTokens: 128_000, maxOutputTokens: 128_000 },
|
|
8240
8014
|
config: { temperature: 0.2 },
|
|
8241
|
-
pricing: { getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 6 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8015
|
+
pricing: { getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.02 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 6 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8242
8016
|
capabilities: {
|
|
8243
8017
|
vision: true,
|
|
8244
8018
|
tools: true,
|
|
@@ -8252,7 +8026,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
8252
8026
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_6_SOL_OPENAI,
|
|
8253
8027
|
limits: { maxInputTokens: 128_000, maxOutputTokens: 128_000 },
|
|
8254
8028
|
config: { temperature: 0.2 },
|
|
8255
|
-
pricing: { getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 30 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8029
|
+
pricing: { getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 30 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8256
8030
|
capabilities: {
|
|
8257
8031
|
vision: true,
|
|
8258
8032
|
tools: true,
|
|
@@ -8266,7 +8040,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
8266
8040
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_6_TERRA_OPENAI,
|
|
8267
8041
|
limits: { maxInputTokens: 128_000, maxOutputTokens: 128_000 },
|
|
8268
8042
|
config: { temperature: 0.2 },
|
|
8269
|
-
pricing: { getPriceForTextInput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8043
|
+
pricing: { getPriceForTextInput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8270
8044
|
capabilities: {
|
|
8271
8045
|
vision: true,
|
|
8272
8046
|
tools: true,
|
|
@@ -8294,7 +8068,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
8294
8068
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_7_PLUS,
|
|
8295
8069
|
limits: { maxInputTokens: 1_000_000, maxOutputTokens: 65_536 },
|
|
8296
8070
|
config: { temperature: 0.2 },
|
|
8297
|
-
pricing: { getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8071
|
+
pricing: { getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.05 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8298
8072
|
capabilities: {
|
|
8299
8073
|
vision: true,
|
|
8300
8074
|
tools: true,
|
|
@@ -8395,7 +8169,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
8395
8169
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MOONSHOTAI_KIMI_K2_7_CODE_TOGETHERAI,
|
|
8396
8170
|
limits: { maxInputTokens: 262_144, maxOutputTokens: 262_144 },
|
|
8397
8171
|
config: { temperature: 0.2 },
|
|
8398
|
-
pricing: { getPriceForTextInput: (tokens) => 0.95 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8172
|
+
pricing: { getPriceForTextInput: (tokens) => 0.95 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.19 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8399
8173
|
capabilities: {
|
|
8400
8174
|
vision: true,
|
|
8401
8175
|
tools: true,
|
|
@@ -8423,7 +8197,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
8423
8197
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_3_XAI,
|
|
8424
8198
|
limits: { maxInputTokens: 1_000_000, maxOutputTokens: 131_072 },
|
|
8425
8199
|
config: { temperature: 0.2 },
|
|
8426
|
-
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8200
|
+
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8427
8201
|
capabilities: {
|
|
8428
8202
|
vision: true,
|
|
8429
8203
|
tools: true,
|
|
@@ -8433,25 +8207,11 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
8433
8207
|
structuredOutputs: false,
|
|
8434
8208
|
},
|
|
8435
8209
|
},
|
|
8436
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.MIMO_V2_FLASH_XIAOMI]: {
|
|
8437
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.MIMO_V2_FLASH_XIAOMI,
|
|
8438
|
-
limits: { maxInputTokens: 262_144, maxOutputTokens: 65_536 },
|
|
8439
|
-
config: { temperature: 0.2 },
|
|
8440
|
-
pricing: { getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8441
|
-
capabilities: {
|
|
8442
|
-
vision: false,
|
|
8443
|
-
tools: true,
|
|
8444
|
-
reasoning: true,
|
|
8445
|
-
webSearch: false,
|
|
8446
|
-
jsonOutput: false,
|
|
8447
|
-
structuredOutputs: false,
|
|
8448
|
-
},
|
|
8449
|
-
},
|
|
8450
8210
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MIMO_V2_5_PRO_XIAOMI]: {
|
|
8451
8211
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MIMO_V2_5_PRO_XIAOMI,
|
|
8452
8212
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 131_072 },
|
|
8453
8213
|
config: { temperature: 0.2 },
|
|
8454
|
-
pricing: { getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8214
|
+
pricing: { getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.0036 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8455
8215
|
capabilities: {
|
|
8456
8216
|
vision: false,
|
|
8457
8217
|
tools: true,
|
|
@@ -8479,7 +8239,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
8479
8239
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_GLM_5_2,
|
|
8480
8240
|
limits: { maxInputTokens: 1_000_000, maxOutputTokens: 131_072 },
|
|
8481
8241
|
config: { temperature: 0.2 },
|
|
8482
|
-
pricing: { getPriceForTextInput: (tokens) => 1.4 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8242
|
+
pricing: { getPriceForTextInput: (tokens) => 1.4 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.26 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8483
8243
|
capabilities: {
|
|
8484
8244
|
vision: false,
|
|
8485
8245
|
tools: true,
|
|
@@ -8493,7 +8253,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
8493
8253
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_TURBO_ZAI,
|
|
8494
8254
|
limits: { maxInputTokens: 200_000, maxOutputTokens: 65_536 },
|
|
8495
8255
|
config: { temperature: 0.2 },
|
|
8496
|
-
pricing: { getPriceForTextInput: (tokens) => 1.2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8256
|
+
pricing: { getPriceForTextInput: (tokens) => 1.2 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.24 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8497
8257
|
capabilities: {
|
|
8498
8258
|
vision: false,
|
|
8499
8259
|
tools: true,
|
|
@@ -8507,7 +8267,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
8507
8267
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_2_ZAI,
|
|
8508
8268
|
limits: { maxInputTokens: 1_000_000, maxOutputTokens: 131_072 },
|
|
8509
8269
|
config: { temperature: 0.2 },
|
|
8510
|
-
pricing: { getPriceForTextInput: (tokens) => 1.4 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8270
|
+
pricing: { getPriceForTextInput: (tokens) => 1.4 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.26 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8511
8271
|
capabilities: {
|
|
8512
8272
|
vision: false,
|
|
8513
8273
|
tools: true,
|
|
@@ -8542,6 +8302,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
8542
8302
|
},
|
|
8543
8303
|
pricing: {
|
|
8544
8304
|
getPriceForTextInput: (tokens) => 0.28 * tokens / 1_000_000,
|
|
8305
|
+
getPriceForCachedTextInput: (tokens) => 0.028 * tokens / 1_000_000,
|
|
8545
8306
|
getPriceForTextOutput: (tokens) => 0.42 * tokens / 1_000_000,
|
|
8546
8307
|
getPriceForAudioInput: () => 0,
|
|
8547
8308
|
getPriceForAudioOutput: () => 0,
|
|
@@ -8560,7 +8321,2276 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
8560
8321
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MOONSHOTAI_KIMI_K2_6_ZYPHRA,
|
|
8561
8322
|
limits: { maxInputTokens: 262_144, maxOutputTokens: 262_144 },
|
|
8562
8323
|
config: { temperature: 0.2 },
|
|
8563
|
-
pricing: { getPriceForTextInput: (tokens) => 0.95 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8324
|
+
pricing: { getPriceForTextInput: (tokens) => 0.95 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.16 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8325
|
+
capabilities: {
|
|
8326
|
+
vision: true,
|
|
8327
|
+
tools: true,
|
|
8328
|
+
reasoning: true,
|
|
8329
|
+
webSearch: false,
|
|
8330
|
+
jsonOutput: false,
|
|
8331
|
+
structuredOutputs: false,
|
|
8332
|
+
},
|
|
8333
|
+
},
|
|
8334
|
+
// ─── Sync additions (auto-generated) ─────────────────────
|
|
8335
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN2_5_7B_INSTRUCT_TURBO_QWEN]: {
|
|
8336
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN2_5_7B_INSTRUCT_TURBO_QWEN,
|
|
8337
|
+
limits: { maxInputTokens: 131_072, maxOutputTokens: 8_192 },
|
|
8338
|
+
config: { temperature: 0.2 },
|
|
8339
|
+
pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8340
|
+
capabilities: {
|
|
8341
|
+
vision: false,
|
|
8342
|
+
tools: true,
|
|
8343
|
+
reasoning: false,
|
|
8344
|
+
webSearch: false,
|
|
8345
|
+
jsonOutput: false,
|
|
8346
|
+
structuredOutputs: false,
|
|
8347
|
+
},
|
|
8348
|
+
},
|
|
8349
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN2_5_VL_72B_INSTRUCT_QWEN]: {
|
|
8350
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN2_5_VL_72B_INSTRUCT_QWEN,
|
|
8351
|
+
limits: { maxInputTokens: 32_768, maxOutputTokens: 8_192 },
|
|
8352
|
+
config: { temperature: 0.2 },
|
|
8353
|
+
pricing: { getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.025 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.75 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8354
|
+
capabilities: {
|
|
8355
|
+
vision: true,
|
|
8356
|
+
tools: true,
|
|
8357
|
+
reasoning: false,
|
|
8358
|
+
webSearch: false,
|
|
8359
|
+
jsonOutput: false,
|
|
8360
|
+
structuredOutputs: false,
|
|
8361
|
+
},
|
|
8362
|
+
},
|
|
8363
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_V4_FLASH_0731_ALIBABA]: {
|
|
8364
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_V4_FLASH_0731_ALIBABA,
|
|
8365
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 384_000 },
|
|
8366
|
+
config: { temperature: 0.2 },
|
|
8367
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8368
|
+
capabilities: {
|
|
8369
|
+
vision: false,
|
|
8370
|
+
tools: true,
|
|
8371
|
+
reasoning: true,
|
|
8372
|
+
webSearch: false,
|
|
8373
|
+
jsonOutput: false,
|
|
8374
|
+
structuredOutputs: false,
|
|
8375
|
+
},
|
|
8376
|
+
},
|
|
8377
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_7_CODE_ALIBABA]: {
|
|
8378
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_7_CODE_ALIBABA,
|
|
8379
|
+
limits: { maxInputTokens: 262_144, maxOutputTokens: 262_144 },
|
|
8380
|
+
config: { temperature: 0.2 },
|
|
8381
|
+
pricing: { getPriceForTextInput: (tokens) => 0.95 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.160835 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8382
|
+
capabilities: {
|
|
8383
|
+
vision: true,
|
|
8384
|
+
tools: true,
|
|
8385
|
+
reasoning: true,
|
|
8386
|
+
webSearch: false,
|
|
8387
|
+
jsonOutput: false,
|
|
8388
|
+
structuredOutputs: false,
|
|
8389
|
+
},
|
|
8390
|
+
},
|
|
8391
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_8_MAX_ALIBABA]: {
|
|
8392
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_8_MAX_ALIBABA,
|
|
8393
|
+
limits: { maxInputTokens: 1_000_000, maxOutputTokens: 65_536 },
|
|
8394
|
+
config: { temperature: 0.2 },
|
|
8395
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8396
|
+
capabilities: {
|
|
8397
|
+
vision: true,
|
|
8398
|
+
tools: true,
|
|
8399
|
+
reasoning: true,
|
|
8400
|
+
webSearch: false,
|
|
8401
|
+
jsonOutput: false,
|
|
8402
|
+
structuredOutputs: false,
|
|
8403
|
+
},
|
|
8404
|
+
},
|
|
8405
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_5_ANTHROPIC]: {
|
|
8406
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_5_ANTHROPIC,
|
|
8407
|
+
limits: { maxInputTokens: 1_000_000, maxOutputTokens: 128_000 },
|
|
8408
|
+
config: { temperature: 0.2 },
|
|
8409
|
+
pricing: { getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 25 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8410
|
+
capabilities: {
|
|
8411
|
+
vision: true,
|
|
8412
|
+
tools: true,
|
|
8413
|
+
reasoning: true,
|
|
8414
|
+
webSearch: false,
|
|
8415
|
+
jsonOutput: false,
|
|
8416
|
+
structuredOutputs: false,
|
|
8417
|
+
},
|
|
8418
|
+
},
|
|
8419
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.ANTHROPIC_CLAUDE_OPUS_5_AWS_BEDROCK]: {
|
|
8420
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.ANTHROPIC_CLAUDE_OPUS_5_AWS_BEDROCK,
|
|
8421
|
+
limits: { maxInputTokens: 1_000_000, maxOutputTokens: 128_000 },
|
|
8422
|
+
config: { temperature: 0.2 },
|
|
8423
|
+
pricing: { getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 25 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8424
|
+
capabilities: {
|
|
8425
|
+
vision: true,
|
|
8426
|
+
tools: true,
|
|
8427
|
+
reasoning: true,
|
|
8428
|
+
webSearch: false,
|
|
8429
|
+
jsonOutput: false,
|
|
8430
|
+
structuredOutputs: false,
|
|
8431
|
+
},
|
|
8432
|
+
},
|
|
8433
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_DEEPSEEK_V4_PRO_CANOPYWAVE]: {
|
|
8434
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_DEEPSEEK_V4_PRO_CANOPYWAVE,
|
|
8435
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 384_000 },
|
|
8436
|
+
config: { temperature: 0.2 },
|
|
8437
|
+
pricing: { getPriceForTextInput: (tokens) => 1.74 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.003625 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3.48 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8438
|
+
capabilities: {
|
|
8439
|
+
vision: false,
|
|
8440
|
+
tools: true,
|
|
8441
|
+
reasoning: true,
|
|
8442
|
+
webSearch: false,
|
|
8443
|
+
jsonOutput: false,
|
|
8444
|
+
structuredOutputs: false,
|
|
8445
|
+
},
|
|
8446
|
+
},
|
|
8447
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K3_CANOPYWAVE]: {
|
|
8448
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K3_CANOPYWAVE,
|
|
8449
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 1_048_576 },
|
|
8450
|
+
config: { temperature: 0.2 },
|
|
8451
|
+
pricing: { getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8452
|
+
capabilities: {
|
|
8453
|
+
vision: true,
|
|
8454
|
+
tools: true,
|
|
8455
|
+
reasoning: true,
|
|
8456
|
+
webSearch: false,
|
|
8457
|
+
jsonOutput: false,
|
|
8458
|
+
structuredOutputs: false,
|
|
8459
|
+
},
|
|
8460
|
+
},
|
|
8461
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_MINIMAX_M3_CANOPYWAVE]: {
|
|
8462
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_MINIMAX_M3_CANOPYWAVE,
|
|
8463
|
+
limits: { maxInputTokens: 1_000_000, maxOutputTokens: 131_072 },
|
|
8464
|
+
config: { temperature: 0.2 },
|
|
8465
|
+
pricing: { getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.089 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8466
|
+
capabilities: {
|
|
8467
|
+
vision: true,
|
|
8468
|
+
tools: true,
|
|
8469
|
+
reasoning: true,
|
|
8470
|
+
webSearch: false,
|
|
8471
|
+
jsonOutput: false,
|
|
8472
|
+
structuredOutputs: false,
|
|
8473
|
+
},
|
|
8474
|
+
},
|
|
8475
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.MOONSHOTAI_KIMI_K2_7_CODE_CANOPYWAVE]: {
|
|
8476
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.MOONSHOTAI_KIMI_K2_7_CODE_CANOPYWAVE,
|
|
8477
|
+
limits: { maxInputTokens: 262_144, maxOutputTokens: 262_144 },
|
|
8478
|
+
config: { temperature: 0.2 },
|
|
8479
|
+
pricing: { getPriceForTextInput: (tokens) => 0.95 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.19 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8480
|
+
capabilities: {
|
|
8481
|
+
vision: true,
|
|
8482
|
+
tools: true,
|
|
8483
|
+
reasoning: true,
|
|
8484
|
+
webSearch: false,
|
|
8485
|
+
jsonOutput: false,
|
|
8486
|
+
structuredOutputs: false,
|
|
8487
|
+
},
|
|
8488
|
+
},
|
|
8489
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_GLM_5_2_CANOPYWAVE]: {
|
|
8490
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_GLM_5_2_CANOPYWAVE,
|
|
8491
|
+
limits: { maxInputTokens: 1_000_000, maxOutputTokens: 131_072 },
|
|
8492
|
+
config: { temperature: 0.2 },
|
|
8493
|
+
pricing: { getPriceForTextInput: (tokens) => 1.4 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.26 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8494
|
+
capabilities: {
|
|
8495
|
+
vision: false,
|
|
8496
|
+
tools: true,
|
|
8497
|
+
reasoning: true,
|
|
8498
|
+
webSearch: true,
|
|
8499
|
+
jsonOutput: false,
|
|
8500
|
+
structuredOutputs: false,
|
|
8501
|
+
},
|
|
8502
|
+
},
|
|
8503
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_5]: {
|
|
8504
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_5,
|
|
8505
|
+
limits: { maxInputTokens: 1_000_000, maxOutputTokens: 128_000 },
|
|
8506
|
+
config: { temperature: 0.2 },
|
|
8507
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8508
|
+
capabilities: {
|
|
8509
|
+
vision: true,
|
|
8510
|
+
tools: true,
|
|
8511
|
+
reasoning: true,
|
|
8512
|
+
webSearch: false,
|
|
8513
|
+
jsonOutput: false,
|
|
8514
|
+
structuredOutputs: false,
|
|
8515
|
+
},
|
|
8516
|
+
},
|
|
8517
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_V4_FLASH_0731]: {
|
|
8518
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_V4_FLASH_0731,
|
|
8519
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 384_000 },
|
|
8520
|
+
config: { temperature: 0.2 },
|
|
8521
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8522
|
+
capabilities: {
|
|
8523
|
+
vision: false,
|
|
8524
|
+
tools: true,
|
|
8525
|
+
reasoning: true,
|
|
8526
|
+
webSearch: false,
|
|
8527
|
+
jsonOutput: false,
|
|
8528
|
+
structuredOutputs: false,
|
|
8529
|
+
},
|
|
8530
|
+
},
|
|
8531
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_5_FLASH_LITE]: {
|
|
8532
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_5_FLASH_LITE,
|
|
8533
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
8534
|
+
config: { temperature: 0.2 },
|
|
8535
|
+
pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.03 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8536
|
+
capabilities: {
|
|
8537
|
+
vision: true,
|
|
8538
|
+
tools: true,
|
|
8539
|
+
reasoning: true,
|
|
8540
|
+
webSearch: false,
|
|
8541
|
+
jsonOutput: false,
|
|
8542
|
+
structuredOutputs: false,
|
|
8543
|
+
},
|
|
8544
|
+
},
|
|
8545
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_6_FLASH]: {
|
|
8546
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_6_FLASH,
|
|
8547
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
8548
|
+
config: { temperature: 0.2 },
|
|
8549
|
+
pricing: { getPriceForTextInput: (tokens) => 1.5 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.15 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 7.5 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8550
|
+
capabilities: {
|
|
8551
|
+
vision: true,
|
|
8552
|
+
tools: true,
|
|
8553
|
+
reasoning: true,
|
|
8554
|
+
webSearch: false,
|
|
8555
|
+
jsonOutput: false,
|
|
8556
|
+
structuredOutputs: false,
|
|
8557
|
+
},
|
|
8558
|
+
},
|
|
8559
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_5_FLASH_LITE_GOOGLE_AI_STUDIO]: {
|
|
8560
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_5_FLASH_LITE_GOOGLE_AI_STUDIO,
|
|
8561
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
8562
|
+
config: { temperature: 0.2 },
|
|
8563
|
+
pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.03 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8564
|
+
capabilities: {
|
|
8565
|
+
vision: true,
|
|
8566
|
+
tools: true,
|
|
8567
|
+
reasoning: true,
|
|
8568
|
+
webSearch: false,
|
|
8569
|
+
jsonOutput: false,
|
|
8570
|
+
structuredOutputs: false,
|
|
8571
|
+
},
|
|
8572
|
+
},
|
|
8573
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_6_FLASH_GOOGLE_AI_STUDIO]: {
|
|
8574
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_6_FLASH_GOOGLE_AI_STUDIO,
|
|
8575
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
8576
|
+
config: { temperature: 0.2 },
|
|
8577
|
+
pricing: { getPriceForTextInput: (tokens) => 1.5 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.15 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 7.5 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8578
|
+
capabilities: {
|
|
8579
|
+
vision: true,
|
|
8580
|
+
tools: true,
|
|
8581
|
+
reasoning: true,
|
|
8582
|
+
webSearch: false,
|
|
8583
|
+
jsonOutput: false,
|
|
8584
|
+
structuredOutputs: false,
|
|
8585
|
+
},
|
|
8586
|
+
},
|
|
8587
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_5_FLASH_LITE_GOOGLE_VERTEX]: {
|
|
8588
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_5_FLASH_LITE_GOOGLE_VERTEX,
|
|
8589
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
8590
|
+
config: { temperature: 0.2 },
|
|
8591
|
+
pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.03 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8592
|
+
capabilities: {
|
|
8593
|
+
vision: true,
|
|
8594
|
+
tools: true,
|
|
8595
|
+
reasoning: true,
|
|
8596
|
+
webSearch: false,
|
|
8597
|
+
jsonOutput: false,
|
|
8598
|
+
structuredOutputs: false,
|
|
8599
|
+
},
|
|
8600
|
+
},
|
|
8601
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_6_FLASH_GOOGLE_VERTEX]: {
|
|
8602
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_6_FLASH_GOOGLE_VERTEX,
|
|
8603
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
8604
|
+
config: { temperature: 0.2 },
|
|
8605
|
+
pricing: { getPriceForTextInput: (tokens) => 1.5 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.15 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 7.5 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8606
|
+
capabilities: {
|
|
8607
|
+
vision: true,
|
|
8608
|
+
tools: true,
|
|
8609
|
+
reasoning: true,
|
|
8610
|
+
webSearch: false,
|
|
8611
|
+
jsonOutput: false,
|
|
8612
|
+
structuredOutputs: false,
|
|
8613
|
+
},
|
|
8614
|
+
},
|
|
8615
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_5]: {
|
|
8616
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_5,
|
|
8617
|
+
limits: { maxInputTokens: 500_000, maxOutputTokens: 131_072 },
|
|
8618
|
+
config: { temperature: 0.2 },
|
|
8619
|
+
pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 6 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8620
|
+
capabilities: {
|
|
8621
|
+
vision: true,
|
|
8622
|
+
tools: true,
|
|
8623
|
+
reasoning: true,
|
|
8624
|
+
webSearch: false,
|
|
8625
|
+
jsonOutput: false,
|
|
8626
|
+
structuredOutputs: false,
|
|
8627
|
+
},
|
|
8628
|
+
},
|
|
8629
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GROK_I2V]: {
|
|
8630
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_I2V,
|
|
8631
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
8632
|
+
config: { temperature: 0.2 },
|
|
8633
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8634
|
+
capabilities: {
|
|
8635
|
+
vision: false,
|
|
8636
|
+
tools: false,
|
|
8637
|
+
reasoning: false,
|
|
8638
|
+
webSearch: false,
|
|
8639
|
+
jsonOutput: false,
|
|
8640
|
+
structuredOutputs: false,
|
|
8641
|
+
},
|
|
8642
|
+
},
|
|
8643
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GROK_T2V]: {
|
|
8644
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_T2V,
|
|
8645
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
8646
|
+
config: { temperature: 0.2 },
|
|
8647
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8648
|
+
capabilities: {
|
|
8649
|
+
vision: false,
|
|
8650
|
+
tools: false,
|
|
8651
|
+
reasoning: false,
|
|
8652
|
+
webSearch: false,
|
|
8653
|
+
jsonOutput: false,
|
|
8654
|
+
structuredOutputs: false,
|
|
8655
|
+
},
|
|
8656
|
+
},
|
|
8657
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.HIGGSFIELD_DOP_I2V]: {
|
|
8658
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.HIGGSFIELD_DOP_I2V,
|
|
8659
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
8660
|
+
config: { temperature: 0.2 },
|
|
8661
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8662
|
+
capabilities: {
|
|
8663
|
+
vision: false,
|
|
8664
|
+
tools: false,
|
|
8665
|
+
reasoning: false,
|
|
8666
|
+
webSearch: false,
|
|
8667
|
+
jsonOutput: false,
|
|
8668
|
+
structuredOutputs: false,
|
|
8669
|
+
},
|
|
8670
|
+
},
|
|
8671
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.HUNYUAN_FAST_T2V]: {
|
|
8672
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.HUNYUAN_FAST_T2V,
|
|
8673
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
8674
|
+
config: { temperature: 0.2 },
|
|
8675
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8676
|
+
capabilities: {
|
|
8677
|
+
vision: false,
|
|
8678
|
+
tools: false,
|
|
8679
|
+
reasoning: false,
|
|
8680
|
+
webSearch: false,
|
|
8681
|
+
jsonOutput: false,
|
|
8682
|
+
structuredOutputs: false,
|
|
8683
|
+
},
|
|
8684
|
+
},
|
|
8685
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.HUNYUAN_I2V]: {
|
|
8686
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.HUNYUAN_I2V,
|
|
8687
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
8688
|
+
config: { temperature: 0.2 },
|
|
8689
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8690
|
+
capabilities: {
|
|
8691
|
+
vision: false,
|
|
8692
|
+
tools: false,
|
|
8693
|
+
reasoning: false,
|
|
8694
|
+
webSearch: false,
|
|
8695
|
+
jsonOutput: false,
|
|
8696
|
+
structuredOutputs: false,
|
|
8697
|
+
},
|
|
8698
|
+
},
|
|
8699
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.HUNYUAN_T2V]: {
|
|
8700
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.HUNYUAN_T2V,
|
|
8701
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
8702
|
+
config: { temperature: 0.2 },
|
|
8703
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8704
|
+
capabilities: {
|
|
8705
|
+
vision: false,
|
|
8706
|
+
tools: false,
|
|
8707
|
+
reasoning: false,
|
|
8708
|
+
webSearch: false,
|
|
8709
|
+
jsonOutput: false,
|
|
8710
|
+
structuredOutputs: false,
|
|
8711
|
+
},
|
|
8712
|
+
},
|
|
8713
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_7_CODE_HIGHSPEED]: {
|
|
8714
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_7_CODE_HIGHSPEED,
|
|
8715
|
+
limits: { maxInputTokens: 262_144, maxOutputTokens: 262_144 },
|
|
8716
|
+
config: { temperature: 0.2 },
|
|
8717
|
+
pricing: { getPriceForTextInput: (tokens) => 1.9 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.38 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 8 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8718
|
+
capabilities: {
|
|
8719
|
+
vision: true,
|
|
8720
|
+
tools: true,
|
|
8721
|
+
reasoning: true,
|
|
8722
|
+
webSearch: false,
|
|
8723
|
+
jsonOutput: false,
|
|
8724
|
+
structuredOutputs: false,
|
|
8725
|
+
},
|
|
8726
|
+
},
|
|
8727
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K3]: {
|
|
8728
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K3,
|
|
8729
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 1_048_576 },
|
|
8730
|
+
config: { temperature: 0.2 },
|
|
8731
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8732
|
+
capabilities: {
|
|
8733
|
+
vision: true,
|
|
8734
|
+
tools: true,
|
|
8735
|
+
reasoning: true,
|
|
8736
|
+
webSearch: false,
|
|
8737
|
+
jsonOutput: false,
|
|
8738
|
+
structuredOutputs: false,
|
|
8739
|
+
},
|
|
8740
|
+
},
|
|
8741
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.KLING_O1_I2V]: {
|
|
8742
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.KLING_O1_I2V,
|
|
8743
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
8744
|
+
config: { temperature: 0.2 },
|
|
8745
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8746
|
+
capabilities: {
|
|
8747
|
+
vision: false,
|
|
8748
|
+
tools: false,
|
|
8749
|
+
reasoning: false,
|
|
8750
|
+
webSearch: false,
|
|
8751
|
+
jsonOutput: false,
|
|
8752
|
+
structuredOutputs: false,
|
|
8753
|
+
},
|
|
8754
|
+
},
|
|
8755
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.KLING_O1_REFERENCE_TO_VIDEO]: {
|
|
8756
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.KLING_O1_REFERENCE_TO_VIDEO,
|
|
8757
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
8758
|
+
config: { temperature: 0.2 },
|
|
8759
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8760
|
+
capabilities: {
|
|
8761
|
+
vision: false,
|
|
8762
|
+
tools: false,
|
|
8763
|
+
reasoning: false,
|
|
8764
|
+
webSearch: false,
|
|
8765
|
+
jsonOutput: false,
|
|
8766
|
+
structuredOutputs: false,
|
|
8767
|
+
},
|
|
8768
|
+
},
|
|
8769
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.KLING_O1_STANDARD_I2V]: {
|
|
8770
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.KLING_O1_STANDARD_I2V,
|
|
8771
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
8772
|
+
config: { temperature: 0.2 },
|
|
8773
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8774
|
+
capabilities: {
|
|
8775
|
+
vision: false,
|
|
8776
|
+
tools: false,
|
|
8777
|
+
reasoning: false,
|
|
8778
|
+
webSearch: false,
|
|
8779
|
+
jsonOutput: false,
|
|
8780
|
+
structuredOutputs: false,
|
|
8781
|
+
},
|
|
8782
|
+
},
|
|
8783
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.KLING_O1_STANDARD_REFERENCE_TO_VIDEO]: {
|
|
8784
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.KLING_O1_STANDARD_REFERENCE_TO_VIDEO,
|
|
8785
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
8786
|
+
config: { temperature: 0.2 },
|
|
8787
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8788
|
+
capabilities: {
|
|
8789
|
+
vision: false,
|
|
8790
|
+
tools: false,
|
|
8791
|
+
reasoning: false,
|
|
8792
|
+
webSearch: false,
|
|
8793
|
+
jsonOutput: false,
|
|
8794
|
+
structuredOutputs: false,
|
|
8795
|
+
},
|
|
8796
|
+
},
|
|
8797
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.KLING_O1_T2V]: {
|
|
8798
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.KLING_O1_T2V,
|
|
8799
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
8800
|
+
config: { temperature: 0.2 },
|
|
8801
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8802
|
+
capabilities: {
|
|
8803
|
+
vision: false,
|
|
8804
|
+
tools: false,
|
|
8805
|
+
reasoning: false,
|
|
8806
|
+
webSearch: false,
|
|
8807
|
+
jsonOutput: false,
|
|
8808
|
+
structuredOutputs: false,
|
|
8809
|
+
},
|
|
8810
|
+
},
|
|
8811
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.KLING_V2_1_MASTER_I2V]: {
|
|
8812
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.KLING_V2_1_MASTER_I2V,
|
|
8813
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
8814
|
+
config: { temperature: 0.2 },
|
|
8815
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8816
|
+
capabilities: {
|
|
8817
|
+
vision: false,
|
|
8818
|
+
tools: false,
|
|
8819
|
+
reasoning: false,
|
|
8820
|
+
webSearch: false,
|
|
8821
|
+
jsonOutput: false,
|
|
8822
|
+
structuredOutputs: false,
|
|
8823
|
+
},
|
|
8824
|
+
},
|
|
8825
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.KLING_V2_1_MASTER_T2V]: {
|
|
8826
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.KLING_V2_1_MASTER_T2V,
|
|
8827
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
8828
|
+
config: { temperature: 0.2 },
|
|
8829
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8830
|
+
capabilities: {
|
|
8831
|
+
vision: false,
|
|
8832
|
+
tools: false,
|
|
8833
|
+
reasoning: false,
|
|
8834
|
+
webSearch: false,
|
|
8835
|
+
jsonOutput: false,
|
|
8836
|
+
structuredOutputs: false,
|
|
8837
|
+
},
|
|
8838
|
+
},
|
|
8839
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.KLING_V2_1_PRO_I2V]: {
|
|
8840
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.KLING_V2_1_PRO_I2V,
|
|
8841
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
8842
|
+
config: { temperature: 0.2 },
|
|
8843
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8844
|
+
capabilities: {
|
|
8845
|
+
vision: false,
|
|
8846
|
+
tools: false,
|
|
8847
|
+
reasoning: false,
|
|
8848
|
+
webSearch: false,
|
|
8849
|
+
jsonOutput: false,
|
|
8850
|
+
structuredOutputs: false,
|
|
8851
|
+
},
|
|
8852
|
+
},
|
|
8853
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.KLING_V2_1_STANDARD_I2V]: {
|
|
8854
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.KLING_V2_1_STANDARD_I2V,
|
|
8855
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
8856
|
+
config: { temperature: 0.2 },
|
|
8857
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8858
|
+
capabilities: {
|
|
8859
|
+
vision: false,
|
|
8860
|
+
tools: false,
|
|
8861
|
+
reasoning: false,
|
|
8862
|
+
webSearch: false,
|
|
8863
|
+
jsonOutput: false,
|
|
8864
|
+
structuredOutputs: false,
|
|
8865
|
+
},
|
|
8866
|
+
},
|
|
8867
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.KLING_V2_5_TURBO_PRO_I2V]: {
|
|
8868
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.KLING_V2_5_TURBO_PRO_I2V,
|
|
8869
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
8870
|
+
config: { temperature: 0.2 },
|
|
8871
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8872
|
+
capabilities: {
|
|
8873
|
+
vision: false,
|
|
8874
|
+
tools: false,
|
|
8875
|
+
reasoning: false,
|
|
8876
|
+
webSearch: false,
|
|
8877
|
+
jsonOutput: false,
|
|
8878
|
+
structuredOutputs: false,
|
|
8879
|
+
},
|
|
8880
|
+
},
|
|
8881
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.KLING_V2_5_TURBO_PRO_T2V]: {
|
|
8882
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.KLING_V2_5_TURBO_PRO_T2V,
|
|
8883
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
8884
|
+
config: { temperature: 0.2 },
|
|
8885
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8886
|
+
capabilities: {
|
|
8887
|
+
vision: false,
|
|
8888
|
+
tools: false,
|
|
8889
|
+
reasoning: false,
|
|
8890
|
+
webSearch: false,
|
|
8891
|
+
jsonOutput: false,
|
|
8892
|
+
structuredOutputs: false,
|
|
8893
|
+
},
|
|
8894
|
+
},
|
|
8895
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.KLING_V2_5_TURBO_STD_I2V]: {
|
|
8896
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.KLING_V2_5_TURBO_STD_I2V,
|
|
8897
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
8898
|
+
config: { temperature: 0.2 },
|
|
8899
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8900
|
+
capabilities: {
|
|
8901
|
+
vision: false,
|
|
8902
|
+
tools: false,
|
|
8903
|
+
reasoning: false,
|
|
8904
|
+
webSearch: false,
|
|
8905
|
+
jsonOutput: false,
|
|
8906
|
+
structuredOutputs: false,
|
|
8907
|
+
},
|
|
8908
|
+
},
|
|
8909
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.KLING_V2_6_PRO_I2V]: {
|
|
8910
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.KLING_V2_6_PRO_I2V,
|
|
8911
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
8912
|
+
config: { temperature: 0.2 },
|
|
8913
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8914
|
+
capabilities: {
|
|
8915
|
+
vision: false,
|
|
8916
|
+
tools: false,
|
|
8917
|
+
reasoning: false,
|
|
8918
|
+
webSearch: false,
|
|
8919
|
+
jsonOutput: false,
|
|
8920
|
+
structuredOutputs: false,
|
|
8921
|
+
},
|
|
8922
|
+
},
|
|
8923
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.KLING_V2_6_PRO_T2V]: {
|
|
8924
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.KLING_V2_6_PRO_T2V,
|
|
8925
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
8926
|
+
config: { temperature: 0.2 },
|
|
8927
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8928
|
+
capabilities: {
|
|
8929
|
+
vision: false,
|
|
8930
|
+
tools: false,
|
|
8931
|
+
reasoning: false,
|
|
8932
|
+
webSearch: false,
|
|
8933
|
+
jsonOutput: false,
|
|
8934
|
+
structuredOutputs: false,
|
|
8935
|
+
},
|
|
8936
|
+
},
|
|
8937
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.KLING_V3_PRO_I2V]: {
|
|
8938
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.KLING_V3_PRO_I2V,
|
|
8939
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
8940
|
+
config: { temperature: 0.2 },
|
|
8941
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8942
|
+
capabilities: {
|
|
8943
|
+
vision: false,
|
|
8944
|
+
tools: false,
|
|
8945
|
+
reasoning: false,
|
|
8946
|
+
webSearch: false,
|
|
8947
|
+
jsonOutput: false,
|
|
8948
|
+
structuredOutputs: false,
|
|
8949
|
+
},
|
|
8950
|
+
},
|
|
8951
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.KLING_V3_PRO_T2V]: {
|
|
8952
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.KLING_V3_PRO_T2V,
|
|
8953
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
8954
|
+
config: { temperature: 0.2 },
|
|
8955
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8956
|
+
capabilities: {
|
|
8957
|
+
vision: false,
|
|
8958
|
+
tools: false,
|
|
8959
|
+
reasoning: false,
|
|
8960
|
+
webSearch: false,
|
|
8961
|
+
jsonOutput: false,
|
|
8962
|
+
structuredOutputs: false,
|
|
8963
|
+
},
|
|
8964
|
+
},
|
|
8965
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.KLING_V3_STD_I2V]: {
|
|
8966
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.KLING_V3_STD_I2V,
|
|
8967
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
8968
|
+
config: { temperature: 0.2 },
|
|
8969
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8970
|
+
capabilities: {
|
|
8971
|
+
vision: false,
|
|
8972
|
+
tools: false,
|
|
8973
|
+
reasoning: false,
|
|
8974
|
+
webSearch: false,
|
|
8975
|
+
jsonOutput: false,
|
|
8976
|
+
structuredOutputs: false,
|
|
8977
|
+
},
|
|
8978
|
+
},
|
|
8979
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.KLING_V3_STD_T2V]: {
|
|
8980
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.KLING_V3_STD_T2V,
|
|
8981
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
8982
|
+
config: { temperature: 0.2 },
|
|
8983
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8984
|
+
capabilities: {
|
|
8985
|
+
vision: false,
|
|
8986
|
+
tools: false,
|
|
8987
|
+
reasoning: false,
|
|
8988
|
+
webSearch: false,
|
|
8989
|
+
jsonOutput: false,
|
|
8990
|
+
structuredOutputs: false,
|
|
8991
|
+
},
|
|
8992
|
+
},
|
|
8993
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.LEONARDOAI_MOTION_2_0]: {
|
|
8994
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.LEONARDOAI_MOTION_2_0,
|
|
8995
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
8996
|
+
config: { temperature: 0.2 },
|
|
8997
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8998
|
+
capabilities: {
|
|
8999
|
+
vision: false,
|
|
9000
|
+
tools: false,
|
|
9001
|
+
reasoning: false,
|
|
9002
|
+
webSearch: false,
|
|
9003
|
+
jsonOutput: false,
|
|
9004
|
+
structuredOutputs: false,
|
|
9005
|
+
},
|
|
9006
|
+
},
|
|
9007
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_6_LUNA_LLMAPI_OPENAI]: {
|
|
9008
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_6_LUNA_LLMAPI_OPENAI,
|
|
9009
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 128_000 },
|
|
9010
|
+
config: { temperature: 0.2 },
|
|
9011
|
+
pricing: { getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.02 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 6 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9012
|
+
capabilities: {
|
|
9013
|
+
vision: true,
|
|
9014
|
+
tools: true,
|
|
9015
|
+
reasoning: true,
|
|
9016
|
+
webSearch: true,
|
|
9017
|
+
jsonOutput: false,
|
|
9018
|
+
structuredOutputs: false,
|
|
9019
|
+
},
|
|
9020
|
+
},
|
|
9021
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_6_SOL_LLMAPI_OPENAI]: {
|
|
9022
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_6_SOL_LLMAPI_OPENAI,
|
|
9023
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 128_000 },
|
|
9024
|
+
config: { temperature: 0.2 },
|
|
9025
|
+
pricing: { getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 30 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9026
|
+
capabilities: {
|
|
9027
|
+
vision: true,
|
|
9028
|
+
tools: true,
|
|
9029
|
+
reasoning: true,
|
|
9030
|
+
webSearch: true,
|
|
9031
|
+
jsonOutput: false,
|
|
9032
|
+
structuredOutputs: false,
|
|
9033
|
+
},
|
|
9034
|
+
},
|
|
9035
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_6_TERRA_LLMAPI_OPENAI]: {
|
|
9036
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_6_TERRA_LLMAPI_OPENAI,
|
|
9037
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 128_000 },
|
|
9038
|
+
config: { temperature: 0.2 },
|
|
9039
|
+
pricing: { getPriceForTextInput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9040
|
+
capabilities: {
|
|
9041
|
+
vision: true,
|
|
9042
|
+
tools: true,
|
|
9043
|
+
reasoning: true,
|
|
9044
|
+
webSearch: true,
|
|
9045
|
+
jsonOutput: false,
|
|
9046
|
+
structuredOutputs: false,
|
|
9047
|
+
},
|
|
9048
|
+
},
|
|
9049
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.LTX_2_19B_I2V]: {
|
|
9050
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.LTX_2_19B_I2V,
|
|
9051
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9052
|
+
config: { temperature: 0.2 },
|
|
9053
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9054
|
+
capabilities: {
|
|
9055
|
+
vision: false,
|
|
9056
|
+
tools: false,
|
|
9057
|
+
reasoning: false,
|
|
9058
|
+
webSearch: false,
|
|
9059
|
+
jsonOutput: false,
|
|
9060
|
+
structuredOutputs: false,
|
|
9061
|
+
},
|
|
9062
|
+
},
|
|
9063
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.LTX_2_19B_T2V]: {
|
|
9064
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.LTX_2_19B_T2V,
|
|
9065
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9066
|
+
config: { temperature: 0.2 },
|
|
9067
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9068
|
+
capabilities: {
|
|
9069
|
+
vision: false,
|
|
9070
|
+
tools: false,
|
|
9071
|
+
reasoning: false,
|
|
9072
|
+
webSearch: false,
|
|
9073
|
+
jsonOutput: false,
|
|
9074
|
+
structuredOutputs: false,
|
|
9075
|
+
},
|
|
9076
|
+
},
|
|
9077
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.LTX_2_FAST_I2V]: {
|
|
9078
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.LTX_2_FAST_I2V,
|
|
9079
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9080
|
+
config: { temperature: 0.2 },
|
|
9081
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9082
|
+
capabilities: {
|
|
9083
|
+
vision: false,
|
|
9084
|
+
tools: false,
|
|
9085
|
+
reasoning: false,
|
|
9086
|
+
webSearch: false,
|
|
9087
|
+
jsonOutput: false,
|
|
9088
|
+
structuredOutputs: false,
|
|
9089
|
+
},
|
|
9090
|
+
},
|
|
9091
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.LTX_2_FAST_T2V]: {
|
|
9092
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.LTX_2_FAST_T2V,
|
|
9093
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9094
|
+
config: { temperature: 0.2 },
|
|
9095
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9096
|
+
capabilities: {
|
|
9097
|
+
vision: false,
|
|
9098
|
+
tools: false,
|
|
9099
|
+
reasoning: false,
|
|
9100
|
+
webSearch: false,
|
|
9101
|
+
jsonOutput: false,
|
|
9102
|
+
structuredOutputs: false,
|
|
9103
|
+
},
|
|
9104
|
+
},
|
|
9105
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.LTX_2_PRO_I2V]: {
|
|
9106
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.LTX_2_PRO_I2V,
|
|
9107
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9108
|
+
config: { temperature: 0.2 },
|
|
9109
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9110
|
+
capabilities: {
|
|
9111
|
+
vision: false,
|
|
9112
|
+
tools: false,
|
|
9113
|
+
reasoning: false,
|
|
9114
|
+
webSearch: false,
|
|
9115
|
+
jsonOutput: false,
|
|
9116
|
+
structuredOutputs: false,
|
|
9117
|
+
},
|
|
9118
|
+
},
|
|
9119
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.LTX_2_PRO_T2V]: {
|
|
9120
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.LTX_2_PRO_T2V,
|
|
9121
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9122
|
+
config: { temperature: 0.2 },
|
|
9123
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9124
|
+
capabilities: {
|
|
9125
|
+
vision: false,
|
|
9126
|
+
tools: false,
|
|
9127
|
+
reasoning: false,
|
|
9128
|
+
webSearch: false,
|
|
9129
|
+
jsonOutput: false,
|
|
9130
|
+
structuredOutputs: false,
|
|
9131
|
+
},
|
|
9132
|
+
},
|
|
9133
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.LTX_2_3_I2V]: {
|
|
9134
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.LTX_2_3_I2V,
|
|
9135
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9136
|
+
config: { temperature: 0.2 },
|
|
9137
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9138
|
+
capabilities: {
|
|
9139
|
+
vision: false,
|
|
9140
|
+
tools: false,
|
|
9141
|
+
reasoning: false,
|
|
9142
|
+
webSearch: false,
|
|
9143
|
+
jsonOutput: false,
|
|
9144
|
+
structuredOutputs: false,
|
|
9145
|
+
},
|
|
9146
|
+
},
|
|
9147
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.LTX_2_3_T2V]: {
|
|
9148
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.LTX_2_3_T2V,
|
|
9149
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9150
|
+
config: { temperature: 0.2 },
|
|
9151
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9152
|
+
capabilities: {
|
|
9153
|
+
vision: false,
|
|
9154
|
+
tools: false,
|
|
9155
|
+
reasoning: false,
|
|
9156
|
+
webSearch: false,
|
|
9157
|
+
jsonOutput: false,
|
|
9158
|
+
structuredOutputs: false,
|
|
9159
|
+
},
|
|
9160
|
+
},
|
|
9161
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.MIDJOURNEY_V7_I2V]: {
|
|
9162
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.MIDJOURNEY_V7_I2V,
|
|
9163
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9164
|
+
config: { temperature: 0.2 },
|
|
9165
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9166
|
+
capabilities: {
|
|
9167
|
+
vision: false,
|
|
9168
|
+
tools: false,
|
|
9169
|
+
reasoning: false,
|
|
9170
|
+
webSearch: false,
|
|
9171
|
+
jsonOutput: false,
|
|
9172
|
+
structuredOutputs: false,
|
|
9173
|
+
},
|
|
9174
|
+
},
|
|
9175
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_HAILUO_2_3_FAST]: {
|
|
9176
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_HAILUO_2_3_FAST,
|
|
9177
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9178
|
+
config: { temperature: 0.2 },
|
|
9179
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9180
|
+
capabilities: {
|
|
9181
|
+
vision: false,
|
|
9182
|
+
tools: false,
|
|
9183
|
+
reasoning: false,
|
|
9184
|
+
webSearch: false,
|
|
9185
|
+
jsonOutput: false,
|
|
9186
|
+
structuredOutputs: false,
|
|
9187
|
+
},
|
|
9188
|
+
},
|
|
9189
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_HAILUO_2_3_PRO_I2V]: {
|
|
9190
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_HAILUO_2_3_PRO_I2V,
|
|
9191
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9192
|
+
config: { temperature: 0.2 },
|
|
9193
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9194
|
+
capabilities: {
|
|
9195
|
+
vision: false,
|
|
9196
|
+
tools: false,
|
|
9197
|
+
reasoning: false,
|
|
9198
|
+
webSearch: false,
|
|
9199
|
+
jsonOutput: false,
|
|
9200
|
+
structuredOutputs: false,
|
|
9201
|
+
},
|
|
9202
|
+
},
|
|
9203
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_HAILUO_2_3_PRO_T2V]: {
|
|
9204
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_HAILUO_2_3_PRO_T2V,
|
|
9205
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9206
|
+
config: { temperature: 0.2 },
|
|
9207
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9208
|
+
capabilities: {
|
|
9209
|
+
vision: false,
|
|
9210
|
+
tools: false,
|
|
9211
|
+
reasoning: false,
|
|
9212
|
+
webSearch: false,
|
|
9213
|
+
jsonOutput: false,
|
|
9214
|
+
structuredOutputs: false,
|
|
9215
|
+
},
|
|
9216
|
+
},
|
|
9217
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_HAILUO_2_3_STANDARD_I2V]: {
|
|
9218
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_HAILUO_2_3_STANDARD_I2V,
|
|
9219
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9220
|
+
config: { temperature: 0.2 },
|
|
9221
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9222
|
+
capabilities: {
|
|
9223
|
+
vision: false,
|
|
9224
|
+
tools: false,
|
|
9225
|
+
reasoning: false,
|
|
9226
|
+
webSearch: false,
|
|
9227
|
+
jsonOutput: false,
|
|
9228
|
+
structuredOutputs: false,
|
|
9229
|
+
},
|
|
9230
|
+
},
|
|
9231
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_HAILUO_2_3_STANDARD_T2V]: {
|
|
9232
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_HAILUO_2_3_STANDARD_T2V,
|
|
9233
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9234
|
+
config: { temperature: 0.2 },
|
|
9235
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9236
|
+
capabilities: {
|
|
9237
|
+
vision: false,
|
|
9238
|
+
tools: false,
|
|
9239
|
+
reasoning: false,
|
|
9240
|
+
webSearch: false,
|
|
9241
|
+
jsonOutput: false,
|
|
9242
|
+
structuredOutputs: false,
|
|
9243
|
+
},
|
|
9244
|
+
},
|
|
9245
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_HAILUO_PRO_I2V]: {
|
|
9246
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_HAILUO_PRO_I2V,
|
|
9247
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9248
|
+
config: { temperature: 0.2 },
|
|
9249
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9250
|
+
capabilities: {
|
|
9251
|
+
vision: false,
|
|
9252
|
+
tools: false,
|
|
9253
|
+
reasoning: false,
|
|
9254
|
+
webSearch: false,
|
|
9255
|
+
jsonOutput: false,
|
|
9256
|
+
structuredOutputs: false,
|
|
9257
|
+
},
|
|
9258
|
+
},
|
|
9259
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_HAILUO_PRO_T2V]: {
|
|
9260
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_HAILUO_PRO_T2V,
|
|
9261
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9262
|
+
config: { temperature: 0.2 },
|
|
9263
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9264
|
+
capabilities: {
|
|
9265
|
+
vision: false,
|
|
9266
|
+
tools: false,
|
|
9267
|
+
reasoning: false,
|
|
9268
|
+
webSearch: false,
|
|
9269
|
+
jsonOutput: false,
|
|
9270
|
+
structuredOutputs: false,
|
|
9271
|
+
},
|
|
9272
|
+
},
|
|
9273
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_HAILUO_STD_I2V]: {
|
|
9274
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_HAILUO_STD_I2V,
|
|
9275
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9276
|
+
config: { temperature: 0.2 },
|
|
9277
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9278
|
+
capabilities: {
|
|
9279
|
+
vision: false,
|
|
9280
|
+
tools: false,
|
|
9281
|
+
reasoning: false,
|
|
9282
|
+
webSearch: false,
|
|
9283
|
+
jsonOutput: false,
|
|
9284
|
+
structuredOutputs: false,
|
|
9285
|
+
},
|
|
9286
|
+
},
|
|
9287
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_HAILUO_STD_T2V]: {
|
|
9288
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_HAILUO_STD_T2V,
|
|
9289
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9290
|
+
config: { temperature: 0.2 },
|
|
9291
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9292
|
+
capabilities: {
|
|
9293
|
+
vision: false,
|
|
9294
|
+
tools: false,
|
|
9295
|
+
reasoning: false,
|
|
9296
|
+
webSearch: false,
|
|
9297
|
+
jsonOutput: false,
|
|
9298
|
+
structuredOutputs: false,
|
|
9299
|
+
},
|
|
9300
|
+
},
|
|
9301
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K3_MOONSHOT]: {
|
|
9302
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K3_MOONSHOT,
|
|
9303
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 1_048_576 },
|
|
9304
|
+
config: { temperature: 0.2 },
|
|
9305
|
+
pricing: { getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9306
|
+
capabilities: {
|
|
9307
|
+
vision: true,
|
|
9308
|
+
tools: true,
|
|
9309
|
+
reasoning: true,
|
|
9310
|
+
webSearch: false,
|
|
9311
|
+
jsonOutput: false,
|
|
9312
|
+
structuredOutputs: false,
|
|
9313
|
+
},
|
|
9314
|
+
},
|
|
9315
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAXAI_MINIMAX_M3_NEBIUS]: {
|
|
9316
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAXAI_MINIMAX_M3_NEBIUS,
|
|
9317
|
+
limits: { maxInputTokens: 1_000_000, maxOutputTokens: 131_072 },
|
|
9318
|
+
config: { temperature: 0.2 },
|
|
9319
|
+
pricing: { getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.06 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9320
|
+
capabilities: {
|
|
9321
|
+
vision: true,
|
|
9322
|
+
tools: true,
|
|
9323
|
+
reasoning: true,
|
|
9324
|
+
webSearch: false,
|
|
9325
|
+
jsonOutput: false,
|
|
9326
|
+
structuredOutputs: false,
|
|
9327
|
+
},
|
|
9328
|
+
},
|
|
9329
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.MOONSHOTAI_KIMI_K3_NEBIUS]: {
|
|
9330
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.MOONSHOTAI_KIMI_K3_NEBIUS,
|
|
9331
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 1_048_576 },
|
|
9332
|
+
config: { temperature: 0.2 },
|
|
9333
|
+
pricing: { getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9334
|
+
capabilities: {
|
|
9335
|
+
vision: false,
|
|
9336
|
+
tools: true,
|
|
9337
|
+
reasoning: true,
|
|
9338
|
+
webSearch: false,
|
|
9339
|
+
jsonOutput: false,
|
|
9340
|
+
structuredOutputs: false,
|
|
9341
|
+
},
|
|
9342
|
+
},
|
|
9343
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_DEEPSEEK_V4_FLASH_0731_NOVITA]: {
|
|
9344
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_DEEPSEEK_V4_FLASH_0731_NOVITA,
|
|
9345
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 384_000 },
|
|
9346
|
+
config: { temperature: 0.2 },
|
|
9347
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9348
|
+
capabilities: {
|
|
9349
|
+
vision: false,
|
|
9350
|
+
tools: true,
|
|
9351
|
+
reasoning: true,
|
|
9352
|
+
webSearch: false,
|
|
9353
|
+
jsonOutput: false,
|
|
9354
|
+
structuredOutputs: false,
|
|
9355
|
+
},
|
|
9356
|
+
},
|
|
9357
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.MOONSHOTAI_KIMI_K3_NOVITA]: {
|
|
9358
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.MOONSHOTAI_KIMI_K3_NOVITA,
|
|
9359
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 1_048_576 },
|
|
9360
|
+
config: { temperature: 0.2 },
|
|
9361
|
+
pricing: { getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9362
|
+
capabilities: {
|
|
9363
|
+
vision: true,
|
|
9364
|
+
tools: true,
|
|
9365
|
+
reasoning: true,
|
|
9366
|
+
webSearch: false,
|
|
9367
|
+
jsonOutput: false,
|
|
9368
|
+
structuredOutputs: false,
|
|
9369
|
+
},
|
|
9370
|
+
},
|
|
9371
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_8_MAX_NOVITA]: {
|
|
9372
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_8_MAX_NOVITA,
|
|
9373
|
+
limits: { maxInputTokens: 1_000_000, maxOutputTokens: 65_536 },
|
|
9374
|
+
config: { temperature: 0.2 },
|
|
9375
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9376
|
+
capabilities: {
|
|
9377
|
+
vision: true,
|
|
9378
|
+
tools: true,
|
|
9379
|
+
reasoning: true,
|
|
9380
|
+
webSearch: false,
|
|
9381
|
+
jsonOutput: false,
|
|
9382
|
+
structuredOutputs: false,
|
|
9383
|
+
},
|
|
9384
|
+
},
|
|
9385
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.XAI_GROK_4_5_NOVITA]: {
|
|
9386
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.XAI_GROK_4_5_NOVITA,
|
|
9387
|
+
limits: { maxInputTokens: 500_000, maxOutputTokens: 131_072 },
|
|
9388
|
+
config: { temperature: 0.2 },
|
|
9389
|
+
pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 6 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9390
|
+
capabilities: {
|
|
9391
|
+
vision: true,
|
|
9392
|
+
tools: true,
|
|
9393
|
+
reasoning: true,
|
|
9394
|
+
webSearch: false,
|
|
9395
|
+
jsonOutput: false,
|
|
9396
|
+
structuredOutputs: false,
|
|
9397
|
+
},
|
|
9398
|
+
},
|
|
9399
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.OPENAI_SORA]: {
|
|
9400
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.OPENAI_SORA,
|
|
9401
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9402
|
+
config: { temperature: 0.2 },
|
|
9403
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9404
|
+
capabilities: {
|
|
9405
|
+
vision: false,
|
|
9406
|
+
tools: false,
|
|
9407
|
+
reasoning: false,
|
|
9408
|
+
webSearch: false,
|
|
9409
|
+
jsonOutput: false,
|
|
9410
|
+
structuredOutputs: false,
|
|
9411
|
+
},
|
|
9412
|
+
},
|
|
9413
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.OPENAI_SORA_2_I2V]: {
|
|
9414
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.OPENAI_SORA_2_I2V,
|
|
9415
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9416
|
+
config: { temperature: 0.2 },
|
|
9417
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9418
|
+
capabilities: {
|
|
9419
|
+
vision: false,
|
|
9420
|
+
tools: false,
|
|
9421
|
+
reasoning: false,
|
|
9422
|
+
webSearch: false,
|
|
9423
|
+
jsonOutput: false,
|
|
9424
|
+
structuredOutputs: false,
|
|
9425
|
+
},
|
|
9426
|
+
},
|
|
9427
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.OPENAI_SORA_2_PRO_STORYBOARD]: {
|
|
9428
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.OPENAI_SORA_2_PRO_STORYBOARD,
|
|
9429
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9430
|
+
config: { temperature: 0.2 },
|
|
9431
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9432
|
+
capabilities: {
|
|
9433
|
+
vision: false,
|
|
9434
|
+
tools: false,
|
|
9435
|
+
reasoning: false,
|
|
9436
|
+
webSearch: false,
|
|
9437
|
+
jsonOutput: false,
|
|
9438
|
+
structuredOutputs: false,
|
|
9439
|
+
},
|
|
9440
|
+
},
|
|
9441
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.OPENAI_SORA_2_T2V]: {
|
|
9442
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.OPENAI_SORA_2_T2V,
|
|
9443
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9444
|
+
config: { temperature: 0.2 },
|
|
9445
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9446
|
+
capabilities: {
|
|
9447
|
+
vision: false,
|
|
9448
|
+
tools: false,
|
|
9449
|
+
reasoning: false,
|
|
9450
|
+
webSearch: false,
|
|
9451
|
+
jsonOutput: false,
|
|
9452
|
+
structuredOutputs: false,
|
|
9453
|
+
},
|
|
9454
|
+
},
|
|
9455
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.OVI_I2V]: {
|
|
9456
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.OVI_I2V,
|
|
9457
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9458
|
+
config: { temperature: 0.2 },
|
|
9459
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9460
|
+
capabilities: {
|
|
9461
|
+
vision: false,
|
|
9462
|
+
tools: false,
|
|
9463
|
+
reasoning: false,
|
|
9464
|
+
webSearch: false,
|
|
9465
|
+
jsonOutput: false,
|
|
9466
|
+
structuredOutputs: false,
|
|
9467
|
+
},
|
|
9468
|
+
},
|
|
9469
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.OVI_T2V]: {
|
|
9470
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.OVI_T2V,
|
|
9471
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9472
|
+
config: { temperature: 0.2 },
|
|
9473
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9474
|
+
capabilities: {
|
|
9475
|
+
vision: false,
|
|
9476
|
+
tools: false,
|
|
9477
|
+
reasoning: false,
|
|
9478
|
+
webSearch: false,
|
|
9479
|
+
jsonOutput: false,
|
|
9480
|
+
structuredOutputs: false,
|
|
9481
|
+
},
|
|
9482
|
+
},
|
|
9483
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.PIXVERSE_I2V]: {
|
|
9484
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.PIXVERSE_I2V,
|
|
9485
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9486
|
+
config: { temperature: 0.2 },
|
|
9487
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9488
|
+
capabilities: {
|
|
9489
|
+
vision: false,
|
|
9490
|
+
tools: false,
|
|
9491
|
+
reasoning: false,
|
|
9492
|
+
webSearch: false,
|
|
9493
|
+
jsonOutput: false,
|
|
9494
|
+
structuredOutputs: false,
|
|
9495
|
+
},
|
|
9496
|
+
},
|
|
9497
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.PIXVERSE_T2V]: {
|
|
9498
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.PIXVERSE_T2V,
|
|
9499
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9500
|
+
config: { temperature: 0.2 },
|
|
9501
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9502
|
+
capabilities: {
|
|
9503
|
+
vision: false,
|
|
9504
|
+
tools: false,
|
|
9505
|
+
reasoning: false,
|
|
9506
|
+
webSearch: false,
|
|
9507
|
+
jsonOutput: false,
|
|
9508
|
+
structuredOutputs: false,
|
|
9509
|
+
},
|
|
9510
|
+
},
|
|
9511
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.PIXVERSE_V5_I2V]: {
|
|
9512
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.PIXVERSE_V5_I2V,
|
|
9513
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9514
|
+
config: { temperature: 0.2 },
|
|
9515
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9516
|
+
capabilities: {
|
|
9517
|
+
vision: false,
|
|
9518
|
+
tools: false,
|
|
9519
|
+
reasoning: false,
|
|
9520
|
+
webSearch: false,
|
|
9521
|
+
jsonOutput: false,
|
|
9522
|
+
structuredOutputs: false,
|
|
9523
|
+
},
|
|
9524
|
+
},
|
|
9525
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.PIXVERSE_V5_T2V]: {
|
|
9526
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.PIXVERSE_V5_T2V,
|
|
9527
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9528
|
+
config: { temperature: 0.2 },
|
|
9529
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9530
|
+
capabilities: {
|
|
9531
|
+
vision: false,
|
|
9532
|
+
tools: false,
|
|
9533
|
+
reasoning: false,
|
|
9534
|
+
webSearch: false,
|
|
9535
|
+
jsonOutput: false,
|
|
9536
|
+
structuredOutputs: false,
|
|
9537
|
+
},
|
|
9538
|
+
},
|
|
9539
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.PIXVERSE_V6_I2V]: {
|
|
9540
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.PIXVERSE_V6_I2V,
|
|
9541
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9542
|
+
config: { temperature: 0.2 },
|
|
9543
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9544
|
+
capabilities: {
|
|
9545
|
+
vision: false,
|
|
9546
|
+
tools: false,
|
|
9547
|
+
reasoning: false,
|
|
9548
|
+
webSearch: false,
|
|
9549
|
+
jsonOutput: false,
|
|
9550
|
+
structuredOutputs: false,
|
|
9551
|
+
},
|
|
9552
|
+
},
|
|
9553
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.PIXVERSE_V6_T2V]: {
|
|
9554
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.PIXVERSE_V6_T2V,
|
|
9555
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9556
|
+
config: { temperature: 0.2 },
|
|
9557
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9558
|
+
capabilities: {
|
|
9559
|
+
vision: false,
|
|
9560
|
+
tools: false,
|
|
9561
|
+
reasoning: false,
|
|
9562
|
+
webSearch: false,
|
|
9563
|
+
jsonOutput: false,
|
|
9564
|
+
structuredOutputs: false,
|
|
9565
|
+
},
|
|
9566
|
+
},
|
|
9567
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.PIXVERSE_V6_TRANSITION]: {
|
|
9568
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.PIXVERSE_V6_TRANSITION,
|
|
9569
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9570
|
+
config: { temperature: 0.2 },
|
|
9571
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9572
|
+
capabilities: {
|
|
9573
|
+
vision: false,
|
|
9574
|
+
tools: false,
|
|
9575
|
+
reasoning: false,
|
|
9576
|
+
webSearch: false,
|
|
9577
|
+
jsonOutput: false,
|
|
9578
|
+
structuredOutputs: false,
|
|
9579
|
+
},
|
|
9580
|
+
},
|
|
9581
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_8_MAX]: {
|
|
9582
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_8_MAX,
|
|
9583
|
+
limits: { maxInputTokens: 1_000_000, maxOutputTokens: 65_536 },
|
|
9584
|
+
config: { temperature: 0.2 },
|
|
9585
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9586
|
+
capabilities: {
|
|
9587
|
+
vision: true,
|
|
9588
|
+
tools: true,
|
|
9589
|
+
reasoning: true,
|
|
9590
|
+
webSearch: false,
|
|
9591
|
+
jsonOutput: false,
|
|
9592
|
+
structuredOutputs: false,
|
|
9593
|
+
},
|
|
9594
|
+
},
|
|
9595
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.RUNWAY_I2V]: {
|
|
9596
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.RUNWAY_I2V,
|
|
9597
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9598
|
+
config: { temperature: 0.2 },
|
|
9599
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9600
|
+
capabilities: {
|
|
9601
|
+
vision: false,
|
|
9602
|
+
tools: false,
|
|
9603
|
+
reasoning: false,
|
|
9604
|
+
webSearch: false,
|
|
9605
|
+
jsonOutput: false,
|
|
9606
|
+
structuredOutputs: false,
|
|
9607
|
+
},
|
|
9608
|
+
},
|
|
9609
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.RUNWAY_T2V]: {
|
|
9610
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.RUNWAY_T2V,
|
|
9611
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9612
|
+
config: { temperature: 0.2 },
|
|
9613
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9614
|
+
capabilities: {
|
|
9615
|
+
vision: false,
|
|
9616
|
+
tools: false,
|
|
9617
|
+
reasoning: false,
|
|
9618
|
+
webSearch: false,
|
|
9619
|
+
jsonOutput: false,
|
|
9620
|
+
structuredOutputs: false,
|
|
9621
|
+
},
|
|
9622
|
+
},
|
|
9623
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_FIRST_LAST_FRAME]: {
|
|
9624
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_FIRST_LAST_FRAME,
|
|
9625
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9626
|
+
config: { temperature: 0.2 },
|
|
9627
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9628
|
+
capabilities: {
|
|
9629
|
+
vision: false,
|
|
9630
|
+
tools: false,
|
|
9631
|
+
reasoning: false,
|
|
9632
|
+
webSearch: false,
|
|
9633
|
+
jsonOutput: false,
|
|
9634
|
+
structuredOutputs: false,
|
|
9635
|
+
},
|
|
9636
|
+
},
|
|
9637
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_FIRST_LAST_FRAME_FAST]: {
|
|
9638
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_FIRST_LAST_FRAME_FAST,
|
|
9639
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9640
|
+
config: { temperature: 0.2 },
|
|
9641
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9642
|
+
capabilities: {
|
|
9643
|
+
vision: false,
|
|
9644
|
+
tools: false,
|
|
9645
|
+
reasoning: false,
|
|
9646
|
+
webSearch: false,
|
|
9647
|
+
jsonOutput: false,
|
|
9648
|
+
structuredOutputs: false,
|
|
9649
|
+
},
|
|
9650
|
+
},
|
|
9651
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_I2V]: {
|
|
9652
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_I2V,
|
|
9653
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9654
|
+
config: { temperature: 0.2 },
|
|
9655
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9656
|
+
capabilities: {
|
|
9657
|
+
vision: false,
|
|
9658
|
+
tools: false,
|
|
9659
|
+
reasoning: false,
|
|
9660
|
+
webSearch: false,
|
|
9661
|
+
jsonOutput: false,
|
|
9662
|
+
structuredOutputs: false,
|
|
9663
|
+
},
|
|
9664
|
+
},
|
|
9665
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_I2V_480P]: {
|
|
9666
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_I2V_480P,
|
|
9667
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9668
|
+
config: { temperature: 0.2 },
|
|
9669
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9670
|
+
capabilities: {
|
|
9671
|
+
vision: false,
|
|
9672
|
+
tools: false,
|
|
9673
|
+
reasoning: false,
|
|
9674
|
+
webSearch: false,
|
|
9675
|
+
jsonOutput: false,
|
|
9676
|
+
structuredOutputs: false,
|
|
9677
|
+
},
|
|
9678
|
+
},
|
|
9679
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_I2V_FAST]: {
|
|
9680
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_I2V_FAST,
|
|
9681
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9682
|
+
config: { temperature: 0.2 },
|
|
9683
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9684
|
+
capabilities: {
|
|
9685
|
+
vision: false,
|
|
9686
|
+
tools: false,
|
|
9687
|
+
reasoning: false,
|
|
9688
|
+
webSearch: false,
|
|
9689
|
+
jsonOutput: false,
|
|
9690
|
+
structuredOutputs: false,
|
|
9691
|
+
},
|
|
9692
|
+
},
|
|
9693
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_OMNI_REFERENCE]: {
|
|
9694
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_OMNI_REFERENCE,
|
|
9695
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9696
|
+
config: { temperature: 0.2 },
|
|
9697
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9698
|
+
capabilities: {
|
|
9699
|
+
vision: false,
|
|
9700
|
+
tools: false,
|
|
9701
|
+
reasoning: false,
|
|
9702
|
+
webSearch: false,
|
|
9703
|
+
jsonOutput: false,
|
|
9704
|
+
structuredOutputs: false,
|
|
9705
|
+
},
|
|
9706
|
+
},
|
|
9707
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_OMNI_REFERENCE_480P]: {
|
|
9708
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_OMNI_REFERENCE_480P,
|
|
9709
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9710
|
+
config: { temperature: 0.2 },
|
|
9711
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9712
|
+
capabilities: {
|
|
9713
|
+
vision: false,
|
|
9714
|
+
tools: false,
|
|
9715
|
+
reasoning: false,
|
|
9716
|
+
webSearch: false,
|
|
9717
|
+
jsonOutput: false,
|
|
9718
|
+
structuredOutputs: false,
|
|
9719
|
+
},
|
|
9720
|
+
},
|
|
9721
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_OMNI_REFERENCE_NO_VIDEO]: {
|
|
9722
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_OMNI_REFERENCE_NO_VIDEO,
|
|
9723
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9724
|
+
config: { temperature: 0.2 },
|
|
9725
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9726
|
+
capabilities: {
|
|
9727
|
+
vision: false,
|
|
9728
|
+
tools: false,
|
|
9729
|
+
reasoning: false,
|
|
9730
|
+
webSearch: false,
|
|
9731
|
+
jsonOutput: false,
|
|
9732
|
+
structuredOutputs: false,
|
|
9733
|
+
},
|
|
9734
|
+
},
|
|
9735
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_OMNI_REFERENCE_NO_VIDEO_FAST]: {
|
|
9736
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_OMNI_REFERENCE_NO_VIDEO_FAST,
|
|
9737
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9738
|
+
config: { temperature: 0.2 },
|
|
9739
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9740
|
+
capabilities: {
|
|
9741
|
+
vision: false,
|
|
9742
|
+
tools: false,
|
|
9743
|
+
reasoning: false,
|
|
9744
|
+
webSearch: false,
|
|
9745
|
+
jsonOutput: false,
|
|
9746
|
+
structuredOutputs: false,
|
|
9747
|
+
},
|
|
9748
|
+
},
|
|
9749
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_T2V]: {
|
|
9750
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_T2V,
|
|
9751
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9752
|
+
config: { temperature: 0.2 },
|
|
9753
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9754
|
+
capabilities: {
|
|
9755
|
+
vision: false,
|
|
9756
|
+
tools: false,
|
|
9757
|
+
reasoning: false,
|
|
9758
|
+
webSearch: false,
|
|
9759
|
+
jsonOutput: false,
|
|
9760
|
+
structuredOutputs: false,
|
|
9761
|
+
},
|
|
9762
|
+
},
|
|
9763
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_T2V_480P]: {
|
|
9764
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_T2V_480P,
|
|
9765
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9766
|
+
config: { temperature: 0.2 },
|
|
9767
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9768
|
+
capabilities: {
|
|
9769
|
+
vision: false,
|
|
9770
|
+
tools: false,
|
|
9771
|
+
reasoning: false,
|
|
9772
|
+
webSearch: false,
|
|
9773
|
+
jsonOutput: false,
|
|
9774
|
+
structuredOutputs: false,
|
|
9775
|
+
},
|
|
9776
|
+
},
|
|
9777
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_T2V_FAST]: {
|
|
9778
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_T2V_FAST,
|
|
9779
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9780
|
+
config: { temperature: 0.2 },
|
|
9781
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9782
|
+
capabilities: {
|
|
9783
|
+
vision: false,
|
|
9784
|
+
tools: false,
|
|
9785
|
+
reasoning: false,
|
|
9786
|
+
webSearch: false,
|
|
9787
|
+
jsonOutput: false,
|
|
9788
|
+
structuredOutputs: false,
|
|
9789
|
+
},
|
|
9790
|
+
},
|
|
9791
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_VIP_FIRST_LAST_FRAME]: {
|
|
9792
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_VIP_FIRST_LAST_FRAME,
|
|
9793
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9794
|
+
config: { temperature: 0.2 },
|
|
9795
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9796
|
+
capabilities: {
|
|
9797
|
+
vision: false,
|
|
9798
|
+
tools: false,
|
|
9799
|
+
reasoning: false,
|
|
9800
|
+
webSearch: false,
|
|
9801
|
+
jsonOutput: false,
|
|
9802
|
+
structuredOutputs: false,
|
|
9803
|
+
},
|
|
9804
|
+
},
|
|
9805
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_VIP_FIRST_LAST_FRAME_FAST]: {
|
|
9806
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_VIP_FIRST_LAST_FRAME_FAST,
|
|
9807
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9808
|
+
config: { temperature: 0.2 },
|
|
9809
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9810
|
+
capabilities: {
|
|
9811
|
+
vision: false,
|
|
9812
|
+
tools: false,
|
|
9813
|
+
reasoning: false,
|
|
9814
|
+
webSearch: false,
|
|
9815
|
+
jsonOutput: false,
|
|
9816
|
+
structuredOutputs: false,
|
|
9817
|
+
},
|
|
9818
|
+
},
|
|
9819
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_VIP_I2V]: {
|
|
9820
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_VIP_I2V,
|
|
9821
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9822
|
+
config: { temperature: 0.2 },
|
|
9823
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9824
|
+
capabilities: {
|
|
9825
|
+
vision: false,
|
|
9826
|
+
tools: false,
|
|
9827
|
+
reasoning: false,
|
|
9828
|
+
webSearch: false,
|
|
9829
|
+
jsonOutput: false,
|
|
9830
|
+
structuredOutputs: false,
|
|
9831
|
+
},
|
|
9832
|
+
},
|
|
9833
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_VIP_I2V_FAST]: {
|
|
9834
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_VIP_I2V_FAST,
|
|
9835
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9836
|
+
config: { temperature: 0.2 },
|
|
9837
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9838
|
+
capabilities: {
|
|
9839
|
+
vision: false,
|
|
9840
|
+
tools: false,
|
|
9841
|
+
reasoning: false,
|
|
9842
|
+
webSearch: false,
|
|
9843
|
+
jsonOutput: false,
|
|
9844
|
+
structuredOutputs: false,
|
|
9845
|
+
},
|
|
9846
|
+
},
|
|
9847
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_VIP_OMNI_REFERENCE]: {
|
|
9848
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_VIP_OMNI_REFERENCE,
|
|
9849
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9850
|
+
config: { temperature: 0.2 },
|
|
9851
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9852
|
+
capabilities: {
|
|
9853
|
+
vision: false,
|
|
9854
|
+
tools: false,
|
|
9855
|
+
reasoning: false,
|
|
9856
|
+
webSearch: false,
|
|
9857
|
+
jsonOutput: false,
|
|
9858
|
+
structuredOutputs: false,
|
|
9859
|
+
},
|
|
9860
|
+
},
|
|
9861
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_VIP_OMNI_REFERENCE_FAST]: {
|
|
9862
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_VIP_OMNI_REFERENCE_FAST,
|
|
9863
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9864
|
+
config: { temperature: 0.2 },
|
|
9865
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9866
|
+
capabilities: {
|
|
9867
|
+
vision: false,
|
|
9868
|
+
tools: false,
|
|
9869
|
+
reasoning: false,
|
|
9870
|
+
webSearch: false,
|
|
9871
|
+
jsonOutput: false,
|
|
9872
|
+
structuredOutputs: false,
|
|
9873
|
+
},
|
|
9874
|
+
},
|
|
9875
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_VIP_T2V]: {
|
|
9876
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_VIP_T2V,
|
|
9877
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9878
|
+
config: { temperature: 0.2 },
|
|
9879
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9880
|
+
capabilities: {
|
|
9881
|
+
vision: false,
|
|
9882
|
+
tools: false,
|
|
9883
|
+
reasoning: false,
|
|
9884
|
+
webSearch: false,
|
|
9885
|
+
jsonOutput: false,
|
|
9886
|
+
structuredOutputs: false,
|
|
9887
|
+
},
|
|
9888
|
+
},
|
|
9889
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_VIP_T2V_FAST]: {
|
|
9890
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SD_2_VIP_T2V_FAST,
|
|
9891
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9892
|
+
config: { temperature: 0.2 },
|
|
9893
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9894
|
+
capabilities: {
|
|
9895
|
+
vision: false,
|
|
9896
|
+
tools: false,
|
|
9897
|
+
reasoning: false,
|
|
9898
|
+
webSearch: false,
|
|
9899
|
+
jsonOutput: false,
|
|
9900
|
+
structuredOutputs: false,
|
|
9901
|
+
},
|
|
9902
|
+
},
|
|
9903
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SEEDANCE_LITE_I2V]: {
|
|
9904
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SEEDANCE_LITE_I2V,
|
|
9905
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9906
|
+
config: { temperature: 0.2 },
|
|
9907
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9908
|
+
capabilities: {
|
|
9909
|
+
vision: false,
|
|
9910
|
+
tools: false,
|
|
9911
|
+
reasoning: false,
|
|
9912
|
+
webSearch: false,
|
|
9913
|
+
jsonOutput: false,
|
|
9914
|
+
structuredOutputs: false,
|
|
9915
|
+
},
|
|
9916
|
+
},
|
|
9917
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SEEDANCE_LITE_T2V]: {
|
|
9918
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SEEDANCE_LITE_T2V,
|
|
9919
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9920
|
+
config: { temperature: 0.2 },
|
|
9921
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9922
|
+
capabilities: {
|
|
9923
|
+
vision: false,
|
|
9924
|
+
tools: false,
|
|
9925
|
+
reasoning: false,
|
|
9926
|
+
webSearch: false,
|
|
9927
|
+
jsonOutput: false,
|
|
9928
|
+
structuredOutputs: false,
|
|
9929
|
+
},
|
|
9930
|
+
},
|
|
9931
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SEEDANCE_PRO_I2V]: {
|
|
9932
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SEEDANCE_PRO_I2V,
|
|
9933
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9934
|
+
config: { temperature: 0.2 },
|
|
9935
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9936
|
+
capabilities: {
|
|
9937
|
+
vision: false,
|
|
9938
|
+
tools: false,
|
|
9939
|
+
reasoning: false,
|
|
9940
|
+
webSearch: false,
|
|
9941
|
+
jsonOutput: false,
|
|
9942
|
+
structuredOutputs: false,
|
|
9943
|
+
},
|
|
9944
|
+
},
|
|
9945
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SEEDANCE_PRO_I2V_FAST]: {
|
|
9946
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SEEDANCE_PRO_I2V_FAST,
|
|
9947
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9948
|
+
config: { temperature: 0.2 },
|
|
9949
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9950
|
+
capabilities: {
|
|
9951
|
+
vision: false,
|
|
9952
|
+
tools: false,
|
|
9953
|
+
reasoning: false,
|
|
9954
|
+
webSearch: false,
|
|
9955
|
+
jsonOutput: false,
|
|
9956
|
+
structuredOutputs: false,
|
|
9957
|
+
},
|
|
9958
|
+
},
|
|
9959
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SEEDANCE_PRO_T2V]: {
|
|
9960
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SEEDANCE_PRO_T2V,
|
|
9961
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9962
|
+
config: { temperature: 0.2 },
|
|
9963
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9964
|
+
capabilities: {
|
|
9965
|
+
vision: false,
|
|
9966
|
+
tools: false,
|
|
9967
|
+
reasoning: false,
|
|
9968
|
+
webSearch: false,
|
|
9969
|
+
jsonOutput: false,
|
|
9970
|
+
structuredOutputs: false,
|
|
9971
|
+
},
|
|
9972
|
+
},
|
|
9973
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SEEDANCE_PRO_T2V_FAST]: {
|
|
9974
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SEEDANCE_PRO_T2V_FAST,
|
|
9975
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9976
|
+
config: { temperature: 0.2 },
|
|
9977
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9978
|
+
capabilities: {
|
|
9979
|
+
vision: false,
|
|
9980
|
+
tools: false,
|
|
9981
|
+
reasoning: false,
|
|
9982
|
+
webSearch: false,
|
|
9983
|
+
jsonOutput: false,
|
|
9984
|
+
structuredOutputs: false,
|
|
9985
|
+
},
|
|
9986
|
+
},
|
|
9987
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SEEDANCE_V1_5_PRO_I2V]: {
|
|
9988
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SEEDANCE_V1_5_PRO_I2V,
|
|
9989
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
9990
|
+
config: { temperature: 0.2 },
|
|
9991
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
9992
|
+
capabilities: {
|
|
9993
|
+
vision: false,
|
|
9994
|
+
tools: false,
|
|
9995
|
+
reasoning: false,
|
|
9996
|
+
webSearch: false,
|
|
9997
|
+
jsonOutput: false,
|
|
9998
|
+
structuredOutputs: false,
|
|
9999
|
+
},
|
|
10000
|
+
},
|
|
10001
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SEEDANCE_V1_5_PRO_I2V_FAST]: {
|
|
10002
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SEEDANCE_V1_5_PRO_I2V_FAST,
|
|
10003
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10004
|
+
config: { temperature: 0.2 },
|
|
10005
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10006
|
+
capabilities: {
|
|
10007
|
+
vision: false,
|
|
10008
|
+
tools: false,
|
|
10009
|
+
reasoning: false,
|
|
10010
|
+
webSearch: false,
|
|
10011
|
+
jsonOutput: false,
|
|
10012
|
+
structuredOutputs: false,
|
|
10013
|
+
},
|
|
10014
|
+
},
|
|
10015
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SEEDANCE_V1_5_PRO_T2V]: {
|
|
10016
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SEEDANCE_V1_5_PRO_T2V,
|
|
10017
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10018
|
+
config: { temperature: 0.2 },
|
|
10019
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10020
|
+
capabilities: {
|
|
10021
|
+
vision: false,
|
|
10022
|
+
tools: false,
|
|
10023
|
+
reasoning: false,
|
|
10024
|
+
webSearch: false,
|
|
10025
|
+
jsonOutput: false,
|
|
10026
|
+
structuredOutputs: false,
|
|
10027
|
+
},
|
|
10028
|
+
},
|
|
10029
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SEEDANCE_V1_5_PRO_T2V_FAST]: {
|
|
10030
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SEEDANCE_V1_5_PRO_T2V_FAST,
|
|
10031
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10032
|
+
config: { temperature: 0.2 },
|
|
10033
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10034
|
+
capabilities: {
|
|
10035
|
+
vision: false,
|
|
10036
|
+
tools: false,
|
|
10037
|
+
reasoning: false,
|
|
10038
|
+
webSearch: false,
|
|
10039
|
+
jsonOutput: false,
|
|
10040
|
+
structuredOutputs: false,
|
|
10041
|
+
},
|
|
10042
|
+
},
|
|
10043
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SORA2_I2V]: {
|
|
10044
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SORA2_I2V,
|
|
10045
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10046
|
+
config: { temperature: 0.2 },
|
|
10047
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10048
|
+
capabilities: {
|
|
10049
|
+
vision: false,
|
|
10050
|
+
tools: false,
|
|
10051
|
+
reasoning: false,
|
|
10052
|
+
webSearch: false,
|
|
10053
|
+
jsonOutput: false,
|
|
10054
|
+
structuredOutputs: false,
|
|
10055
|
+
},
|
|
10056
|
+
},
|
|
10057
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SORA2_PRO_I2V]: {
|
|
10058
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SORA2_PRO_I2V,
|
|
10059
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10060
|
+
config: { temperature: 0.2 },
|
|
10061
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10062
|
+
capabilities: {
|
|
10063
|
+
vision: false,
|
|
10064
|
+
tools: false,
|
|
10065
|
+
reasoning: false,
|
|
10066
|
+
webSearch: false,
|
|
10067
|
+
jsonOutput: false,
|
|
10068
|
+
structuredOutputs: false,
|
|
10069
|
+
},
|
|
10070
|
+
},
|
|
10071
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SORA2_PRO_T2V]: {
|
|
10072
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SORA2_PRO_T2V,
|
|
10073
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10074
|
+
config: { temperature: 0.2 },
|
|
10075
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10076
|
+
capabilities: {
|
|
10077
|
+
vision: false,
|
|
10078
|
+
tools: false,
|
|
10079
|
+
reasoning: false,
|
|
10080
|
+
webSearch: false,
|
|
10081
|
+
jsonOutput: false,
|
|
10082
|
+
structuredOutputs: false,
|
|
10083
|
+
},
|
|
10084
|
+
},
|
|
10085
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.SORA2_T2V]: {
|
|
10086
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.SORA2_T2V,
|
|
10087
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10088
|
+
config: { temperature: 0.2 },
|
|
10089
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10090
|
+
capabilities: {
|
|
10091
|
+
vision: false,
|
|
10092
|
+
tools: false,
|
|
10093
|
+
reasoning: false,
|
|
10094
|
+
webSearch: false,
|
|
10095
|
+
jsonOutput: false,
|
|
10096
|
+
structuredOutputs: false,
|
|
10097
|
+
},
|
|
10098
|
+
},
|
|
10099
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.MOONSHOTAI_KIMI_K3_TOGETHERAI]: {
|
|
10100
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.MOONSHOTAI_KIMI_K3_TOGETHERAI,
|
|
10101
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 1_048_576 },
|
|
10102
|
+
config: { temperature: 0.2 },
|
|
10103
|
+
pricing: { getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10104
|
+
capabilities: {
|
|
10105
|
+
vision: true,
|
|
10106
|
+
tools: true,
|
|
10107
|
+
reasoning: true,
|
|
10108
|
+
webSearch: false,
|
|
10109
|
+
jsonOutput: false,
|
|
10110
|
+
structuredOutputs: false,
|
|
10111
|
+
},
|
|
10112
|
+
},
|
|
10113
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.VEO3_FAST_I2V]: {
|
|
10114
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.VEO3_FAST_I2V,
|
|
10115
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10116
|
+
config: { temperature: 0.2 },
|
|
10117
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10118
|
+
capabilities: {
|
|
10119
|
+
vision: false,
|
|
10120
|
+
tools: false,
|
|
10121
|
+
reasoning: false,
|
|
10122
|
+
webSearch: false,
|
|
10123
|
+
jsonOutput: false,
|
|
10124
|
+
structuredOutputs: false,
|
|
10125
|
+
},
|
|
10126
|
+
},
|
|
10127
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.VEO3_FAST_T2V]: {
|
|
10128
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.VEO3_FAST_T2V,
|
|
10129
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10130
|
+
config: { temperature: 0.2 },
|
|
10131
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10132
|
+
capabilities: {
|
|
10133
|
+
vision: false,
|
|
10134
|
+
tools: false,
|
|
10135
|
+
reasoning: false,
|
|
10136
|
+
webSearch: false,
|
|
10137
|
+
jsonOutput: false,
|
|
10138
|
+
structuredOutputs: false,
|
|
10139
|
+
},
|
|
10140
|
+
},
|
|
10141
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.VEO3_I2V]: {
|
|
10142
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.VEO3_I2V,
|
|
10143
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10144
|
+
config: { temperature: 0.2 },
|
|
10145
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10146
|
+
capabilities: {
|
|
10147
|
+
vision: false,
|
|
10148
|
+
tools: false,
|
|
10149
|
+
reasoning: false,
|
|
10150
|
+
webSearch: false,
|
|
10151
|
+
jsonOutput: false,
|
|
10152
|
+
structuredOutputs: false,
|
|
10153
|
+
},
|
|
10154
|
+
},
|
|
10155
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.VEO3_T2V]: {
|
|
10156
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.VEO3_T2V,
|
|
10157
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10158
|
+
config: { temperature: 0.2 },
|
|
10159
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10160
|
+
capabilities: {
|
|
10161
|
+
vision: false,
|
|
10162
|
+
tools: false,
|
|
10163
|
+
reasoning: false,
|
|
10164
|
+
webSearch: false,
|
|
10165
|
+
jsonOutput: false,
|
|
10166
|
+
structuredOutputs: false,
|
|
10167
|
+
},
|
|
10168
|
+
},
|
|
10169
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.VEO3_1_FAST_I2V]: {
|
|
10170
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.VEO3_1_FAST_I2V,
|
|
10171
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10172
|
+
config: { temperature: 0.2 },
|
|
10173
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10174
|
+
capabilities: {
|
|
10175
|
+
vision: false,
|
|
10176
|
+
tools: false,
|
|
10177
|
+
reasoning: false,
|
|
10178
|
+
webSearch: false,
|
|
10179
|
+
jsonOutput: false,
|
|
10180
|
+
structuredOutputs: false,
|
|
10181
|
+
},
|
|
10182
|
+
},
|
|
10183
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.VEO3_1_FAST_T2V]: {
|
|
10184
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.VEO3_1_FAST_T2V,
|
|
10185
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10186
|
+
config: { temperature: 0.2 },
|
|
10187
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10188
|
+
capabilities: {
|
|
10189
|
+
vision: false,
|
|
10190
|
+
tools: false,
|
|
10191
|
+
reasoning: false,
|
|
10192
|
+
webSearch: false,
|
|
10193
|
+
jsonOutput: false,
|
|
10194
|
+
structuredOutputs: false,
|
|
10195
|
+
},
|
|
10196
|
+
},
|
|
10197
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.VEO3_1_I2V]: {
|
|
10198
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.VEO3_1_I2V,
|
|
10199
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10200
|
+
config: { temperature: 0.2 },
|
|
10201
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10202
|
+
capabilities: {
|
|
10203
|
+
vision: false,
|
|
10204
|
+
tools: false,
|
|
10205
|
+
reasoning: false,
|
|
10206
|
+
webSearch: false,
|
|
10207
|
+
jsonOutput: false,
|
|
10208
|
+
structuredOutputs: false,
|
|
10209
|
+
},
|
|
10210
|
+
},
|
|
10211
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.VEO3_1_LITE_I2V]: {
|
|
10212
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.VEO3_1_LITE_I2V,
|
|
10213
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10214
|
+
config: { temperature: 0.2 },
|
|
10215
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10216
|
+
capabilities: {
|
|
10217
|
+
vision: false,
|
|
10218
|
+
tools: false,
|
|
10219
|
+
reasoning: false,
|
|
10220
|
+
webSearch: false,
|
|
10221
|
+
jsonOutput: false,
|
|
10222
|
+
structuredOutputs: false,
|
|
10223
|
+
},
|
|
10224
|
+
},
|
|
10225
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.VEO3_1_LITE_T2V]: {
|
|
10226
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.VEO3_1_LITE_T2V,
|
|
10227
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10228
|
+
config: { temperature: 0.2 },
|
|
10229
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10230
|
+
capabilities: {
|
|
10231
|
+
vision: false,
|
|
10232
|
+
tools: false,
|
|
10233
|
+
reasoning: false,
|
|
10234
|
+
webSearch: false,
|
|
10235
|
+
jsonOutput: false,
|
|
10236
|
+
structuredOutputs: false,
|
|
10237
|
+
},
|
|
10238
|
+
},
|
|
10239
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.VEO3_1_REFERENCE_TO_VIDEO]: {
|
|
10240
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.VEO3_1_REFERENCE_TO_VIDEO,
|
|
10241
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10242
|
+
config: { temperature: 0.2 },
|
|
10243
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10244
|
+
capabilities: {
|
|
10245
|
+
vision: false,
|
|
10246
|
+
tools: false,
|
|
10247
|
+
reasoning: false,
|
|
10248
|
+
webSearch: false,
|
|
10249
|
+
jsonOutput: false,
|
|
10250
|
+
structuredOutputs: false,
|
|
10251
|
+
},
|
|
10252
|
+
},
|
|
10253
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.VEO3_1_T2V]: {
|
|
10254
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.VEO3_1_T2V,
|
|
10255
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10256
|
+
config: { temperature: 0.2 },
|
|
10257
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10258
|
+
capabilities: {
|
|
10259
|
+
vision: false,
|
|
10260
|
+
tools: false,
|
|
10261
|
+
reasoning: false,
|
|
10262
|
+
webSearch: false,
|
|
10263
|
+
jsonOutput: false,
|
|
10264
|
+
structuredOutputs: false,
|
|
10265
|
+
},
|
|
10266
|
+
},
|
|
10267
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.VIDEO_EFFECTS]: {
|
|
10268
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.VIDEO_EFFECTS,
|
|
10269
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10270
|
+
config: { temperature: 0.2 },
|
|
10271
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10272
|
+
capabilities: {
|
|
10273
|
+
vision: false,
|
|
10274
|
+
tools: false,
|
|
10275
|
+
reasoning: false,
|
|
10276
|
+
webSearch: false,
|
|
10277
|
+
jsonOutput: false,
|
|
10278
|
+
structuredOutputs: false,
|
|
10279
|
+
},
|
|
10280
|
+
},
|
|
10281
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.VIDU_Q1_REFERENCE]: {
|
|
10282
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.VIDU_Q1_REFERENCE,
|
|
10283
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10284
|
+
config: { temperature: 0.2 },
|
|
10285
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10286
|
+
capabilities: {
|
|
10287
|
+
vision: false,
|
|
10288
|
+
tools: false,
|
|
10289
|
+
reasoning: false,
|
|
10290
|
+
webSearch: false,
|
|
10291
|
+
jsonOutput: false,
|
|
10292
|
+
structuredOutputs: false,
|
|
10293
|
+
},
|
|
10294
|
+
},
|
|
10295
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.VIDU_Q2_PRO_START_END_VIDEO]: {
|
|
10296
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.VIDU_Q2_PRO_START_END_VIDEO,
|
|
10297
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10298
|
+
config: { temperature: 0.2 },
|
|
10299
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10300
|
+
capabilities: {
|
|
10301
|
+
vision: false,
|
|
10302
|
+
tools: false,
|
|
10303
|
+
reasoning: false,
|
|
10304
|
+
webSearch: false,
|
|
10305
|
+
jsonOutput: false,
|
|
10306
|
+
structuredOutputs: false,
|
|
10307
|
+
},
|
|
10308
|
+
},
|
|
10309
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.VIDU_Q2_REFERENCE]: {
|
|
10310
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.VIDU_Q2_REFERENCE,
|
|
10311
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10312
|
+
config: { temperature: 0.2 },
|
|
10313
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10314
|
+
capabilities: {
|
|
10315
|
+
vision: false,
|
|
10316
|
+
tools: false,
|
|
10317
|
+
reasoning: false,
|
|
10318
|
+
webSearch: false,
|
|
10319
|
+
jsonOutput: false,
|
|
10320
|
+
structuredOutputs: false,
|
|
10321
|
+
},
|
|
10322
|
+
},
|
|
10323
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.VIDU_Q2_TURBO_START_END_VIDEO]: {
|
|
10324
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.VIDU_Q2_TURBO_START_END_VIDEO,
|
|
10325
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10326
|
+
config: { temperature: 0.2 },
|
|
10327
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10328
|
+
capabilities: {
|
|
10329
|
+
vision: false,
|
|
10330
|
+
tools: false,
|
|
10331
|
+
reasoning: false,
|
|
10332
|
+
webSearch: false,
|
|
10333
|
+
jsonOutput: false,
|
|
10334
|
+
structuredOutputs: false,
|
|
10335
|
+
},
|
|
10336
|
+
},
|
|
10337
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.VIDU_V2_0_I2V]: {
|
|
10338
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.VIDU_V2_0_I2V,
|
|
10339
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10340
|
+
config: { temperature: 0.2 },
|
|
10341
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10342
|
+
capabilities: {
|
|
10343
|
+
vision: false,
|
|
10344
|
+
tools: false,
|
|
10345
|
+
reasoning: false,
|
|
10346
|
+
webSearch: false,
|
|
10347
|
+
jsonOutput: false,
|
|
10348
|
+
structuredOutputs: false,
|
|
10349
|
+
},
|
|
10350
|
+
},
|
|
10351
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.VIDU_V2_0_T2V]: {
|
|
10352
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.VIDU_V2_0_T2V,
|
|
10353
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10354
|
+
config: { temperature: 0.2 },
|
|
10355
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10356
|
+
capabilities: {
|
|
10357
|
+
vision: false,
|
|
10358
|
+
tools: false,
|
|
10359
|
+
reasoning: false,
|
|
10360
|
+
webSearch: false,
|
|
10361
|
+
jsonOutput: false,
|
|
10362
|
+
structuredOutputs: false,
|
|
10363
|
+
},
|
|
10364
|
+
},
|
|
10365
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_1_I2V]: {
|
|
10366
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_1_I2V,
|
|
10367
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10368
|
+
config: { temperature: 0.2 },
|
|
10369
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10370
|
+
capabilities: {
|
|
10371
|
+
vision: false,
|
|
10372
|
+
tools: false,
|
|
10373
|
+
reasoning: false,
|
|
10374
|
+
webSearch: false,
|
|
10375
|
+
jsonOutput: false,
|
|
10376
|
+
structuredOutputs: false,
|
|
10377
|
+
},
|
|
10378
|
+
},
|
|
10379
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_1_REFERENCE_VIDEO]: {
|
|
10380
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_1_REFERENCE_VIDEO,
|
|
10381
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10382
|
+
config: { temperature: 0.2 },
|
|
10383
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10384
|
+
capabilities: {
|
|
10385
|
+
vision: false,
|
|
10386
|
+
tools: false,
|
|
10387
|
+
reasoning: false,
|
|
10388
|
+
webSearch: false,
|
|
10389
|
+
jsonOutput: false,
|
|
10390
|
+
structuredOutputs: false,
|
|
10391
|
+
},
|
|
10392
|
+
},
|
|
10393
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_1_T2V]: {
|
|
10394
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_1_T2V,
|
|
10395
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10396
|
+
config: { temperature: 0.2 },
|
|
10397
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10398
|
+
capabilities: {
|
|
10399
|
+
vision: false,
|
|
10400
|
+
tools: false,
|
|
10401
|
+
reasoning: false,
|
|
10402
|
+
webSearch: false,
|
|
10403
|
+
jsonOutput: false,
|
|
10404
|
+
structuredOutputs: false,
|
|
10405
|
+
},
|
|
10406
|
+
},
|
|
10407
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_2_5B_FAST_T2V]: {
|
|
10408
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_2_5B_FAST_T2V,
|
|
10409
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10410
|
+
config: { temperature: 0.2 },
|
|
10411
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10412
|
+
capabilities: {
|
|
10413
|
+
vision: false,
|
|
10414
|
+
tools: false,
|
|
10415
|
+
reasoning: false,
|
|
10416
|
+
webSearch: false,
|
|
10417
|
+
jsonOutput: false,
|
|
10418
|
+
structuredOutputs: false,
|
|
10419
|
+
},
|
|
10420
|
+
},
|
|
10421
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_2_I2V]: {
|
|
10422
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_2_I2V,
|
|
10423
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10424
|
+
config: { temperature: 0.2 },
|
|
10425
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10426
|
+
capabilities: {
|
|
10427
|
+
vision: false,
|
|
10428
|
+
tools: false,
|
|
10429
|
+
reasoning: false,
|
|
10430
|
+
webSearch: false,
|
|
10431
|
+
jsonOutput: false,
|
|
10432
|
+
structuredOutputs: false,
|
|
10433
|
+
},
|
|
10434
|
+
},
|
|
10435
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_2_SPICY_I2V]: {
|
|
10436
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_2_SPICY_I2V,
|
|
10437
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10438
|
+
config: { temperature: 0.2 },
|
|
10439
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10440
|
+
capabilities: {
|
|
10441
|
+
vision: false,
|
|
10442
|
+
tools: false,
|
|
10443
|
+
reasoning: false,
|
|
10444
|
+
webSearch: false,
|
|
10445
|
+
jsonOutput: false,
|
|
10446
|
+
structuredOutputs: false,
|
|
10447
|
+
},
|
|
10448
|
+
},
|
|
10449
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_2_T2V]: {
|
|
10450
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_2_T2V,
|
|
10451
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10452
|
+
config: { temperature: 0.2 },
|
|
10453
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10454
|
+
capabilities: {
|
|
10455
|
+
vision: false,
|
|
10456
|
+
tools: false,
|
|
10457
|
+
reasoning: false,
|
|
10458
|
+
webSearch: false,
|
|
10459
|
+
jsonOutput: false,
|
|
10460
|
+
structuredOutputs: false,
|
|
10461
|
+
},
|
|
10462
|
+
},
|
|
10463
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_5_I2V]: {
|
|
10464
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_5_I2V,
|
|
10465
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10466
|
+
config: { temperature: 0.2 },
|
|
10467
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10468
|
+
capabilities: {
|
|
10469
|
+
vision: false,
|
|
10470
|
+
tools: false,
|
|
10471
|
+
reasoning: false,
|
|
10472
|
+
webSearch: false,
|
|
10473
|
+
jsonOutput: false,
|
|
10474
|
+
structuredOutputs: false,
|
|
10475
|
+
},
|
|
10476
|
+
},
|
|
10477
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_5_I2V_FAST]: {
|
|
10478
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_5_I2V_FAST,
|
|
10479
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10480
|
+
config: { temperature: 0.2 },
|
|
10481
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10482
|
+
capabilities: {
|
|
10483
|
+
vision: false,
|
|
10484
|
+
tools: false,
|
|
10485
|
+
reasoning: false,
|
|
10486
|
+
webSearch: false,
|
|
10487
|
+
jsonOutput: false,
|
|
10488
|
+
structuredOutputs: false,
|
|
10489
|
+
},
|
|
10490
|
+
},
|
|
10491
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_5_T2V]: {
|
|
10492
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_5_T2V,
|
|
10493
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10494
|
+
config: { temperature: 0.2 },
|
|
10495
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10496
|
+
capabilities: {
|
|
10497
|
+
vision: false,
|
|
10498
|
+
tools: false,
|
|
10499
|
+
reasoning: false,
|
|
10500
|
+
webSearch: false,
|
|
10501
|
+
jsonOutput: false,
|
|
10502
|
+
structuredOutputs: false,
|
|
10503
|
+
},
|
|
10504
|
+
},
|
|
10505
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_5_T2V_FAST]: {
|
|
10506
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_5_T2V_FAST,
|
|
10507
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10508
|
+
config: { temperature: 0.2 },
|
|
10509
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10510
|
+
capabilities: {
|
|
10511
|
+
vision: false,
|
|
10512
|
+
tools: false,
|
|
10513
|
+
reasoning: false,
|
|
10514
|
+
webSearch: false,
|
|
10515
|
+
jsonOutput: false,
|
|
10516
|
+
structuredOutputs: false,
|
|
10517
|
+
},
|
|
10518
|
+
},
|
|
10519
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_6_I2V]: {
|
|
10520
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_6_I2V,
|
|
10521
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10522
|
+
config: { temperature: 0.2 },
|
|
10523
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10524
|
+
capabilities: {
|
|
10525
|
+
vision: false,
|
|
10526
|
+
tools: false,
|
|
10527
|
+
reasoning: false,
|
|
10528
|
+
webSearch: false,
|
|
10529
|
+
jsonOutput: false,
|
|
10530
|
+
structuredOutputs: false,
|
|
10531
|
+
},
|
|
10532
|
+
},
|
|
10533
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_6_T2V]: {
|
|
10534
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_6_T2V,
|
|
10535
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10536
|
+
config: { temperature: 0.2 },
|
|
10537
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10538
|
+
capabilities: {
|
|
10539
|
+
vision: false,
|
|
10540
|
+
tools: false,
|
|
10541
|
+
reasoning: false,
|
|
10542
|
+
webSearch: false,
|
|
10543
|
+
jsonOutput: false,
|
|
10544
|
+
structuredOutputs: false,
|
|
10545
|
+
},
|
|
10546
|
+
},
|
|
10547
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_7_I2V]: {
|
|
10548
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_7_I2V,
|
|
10549
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10550
|
+
config: { temperature: 0.2 },
|
|
10551
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10552
|
+
capabilities: {
|
|
10553
|
+
vision: false,
|
|
10554
|
+
tools: false,
|
|
10555
|
+
reasoning: false,
|
|
10556
|
+
webSearch: false,
|
|
10557
|
+
jsonOutput: false,
|
|
10558
|
+
structuredOutputs: false,
|
|
10559
|
+
},
|
|
10560
|
+
},
|
|
10561
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_7_REFERENCE_TO_VIDEO]: {
|
|
10562
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_7_REFERENCE_TO_VIDEO,
|
|
10563
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10564
|
+
config: { temperature: 0.2 },
|
|
10565
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10566
|
+
capabilities: {
|
|
10567
|
+
vision: false,
|
|
10568
|
+
tools: false,
|
|
10569
|
+
reasoning: false,
|
|
10570
|
+
webSearch: false,
|
|
10571
|
+
jsonOutput: false,
|
|
10572
|
+
structuredOutputs: false,
|
|
10573
|
+
},
|
|
10574
|
+
},
|
|
10575
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_7_T2V]: {
|
|
10576
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.WAN2_7_T2V,
|
|
10577
|
+
limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
|
|
10578
|
+
config: { temperature: 0.2 },
|
|
10579
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
10580
|
+
capabilities: {
|
|
10581
|
+
vision: false,
|
|
10582
|
+
tools: false,
|
|
10583
|
+
reasoning: false,
|
|
10584
|
+
webSearch: false,
|
|
10585
|
+
jsonOutput: false,
|
|
10586
|
+
structuredOutputs: false,
|
|
10587
|
+
},
|
|
10588
|
+
},
|
|
10589
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_5_XAI]: {
|
|
10590
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_5_XAI,
|
|
10591
|
+
limits: { maxInputTokens: 500_000, maxOutputTokens: 131_072 },
|
|
10592
|
+
config: { temperature: 0.2 },
|
|
10593
|
+
pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForCachedTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 6 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
8564
10594
|
capabilities: {
|
|
8565
10595
|
vision: true,
|
|
8566
10596
|
tools: true,
|