@mate-academy/llm-gateway 7.1.0 → 7.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/LLMService.constants.d.ts +282 -0
- package/dist/LLMService.typedefs.d.ts +1 -0
- package/dist/LLMService.typedefs.js.map +1 -1
- package/dist/providers/LLMAPI/LLMAPI.constants.d.ts +423 -0
- package/dist/providers/LLMAPI/LLMAPI.constants.js +141 -141
- package/dist/providers/LLMAPI/LLMAPI.constants.js.map +1 -1
- package/dist/providers/LLMAPI/services/LLMAPIAssistance.service.js +10 -3
- package/dist/providers/LLMAPI/services/LLMAPIAssistance.service.js.map +1 -1
- package/dist/services/chatState/CompletionsChatState.d.ts +1 -1
- package/dist/services/chatState/CompletionsChatState.js +7 -3
- package/dist/services/chatState/CompletionsChatState.js.map +1 -1
- package/package.json +1 -1
|
@@ -24,6 +24,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
24
24
|
readonly tools: true;
|
|
25
25
|
readonly reasoning: false;
|
|
26
26
|
readonly webSearch: false;
|
|
27
|
+
readonly jsonResponseWithTools: true;
|
|
27
28
|
};
|
|
28
29
|
};
|
|
29
30
|
readonly "gpt-4": {
|
|
@@ -47,6 +48,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
47
48
|
readonly tools: true;
|
|
48
49
|
readonly reasoning: false;
|
|
49
50
|
readonly webSearch: false;
|
|
51
|
+
readonly jsonResponseWithTools: true;
|
|
50
52
|
};
|
|
51
53
|
};
|
|
52
54
|
readonly "gpt-4-turbo": {
|
|
@@ -70,6 +72,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
70
72
|
readonly tools: true;
|
|
71
73
|
readonly reasoning: false;
|
|
72
74
|
readonly webSearch: false;
|
|
75
|
+
readonly jsonResponseWithTools: true;
|
|
73
76
|
};
|
|
74
77
|
};
|
|
75
78
|
readonly "gpt-4o": {
|
|
@@ -93,6 +96,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
93
96
|
readonly tools: true;
|
|
94
97
|
readonly reasoning: false;
|
|
95
98
|
readonly webSearch: true;
|
|
99
|
+
readonly jsonResponseWithTools: true;
|
|
96
100
|
};
|
|
97
101
|
};
|
|
98
102
|
readonly "gpt-4o-mini": {
|
|
@@ -116,6 +120,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
116
120
|
readonly tools: true;
|
|
117
121
|
readonly reasoning: false;
|
|
118
122
|
readonly webSearch: false;
|
|
123
|
+
readonly jsonResponseWithTools: true;
|
|
119
124
|
};
|
|
120
125
|
};
|
|
121
126
|
readonly "gpt-4o-search-preview": {
|
|
@@ -139,6 +144,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
139
144
|
readonly tools: false;
|
|
140
145
|
readonly reasoning: false;
|
|
141
146
|
readonly webSearch: true;
|
|
147
|
+
readonly jsonResponseWithTools: true;
|
|
142
148
|
};
|
|
143
149
|
};
|
|
144
150
|
readonly "gpt-4o-mini-search-preview": {
|
|
@@ -162,6 +168,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
162
168
|
readonly tools: false;
|
|
163
169
|
readonly reasoning: false;
|
|
164
170
|
readonly webSearch: true;
|
|
171
|
+
readonly jsonResponseWithTools: true;
|
|
165
172
|
};
|
|
166
173
|
};
|
|
167
174
|
readonly "gpt-4.1": {
|
|
@@ -185,6 +192,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
185
192
|
readonly tools: true;
|
|
186
193
|
readonly reasoning: false;
|
|
187
194
|
readonly webSearch: false;
|
|
195
|
+
readonly jsonResponseWithTools: true;
|
|
188
196
|
};
|
|
189
197
|
};
|
|
190
198
|
readonly "gpt-4.1-mini": {
|
|
@@ -208,6 +216,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
208
216
|
readonly tools: true;
|
|
209
217
|
readonly reasoning: false;
|
|
210
218
|
readonly webSearch: false;
|
|
219
|
+
readonly jsonResponseWithTools: true;
|
|
211
220
|
};
|
|
212
221
|
};
|
|
213
222
|
readonly "gpt-4.1-nano": {
|
|
@@ -231,6 +240,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
231
240
|
readonly tools: true;
|
|
232
241
|
readonly reasoning: false;
|
|
233
242
|
readonly webSearch: false;
|
|
243
|
+
readonly jsonResponseWithTools: true;
|
|
234
244
|
};
|
|
235
245
|
};
|
|
236
246
|
readonly o1: {
|
|
@@ -254,6 +264,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
254
264
|
readonly tools: false;
|
|
255
265
|
readonly reasoning: true;
|
|
256
266
|
readonly webSearch: false;
|
|
267
|
+
readonly jsonResponseWithTools: false;
|
|
257
268
|
};
|
|
258
269
|
};
|
|
259
270
|
readonly o3: {
|
|
@@ -277,6 +288,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
277
288
|
readonly tools: false;
|
|
278
289
|
readonly reasoning: false;
|
|
279
290
|
readonly webSearch: false;
|
|
291
|
+
readonly jsonResponseWithTools: false;
|
|
280
292
|
};
|
|
281
293
|
};
|
|
282
294
|
readonly "o3-mini": {
|
|
@@ -300,6 +312,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
300
312
|
readonly tools: false;
|
|
301
313
|
readonly reasoning: false;
|
|
302
314
|
readonly webSearch: false;
|
|
315
|
+
readonly jsonResponseWithTools: false;
|
|
303
316
|
};
|
|
304
317
|
};
|
|
305
318
|
readonly "gpt-oss-20b": {
|
|
@@ -323,6 +336,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
323
336
|
readonly tools: true;
|
|
324
337
|
readonly reasoning: true;
|
|
325
338
|
readonly webSearch: false;
|
|
339
|
+
readonly jsonResponseWithTools: true;
|
|
326
340
|
};
|
|
327
341
|
};
|
|
328
342
|
readonly "gpt-5": {
|
|
@@ -346,6 +360,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
346
360
|
readonly tools: true;
|
|
347
361
|
readonly reasoning: true;
|
|
348
362
|
readonly webSearch: true;
|
|
363
|
+
readonly jsonResponseWithTools: true;
|
|
349
364
|
};
|
|
350
365
|
};
|
|
351
366
|
readonly "gpt-5-mini": {
|
|
@@ -369,6 +384,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
369
384
|
readonly tools: true;
|
|
370
385
|
readonly reasoning: true;
|
|
371
386
|
readonly webSearch: true;
|
|
387
|
+
readonly jsonResponseWithTools: true;
|
|
372
388
|
};
|
|
373
389
|
};
|
|
374
390
|
readonly "gpt-5-nano": {
|
|
@@ -392,6 +408,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
392
408
|
readonly tools: true;
|
|
393
409
|
readonly reasoning: true;
|
|
394
410
|
readonly webSearch: true;
|
|
411
|
+
readonly jsonResponseWithTools: true;
|
|
395
412
|
};
|
|
396
413
|
};
|
|
397
414
|
readonly "gpt-5-codex": {
|
|
@@ -415,6 +432,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
415
432
|
readonly tools: true;
|
|
416
433
|
readonly reasoning: true;
|
|
417
434
|
readonly webSearch: false;
|
|
435
|
+
readonly jsonResponseWithTools: true;
|
|
418
436
|
};
|
|
419
437
|
};
|
|
420
438
|
readonly "gpt-5-pro": {
|
|
@@ -438,6 +456,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
438
456
|
readonly tools: true;
|
|
439
457
|
readonly reasoning: true;
|
|
440
458
|
readonly webSearch: true;
|
|
459
|
+
readonly jsonResponseWithTools: true;
|
|
441
460
|
};
|
|
442
461
|
};
|
|
443
462
|
readonly "gpt-5.1": {
|
|
@@ -461,6 +480,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
461
480
|
readonly tools: true;
|
|
462
481
|
readonly reasoning: true;
|
|
463
482
|
readonly webSearch: true;
|
|
483
|
+
readonly jsonResponseWithTools: true;
|
|
464
484
|
};
|
|
465
485
|
};
|
|
466
486
|
readonly "gpt-5.1-chat": {
|
|
@@ -484,6 +504,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
484
504
|
readonly tools: true;
|
|
485
505
|
readonly reasoning: true;
|
|
486
506
|
readonly webSearch: false;
|
|
507
|
+
readonly jsonResponseWithTools: true;
|
|
487
508
|
};
|
|
488
509
|
};
|
|
489
510
|
readonly "gpt-5.1-codex": {
|
|
@@ -507,6 +528,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
507
528
|
readonly tools: true;
|
|
508
529
|
readonly reasoning: true;
|
|
509
530
|
readonly webSearch: true;
|
|
531
|
+
readonly jsonResponseWithTools: true;
|
|
510
532
|
};
|
|
511
533
|
};
|
|
512
534
|
readonly "gpt-5.1-codex-mini": {
|
|
@@ -530,6 +552,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
530
552
|
readonly tools: true;
|
|
531
553
|
readonly reasoning: true;
|
|
532
554
|
readonly webSearch: true;
|
|
555
|
+
readonly jsonResponseWithTools: true;
|
|
533
556
|
};
|
|
534
557
|
};
|
|
535
558
|
readonly "gpt-5.2": {
|
|
@@ -553,6 +576,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
553
576
|
readonly tools: true;
|
|
554
577
|
readonly reasoning: true;
|
|
555
578
|
readonly webSearch: true;
|
|
579
|
+
readonly jsonResponseWithTools: true;
|
|
556
580
|
};
|
|
557
581
|
};
|
|
558
582
|
readonly "gpt-5.2-pro": {
|
|
@@ -576,6 +600,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
576
600
|
readonly tools: true;
|
|
577
601
|
readonly reasoning: true;
|
|
578
602
|
readonly webSearch: true;
|
|
603
|
+
readonly jsonResponseWithTools: true;
|
|
579
604
|
};
|
|
580
605
|
};
|
|
581
606
|
readonly "gpt-5.2-codex": {
|
|
@@ -599,6 +624,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
599
624
|
readonly tools: true;
|
|
600
625
|
readonly reasoning: true;
|
|
601
626
|
readonly webSearch: true;
|
|
627
|
+
readonly jsonResponseWithTools: true;
|
|
602
628
|
};
|
|
603
629
|
};
|
|
604
630
|
readonly "gpt-5.3-codex": {
|
|
@@ -622,6 +648,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
622
648
|
readonly tools: true;
|
|
623
649
|
readonly reasoning: true;
|
|
624
650
|
readonly webSearch: true;
|
|
651
|
+
readonly jsonResponseWithTools: true;
|
|
625
652
|
};
|
|
626
653
|
};
|
|
627
654
|
readonly "gpt-5.4": {
|
|
@@ -645,6 +672,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
645
672
|
readonly tools: true;
|
|
646
673
|
readonly reasoning: true;
|
|
647
674
|
readonly webSearch: true;
|
|
675
|
+
readonly jsonResponseWithTools: true;
|
|
648
676
|
};
|
|
649
677
|
};
|
|
650
678
|
readonly "gpt-5.4-pro": {
|
|
@@ -668,6 +696,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
668
696
|
readonly tools: true;
|
|
669
697
|
readonly reasoning: true;
|
|
670
698
|
readonly webSearch: true;
|
|
699
|
+
readonly jsonResponseWithTools: true;
|
|
671
700
|
};
|
|
672
701
|
};
|
|
673
702
|
readonly "claude-sonnet-4-20250514": {
|
|
@@ -691,6 +720,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
691
720
|
readonly tools: true;
|
|
692
721
|
readonly reasoning: true;
|
|
693
722
|
readonly webSearch: true;
|
|
723
|
+
readonly jsonResponseWithTools: false;
|
|
694
724
|
};
|
|
695
725
|
};
|
|
696
726
|
readonly "claude-sonnet-4-5": {
|
|
@@ -714,6 +744,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
714
744
|
readonly tools: true;
|
|
715
745
|
readonly reasoning: true;
|
|
716
746
|
readonly webSearch: true;
|
|
747
|
+
readonly jsonResponseWithTools: false;
|
|
717
748
|
};
|
|
718
749
|
};
|
|
719
750
|
readonly "claude-sonnet-4-5-20250929": {
|
|
@@ -737,6 +768,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
737
768
|
readonly tools: true;
|
|
738
769
|
readonly reasoning: true;
|
|
739
770
|
readonly webSearch: true;
|
|
771
|
+
readonly jsonResponseWithTools: false;
|
|
740
772
|
};
|
|
741
773
|
};
|
|
742
774
|
readonly "claude-sonnet-4-6": {
|
|
@@ -760,6 +792,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
760
792
|
readonly tools: true;
|
|
761
793
|
readonly reasoning: true;
|
|
762
794
|
readonly webSearch: true;
|
|
795
|
+
readonly jsonResponseWithTools: false;
|
|
763
796
|
};
|
|
764
797
|
};
|
|
765
798
|
readonly "claude-haiku-4-5": {
|
|
@@ -783,6 +816,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
783
816
|
readonly tools: true;
|
|
784
817
|
readonly reasoning: false;
|
|
785
818
|
readonly webSearch: true;
|
|
819
|
+
readonly jsonResponseWithTools: false;
|
|
786
820
|
};
|
|
787
821
|
};
|
|
788
822
|
readonly "claude-haiku-4-5-20251001": {
|
|
@@ -806,6 +840,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
806
840
|
readonly tools: true;
|
|
807
841
|
readonly reasoning: false;
|
|
808
842
|
readonly webSearch: true;
|
|
843
|
+
readonly jsonResponseWithTools: false;
|
|
809
844
|
};
|
|
810
845
|
};
|
|
811
846
|
readonly "claude-opus-4-20250514": {
|
|
@@ -829,6 +864,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
829
864
|
readonly tools: true;
|
|
830
865
|
readonly reasoning: true;
|
|
831
866
|
readonly webSearch: true;
|
|
867
|
+
readonly jsonResponseWithTools: false;
|
|
832
868
|
};
|
|
833
869
|
};
|
|
834
870
|
readonly "claude-opus-4-1-20250805": {
|
|
@@ -852,6 +888,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
852
888
|
readonly tools: true;
|
|
853
889
|
readonly reasoning: true;
|
|
854
890
|
readonly webSearch: true;
|
|
891
|
+
readonly jsonResponseWithTools: false;
|
|
855
892
|
};
|
|
856
893
|
};
|
|
857
894
|
readonly "claude-opus-4-5-20251101": {
|
|
@@ -875,6 +912,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
875
912
|
readonly tools: true;
|
|
876
913
|
readonly reasoning: true;
|
|
877
914
|
readonly webSearch: true;
|
|
915
|
+
readonly jsonResponseWithTools: false;
|
|
878
916
|
};
|
|
879
917
|
};
|
|
880
918
|
readonly "claude-opus-4-6": {
|
|
@@ -898,6 +936,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
898
936
|
readonly tools: true;
|
|
899
937
|
readonly reasoning: true;
|
|
900
938
|
readonly webSearch: true;
|
|
939
|
+
readonly jsonResponseWithTools: false;
|
|
901
940
|
};
|
|
902
941
|
};
|
|
903
942
|
readonly "gemini-2.5-pro": {
|
|
@@ -921,6 +960,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
921
960
|
readonly tools: true;
|
|
922
961
|
readonly reasoning: true;
|
|
923
962
|
readonly webSearch: true;
|
|
963
|
+
readonly jsonResponseWithTools: true;
|
|
924
964
|
};
|
|
925
965
|
};
|
|
926
966
|
readonly "gemini-2.5-flash": {
|
|
@@ -944,6 +984,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
944
984
|
readonly tools: true;
|
|
945
985
|
readonly reasoning: true;
|
|
946
986
|
readonly webSearch: true;
|
|
987
|
+
readonly jsonResponseWithTools: true;
|
|
947
988
|
};
|
|
948
989
|
};
|
|
949
990
|
readonly "gemini-2.5-flash-lite": {
|
|
@@ -967,6 +1008,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
967
1008
|
readonly tools: true;
|
|
968
1009
|
readonly reasoning: false;
|
|
969
1010
|
readonly webSearch: false;
|
|
1011
|
+
readonly jsonResponseWithTools: true;
|
|
970
1012
|
};
|
|
971
1013
|
};
|
|
972
1014
|
readonly "gemini-2.5-flash-lite-preview-09-2025": {
|
|
@@ -990,6 +1032,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
990
1032
|
readonly tools: true;
|
|
991
1033
|
readonly reasoning: false;
|
|
992
1034
|
readonly webSearch: false;
|
|
1035
|
+
readonly jsonResponseWithTools: true;
|
|
993
1036
|
};
|
|
994
1037
|
};
|
|
995
1038
|
readonly "gemini-3.1-pro-preview": {
|
|
@@ -1013,6 +1056,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1013
1056
|
readonly tools: true;
|
|
1014
1057
|
readonly reasoning: true;
|
|
1015
1058
|
readonly webSearch: true;
|
|
1059
|
+
readonly jsonResponseWithTools: true;
|
|
1016
1060
|
};
|
|
1017
1061
|
};
|
|
1018
1062
|
readonly "gemini-3-flash-preview": {
|
|
@@ -1036,6 +1080,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1036
1080
|
readonly tools: true;
|
|
1037
1081
|
readonly reasoning: true;
|
|
1038
1082
|
readonly webSearch: true;
|
|
1083
|
+
readonly jsonResponseWithTools: true;
|
|
1039
1084
|
};
|
|
1040
1085
|
};
|
|
1041
1086
|
readonly "gemini-2.5-flash-image": {
|
|
@@ -1059,6 +1104,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1059
1104
|
readonly tools: false;
|
|
1060
1105
|
readonly reasoning: false;
|
|
1061
1106
|
readonly webSearch: false;
|
|
1107
|
+
readonly jsonResponseWithTools: true;
|
|
1062
1108
|
};
|
|
1063
1109
|
};
|
|
1064
1110
|
readonly "gemma-3n-e2b-it": {
|
|
@@ -1082,6 +1128,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1082
1128
|
readonly tools: false;
|
|
1083
1129
|
readonly reasoning: false;
|
|
1084
1130
|
readonly webSearch: false;
|
|
1131
|
+
readonly jsonResponseWithTools: false;
|
|
1085
1132
|
};
|
|
1086
1133
|
};
|
|
1087
1134
|
readonly "gemma-3n-e4b-it": {
|
|
@@ -1105,6 +1152,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1105
1152
|
readonly tools: false;
|
|
1106
1153
|
readonly reasoning: false;
|
|
1107
1154
|
readonly webSearch: false;
|
|
1155
|
+
readonly jsonResponseWithTools: false;
|
|
1108
1156
|
};
|
|
1109
1157
|
};
|
|
1110
1158
|
readonly "gemma-3-1b-it": {
|
|
@@ -1128,6 +1176,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1128
1176
|
readonly tools: false;
|
|
1129
1177
|
readonly reasoning: false;
|
|
1130
1178
|
readonly webSearch: false;
|
|
1179
|
+
readonly jsonResponseWithTools: false;
|
|
1131
1180
|
};
|
|
1132
1181
|
};
|
|
1133
1182
|
readonly "gemma-3-4b-it": {
|
|
@@ -1151,6 +1200,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1151
1200
|
readonly tools: false;
|
|
1152
1201
|
readonly reasoning: false;
|
|
1153
1202
|
readonly webSearch: false;
|
|
1203
|
+
readonly jsonResponseWithTools: false;
|
|
1154
1204
|
};
|
|
1155
1205
|
};
|
|
1156
1206
|
readonly "gemma-3-12b-it": {
|
|
@@ -1174,6 +1224,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1174
1224
|
readonly tools: false;
|
|
1175
1225
|
readonly reasoning: false;
|
|
1176
1226
|
readonly webSearch: false;
|
|
1227
|
+
readonly jsonResponseWithTools: false;
|
|
1177
1228
|
};
|
|
1178
1229
|
};
|
|
1179
1230
|
readonly "grok-3": {
|
|
@@ -1197,6 +1248,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1197
1248
|
readonly tools: true;
|
|
1198
1249
|
readonly reasoning: false;
|
|
1199
1250
|
readonly webSearch: false;
|
|
1251
|
+
readonly jsonResponseWithTools: false;
|
|
1200
1252
|
};
|
|
1201
1253
|
};
|
|
1202
1254
|
readonly "grok-4-0709": {
|
|
@@ -1220,6 +1272,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1220
1272
|
readonly tools: true;
|
|
1221
1273
|
readonly reasoning: false;
|
|
1222
1274
|
readonly webSearch: false;
|
|
1275
|
+
readonly jsonResponseWithTools: false;
|
|
1223
1276
|
};
|
|
1224
1277
|
};
|
|
1225
1278
|
readonly "grok-4": {
|
|
@@ -1243,6 +1296,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1243
1296
|
readonly tools: true;
|
|
1244
1297
|
readonly reasoning: false;
|
|
1245
1298
|
readonly webSearch: false;
|
|
1299
|
+
readonly jsonResponseWithTools: false;
|
|
1246
1300
|
};
|
|
1247
1301
|
};
|
|
1248
1302
|
readonly "grok-4-fast-reasoning": {
|
|
@@ -1266,6 +1320,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1266
1320
|
readonly tools: true;
|
|
1267
1321
|
readonly reasoning: false;
|
|
1268
1322
|
readonly webSearch: false;
|
|
1323
|
+
readonly jsonResponseWithTools: false;
|
|
1269
1324
|
};
|
|
1270
1325
|
};
|
|
1271
1326
|
readonly "grok-4-fast-non-reasoning": {
|
|
@@ -1289,6 +1344,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1289
1344
|
readonly tools: true;
|
|
1290
1345
|
readonly reasoning: false;
|
|
1291
1346
|
readonly webSearch: false;
|
|
1347
|
+
readonly jsonResponseWithTools: false;
|
|
1292
1348
|
};
|
|
1293
1349
|
};
|
|
1294
1350
|
readonly "grok-code-fast-1": {
|
|
@@ -1312,6 +1368,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1312
1368
|
readonly tools: true;
|
|
1313
1369
|
readonly reasoning: false;
|
|
1314
1370
|
readonly webSearch: false;
|
|
1371
|
+
readonly jsonResponseWithTools: false;
|
|
1315
1372
|
};
|
|
1316
1373
|
};
|
|
1317
1374
|
readonly "grok-4-1-fast-reasoning": {
|
|
@@ -1335,6 +1392,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1335
1392
|
readonly tools: true;
|
|
1336
1393
|
readonly reasoning: false;
|
|
1337
1394
|
readonly webSearch: false;
|
|
1395
|
+
readonly jsonResponseWithTools: false;
|
|
1338
1396
|
};
|
|
1339
1397
|
};
|
|
1340
1398
|
readonly "grok-4-1-fast-non-reasoning": {
|
|
@@ -1358,6 +1416,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1358
1416
|
readonly tools: true;
|
|
1359
1417
|
readonly reasoning: false;
|
|
1360
1418
|
readonly webSearch: false;
|
|
1419
|
+
readonly jsonResponseWithTools: false;
|
|
1361
1420
|
};
|
|
1362
1421
|
};
|
|
1363
1422
|
readonly "llama-3-8b-instruct": {
|
|
@@ -1381,6 +1440,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1381
1440
|
readonly tools: false;
|
|
1382
1441
|
readonly reasoning: false;
|
|
1383
1442
|
readonly webSearch: false;
|
|
1443
|
+
readonly jsonResponseWithTools: false;
|
|
1384
1444
|
};
|
|
1385
1445
|
};
|
|
1386
1446
|
readonly "llama-3-70b-instruct": {
|
|
@@ -1404,6 +1464,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1404
1464
|
readonly tools: false;
|
|
1405
1465
|
readonly reasoning: false;
|
|
1406
1466
|
readonly webSearch: false;
|
|
1467
|
+
readonly jsonResponseWithTools: false;
|
|
1407
1468
|
};
|
|
1408
1469
|
};
|
|
1409
1470
|
readonly "llama-3.1-8b-instruct": {
|
|
@@ -1427,6 +1488,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1427
1488
|
readonly tools: false;
|
|
1428
1489
|
readonly reasoning: false;
|
|
1429
1490
|
readonly webSearch: false;
|
|
1491
|
+
readonly jsonResponseWithTools: false;
|
|
1430
1492
|
};
|
|
1431
1493
|
};
|
|
1432
1494
|
readonly "llama-3.1-70b-instruct": {
|
|
@@ -1450,6 +1512,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1450
1512
|
readonly tools: false;
|
|
1451
1513
|
readonly reasoning: false;
|
|
1452
1514
|
readonly webSearch: false;
|
|
1515
|
+
readonly jsonResponseWithTools: false;
|
|
1453
1516
|
};
|
|
1454
1517
|
};
|
|
1455
1518
|
readonly "llama-3.1-nemotron-ultra-253b": {
|
|
@@ -1473,6 +1536,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1473
1536
|
readonly tools: false;
|
|
1474
1537
|
readonly reasoning: false;
|
|
1475
1538
|
readonly webSearch: false;
|
|
1539
|
+
readonly jsonResponseWithTools: false;
|
|
1476
1540
|
};
|
|
1477
1541
|
};
|
|
1478
1542
|
readonly "llama-3.2-3b-instruct": {
|
|
@@ -1496,6 +1560,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1496
1560
|
readonly tools: false;
|
|
1497
1561
|
readonly reasoning: false;
|
|
1498
1562
|
readonly webSearch: false;
|
|
1563
|
+
readonly jsonResponseWithTools: false;
|
|
1499
1564
|
};
|
|
1500
1565
|
};
|
|
1501
1566
|
readonly "llama-3.3-70b-instruct": {
|
|
@@ -1519,6 +1584,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1519
1584
|
readonly tools: true;
|
|
1520
1585
|
readonly reasoning: false;
|
|
1521
1586
|
readonly webSearch: false;
|
|
1587
|
+
readonly jsonResponseWithTools: false;
|
|
1522
1588
|
};
|
|
1523
1589
|
};
|
|
1524
1590
|
readonly "llama-4-scout-17b-instruct": {
|
|
@@ -1542,6 +1608,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1542
1608
|
readonly tools: false;
|
|
1543
1609
|
readonly reasoning: false;
|
|
1544
1610
|
readonly webSearch: false;
|
|
1611
|
+
readonly jsonResponseWithTools: false;
|
|
1545
1612
|
};
|
|
1546
1613
|
};
|
|
1547
1614
|
readonly "llama-4-maverick-17b-instruct": {
|
|
@@ -1565,6 +1632,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1565
1632
|
readonly tools: false;
|
|
1566
1633
|
readonly reasoning: false;
|
|
1567
1634
|
readonly webSearch: false;
|
|
1635
|
+
readonly jsonResponseWithTools: false;
|
|
1568
1636
|
};
|
|
1569
1637
|
};
|
|
1570
1638
|
readonly "deepseek-r1-0528": {
|
|
@@ -1588,6 +1656,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1588
1656
|
readonly tools: false;
|
|
1589
1657
|
readonly reasoning: false;
|
|
1590
1658
|
readonly webSearch: false;
|
|
1659
|
+
readonly jsonResponseWithTools: false;
|
|
1591
1660
|
};
|
|
1592
1661
|
};
|
|
1593
1662
|
readonly "deepseek-v3.2": {
|
|
@@ -1611,6 +1680,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1611
1680
|
readonly tools: true;
|
|
1612
1681
|
readonly reasoning: false;
|
|
1613
1682
|
readonly webSearch: false;
|
|
1683
|
+
readonly jsonResponseWithTools: false;
|
|
1614
1684
|
};
|
|
1615
1685
|
};
|
|
1616
1686
|
readonly "mistral-large-latest": {
|
|
@@ -1634,6 +1704,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1634
1704
|
readonly tools: false;
|
|
1635
1705
|
readonly reasoning: false;
|
|
1636
1706
|
readonly webSearch: false;
|
|
1707
|
+
readonly jsonResponseWithTools: false;
|
|
1637
1708
|
};
|
|
1638
1709
|
};
|
|
1639
1710
|
readonly "mistral-large-2512": {
|
|
@@ -1657,6 +1728,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1657
1728
|
readonly tools: false;
|
|
1658
1729
|
readonly reasoning: false;
|
|
1659
1730
|
readonly webSearch: false;
|
|
1731
|
+
readonly jsonResponseWithTools: false;
|
|
1660
1732
|
};
|
|
1661
1733
|
};
|
|
1662
1734
|
readonly "mistral-small-2506": {
|
|
@@ -1680,6 +1752,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1680
1752
|
readonly tools: false;
|
|
1681
1753
|
readonly reasoning: false;
|
|
1682
1754
|
readonly webSearch: false;
|
|
1755
|
+
readonly jsonResponseWithTools: false;
|
|
1683
1756
|
};
|
|
1684
1757
|
};
|
|
1685
1758
|
readonly "pixtral-large-latest": {
|
|
@@ -1703,6 +1776,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1703
1776
|
readonly tools: false;
|
|
1704
1777
|
readonly reasoning: false;
|
|
1705
1778
|
readonly webSearch: false;
|
|
1779
|
+
readonly jsonResponseWithTools: false;
|
|
1706
1780
|
};
|
|
1707
1781
|
};
|
|
1708
1782
|
readonly "ministral-14b-2512": {
|
|
@@ -1726,6 +1800,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1726
1800
|
readonly tools: false;
|
|
1727
1801
|
readonly reasoning: false;
|
|
1728
1802
|
readonly webSearch: false;
|
|
1803
|
+
readonly jsonResponseWithTools: false;
|
|
1729
1804
|
};
|
|
1730
1805
|
};
|
|
1731
1806
|
readonly "ministral-8b-2512": {
|
|
@@ -1749,6 +1824,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1749
1824
|
readonly tools: false;
|
|
1750
1825
|
readonly reasoning: false;
|
|
1751
1826
|
readonly webSearch: false;
|
|
1827
|
+
readonly jsonResponseWithTools: false;
|
|
1752
1828
|
};
|
|
1753
1829
|
};
|
|
1754
1830
|
readonly "ministral-3b-2512": {
|
|
@@ -1772,6 +1848,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1772
1848
|
readonly tools: false;
|
|
1773
1849
|
readonly reasoning: false;
|
|
1774
1850
|
readonly webSearch: false;
|
|
1851
|
+
readonly jsonResponseWithTools: false;
|
|
1775
1852
|
};
|
|
1776
1853
|
};
|
|
1777
1854
|
readonly "codestral-2508": {
|
|
@@ -1795,6 +1872,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1795
1872
|
readonly tools: false;
|
|
1796
1873
|
readonly reasoning: false;
|
|
1797
1874
|
readonly webSearch: false;
|
|
1875
|
+
readonly jsonResponseWithTools: false;
|
|
1798
1876
|
};
|
|
1799
1877
|
};
|
|
1800
1878
|
readonly "devstral-2512": {
|
|
@@ -1818,6 +1896,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1818
1896
|
readonly tools: false;
|
|
1819
1897
|
readonly reasoning: false;
|
|
1820
1898
|
readonly webSearch: false;
|
|
1899
|
+
readonly jsonResponseWithTools: false;
|
|
1821
1900
|
};
|
|
1822
1901
|
};
|
|
1823
1902
|
readonly "devstral-small-2507": {
|
|
@@ -1841,6 +1920,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1841
1920
|
readonly tools: false;
|
|
1842
1921
|
readonly reasoning: false;
|
|
1843
1922
|
readonly webSearch: false;
|
|
1923
|
+
readonly jsonResponseWithTools: false;
|
|
1844
1924
|
};
|
|
1845
1925
|
};
|
|
1846
1926
|
readonly "minimax-m2.5": {
|
|
@@ -1864,6 +1944,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1864
1944
|
readonly tools: true;
|
|
1865
1945
|
readonly reasoning: true;
|
|
1866
1946
|
readonly webSearch: false;
|
|
1947
|
+
readonly jsonResponseWithTools: false;
|
|
1867
1948
|
};
|
|
1868
1949
|
};
|
|
1869
1950
|
readonly "minimax/minimax-m2.5": {
|
|
@@ -1887,6 +1968,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1887
1968
|
readonly tools: true;
|
|
1888
1969
|
readonly reasoning: true;
|
|
1889
1970
|
readonly webSearch: false;
|
|
1971
|
+
readonly jsonResponseWithTools: false;
|
|
1890
1972
|
};
|
|
1891
1973
|
};
|
|
1892
1974
|
readonly "novita/minimax-m2.5": {
|
|
@@ -1910,6 +1992,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1910
1992
|
readonly tools: true;
|
|
1911
1993
|
readonly reasoning: true;
|
|
1912
1994
|
readonly webSearch: false;
|
|
1995
|
+
readonly jsonResponseWithTools: false;
|
|
1913
1996
|
};
|
|
1914
1997
|
};
|
|
1915
1998
|
readonly "minimax-m2": {
|
|
@@ -1933,6 +2016,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1933
2016
|
readonly tools: false;
|
|
1934
2017
|
readonly reasoning: true;
|
|
1935
2018
|
readonly webSearch: false;
|
|
2019
|
+
readonly jsonResponseWithTools: false;
|
|
1936
2020
|
};
|
|
1937
2021
|
};
|
|
1938
2022
|
readonly "minimax-m2.1": {
|
|
@@ -1956,6 +2040,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1956
2040
|
readonly tools: false;
|
|
1957
2041
|
readonly reasoning: true;
|
|
1958
2042
|
readonly webSearch: false;
|
|
2043
|
+
readonly jsonResponseWithTools: false;
|
|
1959
2044
|
};
|
|
1960
2045
|
};
|
|
1961
2046
|
readonly "minimax-m2.1-lightning": {
|
|
@@ -1979,6 +2064,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
1979
2064
|
readonly tools: false;
|
|
1980
2065
|
readonly reasoning: true;
|
|
1981
2066
|
readonly webSearch: false;
|
|
2067
|
+
readonly jsonResponseWithTools: false;
|
|
1982
2068
|
};
|
|
1983
2069
|
};
|
|
1984
2070
|
readonly "minimax-text-01": {
|
|
@@ -2002,6 +2088,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2002
2088
|
readonly tools: false;
|
|
2003
2089
|
readonly reasoning: false;
|
|
2004
2090
|
readonly webSearch: false;
|
|
2091
|
+
readonly jsonResponseWithTools: false;
|
|
2005
2092
|
};
|
|
2006
2093
|
};
|
|
2007
2094
|
readonly "kimi-k2": {
|
|
@@ -2025,6 +2112,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2025
2112
|
readonly tools: true;
|
|
2026
2113
|
readonly reasoning: false;
|
|
2027
2114
|
readonly webSearch: false;
|
|
2115
|
+
readonly jsonResponseWithTools: false;
|
|
2028
2116
|
};
|
|
2029
2117
|
};
|
|
2030
2118
|
readonly "kimi-k2-thinking-turbo": {
|
|
@@ -2048,6 +2136,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2048
2136
|
readonly tools: true;
|
|
2049
2137
|
readonly reasoning: true;
|
|
2050
2138
|
readonly webSearch: false;
|
|
2139
|
+
readonly jsonResponseWithTools: false;
|
|
2051
2140
|
};
|
|
2052
2141
|
};
|
|
2053
2142
|
readonly "moonshot/kimi-k2.5": {
|
|
@@ -2071,6 +2160,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2071
2160
|
readonly tools: true;
|
|
2072
2161
|
readonly reasoning: false;
|
|
2073
2162
|
readonly webSearch: false;
|
|
2163
|
+
readonly jsonResponseWithTools: false;
|
|
2074
2164
|
};
|
|
2075
2165
|
};
|
|
2076
2166
|
readonly "qwen-max": {
|
|
@@ -2094,6 +2184,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2094
2184
|
readonly tools: true;
|
|
2095
2185
|
readonly reasoning: false;
|
|
2096
2186
|
readonly webSearch: false;
|
|
2187
|
+
readonly jsonResponseWithTools: false;
|
|
2097
2188
|
};
|
|
2098
2189
|
};
|
|
2099
2190
|
readonly "qwen-max-latest": {
|
|
@@ -2117,6 +2208,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2117
2208
|
readonly tools: true;
|
|
2118
2209
|
readonly reasoning: false;
|
|
2119
2210
|
readonly webSearch: false;
|
|
2211
|
+
readonly jsonResponseWithTools: false;
|
|
2120
2212
|
};
|
|
2121
2213
|
};
|
|
2122
2214
|
readonly "qwen-plus": {
|
|
@@ -2140,6 +2232,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2140
2232
|
readonly tools: true;
|
|
2141
2233
|
readonly reasoning: false;
|
|
2142
2234
|
readonly webSearch: false;
|
|
2235
|
+
readonly jsonResponseWithTools: false;
|
|
2143
2236
|
};
|
|
2144
2237
|
};
|
|
2145
2238
|
readonly "qwen-plus-latest": {
|
|
@@ -2163,6 +2256,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2163
2256
|
readonly tools: true;
|
|
2164
2257
|
readonly reasoning: false;
|
|
2165
2258
|
readonly webSearch: false;
|
|
2259
|
+
readonly jsonResponseWithTools: false;
|
|
2166
2260
|
};
|
|
2167
2261
|
};
|
|
2168
2262
|
readonly "qwen-flash": {
|
|
@@ -2186,6 +2280,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2186
2280
|
readonly tools: true;
|
|
2187
2281
|
readonly reasoning: false;
|
|
2188
2282
|
readonly webSearch: false;
|
|
2283
|
+
readonly jsonResponseWithTools: false;
|
|
2189
2284
|
};
|
|
2190
2285
|
};
|
|
2191
2286
|
readonly "qwen-turbo": {
|
|
@@ -2209,6 +2304,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2209
2304
|
readonly tools: false;
|
|
2210
2305
|
readonly reasoning: false;
|
|
2211
2306
|
readonly webSearch: false;
|
|
2307
|
+
readonly jsonResponseWithTools: false;
|
|
2212
2308
|
};
|
|
2213
2309
|
};
|
|
2214
2310
|
readonly "qwen-omni-turbo": {
|
|
@@ -2232,6 +2328,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2232
2328
|
readonly tools: false;
|
|
2233
2329
|
readonly reasoning: false;
|
|
2234
2330
|
readonly webSearch: false;
|
|
2331
|
+
readonly jsonResponseWithTools: false;
|
|
2235
2332
|
};
|
|
2236
2333
|
};
|
|
2237
2334
|
readonly "qwen-vl-max": {
|
|
@@ -2255,6 +2352,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2255
2352
|
readonly tools: false;
|
|
2256
2353
|
readonly reasoning: false;
|
|
2257
2354
|
readonly webSearch: false;
|
|
2355
|
+
readonly jsonResponseWithTools: false;
|
|
2258
2356
|
};
|
|
2259
2357
|
};
|
|
2260
2358
|
readonly "qwen-vl-plus": {
|
|
@@ -2278,6 +2376,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2278
2376
|
readonly tools: false;
|
|
2279
2377
|
readonly reasoning: false;
|
|
2280
2378
|
readonly webSearch: false;
|
|
2379
|
+
readonly jsonResponseWithTools: false;
|
|
2281
2380
|
};
|
|
2282
2381
|
};
|
|
2283
2382
|
readonly "qwen-coder-plus": {
|
|
@@ -2301,6 +2400,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2301
2400
|
readonly tools: true;
|
|
2302
2401
|
readonly reasoning: false;
|
|
2303
2402
|
readonly webSearch: false;
|
|
2403
|
+
readonly jsonResponseWithTools: false;
|
|
2304
2404
|
};
|
|
2305
2405
|
};
|
|
2306
2406
|
readonly "qwq-plus": {
|
|
@@ -2324,6 +2424,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2324
2424
|
readonly tools: false;
|
|
2325
2425
|
readonly reasoning: true;
|
|
2326
2426
|
readonly webSearch: false;
|
|
2427
|
+
readonly jsonResponseWithTools: false;
|
|
2327
2428
|
};
|
|
2328
2429
|
};
|
|
2329
2430
|
readonly "qwen3-max": {
|
|
@@ -2347,6 +2448,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2347
2448
|
readonly tools: true;
|
|
2348
2449
|
readonly reasoning: true;
|
|
2349
2450
|
readonly webSearch: false;
|
|
2451
|
+
readonly jsonResponseWithTools: false;
|
|
2350
2452
|
};
|
|
2351
2453
|
};
|
|
2352
2454
|
readonly "qwen3-max-2026-01-23": {
|
|
@@ -2370,6 +2472,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2370
2472
|
readonly tools: true;
|
|
2371
2473
|
readonly reasoning: true;
|
|
2372
2474
|
readonly webSearch: false;
|
|
2475
|
+
readonly jsonResponseWithTools: false;
|
|
2373
2476
|
};
|
|
2374
2477
|
};
|
|
2375
2478
|
readonly "qwen3-32b": {
|
|
@@ -2393,6 +2496,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2393
2496
|
readonly tools: true;
|
|
2394
2497
|
readonly reasoning: false;
|
|
2395
2498
|
readonly webSearch: false;
|
|
2499
|
+
readonly jsonResponseWithTools: false;
|
|
2396
2500
|
};
|
|
2397
2501
|
};
|
|
2398
2502
|
readonly "qwen3-32b-fp8": {
|
|
@@ -2416,6 +2520,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2416
2520
|
readonly tools: false;
|
|
2417
2521
|
readonly reasoning: false;
|
|
2418
2522
|
readonly webSearch: false;
|
|
2523
|
+
readonly jsonResponseWithTools: false;
|
|
2419
2524
|
};
|
|
2420
2525
|
};
|
|
2421
2526
|
readonly "qwen3-235b-a22b-instruct-2507": {
|
|
@@ -2439,6 +2544,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2439
2544
|
readonly tools: true;
|
|
2440
2545
|
readonly reasoning: false;
|
|
2441
2546
|
readonly webSearch: false;
|
|
2547
|
+
readonly jsonResponseWithTools: false;
|
|
2442
2548
|
};
|
|
2443
2549
|
};
|
|
2444
2550
|
readonly "qwen3-235b-a22b-thinking-2507": {
|
|
@@ -2462,6 +2568,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2462
2568
|
readonly tools: true;
|
|
2463
2569
|
readonly reasoning: true;
|
|
2464
2570
|
readonly webSearch: false;
|
|
2571
|
+
readonly jsonResponseWithTools: false;
|
|
2465
2572
|
};
|
|
2466
2573
|
};
|
|
2467
2574
|
readonly "qwen3-235b-a22b-fp8": {
|
|
@@ -2485,6 +2592,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2485
2592
|
readonly tools: false;
|
|
2486
2593
|
readonly reasoning: false;
|
|
2487
2594
|
readonly webSearch: false;
|
|
2595
|
+
readonly jsonResponseWithTools: false;
|
|
2488
2596
|
};
|
|
2489
2597
|
};
|
|
2490
2598
|
readonly "qwen3-30b-a3b-instruct-2507": {
|
|
@@ -2508,6 +2616,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2508
2616
|
readonly tools: true;
|
|
2509
2617
|
readonly reasoning: false;
|
|
2510
2618
|
readonly webSearch: false;
|
|
2619
|
+
readonly jsonResponseWithTools: false;
|
|
2511
2620
|
};
|
|
2512
2621
|
};
|
|
2513
2622
|
readonly "qwen3-30b-a3b-thinking-2507": {
|
|
@@ -2531,6 +2640,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2531
2640
|
readonly tools: true;
|
|
2532
2641
|
readonly reasoning: true;
|
|
2533
2642
|
readonly webSearch: false;
|
|
2643
|
+
readonly jsonResponseWithTools: false;
|
|
2534
2644
|
};
|
|
2535
2645
|
};
|
|
2536
2646
|
readonly "qwen3-30b-a3b-fp8": {
|
|
@@ -2554,6 +2664,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2554
2664
|
readonly tools: false;
|
|
2555
2665
|
readonly reasoning: false;
|
|
2556
2666
|
readonly webSearch: false;
|
|
2667
|
+
readonly jsonResponseWithTools: false;
|
|
2557
2668
|
};
|
|
2558
2669
|
};
|
|
2559
2670
|
readonly "qwen3-4b-fp8": {
|
|
@@ -2577,6 +2688,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2577
2688
|
readonly tools: false;
|
|
2578
2689
|
readonly reasoning: false;
|
|
2579
2690
|
readonly webSearch: false;
|
|
2691
|
+
readonly jsonResponseWithTools: false;
|
|
2580
2692
|
};
|
|
2581
2693
|
};
|
|
2582
2694
|
readonly "qwen35-397b-a17b": {
|
|
@@ -2600,6 +2712,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2600
2712
|
readonly tools: true;
|
|
2601
2713
|
readonly reasoning: true;
|
|
2602
2714
|
readonly webSearch: true;
|
|
2715
|
+
readonly jsonResponseWithTools: false;
|
|
2603
2716
|
};
|
|
2604
2717
|
};
|
|
2605
2718
|
readonly "qwen3-next-80b-a3b-thinking": {
|
|
@@ -2623,6 +2736,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2623
2736
|
readonly tools: true;
|
|
2624
2737
|
readonly reasoning: true;
|
|
2625
2738
|
readonly webSearch: false;
|
|
2739
|
+
readonly jsonResponseWithTools: false;
|
|
2626
2740
|
};
|
|
2627
2741
|
};
|
|
2628
2742
|
readonly "qwen3-next-80b-a3b-instruct": {
|
|
@@ -2646,6 +2760,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2646
2760
|
readonly tools: true;
|
|
2647
2761
|
readonly reasoning: false;
|
|
2648
2762
|
readonly webSearch: false;
|
|
2763
|
+
readonly jsonResponseWithTools: false;
|
|
2649
2764
|
};
|
|
2650
2765
|
};
|
|
2651
2766
|
readonly "qwen3-coder-plus": {
|
|
@@ -2669,6 +2784,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2669
2784
|
readonly tools: true;
|
|
2670
2785
|
readonly reasoning: false;
|
|
2671
2786
|
readonly webSearch: false;
|
|
2787
|
+
readonly jsonResponseWithTools: false;
|
|
2672
2788
|
};
|
|
2673
2789
|
};
|
|
2674
2790
|
readonly "qwen3-coder-flash": {
|
|
@@ -2692,6 +2808,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2692
2808
|
readonly tools: true;
|
|
2693
2809
|
readonly reasoning: false;
|
|
2694
2810
|
readonly webSearch: false;
|
|
2811
|
+
readonly jsonResponseWithTools: false;
|
|
2695
2812
|
};
|
|
2696
2813
|
};
|
|
2697
2814
|
readonly "qwen3-coder-30b-a3b-instruct": {
|
|
@@ -2715,6 +2832,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2715
2832
|
readonly tools: true;
|
|
2716
2833
|
readonly reasoning: false;
|
|
2717
2834
|
readonly webSearch: false;
|
|
2835
|
+
readonly jsonResponseWithTools: false;
|
|
2718
2836
|
};
|
|
2719
2837
|
};
|
|
2720
2838
|
readonly "qwen3-vl-8b-instruct": {
|
|
@@ -2738,6 +2856,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2738
2856
|
readonly tools: false;
|
|
2739
2857
|
readonly reasoning: false;
|
|
2740
2858
|
readonly webSearch: false;
|
|
2859
|
+
readonly jsonResponseWithTools: false;
|
|
2741
2860
|
};
|
|
2742
2861
|
};
|
|
2743
2862
|
readonly "qwen3-vl-plus": {
|
|
@@ -2761,6 +2880,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2761
2880
|
readonly tools: false;
|
|
2762
2881
|
readonly reasoning: false;
|
|
2763
2882
|
readonly webSearch: false;
|
|
2883
|
+
readonly jsonResponseWithTools: false;
|
|
2764
2884
|
};
|
|
2765
2885
|
};
|
|
2766
2886
|
readonly "qwen3-vl-flash": {
|
|
@@ -2784,6 +2904,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2784
2904
|
readonly tools: true;
|
|
2785
2905
|
readonly reasoning: false;
|
|
2786
2906
|
readonly webSearch: false;
|
|
2907
|
+
readonly jsonResponseWithTools: false;
|
|
2787
2908
|
};
|
|
2788
2909
|
};
|
|
2789
2910
|
readonly "qwen3-vl-30b-a3b-instruct": {
|
|
@@ -2807,6 +2928,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2807
2928
|
readonly tools: true;
|
|
2808
2929
|
readonly reasoning: false;
|
|
2809
2930
|
readonly webSearch: false;
|
|
2931
|
+
readonly jsonResponseWithTools: false;
|
|
2810
2932
|
};
|
|
2811
2933
|
};
|
|
2812
2934
|
readonly "qwen3-vl-30b-a3b-thinking": {
|
|
@@ -2830,6 +2952,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2830
2952
|
readonly tools: true;
|
|
2831
2953
|
readonly reasoning: true;
|
|
2832
2954
|
readonly webSearch: false;
|
|
2955
|
+
readonly jsonResponseWithTools: false;
|
|
2833
2956
|
};
|
|
2834
2957
|
};
|
|
2835
2958
|
readonly "qwen3-vl-235b-a22b-instruct": {
|
|
@@ -2853,6 +2976,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2853
2976
|
readonly tools: true;
|
|
2854
2977
|
readonly reasoning: false;
|
|
2855
2978
|
readonly webSearch: false;
|
|
2979
|
+
readonly jsonResponseWithTools: false;
|
|
2856
2980
|
};
|
|
2857
2981
|
};
|
|
2858
2982
|
readonly "qwen3-vl-235b-a22b-thinking": {
|
|
@@ -2876,6 +3000,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2876
3000
|
readonly tools: false;
|
|
2877
3001
|
readonly reasoning: true;
|
|
2878
3002
|
readonly webSearch: false;
|
|
3003
|
+
readonly jsonResponseWithTools: false;
|
|
2879
3004
|
};
|
|
2880
3005
|
};
|
|
2881
3006
|
readonly "qwen2-5-vl-32b-instruct": {
|
|
@@ -2899,6 +3024,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2899
3024
|
readonly tools: false;
|
|
2900
3025
|
readonly reasoning: false;
|
|
2901
3026
|
readonly webSearch: false;
|
|
3027
|
+
readonly jsonResponseWithTools: false;
|
|
2902
3028
|
};
|
|
2903
3029
|
};
|
|
2904
3030
|
readonly "glm-5": {
|
|
@@ -2922,6 +3048,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2922
3048
|
readonly tools: true;
|
|
2923
3049
|
readonly reasoning: true;
|
|
2924
3050
|
readonly webSearch: true;
|
|
3051
|
+
readonly jsonResponseWithTools: false;
|
|
2925
3052
|
};
|
|
2926
3053
|
};
|
|
2927
3054
|
readonly "glm-4.5": {
|
|
@@ -2945,6 +3072,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2945
3072
|
readonly tools: true;
|
|
2946
3073
|
readonly reasoning: true;
|
|
2947
3074
|
readonly webSearch: true;
|
|
3075
|
+
readonly jsonResponseWithTools: false;
|
|
2948
3076
|
};
|
|
2949
3077
|
};
|
|
2950
3078
|
readonly "glm-4.5v": {
|
|
@@ -2968,6 +3096,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2968
3096
|
readonly tools: true;
|
|
2969
3097
|
readonly reasoning: true;
|
|
2970
3098
|
readonly webSearch: false;
|
|
3099
|
+
readonly jsonResponseWithTools: false;
|
|
2971
3100
|
};
|
|
2972
3101
|
};
|
|
2973
3102
|
readonly "glm-4.5-air": {
|
|
@@ -2991,6 +3120,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
2991
3120
|
readonly tools: true;
|
|
2992
3121
|
readonly reasoning: false;
|
|
2993
3122
|
readonly webSearch: false;
|
|
3123
|
+
readonly jsonResponseWithTools: false;
|
|
2994
3124
|
};
|
|
2995
3125
|
};
|
|
2996
3126
|
readonly "glm-4.5-x": {
|
|
@@ -3014,6 +3144,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
3014
3144
|
readonly tools: true;
|
|
3015
3145
|
readonly reasoning: true;
|
|
3016
3146
|
readonly webSearch: false;
|
|
3147
|
+
readonly jsonResponseWithTools: false;
|
|
3017
3148
|
};
|
|
3018
3149
|
};
|
|
3019
3150
|
readonly "glm-4.5-airx": {
|
|
@@ -3037,6 +3168,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
3037
3168
|
readonly tools: true;
|
|
3038
3169
|
readonly reasoning: false;
|
|
3039
3170
|
readonly webSearch: false;
|
|
3171
|
+
readonly jsonResponseWithTools: false;
|
|
3040
3172
|
};
|
|
3041
3173
|
};
|
|
3042
3174
|
readonly "glm-4.5-flash": {
|
|
@@ -3060,6 +3192,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
3060
3192
|
readonly tools: true;
|
|
3061
3193
|
readonly reasoning: false;
|
|
3062
3194
|
readonly webSearch: false;
|
|
3195
|
+
readonly jsonResponseWithTools: false;
|
|
3063
3196
|
};
|
|
3064
3197
|
};
|
|
3065
3198
|
readonly "glm-4.6": {
|
|
@@ -3083,6 +3216,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
3083
3216
|
readonly tools: true;
|
|
3084
3217
|
readonly reasoning: true;
|
|
3085
3218
|
readonly webSearch: true;
|
|
3219
|
+
readonly jsonResponseWithTools: false;
|
|
3086
3220
|
};
|
|
3087
3221
|
};
|
|
3088
3222
|
readonly "glm-4.6v": {
|
|
@@ -3106,6 +3240,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
3106
3240
|
readonly tools: true;
|
|
3107
3241
|
readonly reasoning: true;
|
|
3108
3242
|
readonly webSearch: false;
|
|
3243
|
+
readonly jsonResponseWithTools: false;
|
|
3109
3244
|
};
|
|
3110
3245
|
};
|
|
3111
3246
|
readonly "glm-4.6v-flashx": {
|
|
@@ -3129,6 +3264,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
3129
3264
|
readonly tools: true;
|
|
3130
3265
|
readonly reasoning: true;
|
|
3131
3266
|
readonly webSearch: false;
|
|
3267
|
+
readonly jsonResponseWithTools: false;
|
|
3132
3268
|
};
|
|
3133
3269
|
};
|
|
3134
3270
|
readonly "glm-4.6v-flash": {
|
|
@@ -3152,6 +3288,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
3152
3288
|
readonly tools: true;
|
|
3153
3289
|
readonly reasoning: true;
|
|
3154
3290
|
readonly webSearch: false;
|
|
3291
|
+
readonly jsonResponseWithTools: false;
|
|
3155
3292
|
};
|
|
3156
3293
|
};
|
|
3157
3294
|
readonly "glm-4.7": {
|
|
@@ -3175,6 +3312,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
3175
3312
|
readonly tools: true;
|
|
3176
3313
|
readonly reasoning: true;
|
|
3177
3314
|
readonly webSearch: true;
|
|
3315
|
+
readonly jsonResponseWithTools: false;
|
|
3178
3316
|
};
|
|
3179
3317
|
};
|
|
3180
3318
|
readonly "glm-4.7-flashx": {
|
|
@@ -3198,6 +3336,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
3198
3336
|
readonly tools: true;
|
|
3199
3337
|
readonly reasoning: true;
|
|
3200
3338
|
readonly webSearch: false;
|
|
3339
|
+
readonly jsonResponseWithTools: false;
|
|
3201
3340
|
};
|
|
3202
3341
|
};
|
|
3203
3342
|
readonly "glm-4.7-flash": {
|
|
@@ -3221,6 +3360,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
3221
3360
|
readonly tools: true;
|
|
3222
3361
|
readonly reasoning: true;
|
|
3223
3362
|
readonly webSearch: false;
|
|
3363
|
+
readonly jsonResponseWithTools: false;
|
|
3224
3364
|
};
|
|
3225
3365
|
};
|
|
3226
3366
|
readonly "glm-4-32b-0414-128k": {
|
|
@@ -3244,6 +3384,7 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
3244
3384
|
readonly tools: true;
|
|
3245
3385
|
readonly reasoning: false;
|
|
3246
3386
|
readonly webSearch: false;
|
|
3387
|
+
readonly jsonResponseWithTools: false;
|
|
3247
3388
|
};
|
|
3248
3389
|
};
|
|
3249
3390
|
};
|
|
@@ -3270,6 +3411,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3270
3411
|
readonly tools: true;
|
|
3271
3412
|
readonly reasoning: false;
|
|
3272
3413
|
readonly webSearch: false;
|
|
3414
|
+
readonly jsonResponseWithTools: true;
|
|
3273
3415
|
};
|
|
3274
3416
|
};
|
|
3275
3417
|
readonly "gpt-4": {
|
|
@@ -3293,6 +3435,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3293
3435
|
readonly tools: true;
|
|
3294
3436
|
readonly reasoning: false;
|
|
3295
3437
|
readonly webSearch: false;
|
|
3438
|
+
readonly jsonResponseWithTools: true;
|
|
3296
3439
|
};
|
|
3297
3440
|
};
|
|
3298
3441
|
readonly "gpt-4-turbo": {
|
|
@@ -3316,6 +3459,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3316
3459
|
readonly tools: true;
|
|
3317
3460
|
readonly reasoning: false;
|
|
3318
3461
|
readonly webSearch: false;
|
|
3462
|
+
readonly jsonResponseWithTools: true;
|
|
3319
3463
|
};
|
|
3320
3464
|
};
|
|
3321
3465
|
readonly "gpt-4o": {
|
|
@@ -3339,6 +3483,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3339
3483
|
readonly tools: true;
|
|
3340
3484
|
readonly reasoning: false;
|
|
3341
3485
|
readonly webSearch: true;
|
|
3486
|
+
readonly jsonResponseWithTools: true;
|
|
3342
3487
|
};
|
|
3343
3488
|
};
|
|
3344
3489
|
readonly "gpt-4o-mini": {
|
|
@@ -3362,6 +3507,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3362
3507
|
readonly tools: true;
|
|
3363
3508
|
readonly reasoning: false;
|
|
3364
3509
|
readonly webSearch: false;
|
|
3510
|
+
readonly jsonResponseWithTools: true;
|
|
3365
3511
|
};
|
|
3366
3512
|
};
|
|
3367
3513
|
readonly "gpt-4o-search-preview": {
|
|
@@ -3385,6 +3531,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3385
3531
|
readonly tools: false;
|
|
3386
3532
|
readonly reasoning: false;
|
|
3387
3533
|
readonly webSearch: true;
|
|
3534
|
+
readonly jsonResponseWithTools: true;
|
|
3388
3535
|
};
|
|
3389
3536
|
};
|
|
3390
3537
|
readonly "gpt-4o-mini-search-preview": {
|
|
@@ -3408,6 +3555,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3408
3555
|
readonly tools: false;
|
|
3409
3556
|
readonly reasoning: false;
|
|
3410
3557
|
readonly webSearch: true;
|
|
3558
|
+
readonly jsonResponseWithTools: true;
|
|
3411
3559
|
};
|
|
3412
3560
|
};
|
|
3413
3561
|
readonly "gpt-4.1": {
|
|
@@ -3431,6 +3579,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3431
3579
|
readonly tools: true;
|
|
3432
3580
|
readonly reasoning: false;
|
|
3433
3581
|
readonly webSearch: false;
|
|
3582
|
+
readonly jsonResponseWithTools: true;
|
|
3434
3583
|
};
|
|
3435
3584
|
};
|
|
3436
3585
|
readonly "gpt-4.1-mini": {
|
|
@@ -3454,6 +3603,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3454
3603
|
readonly tools: true;
|
|
3455
3604
|
readonly reasoning: false;
|
|
3456
3605
|
readonly webSearch: false;
|
|
3606
|
+
readonly jsonResponseWithTools: true;
|
|
3457
3607
|
};
|
|
3458
3608
|
};
|
|
3459
3609
|
readonly "gpt-4.1-nano": {
|
|
@@ -3477,6 +3627,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3477
3627
|
readonly tools: true;
|
|
3478
3628
|
readonly reasoning: false;
|
|
3479
3629
|
readonly webSearch: false;
|
|
3630
|
+
readonly jsonResponseWithTools: true;
|
|
3480
3631
|
};
|
|
3481
3632
|
};
|
|
3482
3633
|
readonly o1: {
|
|
@@ -3500,6 +3651,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3500
3651
|
readonly tools: false;
|
|
3501
3652
|
readonly reasoning: true;
|
|
3502
3653
|
readonly webSearch: false;
|
|
3654
|
+
readonly jsonResponseWithTools: false;
|
|
3503
3655
|
};
|
|
3504
3656
|
};
|
|
3505
3657
|
readonly o3: {
|
|
@@ -3523,6 +3675,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3523
3675
|
readonly tools: false;
|
|
3524
3676
|
readonly reasoning: false;
|
|
3525
3677
|
readonly webSearch: false;
|
|
3678
|
+
readonly jsonResponseWithTools: false;
|
|
3526
3679
|
};
|
|
3527
3680
|
};
|
|
3528
3681
|
readonly "o3-mini": {
|
|
@@ -3546,6 +3699,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3546
3699
|
readonly tools: false;
|
|
3547
3700
|
readonly reasoning: false;
|
|
3548
3701
|
readonly webSearch: false;
|
|
3702
|
+
readonly jsonResponseWithTools: false;
|
|
3549
3703
|
};
|
|
3550
3704
|
};
|
|
3551
3705
|
readonly "gpt-oss-20b": {
|
|
@@ -3569,6 +3723,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3569
3723
|
readonly tools: true;
|
|
3570
3724
|
readonly reasoning: true;
|
|
3571
3725
|
readonly webSearch: false;
|
|
3726
|
+
readonly jsonResponseWithTools: true;
|
|
3572
3727
|
};
|
|
3573
3728
|
};
|
|
3574
3729
|
readonly "gpt-5": {
|
|
@@ -3592,6 +3747,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3592
3747
|
readonly tools: true;
|
|
3593
3748
|
readonly reasoning: true;
|
|
3594
3749
|
readonly webSearch: true;
|
|
3750
|
+
readonly jsonResponseWithTools: true;
|
|
3595
3751
|
};
|
|
3596
3752
|
};
|
|
3597
3753
|
readonly "gpt-5-mini": {
|
|
@@ -3615,6 +3771,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3615
3771
|
readonly tools: true;
|
|
3616
3772
|
readonly reasoning: true;
|
|
3617
3773
|
readonly webSearch: true;
|
|
3774
|
+
readonly jsonResponseWithTools: true;
|
|
3618
3775
|
};
|
|
3619
3776
|
};
|
|
3620
3777
|
readonly "gpt-5-nano": {
|
|
@@ -3638,6 +3795,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3638
3795
|
readonly tools: true;
|
|
3639
3796
|
readonly reasoning: true;
|
|
3640
3797
|
readonly webSearch: true;
|
|
3798
|
+
readonly jsonResponseWithTools: true;
|
|
3641
3799
|
};
|
|
3642
3800
|
};
|
|
3643
3801
|
readonly "gpt-5-codex": {
|
|
@@ -3661,6 +3819,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3661
3819
|
readonly tools: true;
|
|
3662
3820
|
readonly reasoning: true;
|
|
3663
3821
|
readonly webSearch: false;
|
|
3822
|
+
readonly jsonResponseWithTools: true;
|
|
3664
3823
|
};
|
|
3665
3824
|
};
|
|
3666
3825
|
readonly "gpt-5-pro": {
|
|
@@ -3684,6 +3843,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3684
3843
|
readonly tools: true;
|
|
3685
3844
|
readonly reasoning: true;
|
|
3686
3845
|
readonly webSearch: true;
|
|
3846
|
+
readonly jsonResponseWithTools: true;
|
|
3687
3847
|
};
|
|
3688
3848
|
};
|
|
3689
3849
|
readonly "gpt-5.1": {
|
|
@@ -3707,6 +3867,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3707
3867
|
readonly tools: true;
|
|
3708
3868
|
readonly reasoning: true;
|
|
3709
3869
|
readonly webSearch: true;
|
|
3870
|
+
readonly jsonResponseWithTools: true;
|
|
3710
3871
|
};
|
|
3711
3872
|
};
|
|
3712
3873
|
readonly "gpt-5.1-chat": {
|
|
@@ -3730,6 +3891,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3730
3891
|
readonly tools: true;
|
|
3731
3892
|
readonly reasoning: true;
|
|
3732
3893
|
readonly webSearch: false;
|
|
3894
|
+
readonly jsonResponseWithTools: true;
|
|
3733
3895
|
};
|
|
3734
3896
|
};
|
|
3735
3897
|
readonly "gpt-5.1-codex": {
|
|
@@ -3753,6 +3915,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3753
3915
|
readonly tools: true;
|
|
3754
3916
|
readonly reasoning: true;
|
|
3755
3917
|
readonly webSearch: true;
|
|
3918
|
+
readonly jsonResponseWithTools: true;
|
|
3756
3919
|
};
|
|
3757
3920
|
};
|
|
3758
3921
|
readonly "gpt-5.1-codex-mini": {
|
|
@@ -3776,6 +3939,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3776
3939
|
readonly tools: true;
|
|
3777
3940
|
readonly reasoning: true;
|
|
3778
3941
|
readonly webSearch: true;
|
|
3942
|
+
readonly jsonResponseWithTools: true;
|
|
3779
3943
|
};
|
|
3780
3944
|
};
|
|
3781
3945
|
readonly "gpt-5.2": {
|
|
@@ -3799,6 +3963,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3799
3963
|
readonly tools: true;
|
|
3800
3964
|
readonly reasoning: true;
|
|
3801
3965
|
readonly webSearch: true;
|
|
3966
|
+
readonly jsonResponseWithTools: true;
|
|
3802
3967
|
};
|
|
3803
3968
|
};
|
|
3804
3969
|
readonly "gpt-5.2-pro": {
|
|
@@ -3822,6 +3987,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3822
3987
|
readonly tools: true;
|
|
3823
3988
|
readonly reasoning: true;
|
|
3824
3989
|
readonly webSearch: true;
|
|
3990
|
+
readonly jsonResponseWithTools: true;
|
|
3825
3991
|
};
|
|
3826
3992
|
};
|
|
3827
3993
|
readonly "gpt-5.2-codex": {
|
|
@@ -3845,6 +4011,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3845
4011
|
readonly tools: true;
|
|
3846
4012
|
readonly reasoning: true;
|
|
3847
4013
|
readonly webSearch: true;
|
|
4014
|
+
readonly jsonResponseWithTools: true;
|
|
3848
4015
|
};
|
|
3849
4016
|
};
|
|
3850
4017
|
readonly "gpt-5.3-codex": {
|
|
@@ -3868,6 +4035,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3868
4035
|
readonly tools: true;
|
|
3869
4036
|
readonly reasoning: true;
|
|
3870
4037
|
readonly webSearch: true;
|
|
4038
|
+
readonly jsonResponseWithTools: true;
|
|
3871
4039
|
};
|
|
3872
4040
|
};
|
|
3873
4041
|
readonly "gpt-5.4": {
|
|
@@ -3891,6 +4059,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3891
4059
|
readonly tools: true;
|
|
3892
4060
|
readonly reasoning: true;
|
|
3893
4061
|
readonly webSearch: true;
|
|
4062
|
+
readonly jsonResponseWithTools: true;
|
|
3894
4063
|
};
|
|
3895
4064
|
};
|
|
3896
4065
|
readonly "gpt-5.4-pro": {
|
|
@@ -3914,6 +4083,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3914
4083
|
readonly tools: true;
|
|
3915
4084
|
readonly reasoning: true;
|
|
3916
4085
|
readonly webSearch: true;
|
|
4086
|
+
readonly jsonResponseWithTools: true;
|
|
3917
4087
|
};
|
|
3918
4088
|
};
|
|
3919
4089
|
readonly "claude-sonnet-4-20250514": {
|
|
@@ -3937,6 +4107,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3937
4107
|
readonly tools: true;
|
|
3938
4108
|
readonly reasoning: true;
|
|
3939
4109
|
readonly webSearch: true;
|
|
4110
|
+
readonly jsonResponseWithTools: false;
|
|
3940
4111
|
};
|
|
3941
4112
|
};
|
|
3942
4113
|
readonly "claude-sonnet-4-5": {
|
|
@@ -3960,6 +4131,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3960
4131
|
readonly tools: true;
|
|
3961
4132
|
readonly reasoning: true;
|
|
3962
4133
|
readonly webSearch: true;
|
|
4134
|
+
readonly jsonResponseWithTools: false;
|
|
3963
4135
|
};
|
|
3964
4136
|
};
|
|
3965
4137
|
readonly "claude-sonnet-4-5-20250929": {
|
|
@@ -3983,6 +4155,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
3983
4155
|
readonly tools: true;
|
|
3984
4156
|
readonly reasoning: true;
|
|
3985
4157
|
readonly webSearch: true;
|
|
4158
|
+
readonly jsonResponseWithTools: false;
|
|
3986
4159
|
};
|
|
3987
4160
|
};
|
|
3988
4161
|
readonly "claude-sonnet-4-6": {
|
|
@@ -4006,6 +4179,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4006
4179
|
readonly tools: true;
|
|
4007
4180
|
readonly reasoning: true;
|
|
4008
4181
|
readonly webSearch: true;
|
|
4182
|
+
readonly jsonResponseWithTools: false;
|
|
4009
4183
|
};
|
|
4010
4184
|
};
|
|
4011
4185
|
readonly "claude-haiku-4-5": {
|
|
@@ -4029,6 +4203,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4029
4203
|
readonly tools: true;
|
|
4030
4204
|
readonly reasoning: false;
|
|
4031
4205
|
readonly webSearch: true;
|
|
4206
|
+
readonly jsonResponseWithTools: false;
|
|
4032
4207
|
};
|
|
4033
4208
|
};
|
|
4034
4209
|
readonly "claude-haiku-4-5-20251001": {
|
|
@@ -4052,6 +4227,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4052
4227
|
readonly tools: true;
|
|
4053
4228
|
readonly reasoning: false;
|
|
4054
4229
|
readonly webSearch: true;
|
|
4230
|
+
readonly jsonResponseWithTools: false;
|
|
4055
4231
|
};
|
|
4056
4232
|
};
|
|
4057
4233
|
readonly "claude-opus-4-20250514": {
|
|
@@ -4075,6 +4251,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4075
4251
|
readonly tools: true;
|
|
4076
4252
|
readonly reasoning: true;
|
|
4077
4253
|
readonly webSearch: true;
|
|
4254
|
+
readonly jsonResponseWithTools: false;
|
|
4078
4255
|
};
|
|
4079
4256
|
};
|
|
4080
4257
|
readonly "claude-opus-4-1-20250805": {
|
|
@@ -4098,6 +4275,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4098
4275
|
readonly tools: true;
|
|
4099
4276
|
readonly reasoning: true;
|
|
4100
4277
|
readonly webSearch: true;
|
|
4278
|
+
readonly jsonResponseWithTools: false;
|
|
4101
4279
|
};
|
|
4102
4280
|
};
|
|
4103
4281
|
readonly "claude-opus-4-5-20251101": {
|
|
@@ -4121,6 +4299,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4121
4299
|
readonly tools: true;
|
|
4122
4300
|
readonly reasoning: true;
|
|
4123
4301
|
readonly webSearch: true;
|
|
4302
|
+
readonly jsonResponseWithTools: false;
|
|
4124
4303
|
};
|
|
4125
4304
|
};
|
|
4126
4305
|
readonly "claude-opus-4-6": {
|
|
@@ -4144,6 +4323,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4144
4323
|
readonly tools: true;
|
|
4145
4324
|
readonly reasoning: true;
|
|
4146
4325
|
readonly webSearch: true;
|
|
4326
|
+
readonly jsonResponseWithTools: false;
|
|
4147
4327
|
};
|
|
4148
4328
|
};
|
|
4149
4329
|
readonly "gemini-2.5-pro": {
|
|
@@ -4167,6 +4347,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4167
4347
|
readonly tools: true;
|
|
4168
4348
|
readonly reasoning: true;
|
|
4169
4349
|
readonly webSearch: true;
|
|
4350
|
+
readonly jsonResponseWithTools: true;
|
|
4170
4351
|
};
|
|
4171
4352
|
};
|
|
4172
4353
|
readonly "gemini-2.5-flash": {
|
|
@@ -4190,6 +4371,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4190
4371
|
readonly tools: true;
|
|
4191
4372
|
readonly reasoning: true;
|
|
4192
4373
|
readonly webSearch: true;
|
|
4374
|
+
readonly jsonResponseWithTools: true;
|
|
4193
4375
|
};
|
|
4194
4376
|
};
|
|
4195
4377
|
readonly "gemini-2.5-flash-lite": {
|
|
@@ -4213,6 +4395,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4213
4395
|
readonly tools: true;
|
|
4214
4396
|
readonly reasoning: false;
|
|
4215
4397
|
readonly webSearch: false;
|
|
4398
|
+
readonly jsonResponseWithTools: true;
|
|
4216
4399
|
};
|
|
4217
4400
|
};
|
|
4218
4401
|
readonly "gemini-2.5-flash-lite-preview-09-2025": {
|
|
@@ -4236,6 +4419,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4236
4419
|
readonly tools: true;
|
|
4237
4420
|
readonly reasoning: false;
|
|
4238
4421
|
readonly webSearch: false;
|
|
4422
|
+
readonly jsonResponseWithTools: true;
|
|
4239
4423
|
};
|
|
4240
4424
|
};
|
|
4241
4425
|
readonly "gemini-3.1-pro-preview": {
|
|
@@ -4259,6 +4443,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4259
4443
|
readonly tools: true;
|
|
4260
4444
|
readonly reasoning: true;
|
|
4261
4445
|
readonly webSearch: true;
|
|
4446
|
+
readonly jsonResponseWithTools: true;
|
|
4262
4447
|
};
|
|
4263
4448
|
};
|
|
4264
4449
|
readonly "gemini-3-flash-preview": {
|
|
@@ -4282,6 +4467,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4282
4467
|
readonly tools: true;
|
|
4283
4468
|
readonly reasoning: true;
|
|
4284
4469
|
readonly webSearch: true;
|
|
4470
|
+
readonly jsonResponseWithTools: true;
|
|
4285
4471
|
};
|
|
4286
4472
|
};
|
|
4287
4473
|
readonly "gemini-2.5-flash-image": {
|
|
@@ -4305,6 +4491,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4305
4491
|
readonly tools: false;
|
|
4306
4492
|
readonly reasoning: false;
|
|
4307
4493
|
readonly webSearch: false;
|
|
4494
|
+
readonly jsonResponseWithTools: true;
|
|
4308
4495
|
};
|
|
4309
4496
|
};
|
|
4310
4497
|
readonly "gemma-3n-e2b-it": {
|
|
@@ -4328,6 +4515,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4328
4515
|
readonly tools: false;
|
|
4329
4516
|
readonly reasoning: false;
|
|
4330
4517
|
readonly webSearch: false;
|
|
4518
|
+
readonly jsonResponseWithTools: false;
|
|
4331
4519
|
};
|
|
4332
4520
|
};
|
|
4333
4521
|
readonly "gemma-3n-e4b-it": {
|
|
@@ -4351,6 +4539,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4351
4539
|
readonly tools: false;
|
|
4352
4540
|
readonly reasoning: false;
|
|
4353
4541
|
readonly webSearch: false;
|
|
4542
|
+
readonly jsonResponseWithTools: false;
|
|
4354
4543
|
};
|
|
4355
4544
|
};
|
|
4356
4545
|
readonly "gemma-3-1b-it": {
|
|
@@ -4374,6 +4563,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4374
4563
|
readonly tools: false;
|
|
4375
4564
|
readonly reasoning: false;
|
|
4376
4565
|
readonly webSearch: false;
|
|
4566
|
+
readonly jsonResponseWithTools: false;
|
|
4377
4567
|
};
|
|
4378
4568
|
};
|
|
4379
4569
|
readonly "gemma-3-4b-it": {
|
|
@@ -4397,6 +4587,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4397
4587
|
readonly tools: false;
|
|
4398
4588
|
readonly reasoning: false;
|
|
4399
4589
|
readonly webSearch: false;
|
|
4590
|
+
readonly jsonResponseWithTools: false;
|
|
4400
4591
|
};
|
|
4401
4592
|
};
|
|
4402
4593
|
readonly "gemma-3-12b-it": {
|
|
@@ -4420,6 +4611,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4420
4611
|
readonly tools: false;
|
|
4421
4612
|
readonly reasoning: false;
|
|
4422
4613
|
readonly webSearch: false;
|
|
4614
|
+
readonly jsonResponseWithTools: false;
|
|
4423
4615
|
};
|
|
4424
4616
|
};
|
|
4425
4617
|
readonly "grok-3": {
|
|
@@ -4443,6 +4635,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4443
4635
|
readonly tools: true;
|
|
4444
4636
|
readonly reasoning: false;
|
|
4445
4637
|
readonly webSearch: false;
|
|
4638
|
+
readonly jsonResponseWithTools: false;
|
|
4446
4639
|
};
|
|
4447
4640
|
};
|
|
4448
4641
|
readonly "grok-4-0709": {
|
|
@@ -4466,6 +4659,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4466
4659
|
readonly tools: true;
|
|
4467
4660
|
readonly reasoning: false;
|
|
4468
4661
|
readonly webSearch: false;
|
|
4662
|
+
readonly jsonResponseWithTools: false;
|
|
4469
4663
|
};
|
|
4470
4664
|
};
|
|
4471
4665
|
readonly "grok-4": {
|
|
@@ -4489,6 +4683,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4489
4683
|
readonly tools: true;
|
|
4490
4684
|
readonly reasoning: false;
|
|
4491
4685
|
readonly webSearch: false;
|
|
4686
|
+
readonly jsonResponseWithTools: false;
|
|
4492
4687
|
};
|
|
4493
4688
|
};
|
|
4494
4689
|
readonly "grok-4-fast-reasoning": {
|
|
@@ -4512,6 +4707,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4512
4707
|
readonly tools: true;
|
|
4513
4708
|
readonly reasoning: false;
|
|
4514
4709
|
readonly webSearch: false;
|
|
4710
|
+
readonly jsonResponseWithTools: false;
|
|
4515
4711
|
};
|
|
4516
4712
|
};
|
|
4517
4713
|
readonly "grok-4-fast-non-reasoning": {
|
|
@@ -4535,6 +4731,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4535
4731
|
readonly tools: true;
|
|
4536
4732
|
readonly reasoning: false;
|
|
4537
4733
|
readonly webSearch: false;
|
|
4734
|
+
readonly jsonResponseWithTools: false;
|
|
4538
4735
|
};
|
|
4539
4736
|
};
|
|
4540
4737
|
readonly "grok-code-fast-1": {
|
|
@@ -4558,6 +4755,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4558
4755
|
readonly tools: true;
|
|
4559
4756
|
readonly reasoning: false;
|
|
4560
4757
|
readonly webSearch: false;
|
|
4758
|
+
readonly jsonResponseWithTools: false;
|
|
4561
4759
|
};
|
|
4562
4760
|
};
|
|
4563
4761
|
readonly "grok-4-1-fast-reasoning": {
|
|
@@ -4581,6 +4779,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4581
4779
|
readonly tools: true;
|
|
4582
4780
|
readonly reasoning: false;
|
|
4583
4781
|
readonly webSearch: false;
|
|
4782
|
+
readonly jsonResponseWithTools: false;
|
|
4584
4783
|
};
|
|
4585
4784
|
};
|
|
4586
4785
|
readonly "grok-4-1-fast-non-reasoning": {
|
|
@@ -4604,6 +4803,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4604
4803
|
readonly tools: true;
|
|
4605
4804
|
readonly reasoning: false;
|
|
4606
4805
|
readonly webSearch: false;
|
|
4806
|
+
readonly jsonResponseWithTools: false;
|
|
4607
4807
|
};
|
|
4608
4808
|
};
|
|
4609
4809
|
readonly "llama-3-8b-instruct": {
|
|
@@ -4627,6 +4827,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4627
4827
|
readonly tools: false;
|
|
4628
4828
|
readonly reasoning: false;
|
|
4629
4829
|
readonly webSearch: false;
|
|
4830
|
+
readonly jsonResponseWithTools: false;
|
|
4630
4831
|
};
|
|
4631
4832
|
};
|
|
4632
4833
|
readonly "llama-3-70b-instruct": {
|
|
@@ -4650,6 +4851,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4650
4851
|
readonly tools: false;
|
|
4651
4852
|
readonly reasoning: false;
|
|
4652
4853
|
readonly webSearch: false;
|
|
4854
|
+
readonly jsonResponseWithTools: false;
|
|
4653
4855
|
};
|
|
4654
4856
|
};
|
|
4655
4857
|
readonly "llama-3.1-8b-instruct": {
|
|
@@ -4673,6 +4875,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4673
4875
|
readonly tools: false;
|
|
4674
4876
|
readonly reasoning: false;
|
|
4675
4877
|
readonly webSearch: false;
|
|
4878
|
+
readonly jsonResponseWithTools: false;
|
|
4676
4879
|
};
|
|
4677
4880
|
};
|
|
4678
4881
|
readonly "llama-3.1-70b-instruct": {
|
|
@@ -4696,6 +4899,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4696
4899
|
readonly tools: false;
|
|
4697
4900
|
readonly reasoning: false;
|
|
4698
4901
|
readonly webSearch: false;
|
|
4902
|
+
readonly jsonResponseWithTools: false;
|
|
4699
4903
|
};
|
|
4700
4904
|
};
|
|
4701
4905
|
readonly "llama-3.1-nemotron-ultra-253b": {
|
|
@@ -4719,6 +4923,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4719
4923
|
readonly tools: false;
|
|
4720
4924
|
readonly reasoning: false;
|
|
4721
4925
|
readonly webSearch: false;
|
|
4926
|
+
readonly jsonResponseWithTools: false;
|
|
4722
4927
|
};
|
|
4723
4928
|
};
|
|
4724
4929
|
readonly "llama-3.2-3b-instruct": {
|
|
@@ -4742,6 +4947,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4742
4947
|
readonly tools: false;
|
|
4743
4948
|
readonly reasoning: false;
|
|
4744
4949
|
readonly webSearch: false;
|
|
4950
|
+
readonly jsonResponseWithTools: false;
|
|
4745
4951
|
};
|
|
4746
4952
|
};
|
|
4747
4953
|
readonly "llama-3.3-70b-instruct": {
|
|
@@ -4765,6 +4971,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4765
4971
|
readonly tools: true;
|
|
4766
4972
|
readonly reasoning: false;
|
|
4767
4973
|
readonly webSearch: false;
|
|
4974
|
+
readonly jsonResponseWithTools: false;
|
|
4768
4975
|
};
|
|
4769
4976
|
};
|
|
4770
4977
|
readonly "llama-4-scout-17b-instruct": {
|
|
@@ -4788,6 +4995,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4788
4995
|
readonly tools: false;
|
|
4789
4996
|
readonly reasoning: false;
|
|
4790
4997
|
readonly webSearch: false;
|
|
4998
|
+
readonly jsonResponseWithTools: false;
|
|
4791
4999
|
};
|
|
4792
5000
|
};
|
|
4793
5001
|
readonly "llama-4-maverick-17b-instruct": {
|
|
@@ -4811,6 +5019,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4811
5019
|
readonly tools: false;
|
|
4812
5020
|
readonly reasoning: false;
|
|
4813
5021
|
readonly webSearch: false;
|
|
5022
|
+
readonly jsonResponseWithTools: false;
|
|
4814
5023
|
};
|
|
4815
5024
|
};
|
|
4816
5025
|
readonly "deepseek-r1-0528": {
|
|
@@ -4834,6 +5043,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4834
5043
|
readonly tools: false;
|
|
4835
5044
|
readonly reasoning: false;
|
|
4836
5045
|
readonly webSearch: false;
|
|
5046
|
+
readonly jsonResponseWithTools: false;
|
|
4837
5047
|
};
|
|
4838
5048
|
};
|
|
4839
5049
|
readonly "deepseek-v3.2": {
|
|
@@ -4857,6 +5067,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4857
5067
|
readonly tools: true;
|
|
4858
5068
|
readonly reasoning: false;
|
|
4859
5069
|
readonly webSearch: false;
|
|
5070
|
+
readonly jsonResponseWithTools: false;
|
|
4860
5071
|
};
|
|
4861
5072
|
};
|
|
4862
5073
|
readonly "mistral-large-latest": {
|
|
@@ -4880,6 +5091,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4880
5091
|
readonly tools: false;
|
|
4881
5092
|
readonly reasoning: false;
|
|
4882
5093
|
readonly webSearch: false;
|
|
5094
|
+
readonly jsonResponseWithTools: false;
|
|
4883
5095
|
};
|
|
4884
5096
|
};
|
|
4885
5097
|
readonly "mistral-large-2512": {
|
|
@@ -4903,6 +5115,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4903
5115
|
readonly tools: false;
|
|
4904
5116
|
readonly reasoning: false;
|
|
4905
5117
|
readonly webSearch: false;
|
|
5118
|
+
readonly jsonResponseWithTools: false;
|
|
4906
5119
|
};
|
|
4907
5120
|
};
|
|
4908
5121
|
readonly "mistral-small-2506": {
|
|
@@ -4926,6 +5139,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4926
5139
|
readonly tools: false;
|
|
4927
5140
|
readonly reasoning: false;
|
|
4928
5141
|
readonly webSearch: false;
|
|
5142
|
+
readonly jsonResponseWithTools: false;
|
|
4929
5143
|
};
|
|
4930
5144
|
};
|
|
4931
5145
|
readonly "pixtral-large-latest": {
|
|
@@ -4949,6 +5163,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4949
5163
|
readonly tools: false;
|
|
4950
5164
|
readonly reasoning: false;
|
|
4951
5165
|
readonly webSearch: false;
|
|
5166
|
+
readonly jsonResponseWithTools: false;
|
|
4952
5167
|
};
|
|
4953
5168
|
};
|
|
4954
5169
|
readonly "ministral-14b-2512": {
|
|
@@ -4972,6 +5187,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4972
5187
|
readonly tools: false;
|
|
4973
5188
|
readonly reasoning: false;
|
|
4974
5189
|
readonly webSearch: false;
|
|
5190
|
+
readonly jsonResponseWithTools: false;
|
|
4975
5191
|
};
|
|
4976
5192
|
};
|
|
4977
5193
|
readonly "ministral-8b-2512": {
|
|
@@ -4995,6 +5211,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
4995
5211
|
readonly tools: false;
|
|
4996
5212
|
readonly reasoning: false;
|
|
4997
5213
|
readonly webSearch: false;
|
|
5214
|
+
readonly jsonResponseWithTools: false;
|
|
4998
5215
|
};
|
|
4999
5216
|
};
|
|
5000
5217
|
readonly "ministral-3b-2512": {
|
|
@@ -5018,6 +5235,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5018
5235
|
readonly tools: false;
|
|
5019
5236
|
readonly reasoning: false;
|
|
5020
5237
|
readonly webSearch: false;
|
|
5238
|
+
readonly jsonResponseWithTools: false;
|
|
5021
5239
|
};
|
|
5022
5240
|
};
|
|
5023
5241
|
readonly "codestral-2508": {
|
|
@@ -5041,6 +5259,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5041
5259
|
readonly tools: false;
|
|
5042
5260
|
readonly reasoning: false;
|
|
5043
5261
|
readonly webSearch: false;
|
|
5262
|
+
readonly jsonResponseWithTools: false;
|
|
5044
5263
|
};
|
|
5045
5264
|
};
|
|
5046
5265
|
readonly "devstral-2512": {
|
|
@@ -5064,6 +5283,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5064
5283
|
readonly tools: false;
|
|
5065
5284
|
readonly reasoning: false;
|
|
5066
5285
|
readonly webSearch: false;
|
|
5286
|
+
readonly jsonResponseWithTools: false;
|
|
5067
5287
|
};
|
|
5068
5288
|
};
|
|
5069
5289
|
readonly "devstral-small-2507": {
|
|
@@ -5087,6 +5307,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5087
5307
|
readonly tools: false;
|
|
5088
5308
|
readonly reasoning: false;
|
|
5089
5309
|
readonly webSearch: false;
|
|
5310
|
+
readonly jsonResponseWithTools: false;
|
|
5090
5311
|
};
|
|
5091
5312
|
};
|
|
5092
5313
|
readonly "minimax-m2.5": {
|
|
@@ -5110,6 +5331,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5110
5331
|
readonly tools: true;
|
|
5111
5332
|
readonly reasoning: true;
|
|
5112
5333
|
readonly webSearch: false;
|
|
5334
|
+
readonly jsonResponseWithTools: false;
|
|
5113
5335
|
};
|
|
5114
5336
|
};
|
|
5115
5337
|
readonly "minimax/minimax-m2.5": {
|
|
@@ -5133,6 +5355,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5133
5355
|
readonly tools: true;
|
|
5134
5356
|
readonly reasoning: true;
|
|
5135
5357
|
readonly webSearch: false;
|
|
5358
|
+
readonly jsonResponseWithTools: false;
|
|
5136
5359
|
};
|
|
5137
5360
|
};
|
|
5138
5361
|
readonly "novita/minimax-m2.5": {
|
|
@@ -5156,6 +5379,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5156
5379
|
readonly tools: true;
|
|
5157
5380
|
readonly reasoning: true;
|
|
5158
5381
|
readonly webSearch: false;
|
|
5382
|
+
readonly jsonResponseWithTools: false;
|
|
5159
5383
|
};
|
|
5160
5384
|
};
|
|
5161
5385
|
readonly "minimax-m2": {
|
|
@@ -5179,6 +5403,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5179
5403
|
readonly tools: false;
|
|
5180
5404
|
readonly reasoning: true;
|
|
5181
5405
|
readonly webSearch: false;
|
|
5406
|
+
readonly jsonResponseWithTools: false;
|
|
5182
5407
|
};
|
|
5183
5408
|
};
|
|
5184
5409
|
readonly "minimax-m2.1": {
|
|
@@ -5202,6 +5427,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5202
5427
|
readonly tools: false;
|
|
5203
5428
|
readonly reasoning: true;
|
|
5204
5429
|
readonly webSearch: false;
|
|
5430
|
+
readonly jsonResponseWithTools: false;
|
|
5205
5431
|
};
|
|
5206
5432
|
};
|
|
5207
5433
|
readonly "minimax-m2.1-lightning": {
|
|
@@ -5225,6 +5451,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5225
5451
|
readonly tools: false;
|
|
5226
5452
|
readonly reasoning: true;
|
|
5227
5453
|
readonly webSearch: false;
|
|
5454
|
+
readonly jsonResponseWithTools: false;
|
|
5228
5455
|
};
|
|
5229
5456
|
};
|
|
5230
5457
|
readonly "minimax-text-01": {
|
|
@@ -5248,6 +5475,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5248
5475
|
readonly tools: false;
|
|
5249
5476
|
readonly reasoning: false;
|
|
5250
5477
|
readonly webSearch: false;
|
|
5478
|
+
readonly jsonResponseWithTools: false;
|
|
5251
5479
|
};
|
|
5252
5480
|
};
|
|
5253
5481
|
readonly "kimi-k2": {
|
|
@@ -5271,6 +5499,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5271
5499
|
readonly tools: true;
|
|
5272
5500
|
readonly reasoning: false;
|
|
5273
5501
|
readonly webSearch: false;
|
|
5502
|
+
readonly jsonResponseWithTools: false;
|
|
5274
5503
|
};
|
|
5275
5504
|
};
|
|
5276
5505
|
readonly "kimi-k2-thinking-turbo": {
|
|
@@ -5294,6 +5523,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5294
5523
|
readonly tools: true;
|
|
5295
5524
|
readonly reasoning: true;
|
|
5296
5525
|
readonly webSearch: false;
|
|
5526
|
+
readonly jsonResponseWithTools: false;
|
|
5297
5527
|
};
|
|
5298
5528
|
};
|
|
5299
5529
|
readonly "moonshot/kimi-k2.5": {
|
|
@@ -5317,6 +5547,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5317
5547
|
readonly tools: true;
|
|
5318
5548
|
readonly reasoning: false;
|
|
5319
5549
|
readonly webSearch: false;
|
|
5550
|
+
readonly jsonResponseWithTools: false;
|
|
5320
5551
|
};
|
|
5321
5552
|
};
|
|
5322
5553
|
readonly "qwen-max": {
|
|
@@ -5340,6 +5571,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5340
5571
|
readonly tools: true;
|
|
5341
5572
|
readonly reasoning: false;
|
|
5342
5573
|
readonly webSearch: false;
|
|
5574
|
+
readonly jsonResponseWithTools: false;
|
|
5343
5575
|
};
|
|
5344
5576
|
};
|
|
5345
5577
|
readonly "qwen-max-latest": {
|
|
@@ -5363,6 +5595,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5363
5595
|
readonly tools: true;
|
|
5364
5596
|
readonly reasoning: false;
|
|
5365
5597
|
readonly webSearch: false;
|
|
5598
|
+
readonly jsonResponseWithTools: false;
|
|
5366
5599
|
};
|
|
5367
5600
|
};
|
|
5368
5601
|
readonly "qwen-plus": {
|
|
@@ -5386,6 +5619,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5386
5619
|
readonly tools: true;
|
|
5387
5620
|
readonly reasoning: false;
|
|
5388
5621
|
readonly webSearch: false;
|
|
5622
|
+
readonly jsonResponseWithTools: false;
|
|
5389
5623
|
};
|
|
5390
5624
|
};
|
|
5391
5625
|
readonly "qwen-plus-latest": {
|
|
@@ -5409,6 +5643,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5409
5643
|
readonly tools: true;
|
|
5410
5644
|
readonly reasoning: false;
|
|
5411
5645
|
readonly webSearch: false;
|
|
5646
|
+
readonly jsonResponseWithTools: false;
|
|
5412
5647
|
};
|
|
5413
5648
|
};
|
|
5414
5649
|
readonly "qwen-flash": {
|
|
@@ -5432,6 +5667,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5432
5667
|
readonly tools: true;
|
|
5433
5668
|
readonly reasoning: false;
|
|
5434
5669
|
readonly webSearch: false;
|
|
5670
|
+
readonly jsonResponseWithTools: false;
|
|
5435
5671
|
};
|
|
5436
5672
|
};
|
|
5437
5673
|
readonly "qwen-turbo": {
|
|
@@ -5455,6 +5691,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5455
5691
|
readonly tools: false;
|
|
5456
5692
|
readonly reasoning: false;
|
|
5457
5693
|
readonly webSearch: false;
|
|
5694
|
+
readonly jsonResponseWithTools: false;
|
|
5458
5695
|
};
|
|
5459
5696
|
};
|
|
5460
5697
|
readonly "qwen-omni-turbo": {
|
|
@@ -5478,6 +5715,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5478
5715
|
readonly tools: false;
|
|
5479
5716
|
readonly reasoning: false;
|
|
5480
5717
|
readonly webSearch: false;
|
|
5718
|
+
readonly jsonResponseWithTools: false;
|
|
5481
5719
|
};
|
|
5482
5720
|
};
|
|
5483
5721
|
readonly "qwen-vl-max": {
|
|
@@ -5501,6 +5739,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5501
5739
|
readonly tools: false;
|
|
5502
5740
|
readonly reasoning: false;
|
|
5503
5741
|
readonly webSearch: false;
|
|
5742
|
+
readonly jsonResponseWithTools: false;
|
|
5504
5743
|
};
|
|
5505
5744
|
};
|
|
5506
5745
|
readonly "qwen-vl-plus": {
|
|
@@ -5524,6 +5763,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5524
5763
|
readonly tools: false;
|
|
5525
5764
|
readonly reasoning: false;
|
|
5526
5765
|
readonly webSearch: false;
|
|
5766
|
+
readonly jsonResponseWithTools: false;
|
|
5527
5767
|
};
|
|
5528
5768
|
};
|
|
5529
5769
|
readonly "qwen-coder-plus": {
|
|
@@ -5547,6 +5787,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5547
5787
|
readonly tools: true;
|
|
5548
5788
|
readonly reasoning: false;
|
|
5549
5789
|
readonly webSearch: false;
|
|
5790
|
+
readonly jsonResponseWithTools: false;
|
|
5550
5791
|
};
|
|
5551
5792
|
};
|
|
5552
5793
|
readonly "qwq-plus": {
|
|
@@ -5570,6 +5811,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5570
5811
|
readonly tools: false;
|
|
5571
5812
|
readonly reasoning: true;
|
|
5572
5813
|
readonly webSearch: false;
|
|
5814
|
+
readonly jsonResponseWithTools: false;
|
|
5573
5815
|
};
|
|
5574
5816
|
};
|
|
5575
5817
|
readonly "qwen3-max": {
|
|
@@ -5593,6 +5835,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5593
5835
|
readonly tools: true;
|
|
5594
5836
|
readonly reasoning: true;
|
|
5595
5837
|
readonly webSearch: false;
|
|
5838
|
+
readonly jsonResponseWithTools: false;
|
|
5596
5839
|
};
|
|
5597
5840
|
};
|
|
5598
5841
|
readonly "qwen3-max-2026-01-23": {
|
|
@@ -5616,6 +5859,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5616
5859
|
readonly tools: true;
|
|
5617
5860
|
readonly reasoning: true;
|
|
5618
5861
|
readonly webSearch: false;
|
|
5862
|
+
readonly jsonResponseWithTools: false;
|
|
5619
5863
|
};
|
|
5620
5864
|
};
|
|
5621
5865
|
readonly "qwen3-32b": {
|
|
@@ -5639,6 +5883,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5639
5883
|
readonly tools: true;
|
|
5640
5884
|
readonly reasoning: false;
|
|
5641
5885
|
readonly webSearch: false;
|
|
5886
|
+
readonly jsonResponseWithTools: false;
|
|
5642
5887
|
};
|
|
5643
5888
|
};
|
|
5644
5889
|
readonly "qwen3-32b-fp8": {
|
|
@@ -5662,6 +5907,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5662
5907
|
readonly tools: false;
|
|
5663
5908
|
readonly reasoning: false;
|
|
5664
5909
|
readonly webSearch: false;
|
|
5910
|
+
readonly jsonResponseWithTools: false;
|
|
5665
5911
|
};
|
|
5666
5912
|
};
|
|
5667
5913
|
readonly "qwen3-235b-a22b-instruct-2507": {
|
|
@@ -5685,6 +5931,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5685
5931
|
readonly tools: true;
|
|
5686
5932
|
readonly reasoning: false;
|
|
5687
5933
|
readonly webSearch: false;
|
|
5934
|
+
readonly jsonResponseWithTools: false;
|
|
5688
5935
|
};
|
|
5689
5936
|
};
|
|
5690
5937
|
readonly "qwen3-235b-a22b-thinking-2507": {
|
|
@@ -5708,6 +5955,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5708
5955
|
readonly tools: true;
|
|
5709
5956
|
readonly reasoning: true;
|
|
5710
5957
|
readonly webSearch: false;
|
|
5958
|
+
readonly jsonResponseWithTools: false;
|
|
5711
5959
|
};
|
|
5712
5960
|
};
|
|
5713
5961
|
readonly "qwen3-235b-a22b-fp8": {
|
|
@@ -5731,6 +5979,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5731
5979
|
readonly tools: false;
|
|
5732
5980
|
readonly reasoning: false;
|
|
5733
5981
|
readonly webSearch: false;
|
|
5982
|
+
readonly jsonResponseWithTools: false;
|
|
5734
5983
|
};
|
|
5735
5984
|
};
|
|
5736
5985
|
readonly "qwen3-30b-a3b-instruct-2507": {
|
|
@@ -5754,6 +6003,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5754
6003
|
readonly tools: true;
|
|
5755
6004
|
readonly reasoning: false;
|
|
5756
6005
|
readonly webSearch: false;
|
|
6006
|
+
readonly jsonResponseWithTools: false;
|
|
5757
6007
|
};
|
|
5758
6008
|
};
|
|
5759
6009
|
readonly "qwen3-30b-a3b-thinking-2507": {
|
|
@@ -5777,6 +6027,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5777
6027
|
readonly tools: true;
|
|
5778
6028
|
readonly reasoning: true;
|
|
5779
6029
|
readonly webSearch: false;
|
|
6030
|
+
readonly jsonResponseWithTools: false;
|
|
5780
6031
|
};
|
|
5781
6032
|
};
|
|
5782
6033
|
readonly "qwen3-30b-a3b-fp8": {
|
|
@@ -5800,6 +6051,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5800
6051
|
readonly tools: false;
|
|
5801
6052
|
readonly reasoning: false;
|
|
5802
6053
|
readonly webSearch: false;
|
|
6054
|
+
readonly jsonResponseWithTools: false;
|
|
5803
6055
|
};
|
|
5804
6056
|
};
|
|
5805
6057
|
readonly "qwen3-4b-fp8": {
|
|
@@ -5823,6 +6075,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5823
6075
|
readonly tools: false;
|
|
5824
6076
|
readonly reasoning: false;
|
|
5825
6077
|
readonly webSearch: false;
|
|
6078
|
+
readonly jsonResponseWithTools: false;
|
|
5826
6079
|
};
|
|
5827
6080
|
};
|
|
5828
6081
|
readonly "qwen35-397b-a17b": {
|
|
@@ -5846,6 +6099,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5846
6099
|
readonly tools: true;
|
|
5847
6100
|
readonly reasoning: true;
|
|
5848
6101
|
readonly webSearch: true;
|
|
6102
|
+
readonly jsonResponseWithTools: false;
|
|
5849
6103
|
};
|
|
5850
6104
|
};
|
|
5851
6105
|
readonly "qwen3-next-80b-a3b-thinking": {
|
|
@@ -5869,6 +6123,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5869
6123
|
readonly tools: true;
|
|
5870
6124
|
readonly reasoning: true;
|
|
5871
6125
|
readonly webSearch: false;
|
|
6126
|
+
readonly jsonResponseWithTools: false;
|
|
5872
6127
|
};
|
|
5873
6128
|
};
|
|
5874
6129
|
readonly "qwen3-next-80b-a3b-instruct": {
|
|
@@ -5892,6 +6147,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5892
6147
|
readonly tools: true;
|
|
5893
6148
|
readonly reasoning: false;
|
|
5894
6149
|
readonly webSearch: false;
|
|
6150
|
+
readonly jsonResponseWithTools: false;
|
|
5895
6151
|
};
|
|
5896
6152
|
};
|
|
5897
6153
|
readonly "qwen3-coder-plus": {
|
|
@@ -5915,6 +6171,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5915
6171
|
readonly tools: true;
|
|
5916
6172
|
readonly reasoning: false;
|
|
5917
6173
|
readonly webSearch: false;
|
|
6174
|
+
readonly jsonResponseWithTools: false;
|
|
5918
6175
|
};
|
|
5919
6176
|
};
|
|
5920
6177
|
readonly "qwen3-coder-flash": {
|
|
@@ -5938,6 +6195,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5938
6195
|
readonly tools: true;
|
|
5939
6196
|
readonly reasoning: false;
|
|
5940
6197
|
readonly webSearch: false;
|
|
6198
|
+
readonly jsonResponseWithTools: false;
|
|
5941
6199
|
};
|
|
5942
6200
|
};
|
|
5943
6201
|
readonly "qwen3-coder-30b-a3b-instruct": {
|
|
@@ -5961,6 +6219,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5961
6219
|
readonly tools: true;
|
|
5962
6220
|
readonly reasoning: false;
|
|
5963
6221
|
readonly webSearch: false;
|
|
6222
|
+
readonly jsonResponseWithTools: false;
|
|
5964
6223
|
};
|
|
5965
6224
|
};
|
|
5966
6225
|
readonly "qwen3-vl-8b-instruct": {
|
|
@@ -5984,6 +6243,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
5984
6243
|
readonly tools: false;
|
|
5985
6244
|
readonly reasoning: false;
|
|
5986
6245
|
readonly webSearch: false;
|
|
6246
|
+
readonly jsonResponseWithTools: false;
|
|
5987
6247
|
};
|
|
5988
6248
|
};
|
|
5989
6249
|
readonly "qwen3-vl-plus": {
|
|
@@ -6007,6 +6267,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6007
6267
|
readonly tools: false;
|
|
6008
6268
|
readonly reasoning: false;
|
|
6009
6269
|
readonly webSearch: false;
|
|
6270
|
+
readonly jsonResponseWithTools: false;
|
|
6010
6271
|
};
|
|
6011
6272
|
};
|
|
6012
6273
|
readonly "qwen3-vl-flash": {
|
|
@@ -6030,6 +6291,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6030
6291
|
readonly tools: true;
|
|
6031
6292
|
readonly reasoning: false;
|
|
6032
6293
|
readonly webSearch: false;
|
|
6294
|
+
readonly jsonResponseWithTools: false;
|
|
6033
6295
|
};
|
|
6034
6296
|
};
|
|
6035
6297
|
readonly "qwen3-vl-30b-a3b-instruct": {
|
|
@@ -6053,6 +6315,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6053
6315
|
readonly tools: true;
|
|
6054
6316
|
readonly reasoning: false;
|
|
6055
6317
|
readonly webSearch: false;
|
|
6318
|
+
readonly jsonResponseWithTools: false;
|
|
6056
6319
|
};
|
|
6057
6320
|
};
|
|
6058
6321
|
readonly "qwen3-vl-30b-a3b-thinking": {
|
|
@@ -6076,6 +6339,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6076
6339
|
readonly tools: true;
|
|
6077
6340
|
readonly reasoning: true;
|
|
6078
6341
|
readonly webSearch: false;
|
|
6342
|
+
readonly jsonResponseWithTools: false;
|
|
6079
6343
|
};
|
|
6080
6344
|
};
|
|
6081
6345
|
readonly "qwen3-vl-235b-a22b-instruct": {
|
|
@@ -6099,6 +6363,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6099
6363
|
readonly tools: true;
|
|
6100
6364
|
readonly reasoning: false;
|
|
6101
6365
|
readonly webSearch: false;
|
|
6366
|
+
readonly jsonResponseWithTools: false;
|
|
6102
6367
|
};
|
|
6103
6368
|
};
|
|
6104
6369
|
readonly "qwen3-vl-235b-a22b-thinking": {
|
|
@@ -6122,6 +6387,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6122
6387
|
readonly tools: false;
|
|
6123
6388
|
readonly reasoning: true;
|
|
6124
6389
|
readonly webSearch: false;
|
|
6390
|
+
readonly jsonResponseWithTools: false;
|
|
6125
6391
|
};
|
|
6126
6392
|
};
|
|
6127
6393
|
readonly "qwen2-5-vl-32b-instruct": {
|
|
@@ -6145,6 +6411,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6145
6411
|
readonly tools: false;
|
|
6146
6412
|
readonly reasoning: false;
|
|
6147
6413
|
readonly webSearch: false;
|
|
6414
|
+
readonly jsonResponseWithTools: false;
|
|
6148
6415
|
};
|
|
6149
6416
|
};
|
|
6150
6417
|
readonly "glm-5": {
|
|
@@ -6168,6 +6435,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6168
6435
|
readonly tools: true;
|
|
6169
6436
|
readonly reasoning: true;
|
|
6170
6437
|
readonly webSearch: true;
|
|
6438
|
+
readonly jsonResponseWithTools: false;
|
|
6171
6439
|
};
|
|
6172
6440
|
};
|
|
6173
6441
|
readonly "glm-4.5": {
|
|
@@ -6191,6 +6459,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6191
6459
|
readonly tools: true;
|
|
6192
6460
|
readonly reasoning: true;
|
|
6193
6461
|
readonly webSearch: true;
|
|
6462
|
+
readonly jsonResponseWithTools: false;
|
|
6194
6463
|
};
|
|
6195
6464
|
};
|
|
6196
6465
|
readonly "glm-4.5v": {
|
|
@@ -6214,6 +6483,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6214
6483
|
readonly tools: true;
|
|
6215
6484
|
readonly reasoning: true;
|
|
6216
6485
|
readonly webSearch: false;
|
|
6486
|
+
readonly jsonResponseWithTools: false;
|
|
6217
6487
|
};
|
|
6218
6488
|
};
|
|
6219
6489
|
readonly "glm-4.5-air": {
|
|
@@ -6237,6 +6507,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6237
6507
|
readonly tools: true;
|
|
6238
6508
|
readonly reasoning: false;
|
|
6239
6509
|
readonly webSearch: false;
|
|
6510
|
+
readonly jsonResponseWithTools: false;
|
|
6240
6511
|
};
|
|
6241
6512
|
};
|
|
6242
6513
|
readonly "glm-4.5-x": {
|
|
@@ -6260,6 +6531,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6260
6531
|
readonly tools: true;
|
|
6261
6532
|
readonly reasoning: true;
|
|
6262
6533
|
readonly webSearch: false;
|
|
6534
|
+
readonly jsonResponseWithTools: false;
|
|
6263
6535
|
};
|
|
6264
6536
|
};
|
|
6265
6537
|
readonly "glm-4.5-airx": {
|
|
@@ -6283,6 +6555,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6283
6555
|
readonly tools: true;
|
|
6284
6556
|
readonly reasoning: false;
|
|
6285
6557
|
readonly webSearch: false;
|
|
6558
|
+
readonly jsonResponseWithTools: false;
|
|
6286
6559
|
};
|
|
6287
6560
|
};
|
|
6288
6561
|
readonly "glm-4.5-flash": {
|
|
@@ -6306,6 +6579,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6306
6579
|
readonly tools: true;
|
|
6307
6580
|
readonly reasoning: false;
|
|
6308
6581
|
readonly webSearch: false;
|
|
6582
|
+
readonly jsonResponseWithTools: false;
|
|
6309
6583
|
};
|
|
6310
6584
|
};
|
|
6311
6585
|
readonly "glm-4.6": {
|
|
@@ -6329,6 +6603,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6329
6603
|
readonly tools: true;
|
|
6330
6604
|
readonly reasoning: true;
|
|
6331
6605
|
readonly webSearch: true;
|
|
6606
|
+
readonly jsonResponseWithTools: false;
|
|
6332
6607
|
};
|
|
6333
6608
|
};
|
|
6334
6609
|
readonly "glm-4.6v": {
|
|
@@ -6352,6 +6627,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6352
6627
|
readonly tools: true;
|
|
6353
6628
|
readonly reasoning: true;
|
|
6354
6629
|
readonly webSearch: false;
|
|
6630
|
+
readonly jsonResponseWithTools: false;
|
|
6355
6631
|
};
|
|
6356
6632
|
};
|
|
6357
6633
|
readonly "glm-4.6v-flashx": {
|
|
@@ -6375,6 +6651,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6375
6651
|
readonly tools: true;
|
|
6376
6652
|
readonly reasoning: true;
|
|
6377
6653
|
readonly webSearch: false;
|
|
6654
|
+
readonly jsonResponseWithTools: false;
|
|
6378
6655
|
};
|
|
6379
6656
|
};
|
|
6380
6657
|
readonly "glm-4.6v-flash": {
|
|
@@ -6398,6 +6675,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6398
6675
|
readonly tools: true;
|
|
6399
6676
|
readonly reasoning: true;
|
|
6400
6677
|
readonly webSearch: false;
|
|
6678
|
+
readonly jsonResponseWithTools: false;
|
|
6401
6679
|
};
|
|
6402
6680
|
};
|
|
6403
6681
|
readonly "glm-4.7": {
|
|
@@ -6421,6 +6699,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6421
6699
|
readonly tools: true;
|
|
6422
6700
|
readonly reasoning: true;
|
|
6423
6701
|
readonly webSearch: true;
|
|
6702
|
+
readonly jsonResponseWithTools: false;
|
|
6424
6703
|
};
|
|
6425
6704
|
};
|
|
6426
6705
|
readonly "glm-4.7-flashx": {
|
|
@@ -6444,6 +6723,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6444
6723
|
readonly tools: true;
|
|
6445
6724
|
readonly reasoning: true;
|
|
6446
6725
|
readonly webSearch: false;
|
|
6726
|
+
readonly jsonResponseWithTools: false;
|
|
6447
6727
|
};
|
|
6448
6728
|
};
|
|
6449
6729
|
readonly "glm-4.7-flash": {
|
|
@@ -6467,6 +6747,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6467
6747
|
readonly tools: true;
|
|
6468
6748
|
readonly reasoning: true;
|
|
6469
6749
|
readonly webSearch: false;
|
|
6750
|
+
readonly jsonResponseWithTools: false;
|
|
6470
6751
|
};
|
|
6471
6752
|
};
|
|
6472
6753
|
readonly "glm-4-32b-0414-128k": {
|
|
@@ -6490,6 +6771,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6490
6771
|
readonly tools: true;
|
|
6491
6772
|
readonly reasoning: false;
|
|
6492
6773
|
readonly webSearch: false;
|
|
6774
|
+
readonly jsonResponseWithTools: false;
|
|
6493
6775
|
};
|
|
6494
6776
|
};
|
|
6495
6777
|
};
|
|
@@ -6515,6 +6797,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6515
6797
|
readonly tools: true;
|
|
6516
6798
|
readonly reasoning: false;
|
|
6517
6799
|
readonly webSearch: false;
|
|
6800
|
+
readonly jsonResponseWithTools: true;
|
|
6518
6801
|
};
|
|
6519
6802
|
};
|
|
6520
6803
|
readonly "gpt-4": {
|
|
@@ -6538,6 +6821,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6538
6821
|
readonly tools: true;
|
|
6539
6822
|
readonly reasoning: false;
|
|
6540
6823
|
readonly webSearch: false;
|
|
6824
|
+
readonly jsonResponseWithTools: true;
|
|
6541
6825
|
};
|
|
6542
6826
|
};
|
|
6543
6827
|
readonly "gpt-4-turbo": {
|
|
@@ -6561,6 +6845,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6561
6845
|
readonly tools: true;
|
|
6562
6846
|
readonly reasoning: false;
|
|
6563
6847
|
readonly webSearch: false;
|
|
6848
|
+
readonly jsonResponseWithTools: true;
|
|
6564
6849
|
};
|
|
6565
6850
|
};
|
|
6566
6851
|
readonly "gpt-4o": {
|
|
@@ -6584,6 +6869,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6584
6869
|
readonly tools: true;
|
|
6585
6870
|
readonly reasoning: false;
|
|
6586
6871
|
readonly webSearch: true;
|
|
6872
|
+
readonly jsonResponseWithTools: true;
|
|
6587
6873
|
};
|
|
6588
6874
|
};
|
|
6589
6875
|
readonly "gpt-4o-mini": {
|
|
@@ -6607,6 +6893,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6607
6893
|
readonly tools: true;
|
|
6608
6894
|
readonly reasoning: false;
|
|
6609
6895
|
readonly webSearch: false;
|
|
6896
|
+
readonly jsonResponseWithTools: true;
|
|
6610
6897
|
};
|
|
6611
6898
|
};
|
|
6612
6899
|
readonly "gpt-4o-search-preview": {
|
|
@@ -6630,6 +6917,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6630
6917
|
readonly tools: false;
|
|
6631
6918
|
readonly reasoning: false;
|
|
6632
6919
|
readonly webSearch: true;
|
|
6920
|
+
readonly jsonResponseWithTools: true;
|
|
6633
6921
|
};
|
|
6634
6922
|
};
|
|
6635
6923
|
readonly "gpt-4o-mini-search-preview": {
|
|
@@ -6653,6 +6941,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6653
6941
|
readonly tools: false;
|
|
6654
6942
|
readonly reasoning: false;
|
|
6655
6943
|
readonly webSearch: true;
|
|
6944
|
+
readonly jsonResponseWithTools: true;
|
|
6656
6945
|
};
|
|
6657
6946
|
};
|
|
6658
6947
|
readonly "gpt-4.1": {
|
|
@@ -6676,6 +6965,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6676
6965
|
readonly tools: true;
|
|
6677
6966
|
readonly reasoning: false;
|
|
6678
6967
|
readonly webSearch: false;
|
|
6968
|
+
readonly jsonResponseWithTools: true;
|
|
6679
6969
|
};
|
|
6680
6970
|
};
|
|
6681
6971
|
readonly "gpt-4.1-mini": {
|
|
@@ -6699,6 +6989,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6699
6989
|
readonly tools: true;
|
|
6700
6990
|
readonly reasoning: false;
|
|
6701
6991
|
readonly webSearch: false;
|
|
6992
|
+
readonly jsonResponseWithTools: true;
|
|
6702
6993
|
};
|
|
6703
6994
|
};
|
|
6704
6995
|
readonly "gpt-4.1-nano": {
|
|
@@ -6722,6 +7013,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6722
7013
|
readonly tools: true;
|
|
6723
7014
|
readonly reasoning: false;
|
|
6724
7015
|
readonly webSearch: false;
|
|
7016
|
+
readonly jsonResponseWithTools: true;
|
|
6725
7017
|
};
|
|
6726
7018
|
};
|
|
6727
7019
|
readonly o1: {
|
|
@@ -6745,6 +7037,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6745
7037
|
readonly tools: false;
|
|
6746
7038
|
readonly reasoning: true;
|
|
6747
7039
|
readonly webSearch: false;
|
|
7040
|
+
readonly jsonResponseWithTools: false;
|
|
6748
7041
|
};
|
|
6749
7042
|
};
|
|
6750
7043
|
readonly o3: {
|
|
@@ -6768,6 +7061,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6768
7061
|
readonly tools: false;
|
|
6769
7062
|
readonly reasoning: false;
|
|
6770
7063
|
readonly webSearch: false;
|
|
7064
|
+
readonly jsonResponseWithTools: false;
|
|
6771
7065
|
};
|
|
6772
7066
|
};
|
|
6773
7067
|
readonly "o3-mini": {
|
|
@@ -6791,6 +7085,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6791
7085
|
readonly tools: false;
|
|
6792
7086
|
readonly reasoning: false;
|
|
6793
7087
|
readonly webSearch: false;
|
|
7088
|
+
readonly jsonResponseWithTools: false;
|
|
6794
7089
|
};
|
|
6795
7090
|
};
|
|
6796
7091
|
readonly "gpt-oss-20b": {
|
|
@@ -6814,6 +7109,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6814
7109
|
readonly tools: true;
|
|
6815
7110
|
readonly reasoning: true;
|
|
6816
7111
|
readonly webSearch: false;
|
|
7112
|
+
readonly jsonResponseWithTools: true;
|
|
6817
7113
|
};
|
|
6818
7114
|
};
|
|
6819
7115
|
readonly "gpt-5": {
|
|
@@ -6837,6 +7133,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6837
7133
|
readonly tools: true;
|
|
6838
7134
|
readonly reasoning: true;
|
|
6839
7135
|
readonly webSearch: true;
|
|
7136
|
+
readonly jsonResponseWithTools: true;
|
|
6840
7137
|
};
|
|
6841
7138
|
};
|
|
6842
7139
|
readonly "gpt-5-mini": {
|
|
@@ -6860,6 +7157,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6860
7157
|
readonly tools: true;
|
|
6861
7158
|
readonly reasoning: true;
|
|
6862
7159
|
readonly webSearch: true;
|
|
7160
|
+
readonly jsonResponseWithTools: true;
|
|
6863
7161
|
};
|
|
6864
7162
|
};
|
|
6865
7163
|
readonly "gpt-5-nano": {
|
|
@@ -6883,6 +7181,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6883
7181
|
readonly tools: true;
|
|
6884
7182
|
readonly reasoning: true;
|
|
6885
7183
|
readonly webSearch: true;
|
|
7184
|
+
readonly jsonResponseWithTools: true;
|
|
6886
7185
|
};
|
|
6887
7186
|
};
|
|
6888
7187
|
readonly "gpt-5-codex": {
|
|
@@ -6906,6 +7205,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6906
7205
|
readonly tools: true;
|
|
6907
7206
|
readonly reasoning: true;
|
|
6908
7207
|
readonly webSearch: false;
|
|
7208
|
+
readonly jsonResponseWithTools: true;
|
|
6909
7209
|
};
|
|
6910
7210
|
};
|
|
6911
7211
|
readonly "gpt-5-pro": {
|
|
@@ -6929,6 +7229,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6929
7229
|
readonly tools: true;
|
|
6930
7230
|
readonly reasoning: true;
|
|
6931
7231
|
readonly webSearch: true;
|
|
7232
|
+
readonly jsonResponseWithTools: true;
|
|
6932
7233
|
};
|
|
6933
7234
|
};
|
|
6934
7235
|
readonly "gpt-5.1": {
|
|
@@ -6952,6 +7253,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6952
7253
|
readonly tools: true;
|
|
6953
7254
|
readonly reasoning: true;
|
|
6954
7255
|
readonly webSearch: true;
|
|
7256
|
+
readonly jsonResponseWithTools: true;
|
|
6955
7257
|
};
|
|
6956
7258
|
};
|
|
6957
7259
|
readonly "gpt-5.1-chat": {
|
|
@@ -6975,6 +7277,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6975
7277
|
readonly tools: true;
|
|
6976
7278
|
readonly reasoning: true;
|
|
6977
7279
|
readonly webSearch: false;
|
|
7280
|
+
readonly jsonResponseWithTools: true;
|
|
6978
7281
|
};
|
|
6979
7282
|
};
|
|
6980
7283
|
readonly "gpt-5.1-codex": {
|
|
@@ -6998,6 +7301,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
6998
7301
|
readonly tools: true;
|
|
6999
7302
|
readonly reasoning: true;
|
|
7000
7303
|
readonly webSearch: true;
|
|
7304
|
+
readonly jsonResponseWithTools: true;
|
|
7001
7305
|
};
|
|
7002
7306
|
};
|
|
7003
7307
|
readonly "gpt-5.1-codex-mini": {
|
|
@@ -7021,6 +7325,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7021
7325
|
readonly tools: true;
|
|
7022
7326
|
readonly reasoning: true;
|
|
7023
7327
|
readonly webSearch: true;
|
|
7328
|
+
readonly jsonResponseWithTools: true;
|
|
7024
7329
|
};
|
|
7025
7330
|
};
|
|
7026
7331
|
readonly "gpt-5.2": {
|
|
@@ -7044,6 +7349,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7044
7349
|
readonly tools: true;
|
|
7045
7350
|
readonly reasoning: true;
|
|
7046
7351
|
readonly webSearch: true;
|
|
7352
|
+
readonly jsonResponseWithTools: true;
|
|
7047
7353
|
};
|
|
7048
7354
|
};
|
|
7049
7355
|
readonly "gpt-5.2-pro": {
|
|
@@ -7067,6 +7373,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7067
7373
|
readonly tools: true;
|
|
7068
7374
|
readonly reasoning: true;
|
|
7069
7375
|
readonly webSearch: true;
|
|
7376
|
+
readonly jsonResponseWithTools: true;
|
|
7070
7377
|
};
|
|
7071
7378
|
};
|
|
7072
7379
|
readonly "gpt-5.2-codex": {
|
|
@@ -7090,6 +7397,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7090
7397
|
readonly tools: true;
|
|
7091
7398
|
readonly reasoning: true;
|
|
7092
7399
|
readonly webSearch: true;
|
|
7400
|
+
readonly jsonResponseWithTools: true;
|
|
7093
7401
|
};
|
|
7094
7402
|
};
|
|
7095
7403
|
readonly "gpt-5.3-codex": {
|
|
@@ -7113,6 +7421,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7113
7421
|
readonly tools: true;
|
|
7114
7422
|
readonly reasoning: true;
|
|
7115
7423
|
readonly webSearch: true;
|
|
7424
|
+
readonly jsonResponseWithTools: true;
|
|
7116
7425
|
};
|
|
7117
7426
|
};
|
|
7118
7427
|
readonly "gpt-5.4": {
|
|
@@ -7136,6 +7445,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7136
7445
|
readonly tools: true;
|
|
7137
7446
|
readonly reasoning: true;
|
|
7138
7447
|
readonly webSearch: true;
|
|
7448
|
+
readonly jsonResponseWithTools: true;
|
|
7139
7449
|
};
|
|
7140
7450
|
};
|
|
7141
7451
|
readonly "gpt-5.4-pro": {
|
|
@@ -7159,6 +7469,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7159
7469
|
readonly tools: true;
|
|
7160
7470
|
readonly reasoning: true;
|
|
7161
7471
|
readonly webSearch: true;
|
|
7472
|
+
readonly jsonResponseWithTools: true;
|
|
7162
7473
|
};
|
|
7163
7474
|
};
|
|
7164
7475
|
readonly "claude-sonnet-4-20250514": {
|
|
@@ -7182,6 +7493,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7182
7493
|
readonly tools: true;
|
|
7183
7494
|
readonly reasoning: true;
|
|
7184
7495
|
readonly webSearch: true;
|
|
7496
|
+
readonly jsonResponseWithTools: false;
|
|
7185
7497
|
};
|
|
7186
7498
|
};
|
|
7187
7499
|
readonly "claude-sonnet-4-5": {
|
|
@@ -7205,6 +7517,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7205
7517
|
readonly tools: true;
|
|
7206
7518
|
readonly reasoning: true;
|
|
7207
7519
|
readonly webSearch: true;
|
|
7520
|
+
readonly jsonResponseWithTools: false;
|
|
7208
7521
|
};
|
|
7209
7522
|
};
|
|
7210
7523
|
readonly "claude-sonnet-4-5-20250929": {
|
|
@@ -7228,6 +7541,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7228
7541
|
readonly tools: true;
|
|
7229
7542
|
readonly reasoning: true;
|
|
7230
7543
|
readonly webSearch: true;
|
|
7544
|
+
readonly jsonResponseWithTools: false;
|
|
7231
7545
|
};
|
|
7232
7546
|
};
|
|
7233
7547
|
readonly "claude-sonnet-4-6": {
|
|
@@ -7251,6 +7565,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7251
7565
|
readonly tools: true;
|
|
7252
7566
|
readonly reasoning: true;
|
|
7253
7567
|
readonly webSearch: true;
|
|
7568
|
+
readonly jsonResponseWithTools: false;
|
|
7254
7569
|
};
|
|
7255
7570
|
};
|
|
7256
7571
|
readonly "claude-haiku-4-5": {
|
|
@@ -7274,6 +7589,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7274
7589
|
readonly tools: true;
|
|
7275
7590
|
readonly reasoning: false;
|
|
7276
7591
|
readonly webSearch: true;
|
|
7592
|
+
readonly jsonResponseWithTools: false;
|
|
7277
7593
|
};
|
|
7278
7594
|
};
|
|
7279
7595
|
readonly "claude-haiku-4-5-20251001": {
|
|
@@ -7297,6 +7613,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7297
7613
|
readonly tools: true;
|
|
7298
7614
|
readonly reasoning: false;
|
|
7299
7615
|
readonly webSearch: true;
|
|
7616
|
+
readonly jsonResponseWithTools: false;
|
|
7300
7617
|
};
|
|
7301
7618
|
};
|
|
7302
7619
|
readonly "claude-opus-4-20250514": {
|
|
@@ -7320,6 +7637,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7320
7637
|
readonly tools: true;
|
|
7321
7638
|
readonly reasoning: true;
|
|
7322
7639
|
readonly webSearch: true;
|
|
7640
|
+
readonly jsonResponseWithTools: false;
|
|
7323
7641
|
};
|
|
7324
7642
|
};
|
|
7325
7643
|
readonly "claude-opus-4-1-20250805": {
|
|
@@ -7343,6 +7661,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7343
7661
|
readonly tools: true;
|
|
7344
7662
|
readonly reasoning: true;
|
|
7345
7663
|
readonly webSearch: true;
|
|
7664
|
+
readonly jsonResponseWithTools: false;
|
|
7346
7665
|
};
|
|
7347
7666
|
};
|
|
7348
7667
|
readonly "claude-opus-4-5-20251101": {
|
|
@@ -7366,6 +7685,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7366
7685
|
readonly tools: true;
|
|
7367
7686
|
readonly reasoning: true;
|
|
7368
7687
|
readonly webSearch: true;
|
|
7688
|
+
readonly jsonResponseWithTools: false;
|
|
7369
7689
|
};
|
|
7370
7690
|
};
|
|
7371
7691
|
readonly "claude-opus-4-6": {
|
|
@@ -7389,6 +7709,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7389
7709
|
readonly tools: true;
|
|
7390
7710
|
readonly reasoning: true;
|
|
7391
7711
|
readonly webSearch: true;
|
|
7712
|
+
readonly jsonResponseWithTools: false;
|
|
7392
7713
|
};
|
|
7393
7714
|
};
|
|
7394
7715
|
readonly "gemini-2.5-pro": {
|
|
@@ -7412,6 +7733,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7412
7733
|
readonly tools: true;
|
|
7413
7734
|
readonly reasoning: true;
|
|
7414
7735
|
readonly webSearch: true;
|
|
7736
|
+
readonly jsonResponseWithTools: true;
|
|
7415
7737
|
};
|
|
7416
7738
|
};
|
|
7417
7739
|
readonly "gemini-2.5-flash": {
|
|
@@ -7435,6 +7757,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7435
7757
|
readonly tools: true;
|
|
7436
7758
|
readonly reasoning: true;
|
|
7437
7759
|
readonly webSearch: true;
|
|
7760
|
+
readonly jsonResponseWithTools: true;
|
|
7438
7761
|
};
|
|
7439
7762
|
};
|
|
7440
7763
|
readonly "gemini-2.5-flash-lite": {
|
|
@@ -7458,6 +7781,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7458
7781
|
readonly tools: true;
|
|
7459
7782
|
readonly reasoning: false;
|
|
7460
7783
|
readonly webSearch: false;
|
|
7784
|
+
readonly jsonResponseWithTools: true;
|
|
7461
7785
|
};
|
|
7462
7786
|
};
|
|
7463
7787
|
readonly "gemini-2.5-flash-lite-preview-09-2025": {
|
|
@@ -7481,6 +7805,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7481
7805
|
readonly tools: true;
|
|
7482
7806
|
readonly reasoning: false;
|
|
7483
7807
|
readonly webSearch: false;
|
|
7808
|
+
readonly jsonResponseWithTools: true;
|
|
7484
7809
|
};
|
|
7485
7810
|
};
|
|
7486
7811
|
readonly "gemini-3.1-pro-preview": {
|
|
@@ -7504,6 +7829,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7504
7829
|
readonly tools: true;
|
|
7505
7830
|
readonly reasoning: true;
|
|
7506
7831
|
readonly webSearch: true;
|
|
7832
|
+
readonly jsonResponseWithTools: true;
|
|
7507
7833
|
};
|
|
7508
7834
|
};
|
|
7509
7835
|
readonly "gemini-3-flash-preview": {
|
|
@@ -7527,6 +7853,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7527
7853
|
readonly tools: true;
|
|
7528
7854
|
readonly reasoning: true;
|
|
7529
7855
|
readonly webSearch: true;
|
|
7856
|
+
readonly jsonResponseWithTools: true;
|
|
7530
7857
|
};
|
|
7531
7858
|
};
|
|
7532
7859
|
readonly "gemini-2.5-flash-image": {
|
|
@@ -7550,6 +7877,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7550
7877
|
readonly tools: false;
|
|
7551
7878
|
readonly reasoning: false;
|
|
7552
7879
|
readonly webSearch: false;
|
|
7880
|
+
readonly jsonResponseWithTools: true;
|
|
7553
7881
|
};
|
|
7554
7882
|
};
|
|
7555
7883
|
readonly "gemma-3n-e2b-it": {
|
|
@@ -7573,6 +7901,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7573
7901
|
readonly tools: false;
|
|
7574
7902
|
readonly reasoning: false;
|
|
7575
7903
|
readonly webSearch: false;
|
|
7904
|
+
readonly jsonResponseWithTools: false;
|
|
7576
7905
|
};
|
|
7577
7906
|
};
|
|
7578
7907
|
readonly "gemma-3n-e4b-it": {
|
|
@@ -7596,6 +7925,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7596
7925
|
readonly tools: false;
|
|
7597
7926
|
readonly reasoning: false;
|
|
7598
7927
|
readonly webSearch: false;
|
|
7928
|
+
readonly jsonResponseWithTools: false;
|
|
7599
7929
|
};
|
|
7600
7930
|
};
|
|
7601
7931
|
readonly "gemma-3-1b-it": {
|
|
@@ -7619,6 +7949,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7619
7949
|
readonly tools: false;
|
|
7620
7950
|
readonly reasoning: false;
|
|
7621
7951
|
readonly webSearch: false;
|
|
7952
|
+
readonly jsonResponseWithTools: false;
|
|
7622
7953
|
};
|
|
7623
7954
|
};
|
|
7624
7955
|
readonly "gemma-3-4b-it": {
|
|
@@ -7642,6 +7973,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7642
7973
|
readonly tools: false;
|
|
7643
7974
|
readonly reasoning: false;
|
|
7644
7975
|
readonly webSearch: false;
|
|
7976
|
+
readonly jsonResponseWithTools: false;
|
|
7645
7977
|
};
|
|
7646
7978
|
};
|
|
7647
7979
|
readonly "gemma-3-12b-it": {
|
|
@@ -7665,6 +7997,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7665
7997
|
readonly tools: false;
|
|
7666
7998
|
readonly reasoning: false;
|
|
7667
7999
|
readonly webSearch: false;
|
|
8000
|
+
readonly jsonResponseWithTools: false;
|
|
7668
8001
|
};
|
|
7669
8002
|
};
|
|
7670
8003
|
readonly "grok-3": {
|
|
@@ -7688,6 +8021,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7688
8021
|
readonly tools: true;
|
|
7689
8022
|
readonly reasoning: false;
|
|
7690
8023
|
readonly webSearch: false;
|
|
8024
|
+
readonly jsonResponseWithTools: false;
|
|
7691
8025
|
};
|
|
7692
8026
|
};
|
|
7693
8027
|
readonly "grok-4-0709": {
|
|
@@ -7711,6 +8045,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7711
8045
|
readonly tools: true;
|
|
7712
8046
|
readonly reasoning: false;
|
|
7713
8047
|
readonly webSearch: false;
|
|
8048
|
+
readonly jsonResponseWithTools: false;
|
|
7714
8049
|
};
|
|
7715
8050
|
};
|
|
7716
8051
|
readonly "grok-4": {
|
|
@@ -7734,6 +8069,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7734
8069
|
readonly tools: true;
|
|
7735
8070
|
readonly reasoning: false;
|
|
7736
8071
|
readonly webSearch: false;
|
|
8072
|
+
readonly jsonResponseWithTools: false;
|
|
7737
8073
|
};
|
|
7738
8074
|
};
|
|
7739
8075
|
readonly "grok-4-fast-reasoning": {
|
|
@@ -7757,6 +8093,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7757
8093
|
readonly tools: true;
|
|
7758
8094
|
readonly reasoning: false;
|
|
7759
8095
|
readonly webSearch: false;
|
|
8096
|
+
readonly jsonResponseWithTools: false;
|
|
7760
8097
|
};
|
|
7761
8098
|
};
|
|
7762
8099
|
readonly "grok-4-fast-non-reasoning": {
|
|
@@ -7780,6 +8117,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7780
8117
|
readonly tools: true;
|
|
7781
8118
|
readonly reasoning: false;
|
|
7782
8119
|
readonly webSearch: false;
|
|
8120
|
+
readonly jsonResponseWithTools: false;
|
|
7783
8121
|
};
|
|
7784
8122
|
};
|
|
7785
8123
|
readonly "grok-code-fast-1": {
|
|
@@ -7803,6 +8141,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7803
8141
|
readonly tools: true;
|
|
7804
8142
|
readonly reasoning: false;
|
|
7805
8143
|
readonly webSearch: false;
|
|
8144
|
+
readonly jsonResponseWithTools: false;
|
|
7806
8145
|
};
|
|
7807
8146
|
};
|
|
7808
8147
|
readonly "grok-4-1-fast-reasoning": {
|
|
@@ -7826,6 +8165,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7826
8165
|
readonly tools: true;
|
|
7827
8166
|
readonly reasoning: false;
|
|
7828
8167
|
readonly webSearch: false;
|
|
8168
|
+
readonly jsonResponseWithTools: false;
|
|
7829
8169
|
};
|
|
7830
8170
|
};
|
|
7831
8171
|
readonly "grok-4-1-fast-non-reasoning": {
|
|
@@ -7849,6 +8189,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7849
8189
|
readonly tools: true;
|
|
7850
8190
|
readonly reasoning: false;
|
|
7851
8191
|
readonly webSearch: false;
|
|
8192
|
+
readonly jsonResponseWithTools: false;
|
|
7852
8193
|
};
|
|
7853
8194
|
};
|
|
7854
8195
|
readonly "llama-3-8b-instruct": {
|
|
@@ -7872,6 +8213,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7872
8213
|
readonly tools: false;
|
|
7873
8214
|
readonly reasoning: false;
|
|
7874
8215
|
readonly webSearch: false;
|
|
8216
|
+
readonly jsonResponseWithTools: false;
|
|
7875
8217
|
};
|
|
7876
8218
|
};
|
|
7877
8219
|
readonly "llama-3-70b-instruct": {
|
|
@@ -7895,6 +8237,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7895
8237
|
readonly tools: false;
|
|
7896
8238
|
readonly reasoning: false;
|
|
7897
8239
|
readonly webSearch: false;
|
|
8240
|
+
readonly jsonResponseWithTools: false;
|
|
7898
8241
|
};
|
|
7899
8242
|
};
|
|
7900
8243
|
readonly "llama-3.1-8b-instruct": {
|
|
@@ -7918,6 +8261,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7918
8261
|
readonly tools: false;
|
|
7919
8262
|
readonly reasoning: false;
|
|
7920
8263
|
readonly webSearch: false;
|
|
8264
|
+
readonly jsonResponseWithTools: false;
|
|
7921
8265
|
};
|
|
7922
8266
|
};
|
|
7923
8267
|
readonly "llama-3.1-70b-instruct": {
|
|
@@ -7941,6 +8285,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7941
8285
|
readonly tools: false;
|
|
7942
8286
|
readonly reasoning: false;
|
|
7943
8287
|
readonly webSearch: false;
|
|
8288
|
+
readonly jsonResponseWithTools: false;
|
|
7944
8289
|
};
|
|
7945
8290
|
};
|
|
7946
8291
|
readonly "llama-3.1-nemotron-ultra-253b": {
|
|
@@ -7964,6 +8309,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7964
8309
|
readonly tools: false;
|
|
7965
8310
|
readonly reasoning: false;
|
|
7966
8311
|
readonly webSearch: false;
|
|
8312
|
+
readonly jsonResponseWithTools: false;
|
|
7967
8313
|
};
|
|
7968
8314
|
};
|
|
7969
8315
|
readonly "llama-3.2-3b-instruct": {
|
|
@@ -7987,6 +8333,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
7987
8333
|
readonly tools: false;
|
|
7988
8334
|
readonly reasoning: false;
|
|
7989
8335
|
readonly webSearch: false;
|
|
8336
|
+
readonly jsonResponseWithTools: false;
|
|
7990
8337
|
};
|
|
7991
8338
|
};
|
|
7992
8339
|
readonly "llama-3.3-70b-instruct": {
|
|
@@ -8010,6 +8357,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8010
8357
|
readonly tools: true;
|
|
8011
8358
|
readonly reasoning: false;
|
|
8012
8359
|
readonly webSearch: false;
|
|
8360
|
+
readonly jsonResponseWithTools: false;
|
|
8013
8361
|
};
|
|
8014
8362
|
};
|
|
8015
8363
|
readonly "llama-4-scout-17b-instruct": {
|
|
@@ -8033,6 +8381,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8033
8381
|
readonly tools: false;
|
|
8034
8382
|
readonly reasoning: false;
|
|
8035
8383
|
readonly webSearch: false;
|
|
8384
|
+
readonly jsonResponseWithTools: false;
|
|
8036
8385
|
};
|
|
8037
8386
|
};
|
|
8038
8387
|
readonly "llama-4-maverick-17b-instruct": {
|
|
@@ -8056,6 +8405,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8056
8405
|
readonly tools: false;
|
|
8057
8406
|
readonly reasoning: false;
|
|
8058
8407
|
readonly webSearch: false;
|
|
8408
|
+
readonly jsonResponseWithTools: false;
|
|
8059
8409
|
};
|
|
8060
8410
|
};
|
|
8061
8411
|
readonly "deepseek-r1-0528": {
|
|
@@ -8079,6 +8429,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8079
8429
|
readonly tools: false;
|
|
8080
8430
|
readonly reasoning: false;
|
|
8081
8431
|
readonly webSearch: false;
|
|
8432
|
+
readonly jsonResponseWithTools: false;
|
|
8082
8433
|
};
|
|
8083
8434
|
};
|
|
8084
8435
|
readonly "deepseek-v3.2": {
|
|
@@ -8102,6 +8453,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8102
8453
|
readonly tools: true;
|
|
8103
8454
|
readonly reasoning: false;
|
|
8104
8455
|
readonly webSearch: false;
|
|
8456
|
+
readonly jsonResponseWithTools: false;
|
|
8105
8457
|
};
|
|
8106
8458
|
};
|
|
8107
8459
|
readonly "mistral-large-latest": {
|
|
@@ -8125,6 +8477,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8125
8477
|
readonly tools: false;
|
|
8126
8478
|
readonly reasoning: false;
|
|
8127
8479
|
readonly webSearch: false;
|
|
8480
|
+
readonly jsonResponseWithTools: false;
|
|
8128
8481
|
};
|
|
8129
8482
|
};
|
|
8130
8483
|
readonly "mistral-large-2512": {
|
|
@@ -8148,6 +8501,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8148
8501
|
readonly tools: false;
|
|
8149
8502
|
readonly reasoning: false;
|
|
8150
8503
|
readonly webSearch: false;
|
|
8504
|
+
readonly jsonResponseWithTools: false;
|
|
8151
8505
|
};
|
|
8152
8506
|
};
|
|
8153
8507
|
readonly "mistral-small-2506": {
|
|
@@ -8171,6 +8525,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8171
8525
|
readonly tools: false;
|
|
8172
8526
|
readonly reasoning: false;
|
|
8173
8527
|
readonly webSearch: false;
|
|
8528
|
+
readonly jsonResponseWithTools: false;
|
|
8174
8529
|
};
|
|
8175
8530
|
};
|
|
8176
8531
|
readonly "pixtral-large-latest": {
|
|
@@ -8194,6 +8549,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8194
8549
|
readonly tools: false;
|
|
8195
8550
|
readonly reasoning: false;
|
|
8196
8551
|
readonly webSearch: false;
|
|
8552
|
+
readonly jsonResponseWithTools: false;
|
|
8197
8553
|
};
|
|
8198
8554
|
};
|
|
8199
8555
|
readonly "ministral-14b-2512": {
|
|
@@ -8217,6 +8573,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8217
8573
|
readonly tools: false;
|
|
8218
8574
|
readonly reasoning: false;
|
|
8219
8575
|
readonly webSearch: false;
|
|
8576
|
+
readonly jsonResponseWithTools: false;
|
|
8220
8577
|
};
|
|
8221
8578
|
};
|
|
8222
8579
|
readonly "ministral-8b-2512": {
|
|
@@ -8240,6 +8597,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8240
8597
|
readonly tools: false;
|
|
8241
8598
|
readonly reasoning: false;
|
|
8242
8599
|
readonly webSearch: false;
|
|
8600
|
+
readonly jsonResponseWithTools: false;
|
|
8243
8601
|
};
|
|
8244
8602
|
};
|
|
8245
8603
|
readonly "ministral-3b-2512": {
|
|
@@ -8263,6 +8621,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8263
8621
|
readonly tools: false;
|
|
8264
8622
|
readonly reasoning: false;
|
|
8265
8623
|
readonly webSearch: false;
|
|
8624
|
+
readonly jsonResponseWithTools: false;
|
|
8266
8625
|
};
|
|
8267
8626
|
};
|
|
8268
8627
|
readonly "codestral-2508": {
|
|
@@ -8286,6 +8645,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8286
8645
|
readonly tools: false;
|
|
8287
8646
|
readonly reasoning: false;
|
|
8288
8647
|
readonly webSearch: false;
|
|
8648
|
+
readonly jsonResponseWithTools: false;
|
|
8289
8649
|
};
|
|
8290
8650
|
};
|
|
8291
8651
|
readonly "devstral-2512": {
|
|
@@ -8309,6 +8669,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8309
8669
|
readonly tools: false;
|
|
8310
8670
|
readonly reasoning: false;
|
|
8311
8671
|
readonly webSearch: false;
|
|
8672
|
+
readonly jsonResponseWithTools: false;
|
|
8312
8673
|
};
|
|
8313
8674
|
};
|
|
8314
8675
|
readonly "devstral-small-2507": {
|
|
@@ -8332,6 +8693,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8332
8693
|
readonly tools: false;
|
|
8333
8694
|
readonly reasoning: false;
|
|
8334
8695
|
readonly webSearch: false;
|
|
8696
|
+
readonly jsonResponseWithTools: false;
|
|
8335
8697
|
};
|
|
8336
8698
|
};
|
|
8337
8699
|
readonly "minimax-m2.5": {
|
|
@@ -8355,6 +8717,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8355
8717
|
readonly tools: true;
|
|
8356
8718
|
readonly reasoning: true;
|
|
8357
8719
|
readonly webSearch: false;
|
|
8720
|
+
readonly jsonResponseWithTools: false;
|
|
8358
8721
|
};
|
|
8359
8722
|
};
|
|
8360
8723
|
readonly "minimax/minimax-m2.5": {
|
|
@@ -8378,6 +8741,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8378
8741
|
readonly tools: true;
|
|
8379
8742
|
readonly reasoning: true;
|
|
8380
8743
|
readonly webSearch: false;
|
|
8744
|
+
readonly jsonResponseWithTools: false;
|
|
8381
8745
|
};
|
|
8382
8746
|
};
|
|
8383
8747
|
readonly "novita/minimax-m2.5": {
|
|
@@ -8401,6 +8765,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8401
8765
|
readonly tools: true;
|
|
8402
8766
|
readonly reasoning: true;
|
|
8403
8767
|
readonly webSearch: false;
|
|
8768
|
+
readonly jsonResponseWithTools: false;
|
|
8404
8769
|
};
|
|
8405
8770
|
};
|
|
8406
8771
|
readonly "minimax-m2": {
|
|
@@ -8424,6 +8789,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8424
8789
|
readonly tools: false;
|
|
8425
8790
|
readonly reasoning: true;
|
|
8426
8791
|
readonly webSearch: false;
|
|
8792
|
+
readonly jsonResponseWithTools: false;
|
|
8427
8793
|
};
|
|
8428
8794
|
};
|
|
8429
8795
|
readonly "minimax-m2.1": {
|
|
@@ -8447,6 +8813,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8447
8813
|
readonly tools: false;
|
|
8448
8814
|
readonly reasoning: true;
|
|
8449
8815
|
readonly webSearch: false;
|
|
8816
|
+
readonly jsonResponseWithTools: false;
|
|
8450
8817
|
};
|
|
8451
8818
|
};
|
|
8452
8819
|
readonly "minimax-m2.1-lightning": {
|
|
@@ -8470,6 +8837,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8470
8837
|
readonly tools: false;
|
|
8471
8838
|
readonly reasoning: true;
|
|
8472
8839
|
readonly webSearch: false;
|
|
8840
|
+
readonly jsonResponseWithTools: false;
|
|
8473
8841
|
};
|
|
8474
8842
|
};
|
|
8475
8843
|
readonly "minimax-text-01": {
|
|
@@ -8493,6 +8861,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8493
8861
|
readonly tools: false;
|
|
8494
8862
|
readonly reasoning: false;
|
|
8495
8863
|
readonly webSearch: false;
|
|
8864
|
+
readonly jsonResponseWithTools: false;
|
|
8496
8865
|
};
|
|
8497
8866
|
};
|
|
8498
8867
|
readonly "kimi-k2": {
|
|
@@ -8516,6 +8885,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8516
8885
|
readonly tools: true;
|
|
8517
8886
|
readonly reasoning: false;
|
|
8518
8887
|
readonly webSearch: false;
|
|
8888
|
+
readonly jsonResponseWithTools: false;
|
|
8519
8889
|
};
|
|
8520
8890
|
};
|
|
8521
8891
|
readonly "kimi-k2-thinking-turbo": {
|
|
@@ -8539,6 +8909,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8539
8909
|
readonly tools: true;
|
|
8540
8910
|
readonly reasoning: true;
|
|
8541
8911
|
readonly webSearch: false;
|
|
8912
|
+
readonly jsonResponseWithTools: false;
|
|
8542
8913
|
};
|
|
8543
8914
|
};
|
|
8544
8915
|
readonly "moonshot/kimi-k2.5": {
|
|
@@ -8562,6 +8933,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8562
8933
|
readonly tools: true;
|
|
8563
8934
|
readonly reasoning: false;
|
|
8564
8935
|
readonly webSearch: false;
|
|
8936
|
+
readonly jsonResponseWithTools: false;
|
|
8565
8937
|
};
|
|
8566
8938
|
};
|
|
8567
8939
|
readonly "qwen-max": {
|
|
@@ -8585,6 +8957,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8585
8957
|
readonly tools: true;
|
|
8586
8958
|
readonly reasoning: false;
|
|
8587
8959
|
readonly webSearch: false;
|
|
8960
|
+
readonly jsonResponseWithTools: false;
|
|
8588
8961
|
};
|
|
8589
8962
|
};
|
|
8590
8963
|
readonly "qwen-max-latest": {
|
|
@@ -8608,6 +8981,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8608
8981
|
readonly tools: true;
|
|
8609
8982
|
readonly reasoning: false;
|
|
8610
8983
|
readonly webSearch: false;
|
|
8984
|
+
readonly jsonResponseWithTools: false;
|
|
8611
8985
|
};
|
|
8612
8986
|
};
|
|
8613
8987
|
readonly "qwen-plus": {
|
|
@@ -8631,6 +9005,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8631
9005
|
readonly tools: true;
|
|
8632
9006
|
readonly reasoning: false;
|
|
8633
9007
|
readonly webSearch: false;
|
|
9008
|
+
readonly jsonResponseWithTools: false;
|
|
8634
9009
|
};
|
|
8635
9010
|
};
|
|
8636
9011
|
readonly "qwen-plus-latest": {
|
|
@@ -8654,6 +9029,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8654
9029
|
readonly tools: true;
|
|
8655
9030
|
readonly reasoning: false;
|
|
8656
9031
|
readonly webSearch: false;
|
|
9032
|
+
readonly jsonResponseWithTools: false;
|
|
8657
9033
|
};
|
|
8658
9034
|
};
|
|
8659
9035
|
readonly "qwen-flash": {
|
|
@@ -8677,6 +9053,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8677
9053
|
readonly tools: true;
|
|
8678
9054
|
readonly reasoning: false;
|
|
8679
9055
|
readonly webSearch: false;
|
|
9056
|
+
readonly jsonResponseWithTools: false;
|
|
8680
9057
|
};
|
|
8681
9058
|
};
|
|
8682
9059
|
readonly "qwen-turbo": {
|
|
@@ -8700,6 +9077,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8700
9077
|
readonly tools: false;
|
|
8701
9078
|
readonly reasoning: false;
|
|
8702
9079
|
readonly webSearch: false;
|
|
9080
|
+
readonly jsonResponseWithTools: false;
|
|
8703
9081
|
};
|
|
8704
9082
|
};
|
|
8705
9083
|
readonly "qwen-omni-turbo": {
|
|
@@ -8723,6 +9101,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8723
9101
|
readonly tools: false;
|
|
8724
9102
|
readonly reasoning: false;
|
|
8725
9103
|
readonly webSearch: false;
|
|
9104
|
+
readonly jsonResponseWithTools: false;
|
|
8726
9105
|
};
|
|
8727
9106
|
};
|
|
8728
9107
|
readonly "qwen-vl-max": {
|
|
@@ -8746,6 +9125,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8746
9125
|
readonly tools: false;
|
|
8747
9126
|
readonly reasoning: false;
|
|
8748
9127
|
readonly webSearch: false;
|
|
9128
|
+
readonly jsonResponseWithTools: false;
|
|
8749
9129
|
};
|
|
8750
9130
|
};
|
|
8751
9131
|
readonly "qwen-vl-plus": {
|
|
@@ -8769,6 +9149,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8769
9149
|
readonly tools: false;
|
|
8770
9150
|
readonly reasoning: false;
|
|
8771
9151
|
readonly webSearch: false;
|
|
9152
|
+
readonly jsonResponseWithTools: false;
|
|
8772
9153
|
};
|
|
8773
9154
|
};
|
|
8774
9155
|
readonly "qwen-coder-plus": {
|
|
@@ -8792,6 +9173,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8792
9173
|
readonly tools: true;
|
|
8793
9174
|
readonly reasoning: false;
|
|
8794
9175
|
readonly webSearch: false;
|
|
9176
|
+
readonly jsonResponseWithTools: false;
|
|
8795
9177
|
};
|
|
8796
9178
|
};
|
|
8797
9179
|
readonly "qwq-plus": {
|
|
@@ -8815,6 +9197,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8815
9197
|
readonly tools: false;
|
|
8816
9198
|
readonly reasoning: true;
|
|
8817
9199
|
readonly webSearch: false;
|
|
9200
|
+
readonly jsonResponseWithTools: false;
|
|
8818
9201
|
};
|
|
8819
9202
|
};
|
|
8820
9203
|
readonly "qwen3-max": {
|
|
@@ -8838,6 +9221,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8838
9221
|
readonly tools: true;
|
|
8839
9222
|
readonly reasoning: true;
|
|
8840
9223
|
readonly webSearch: false;
|
|
9224
|
+
readonly jsonResponseWithTools: false;
|
|
8841
9225
|
};
|
|
8842
9226
|
};
|
|
8843
9227
|
readonly "qwen3-max-2026-01-23": {
|
|
@@ -8861,6 +9245,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8861
9245
|
readonly tools: true;
|
|
8862
9246
|
readonly reasoning: true;
|
|
8863
9247
|
readonly webSearch: false;
|
|
9248
|
+
readonly jsonResponseWithTools: false;
|
|
8864
9249
|
};
|
|
8865
9250
|
};
|
|
8866
9251
|
readonly "qwen3-32b": {
|
|
@@ -8884,6 +9269,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8884
9269
|
readonly tools: true;
|
|
8885
9270
|
readonly reasoning: false;
|
|
8886
9271
|
readonly webSearch: false;
|
|
9272
|
+
readonly jsonResponseWithTools: false;
|
|
8887
9273
|
};
|
|
8888
9274
|
};
|
|
8889
9275
|
readonly "qwen3-32b-fp8": {
|
|
@@ -8907,6 +9293,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8907
9293
|
readonly tools: false;
|
|
8908
9294
|
readonly reasoning: false;
|
|
8909
9295
|
readonly webSearch: false;
|
|
9296
|
+
readonly jsonResponseWithTools: false;
|
|
8910
9297
|
};
|
|
8911
9298
|
};
|
|
8912
9299
|
readonly "qwen3-235b-a22b-instruct-2507": {
|
|
@@ -8930,6 +9317,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8930
9317
|
readonly tools: true;
|
|
8931
9318
|
readonly reasoning: false;
|
|
8932
9319
|
readonly webSearch: false;
|
|
9320
|
+
readonly jsonResponseWithTools: false;
|
|
8933
9321
|
};
|
|
8934
9322
|
};
|
|
8935
9323
|
readonly "qwen3-235b-a22b-thinking-2507": {
|
|
@@ -8953,6 +9341,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8953
9341
|
readonly tools: true;
|
|
8954
9342
|
readonly reasoning: true;
|
|
8955
9343
|
readonly webSearch: false;
|
|
9344
|
+
readonly jsonResponseWithTools: false;
|
|
8956
9345
|
};
|
|
8957
9346
|
};
|
|
8958
9347
|
readonly "qwen3-235b-a22b-fp8": {
|
|
@@ -8976,6 +9365,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8976
9365
|
readonly tools: false;
|
|
8977
9366
|
readonly reasoning: false;
|
|
8978
9367
|
readonly webSearch: false;
|
|
9368
|
+
readonly jsonResponseWithTools: false;
|
|
8979
9369
|
};
|
|
8980
9370
|
};
|
|
8981
9371
|
readonly "qwen3-30b-a3b-instruct-2507": {
|
|
@@ -8999,6 +9389,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
8999
9389
|
readonly tools: true;
|
|
9000
9390
|
readonly reasoning: false;
|
|
9001
9391
|
readonly webSearch: false;
|
|
9392
|
+
readonly jsonResponseWithTools: false;
|
|
9002
9393
|
};
|
|
9003
9394
|
};
|
|
9004
9395
|
readonly "qwen3-30b-a3b-thinking-2507": {
|
|
@@ -9022,6 +9413,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9022
9413
|
readonly tools: true;
|
|
9023
9414
|
readonly reasoning: true;
|
|
9024
9415
|
readonly webSearch: false;
|
|
9416
|
+
readonly jsonResponseWithTools: false;
|
|
9025
9417
|
};
|
|
9026
9418
|
};
|
|
9027
9419
|
readonly "qwen3-30b-a3b-fp8": {
|
|
@@ -9045,6 +9437,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9045
9437
|
readonly tools: false;
|
|
9046
9438
|
readonly reasoning: false;
|
|
9047
9439
|
readonly webSearch: false;
|
|
9440
|
+
readonly jsonResponseWithTools: false;
|
|
9048
9441
|
};
|
|
9049
9442
|
};
|
|
9050
9443
|
readonly "qwen3-4b-fp8": {
|
|
@@ -9068,6 +9461,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9068
9461
|
readonly tools: false;
|
|
9069
9462
|
readonly reasoning: false;
|
|
9070
9463
|
readonly webSearch: false;
|
|
9464
|
+
readonly jsonResponseWithTools: false;
|
|
9071
9465
|
};
|
|
9072
9466
|
};
|
|
9073
9467
|
readonly "qwen35-397b-a17b": {
|
|
@@ -9091,6 +9485,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9091
9485
|
readonly tools: true;
|
|
9092
9486
|
readonly reasoning: true;
|
|
9093
9487
|
readonly webSearch: true;
|
|
9488
|
+
readonly jsonResponseWithTools: false;
|
|
9094
9489
|
};
|
|
9095
9490
|
};
|
|
9096
9491
|
readonly "qwen3-next-80b-a3b-thinking": {
|
|
@@ -9114,6 +9509,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9114
9509
|
readonly tools: true;
|
|
9115
9510
|
readonly reasoning: true;
|
|
9116
9511
|
readonly webSearch: false;
|
|
9512
|
+
readonly jsonResponseWithTools: false;
|
|
9117
9513
|
};
|
|
9118
9514
|
};
|
|
9119
9515
|
readonly "qwen3-next-80b-a3b-instruct": {
|
|
@@ -9137,6 +9533,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9137
9533
|
readonly tools: true;
|
|
9138
9534
|
readonly reasoning: false;
|
|
9139
9535
|
readonly webSearch: false;
|
|
9536
|
+
readonly jsonResponseWithTools: false;
|
|
9140
9537
|
};
|
|
9141
9538
|
};
|
|
9142
9539
|
readonly "qwen3-coder-plus": {
|
|
@@ -9160,6 +9557,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9160
9557
|
readonly tools: true;
|
|
9161
9558
|
readonly reasoning: false;
|
|
9162
9559
|
readonly webSearch: false;
|
|
9560
|
+
readonly jsonResponseWithTools: false;
|
|
9163
9561
|
};
|
|
9164
9562
|
};
|
|
9165
9563
|
readonly "qwen3-coder-flash": {
|
|
@@ -9183,6 +9581,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9183
9581
|
readonly tools: true;
|
|
9184
9582
|
readonly reasoning: false;
|
|
9185
9583
|
readonly webSearch: false;
|
|
9584
|
+
readonly jsonResponseWithTools: false;
|
|
9186
9585
|
};
|
|
9187
9586
|
};
|
|
9188
9587
|
readonly "qwen3-coder-30b-a3b-instruct": {
|
|
@@ -9206,6 +9605,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9206
9605
|
readonly tools: true;
|
|
9207
9606
|
readonly reasoning: false;
|
|
9208
9607
|
readonly webSearch: false;
|
|
9608
|
+
readonly jsonResponseWithTools: false;
|
|
9209
9609
|
};
|
|
9210
9610
|
};
|
|
9211
9611
|
readonly "qwen3-vl-8b-instruct": {
|
|
@@ -9229,6 +9629,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9229
9629
|
readonly tools: false;
|
|
9230
9630
|
readonly reasoning: false;
|
|
9231
9631
|
readonly webSearch: false;
|
|
9632
|
+
readonly jsonResponseWithTools: false;
|
|
9232
9633
|
};
|
|
9233
9634
|
};
|
|
9234
9635
|
readonly "qwen3-vl-plus": {
|
|
@@ -9252,6 +9653,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9252
9653
|
readonly tools: false;
|
|
9253
9654
|
readonly reasoning: false;
|
|
9254
9655
|
readonly webSearch: false;
|
|
9656
|
+
readonly jsonResponseWithTools: false;
|
|
9255
9657
|
};
|
|
9256
9658
|
};
|
|
9257
9659
|
readonly "qwen3-vl-flash": {
|
|
@@ -9275,6 +9677,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9275
9677
|
readonly tools: true;
|
|
9276
9678
|
readonly reasoning: false;
|
|
9277
9679
|
readonly webSearch: false;
|
|
9680
|
+
readonly jsonResponseWithTools: false;
|
|
9278
9681
|
};
|
|
9279
9682
|
};
|
|
9280
9683
|
readonly "qwen3-vl-30b-a3b-instruct": {
|
|
@@ -9298,6 +9701,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9298
9701
|
readonly tools: true;
|
|
9299
9702
|
readonly reasoning: false;
|
|
9300
9703
|
readonly webSearch: false;
|
|
9704
|
+
readonly jsonResponseWithTools: false;
|
|
9301
9705
|
};
|
|
9302
9706
|
};
|
|
9303
9707
|
readonly "qwen3-vl-30b-a3b-thinking": {
|
|
@@ -9321,6 +9725,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9321
9725
|
readonly tools: true;
|
|
9322
9726
|
readonly reasoning: true;
|
|
9323
9727
|
readonly webSearch: false;
|
|
9728
|
+
readonly jsonResponseWithTools: false;
|
|
9324
9729
|
};
|
|
9325
9730
|
};
|
|
9326
9731
|
readonly "qwen3-vl-235b-a22b-instruct": {
|
|
@@ -9344,6 +9749,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9344
9749
|
readonly tools: true;
|
|
9345
9750
|
readonly reasoning: false;
|
|
9346
9751
|
readonly webSearch: false;
|
|
9752
|
+
readonly jsonResponseWithTools: false;
|
|
9347
9753
|
};
|
|
9348
9754
|
};
|
|
9349
9755
|
readonly "qwen3-vl-235b-a22b-thinking": {
|
|
@@ -9367,6 +9773,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9367
9773
|
readonly tools: false;
|
|
9368
9774
|
readonly reasoning: true;
|
|
9369
9775
|
readonly webSearch: false;
|
|
9776
|
+
readonly jsonResponseWithTools: false;
|
|
9370
9777
|
};
|
|
9371
9778
|
};
|
|
9372
9779
|
readonly "qwen2-5-vl-32b-instruct": {
|
|
@@ -9390,6 +9797,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9390
9797
|
readonly tools: false;
|
|
9391
9798
|
readonly reasoning: false;
|
|
9392
9799
|
readonly webSearch: false;
|
|
9800
|
+
readonly jsonResponseWithTools: false;
|
|
9393
9801
|
};
|
|
9394
9802
|
};
|
|
9395
9803
|
readonly "glm-5": {
|
|
@@ -9413,6 +9821,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9413
9821
|
readonly tools: true;
|
|
9414
9822
|
readonly reasoning: true;
|
|
9415
9823
|
readonly webSearch: true;
|
|
9824
|
+
readonly jsonResponseWithTools: false;
|
|
9416
9825
|
};
|
|
9417
9826
|
};
|
|
9418
9827
|
readonly "glm-4.5": {
|
|
@@ -9436,6 +9845,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9436
9845
|
readonly tools: true;
|
|
9437
9846
|
readonly reasoning: true;
|
|
9438
9847
|
readonly webSearch: true;
|
|
9848
|
+
readonly jsonResponseWithTools: false;
|
|
9439
9849
|
};
|
|
9440
9850
|
};
|
|
9441
9851
|
readonly "glm-4.5v": {
|
|
@@ -9459,6 +9869,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9459
9869
|
readonly tools: true;
|
|
9460
9870
|
readonly reasoning: true;
|
|
9461
9871
|
readonly webSearch: false;
|
|
9872
|
+
readonly jsonResponseWithTools: false;
|
|
9462
9873
|
};
|
|
9463
9874
|
};
|
|
9464
9875
|
readonly "glm-4.5-air": {
|
|
@@ -9482,6 +9893,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9482
9893
|
readonly tools: true;
|
|
9483
9894
|
readonly reasoning: false;
|
|
9484
9895
|
readonly webSearch: false;
|
|
9896
|
+
readonly jsonResponseWithTools: false;
|
|
9485
9897
|
};
|
|
9486
9898
|
};
|
|
9487
9899
|
readonly "glm-4.5-x": {
|
|
@@ -9505,6 +9917,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9505
9917
|
readonly tools: true;
|
|
9506
9918
|
readonly reasoning: true;
|
|
9507
9919
|
readonly webSearch: false;
|
|
9920
|
+
readonly jsonResponseWithTools: false;
|
|
9508
9921
|
};
|
|
9509
9922
|
};
|
|
9510
9923
|
readonly "glm-4.5-airx": {
|
|
@@ -9528,6 +9941,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9528
9941
|
readonly tools: true;
|
|
9529
9942
|
readonly reasoning: false;
|
|
9530
9943
|
readonly webSearch: false;
|
|
9944
|
+
readonly jsonResponseWithTools: false;
|
|
9531
9945
|
};
|
|
9532
9946
|
};
|
|
9533
9947
|
readonly "glm-4.5-flash": {
|
|
@@ -9551,6 +9965,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9551
9965
|
readonly tools: true;
|
|
9552
9966
|
readonly reasoning: false;
|
|
9553
9967
|
readonly webSearch: false;
|
|
9968
|
+
readonly jsonResponseWithTools: false;
|
|
9554
9969
|
};
|
|
9555
9970
|
};
|
|
9556
9971
|
readonly "glm-4.6": {
|
|
@@ -9574,6 +9989,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9574
9989
|
readonly tools: true;
|
|
9575
9990
|
readonly reasoning: true;
|
|
9576
9991
|
readonly webSearch: true;
|
|
9992
|
+
readonly jsonResponseWithTools: false;
|
|
9577
9993
|
};
|
|
9578
9994
|
};
|
|
9579
9995
|
readonly "glm-4.6v": {
|
|
@@ -9597,6 +10013,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9597
10013
|
readonly tools: true;
|
|
9598
10014
|
readonly reasoning: true;
|
|
9599
10015
|
readonly webSearch: false;
|
|
10016
|
+
readonly jsonResponseWithTools: false;
|
|
9600
10017
|
};
|
|
9601
10018
|
};
|
|
9602
10019
|
readonly "glm-4.6v-flashx": {
|
|
@@ -9620,6 +10037,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9620
10037
|
readonly tools: true;
|
|
9621
10038
|
readonly reasoning: true;
|
|
9622
10039
|
readonly webSearch: false;
|
|
10040
|
+
readonly jsonResponseWithTools: false;
|
|
9623
10041
|
};
|
|
9624
10042
|
};
|
|
9625
10043
|
readonly "glm-4.6v-flash": {
|
|
@@ -9643,6 +10061,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9643
10061
|
readonly tools: true;
|
|
9644
10062
|
readonly reasoning: true;
|
|
9645
10063
|
readonly webSearch: false;
|
|
10064
|
+
readonly jsonResponseWithTools: false;
|
|
9646
10065
|
};
|
|
9647
10066
|
};
|
|
9648
10067
|
readonly "glm-4.7": {
|
|
@@ -9666,6 +10085,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9666
10085
|
readonly tools: true;
|
|
9667
10086
|
readonly reasoning: true;
|
|
9668
10087
|
readonly webSearch: true;
|
|
10088
|
+
readonly jsonResponseWithTools: false;
|
|
9669
10089
|
};
|
|
9670
10090
|
};
|
|
9671
10091
|
readonly "glm-4.7-flashx": {
|
|
@@ -9689,6 +10109,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9689
10109
|
readonly tools: true;
|
|
9690
10110
|
readonly reasoning: true;
|
|
9691
10111
|
readonly webSearch: false;
|
|
10112
|
+
readonly jsonResponseWithTools: false;
|
|
9692
10113
|
};
|
|
9693
10114
|
};
|
|
9694
10115
|
readonly "glm-4.7-flash": {
|
|
@@ -9712,6 +10133,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9712
10133
|
readonly tools: true;
|
|
9713
10134
|
readonly reasoning: true;
|
|
9714
10135
|
readonly webSearch: false;
|
|
10136
|
+
readonly jsonResponseWithTools: false;
|
|
9715
10137
|
};
|
|
9716
10138
|
};
|
|
9717
10139
|
readonly "glm-4-32b-0414-128k": {
|
|
@@ -9735,6 +10157,7 @@ export declare const LLMAPI_MODELS: {
|
|
|
9735
10157
|
readonly tools: true;
|
|
9736
10158
|
readonly reasoning: false;
|
|
9737
10159
|
readonly webSearch: false;
|
|
10160
|
+
readonly jsonResponseWithTools: false;
|
|
9738
10161
|
};
|
|
9739
10162
|
};
|
|
9740
10163
|
};
|