@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
|
@@ -2153,6 +2153,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2153
2153
|
readonly tools: true;
|
|
2154
2154
|
readonly reasoning: false;
|
|
2155
2155
|
readonly webSearch: false;
|
|
2156
|
+
readonly jsonResponseWithTools: true;
|
|
2156
2157
|
};
|
|
2157
2158
|
};
|
|
2158
2159
|
readonly "gpt-4": {
|
|
@@ -2176,6 +2177,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2176
2177
|
readonly tools: true;
|
|
2177
2178
|
readonly reasoning: false;
|
|
2178
2179
|
readonly webSearch: false;
|
|
2180
|
+
readonly jsonResponseWithTools: true;
|
|
2179
2181
|
};
|
|
2180
2182
|
};
|
|
2181
2183
|
readonly "gpt-4-turbo": {
|
|
@@ -2199,6 +2201,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2199
2201
|
readonly tools: true;
|
|
2200
2202
|
readonly reasoning: false;
|
|
2201
2203
|
readonly webSearch: false;
|
|
2204
|
+
readonly jsonResponseWithTools: true;
|
|
2202
2205
|
};
|
|
2203
2206
|
};
|
|
2204
2207
|
readonly "gpt-4o": {
|
|
@@ -2222,6 +2225,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2222
2225
|
readonly tools: true;
|
|
2223
2226
|
readonly reasoning: false;
|
|
2224
2227
|
readonly webSearch: true;
|
|
2228
|
+
readonly jsonResponseWithTools: true;
|
|
2225
2229
|
};
|
|
2226
2230
|
};
|
|
2227
2231
|
readonly "gpt-4o-mini": {
|
|
@@ -2245,6 +2249,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2245
2249
|
readonly tools: true;
|
|
2246
2250
|
readonly reasoning: false;
|
|
2247
2251
|
readonly webSearch: false;
|
|
2252
|
+
readonly jsonResponseWithTools: true;
|
|
2248
2253
|
};
|
|
2249
2254
|
};
|
|
2250
2255
|
readonly "gpt-4o-search-preview": {
|
|
@@ -2268,6 +2273,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2268
2273
|
readonly tools: false;
|
|
2269
2274
|
readonly reasoning: false;
|
|
2270
2275
|
readonly webSearch: true;
|
|
2276
|
+
readonly jsonResponseWithTools: true;
|
|
2271
2277
|
};
|
|
2272
2278
|
};
|
|
2273
2279
|
readonly "gpt-4o-mini-search-preview": {
|
|
@@ -2291,6 +2297,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2291
2297
|
readonly tools: false;
|
|
2292
2298
|
readonly reasoning: false;
|
|
2293
2299
|
readonly webSearch: true;
|
|
2300
|
+
readonly jsonResponseWithTools: true;
|
|
2294
2301
|
};
|
|
2295
2302
|
};
|
|
2296
2303
|
readonly "gpt-4.1": {
|
|
@@ -2314,6 +2321,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2314
2321
|
readonly tools: true;
|
|
2315
2322
|
readonly reasoning: false;
|
|
2316
2323
|
readonly webSearch: false;
|
|
2324
|
+
readonly jsonResponseWithTools: true;
|
|
2317
2325
|
};
|
|
2318
2326
|
};
|
|
2319
2327
|
readonly "gpt-4.1-mini": {
|
|
@@ -2337,6 +2345,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2337
2345
|
readonly tools: true;
|
|
2338
2346
|
readonly reasoning: false;
|
|
2339
2347
|
readonly webSearch: false;
|
|
2348
|
+
readonly jsonResponseWithTools: true;
|
|
2340
2349
|
};
|
|
2341
2350
|
};
|
|
2342
2351
|
readonly "gpt-4.1-nano": {
|
|
@@ -2360,6 +2369,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2360
2369
|
readonly tools: true;
|
|
2361
2370
|
readonly reasoning: false;
|
|
2362
2371
|
readonly webSearch: false;
|
|
2372
|
+
readonly jsonResponseWithTools: true;
|
|
2363
2373
|
};
|
|
2364
2374
|
};
|
|
2365
2375
|
readonly o1: {
|
|
@@ -2383,6 +2393,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2383
2393
|
readonly tools: false;
|
|
2384
2394
|
readonly reasoning: true;
|
|
2385
2395
|
readonly webSearch: false;
|
|
2396
|
+
readonly jsonResponseWithTools: false;
|
|
2386
2397
|
};
|
|
2387
2398
|
};
|
|
2388
2399
|
readonly o3: {
|
|
@@ -2406,6 +2417,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2406
2417
|
readonly tools: false;
|
|
2407
2418
|
readonly reasoning: false;
|
|
2408
2419
|
readonly webSearch: false;
|
|
2420
|
+
readonly jsonResponseWithTools: false;
|
|
2409
2421
|
};
|
|
2410
2422
|
};
|
|
2411
2423
|
readonly "o3-mini": {
|
|
@@ -2429,6 +2441,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2429
2441
|
readonly tools: false;
|
|
2430
2442
|
readonly reasoning: false;
|
|
2431
2443
|
readonly webSearch: false;
|
|
2444
|
+
readonly jsonResponseWithTools: false;
|
|
2432
2445
|
};
|
|
2433
2446
|
};
|
|
2434
2447
|
readonly "gpt-oss-20b": {
|
|
@@ -2452,6 +2465,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2452
2465
|
readonly tools: true;
|
|
2453
2466
|
readonly reasoning: true;
|
|
2454
2467
|
readonly webSearch: false;
|
|
2468
|
+
readonly jsonResponseWithTools: true;
|
|
2455
2469
|
};
|
|
2456
2470
|
};
|
|
2457
2471
|
readonly "gpt-5": {
|
|
@@ -2475,6 +2489,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2475
2489
|
readonly tools: true;
|
|
2476
2490
|
readonly reasoning: true;
|
|
2477
2491
|
readonly webSearch: true;
|
|
2492
|
+
readonly jsonResponseWithTools: true;
|
|
2478
2493
|
};
|
|
2479
2494
|
};
|
|
2480
2495
|
readonly "gpt-5-mini": {
|
|
@@ -2498,6 +2513,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2498
2513
|
readonly tools: true;
|
|
2499
2514
|
readonly reasoning: true;
|
|
2500
2515
|
readonly webSearch: true;
|
|
2516
|
+
readonly jsonResponseWithTools: true;
|
|
2501
2517
|
};
|
|
2502
2518
|
};
|
|
2503
2519
|
readonly "gpt-5-nano": {
|
|
@@ -2521,6 +2537,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2521
2537
|
readonly tools: true;
|
|
2522
2538
|
readonly reasoning: true;
|
|
2523
2539
|
readonly webSearch: true;
|
|
2540
|
+
readonly jsonResponseWithTools: true;
|
|
2524
2541
|
};
|
|
2525
2542
|
};
|
|
2526
2543
|
readonly "gpt-5-codex": {
|
|
@@ -2544,6 +2561,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2544
2561
|
readonly tools: true;
|
|
2545
2562
|
readonly reasoning: true;
|
|
2546
2563
|
readonly webSearch: false;
|
|
2564
|
+
readonly jsonResponseWithTools: true;
|
|
2547
2565
|
};
|
|
2548
2566
|
};
|
|
2549
2567
|
readonly "gpt-5-pro": {
|
|
@@ -2567,6 +2585,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2567
2585
|
readonly tools: true;
|
|
2568
2586
|
readonly reasoning: true;
|
|
2569
2587
|
readonly webSearch: true;
|
|
2588
|
+
readonly jsonResponseWithTools: true;
|
|
2570
2589
|
};
|
|
2571
2590
|
};
|
|
2572
2591
|
readonly "gpt-5.1": {
|
|
@@ -2590,6 +2609,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2590
2609
|
readonly tools: true;
|
|
2591
2610
|
readonly reasoning: true;
|
|
2592
2611
|
readonly webSearch: true;
|
|
2612
|
+
readonly jsonResponseWithTools: true;
|
|
2593
2613
|
};
|
|
2594
2614
|
};
|
|
2595
2615
|
readonly "gpt-5.1-chat": {
|
|
@@ -2613,6 +2633,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2613
2633
|
readonly tools: true;
|
|
2614
2634
|
readonly reasoning: true;
|
|
2615
2635
|
readonly webSearch: false;
|
|
2636
|
+
readonly jsonResponseWithTools: true;
|
|
2616
2637
|
};
|
|
2617
2638
|
};
|
|
2618
2639
|
readonly "gpt-5.1-codex": {
|
|
@@ -2636,6 +2657,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2636
2657
|
readonly tools: true;
|
|
2637
2658
|
readonly reasoning: true;
|
|
2638
2659
|
readonly webSearch: true;
|
|
2660
|
+
readonly jsonResponseWithTools: true;
|
|
2639
2661
|
};
|
|
2640
2662
|
};
|
|
2641
2663
|
readonly "gpt-5.1-codex-mini": {
|
|
@@ -2659,6 +2681,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2659
2681
|
readonly tools: true;
|
|
2660
2682
|
readonly reasoning: true;
|
|
2661
2683
|
readonly webSearch: true;
|
|
2684
|
+
readonly jsonResponseWithTools: true;
|
|
2662
2685
|
};
|
|
2663
2686
|
};
|
|
2664
2687
|
readonly "gpt-5.2": {
|
|
@@ -2682,6 +2705,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2682
2705
|
readonly tools: true;
|
|
2683
2706
|
readonly reasoning: true;
|
|
2684
2707
|
readonly webSearch: true;
|
|
2708
|
+
readonly jsonResponseWithTools: true;
|
|
2685
2709
|
};
|
|
2686
2710
|
};
|
|
2687
2711
|
readonly "gpt-5.2-pro": {
|
|
@@ -2705,6 +2729,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2705
2729
|
readonly tools: true;
|
|
2706
2730
|
readonly reasoning: true;
|
|
2707
2731
|
readonly webSearch: true;
|
|
2732
|
+
readonly jsonResponseWithTools: true;
|
|
2708
2733
|
};
|
|
2709
2734
|
};
|
|
2710
2735
|
readonly "gpt-5.2-codex": {
|
|
@@ -2728,6 +2753,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2728
2753
|
readonly tools: true;
|
|
2729
2754
|
readonly reasoning: true;
|
|
2730
2755
|
readonly webSearch: true;
|
|
2756
|
+
readonly jsonResponseWithTools: true;
|
|
2731
2757
|
};
|
|
2732
2758
|
};
|
|
2733
2759
|
readonly "gpt-5.3-codex": {
|
|
@@ -2751,6 +2777,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2751
2777
|
readonly tools: true;
|
|
2752
2778
|
readonly reasoning: true;
|
|
2753
2779
|
readonly webSearch: true;
|
|
2780
|
+
readonly jsonResponseWithTools: true;
|
|
2754
2781
|
};
|
|
2755
2782
|
};
|
|
2756
2783
|
readonly "gpt-5.4": {
|
|
@@ -2774,6 +2801,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2774
2801
|
readonly tools: true;
|
|
2775
2802
|
readonly reasoning: true;
|
|
2776
2803
|
readonly webSearch: true;
|
|
2804
|
+
readonly jsonResponseWithTools: true;
|
|
2777
2805
|
};
|
|
2778
2806
|
};
|
|
2779
2807
|
readonly "gpt-5.4-pro": {
|
|
@@ -2797,6 +2825,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2797
2825
|
readonly tools: true;
|
|
2798
2826
|
readonly reasoning: true;
|
|
2799
2827
|
readonly webSearch: true;
|
|
2828
|
+
readonly jsonResponseWithTools: true;
|
|
2800
2829
|
};
|
|
2801
2830
|
};
|
|
2802
2831
|
readonly "claude-sonnet-4-20250514": {
|
|
@@ -2820,6 +2849,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2820
2849
|
readonly tools: true;
|
|
2821
2850
|
readonly reasoning: true;
|
|
2822
2851
|
readonly webSearch: true;
|
|
2852
|
+
readonly jsonResponseWithTools: false;
|
|
2823
2853
|
};
|
|
2824
2854
|
};
|
|
2825
2855
|
readonly "claude-sonnet-4-5": {
|
|
@@ -2843,6 +2873,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2843
2873
|
readonly tools: true;
|
|
2844
2874
|
readonly reasoning: true;
|
|
2845
2875
|
readonly webSearch: true;
|
|
2876
|
+
readonly jsonResponseWithTools: false;
|
|
2846
2877
|
};
|
|
2847
2878
|
};
|
|
2848
2879
|
readonly "claude-sonnet-4-5-20250929": {
|
|
@@ -2866,6 +2897,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2866
2897
|
readonly tools: true;
|
|
2867
2898
|
readonly reasoning: true;
|
|
2868
2899
|
readonly webSearch: true;
|
|
2900
|
+
readonly jsonResponseWithTools: false;
|
|
2869
2901
|
};
|
|
2870
2902
|
};
|
|
2871
2903
|
readonly "claude-sonnet-4-6": {
|
|
@@ -2889,6 +2921,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2889
2921
|
readonly tools: true;
|
|
2890
2922
|
readonly reasoning: true;
|
|
2891
2923
|
readonly webSearch: true;
|
|
2924
|
+
readonly jsonResponseWithTools: false;
|
|
2892
2925
|
};
|
|
2893
2926
|
};
|
|
2894
2927
|
readonly "claude-haiku-4-5": {
|
|
@@ -2912,6 +2945,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2912
2945
|
readonly tools: true;
|
|
2913
2946
|
readonly reasoning: false;
|
|
2914
2947
|
readonly webSearch: true;
|
|
2948
|
+
readonly jsonResponseWithTools: false;
|
|
2915
2949
|
};
|
|
2916
2950
|
};
|
|
2917
2951
|
readonly "claude-haiku-4-5-20251001": {
|
|
@@ -2935,6 +2969,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2935
2969
|
readonly tools: true;
|
|
2936
2970
|
readonly reasoning: false;
|
|
2937
2971
|
readonly webSearch: true;
|
|
2972
|
+
readonly jsonResponseWithTools: false;
|
|
2938
2973
|
};
|
|
2939
2974
|
};
|
|
2940
2975
|
readonly "claude-opus-4-20250514": {
|
|
@@ -2958,6 +2993,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2958
2993
|
readonly tools: true;
|
|
2959
2994
|
readonly reasoning: true;
|
|
2960
2995
|
readonly webSearch: true;
|
|
2996
|
+
readonly jsonResponseWithTools: false;
|
|
2961
2997
|
};
|
|
2962
2998
|
};
|
|
2963
2999
|
readonly "claude-opus-4-1-20250805": {
|
|
@@ -2981,6 +3017,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
2981
3017
|
readonly tools: true;
|
|
2982
3018
|
readonly reasoning: true;
|
|
2983
3019
|
readonly webSearch: true;
|
|
3020
|
+
readonly jsonResponseWithTools: false;
|
|
2984
3021
|
};
|
|
2985
3022
|
};
|
|
2986
3023
|
readonly "claude-opus-4-5-20251101": {
|
|
@@ -3004,6 +3041,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3004
3041
|
readonly tools: true;
|
|
3005
3042
|
readonly reasoning: true;
|
|
3006
3043
|
readonly webSearch: true;
|
|
3044
|
+
readonly jsonResponseWithTools: false;
|
|
3007
3045
|
};
|
|
3008
3046
|
};
|
|
3009
3047
|
readonly "claude-opus-4-6": {
|
|
@@ -3027,6 +3065,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3027
3065
|
readonly tools: true;
|
|
3028
3066
|
readonly reasoning: true;
|
|
3029
3067
|
readonly webSearch: true;
|
|
3068
|
+
readonly jsonResponseWithTools: false;
|
|
3030
3069
|
};
|
|
3031
3070
|
};
|
|
3032
3071
|
readonly "gemini-2.5-pro": {
|
|
@@ -3050,6 +3089,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3050
3089
|
readonly tools: true;
|
|
3051
3090
|
readonly reasoning: true;
|
|
3052
3091
|
readonly webSearch: true;
|
|
3092
|
+
readonly jsonResponseWithTools: true;
|
|
3053
3093
|
};
|
|
3054
3094
|
};
|
|
3055
3095
|
readonly "gemini-2.5-flash": {
|
|
@@ -3073,6 +3113,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3073
3113
|
readonly tools: true;
|
|
3074
3114
|
readonly reasoning: true;
|
|
3075
3115
|
readonly webSearch: true;
|
|
3116
|
+
readonly jsonResponseWithTools: true;
|
|
3076
3117
|
};
|
|
3077
3118
|
};
|
|
3078
3119
|
readonly "gemini-2.5-flash-lite": {
|
|
@@ -3096,6 +3137,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3096
3137
|
readonly tools: true;
|
|
3097
3138
|
readonly reasoning: false;
|
|
3098
3139
|
readonly webSearch: false;
|
|
3140
|
+
readonly jsonResponseWithTools: true;
|
|
3099
3141
|
};
|
|
3100
3142
|
};
|
|
3101
3143
|
readonly "gemini-2.5-flash-lite-preview-09-2025": {
|
|
@@ -3119,6 +3161,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3119
3161
|
readonly tools: true;
|
|
3120
3162
|
readonly reasoning: false;
|
|
3121
3163
|
readonly webSearch: false;
|
|
3164
|
+
readonly jsonResponseWithTools: true;
|
|
3122
3165
|
};
|
|
3123
3166
|
};
|
|
3124
3167
|
readonly "gemini-3.1-pro-preview": {
|
|
@@ -3142,6 +3185,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3142
3185
|
readonly tools: true;
|
|
3143
3186
|
readonly reasoning: true;
|
|
3144
3187
|
readonly webSearch: true;
|
|
3188
|
+
readonly jsonResponseWithTools: true;
|
|
3145
3189
|
};
|
|
3146
3190
|
};
|
|
3147
3191
|
readonly "gemini-3-flash-preview": {
|
|
@@ -3165,6 +3209,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3165
3209
|
readonly tools: true;
|
|
3166
3210
|
readonly reasoning: true;
|
|
3167
3211
|
readonly webSearch: true;
|
|
3212
|
+
readonly jsonResponseWithTools: true;
|
|
3168
3213
|
};
|
|
3169
3214
|
};
|
|
3170
3215
|
readonly "gemini-2.5-flash-image": {
|
|
@@ -3188,6 +3233,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3188
3233
|
readonly tools: false;
|
|
3189
3234
|
readonly reasoning: false;
|
|
3190
3235
|
readonly webSearch: false;
|
|
3236
|
+
readonly jsonResponseWithTools: true;
|
|
3191
3237
|
};
|
|
3192
3238
|
};
|
|
3193
3239
|
readonly "gemma-3n-e2b-it": {
|
|
@@ -3211,6 +3257,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3211
3257
|
readonly tools: false;
|
|
3212
3258
|
readonly reasoning: false;
|
|
3213
3259
|
readonly webSearch: false;
|
|
3260
|
+
readonly jsonResponseWithTools: false;
|
|
3214
3261
|
};
|
|
3215
3262
|
};
|
|
3216
3263
|
readonly "gemma-3n-e4b-it": {
|
|
@@ -3234,6 +3281,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3234
3281
|
readonly tools: false;
|
|
3235
3282
|
readonly reasoning: false;
|
|
3236
3283
|
readonly webSearch: false;
|
|
3284
|
+
readonly jsonResponseWithTools: false;
|
|
3237
3285
|
};
|
|
3238
3286
|
};
|
|
3239
3287
|
readonly "gemma-3-1b-it": {
|
|
@@ -3257,6 +3305,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3257
3305
|
readonly tools: false;
|
|
3258
3306
|
readonly reasoning: false;
|
|
3259
3307
|
readonly webSearch: false;
|
|
3308
|
+
readonly jsonResponseWithTools: false;
|
|
3260
3309
|
};
|
|
3261
3310
|
};
|
|
3262
3311
|
readonly "gemma-3-4b-it": {
|
|
@@ -3280,6 +3329,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3280
3329
|
readonly tools: false;
|
|
3281
3330
|
readonly reasoning: false;
|
|
3282
3331
|
readonly webSearch: false;
|
|
3332
|
+
readonly jsonResponseWithTools: false;
|
|
3283
3333
|
};
|
|
3284
3334
|
};
|
|
3285
3335
|
readonly "gemma-3-12b-it": {
|
|
@@ -3303,6 +3353,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3303
3353
|
readonly tools: false;
|
|
3304
3354
|
readonly reasoning: false;
|
|
3305
3355
|
readonly webSearch: false;
|
|
3356
|
+
readonly jsonResponseWithTools: false;
|
|
3306
3357
|
};
|
|
3307
3358
|
};
|
|
3308
3359
|
readonly "grok-3": {
|
|
@@ -3326,6 +3377,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3326
3377
|
readonly tools: true;
|
|
3327
3378
|
readonly reasoning: false;
|
|
3328
3379
|
readonly webSearch: false;
|
|
3380
|
+
readonly jsonResponseWithTools: false;
|
|
3329
3381
|
};
|
|
3330
3382
|
};
|
|
3331
3383
|
readonly "grok-4-0709": {
|
|
@@ -3349,6 +3401,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3349
3401
|
readonly tools: true;
|
|
3350
3402
|
readonly reasoning: false;
|
|
3351
3403
|
readonly webSearch: false;
|
|
3404
|
+
readonly jsonResponseWithTools: false;
|
|
3352
3405
|
};
|
|
3353
3406
|
};
|
|
3354
3407
|
readonly "grok-4": {
|
|
@@ -3372,6 +3425,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3372
3425
|
readonly tools: true;
|
|
3373
3426
|
readonly reasoning: false;
|
|
3374
3427
|
readonly webSearch: false;
|
|
3428
|
+
readonly jsonResponseWithTools: false;
|
|
3375
3429
|
};
|
|
3376
3430
|
};
|
|
3377
3431
|
readonly "grok-4-fast-reasoning": {
|
|
@@ -3395,6 +3449,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3395
3449
|
readonly tools: true;
|
|
3396
3450
|
readonly reasoning: false;
|
|
3397
3451
|
readonly webSearch: false;
|
|
3452
|
+
readonly jsonResponseWithTools: false;
|
|
3398
3453
|
};
|
|
3399
3454
|
};
|
|
3400
3455
|
readonly "grok-4-fast-non-reasoning": {
|
|
@@ -3418,6 +3473,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3418
3473
|
readonly tools: true;
|
|
3419
3474
|
readonly reasoning: false;
|
|
3420
3475
|
readonly webSearch: false;
|
|
3476
|
+
readonly jsonResponseWithTools: false;
|
|
3421
3477
|
};
|
|
3422
3478
|
};
|
|
3423
3479
|
readonly "grok-code-fast-1": {
|
|
@@ -3441,6 +3497,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3441
3497
|
readonly tools: true;
|
|
3442
3498
|
readonly reasoning: false;
|
|
3443
3499
|
readonly webSearch: false;
|
|
3500
|
+
readonly jsonResponseWithTools: false;
|
|
3444
3501
|
};
|
|
3445
3502
|
};
|
|
3446
3503
|
readonly "grok-4-1-fast-reasoning": {
|
|
@@ -3464,6 +3521,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3464
3521
|
readonly tools: true;
|
|
3465
3522
|
readonly reasoning: false;
|
|
3466
3523
|
readonly webSearch: false;
|
|
3524
|
+
readonly jsonResponseWithTools: false;
|
|
3467
3525
|
};
|
|
3468
3526
|
};
|
|
3469
3527
|
readonly "grok-4-1-fast-non-reasoning": {
|
|
@@ -3487,6 +3545,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3487
3545
|
readonly tools: true;
|
|
3488
3546
|
readonly reasoning: false;
|
|
3489
3547
|
readonly webSearch: false;
|
|
3548
|
+
readonly jsonResponseWithTools: false;
|
|
3490
3549
|
};
|
|
3491
3550
|
};
|
|
3492
3551
|
readonly "llama-3-8b-instruct": {
|
|
@@ -3510,6 +3569,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3510
3569
|
readonly tools: false;
|
|
3511
3570
|
readonly reasoning: false;
|
|
3512
3571
|
readonly webSearch: false;
|
|
3572
|
+
readonly jsonResponseWithTools: false;
|
|
3513
3573
|
};
|
|
3514
3574
|
};
|
|
3515
3575
|
readonly "llama-3-70b-instruct": {
|
|
@@ -3533,6 +3593,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3533
3593
|
readonly tools: false;
|
|
3534
3594
|
readonly reasoning: false;
|
|
3535
3595
|
readonly webSearch: false;
|
|
3596
|
+
readonly jsonResponseWithTools: false;
|
|
3536
3597
|
};
|
|
3537
3598
|
};
|
|
3538
3599
|
readonly "llama-3.1-8b-instruct": {
|
|
@@ -3556,6 +3617,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3556
3617
|
readonly tools: false;
|
|
3557
3618
|
readonly reasoning: false;
|
|
3558
3619
|
readonly webSearch: false;
|
|
3620
|
+
readonly jsonResponseWithTools: false;
|
|
3559
3621
|
};
|
|
3560
3622
|
};
|
|
3561
3623
|
readonly "llama-3.1-70b-instruct": {
|
|
@@ -3579,6 +3641,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3579
3641
|
readonly tools: false;
|
|
3580
3642
|
readonly reasoning: false;
|
|
3581
3643
|
readonly webSearch: false;
|
|
3644
|
+
readonly jsonResponseWithTools: false;
|
|
3582
3645
|
};
|
|
3583
3646
|
};
|
|
3584
3647
|
readonly "llama-3.1-nemotron-ultra-253b": {
|
|
@@ -3602,6 +3665,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3602
3665
|
readonly tools: false;
|
|
3603
3666
|
readonly reasoning: false;
|
|
3604
3667
|
readonly webSearch: false;
|
|
3668
|
+
readonly jsonResponseWithTools: false;
|
|
3605
3669
|
};
|
|
3606
3670
|
};
|
|
3607
3671
|
readonly "llama-3.2-3b-instruct": {
|
|
@@ -3625,6 +3689,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3625
3689
|
readonly tools: false;
|
|
3626
3690
|
readonly reasoning: false;
|
|
3627
3691
|
readonly webSearch: false;
|
|
3692
|
+
readonly jsonResponseWithTools: false;
|
|
3628
3693
|
};
|
|
3629
3694
|
};
|
|
3630
3695
|
readonly "llama-3.3-70b-instruct": {
|
|
@@ -3648,6 +3713,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3648
3713
|
readonly tools: true;
|
|
3649
3714
|
readonly reasoning: false;
|
|
3650
3715
|
readonly webSearch: false;
|
|
3716
|
+
readonly jsonResponseWithTools: false;
|
|
3651
3717
|
};
|
|
3652
3718
|
};
|
|
3653
3719
|
readonly "llama-4-scout-17b-instruct": {
|
|
@@ -3671,6 +3737,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3671
3737
|
readonly tools: false;
|
|
3672
3738
|
readonly reasoning: false;
|
|
3673
3739
|
readonly webSearch: false;
|
|
3740
|
+
readonly jsonResponseWithTools: false;
|
|
3674
3741
|
};
|
|
3675
3742
|
};
|
|
3676
3743
|
readonly "llama-4-maverick-17b-instruct": {
|
|
@@ -3694,6 +3761,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3694
3761
|
readonly tools: false;
|
|
3695
3762
|
readonly reasoning: false;
|
|
3696
3763
|
readonly webSearch: false;
|
|
3764
|
+
readonly jsonResponseWithTools: false;
|
|
3697
3765
|
};
|
|
3698
3766
|
};
|
|
3699
3767
|
readonly "deepseek-r1-0528": {
|
|
@@ -3717,6 +3785,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3717
3785
|
readonly tools: false;
|
|
3718
3786
|
readonly reasoning: false;
|
|
3719
3787
|
readonly webSearch: false;
|
|
3788
|
+
readonly jsonResponseWithTools: false;
|
|
3720
3789
|
};
|
|
3721
3790
|
};
|
|
3722
3791
|
readonly "deepseek-v3.2": {
|
|
@@ -3740,6 +3809,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3740
3809
|
readonly tools: true;
|
|
3741
3810
|
readonly reasoning: false;
|
|
3742
3811
|
readonly webSearch: false;
|
|
3812
|
+
readonly jsonResponseWithTools: false;
|
|
3743
3813
|
};
|
|
3744
3814
|
};
|
|
3745
3815
|
readonly "mistral-large-latest": {
|
|
@@ -3763,6 +3833,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3763
3833
|
readonly tools: false;
|
|
3764
3834
|
readonly reasoning: false;
|
|
3765
3835
|
readonly webSearch: false;
|
|
3836
|
+
readonly jsonResponseWithTools: false;
|
|
3766
3837
|
};
|
|
3767
3838
|
};
|
|
3768
3839
|
readonly "mistral-large-2512": {
|
|
@@ -3786,6 +3857,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3786
3857
|
readonly tools: false;
|
|
3787
3858
|
readonly reasoning: false;
|
|
3788
3859
|
readonly webSearch: false;
|
|
3860
|
+
readonly jsonResponseWithTools: false;
|
|
3789
3861
|
};
|
|
3790
3862
|
};
|
|
3791
3863
|
readonly "mistral-small-2506": {
|
|
@@ -3809,6 +3881,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3809
3881
|
readonly tools: false;
|
|
3810
3882
|
readonly reasoning: false;
|
|
3811
3883
|
readonly webSearch: false;
|
|
3884
|
+
readonly jsonResponseWithTools: false;
|
|
3812
3885
|
};
|
|
3813
3886
|
};
|
|
3814
3887
|
readonly "pixtral-large-latest": {
|
|
@@ -3832,6 +3905,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3832
3905
|
readonly tools: false;
|
|
3833
3906
|
readonly reasoning: false;
|
|
3834
3907
|
readonly webSearch: false;
|
|
3908
|
+
readonly jsonResponseWithTools: false;
|
|
3835
3909
|
};
|
|
3836
3910
|
};
|
|
3837
3911
|
readonly "ministral-14b-2512": {
|
|
@@ -3855,6 +3929,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3855
3929
|
readonly tools: false;
|
|
3856
3930
|
readonly reasoning: false;
|
|
3857
3931
|
readonly webSearch: false;
|
|
3932
|
+
readonly jsonResponseWithTools: false;
|
|
3858
3933
|
};
|
|
3859
3934
|
};
|
|
3860
3935
|
readonly "ministral-8b-2512": {
|
|
@@ -3878,6 +3953,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3878
3953
|
readonly tools: false;
|
|
3879
3954
|
readonly reasoning: false;
|
|
3880
3955
|
readonly webSearch: false;
|
|
3956
|
+
readonly jsonResponseWithTools: false;
|
|
3881
3957
|
};
|
|
3882
3958
|
};
|
|
3883
3959
|
readonly "ministral-3b-2512": {
|
|
@@ -3901,6 +3977,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3901
3977
|
readonly tools: false;
|
|
3902
3978
|
readonly reasoning: false;
|
|
3903
3979
|
readonly webSearch: false;
|
|
3980
|
+
readonly jsonResponseWithTools: false;
|
|
3904
3981
|
};
|
|
3905
3982
|
};
|
|
3906
3983
|
readonly "codestral-2508": {
|
|
@@ -3924,6 +4001,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3924
4001
|
readonly tools: false;
|
|
3925
4002
|
readonly reasoning: false;
|
|
3926
4003
|
readonly webSearch: false;
|
|
4004
|
+
readonly jsonResponseWithTools: false;
|
|
3927
4005
|
};
|
|
3928
4006
|
};
|
|
3929
4007
|
readonly "devstral-2512": {
|
|
@@ -3947,6 +4025,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3947
4025
|
readonly tools: false;
|
|
3948
4026
|
readonly reasoning: false;
|
|
3949
4027
|
readonly webSearch: false;
|
|
4028
|
+
readonly jsonResponseWithTools: false;
|
|
3950
4029
|
};
|
|
3951
4030
|
};
|
|
3952
4031
|
readonly "devstral-small-2507": {
|
|
@@ -3970,6 +4049,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3970
4049
|
readonly tools: false;
|
|
3971
4050
|
readonly reasoning: false;
|
|
3972
4051
|
readonly webSearch: false;
|
|
4052
|
+
readonly jsonResponseWithTools: false;
|
|
3973
4053
|
};
|
|
3974
4054
|
};
|
|
3975
4055
|
readonly "minimax-m2.5": {
|
|
@@ -3993,6 +4073,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
3993
4073
|
readonly tools: true;
|
|
3994
4074
|
readonly reasoning: true;
|
|
3995
4075
|
readonly webSearch: false;
|
|
4076
|
+
readonly jsonResponseWithTools: false;
|
|
3996
4077
|
};
|
|
3997
4078
|
};
|
|
3998
4079
|
readonly "minimax/minimax-m2.5": {
|
|
@@ -4016,6 +4097,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4016
4097
|
readonly tools: true;
|
|
4017
4098
|
readonly reasoning: true;
|
|
4018
4099
|
readonly webSearch: false;
|
|
4100
|
+
readonly jsonResponseWithTools: false;
|
|
4019
4101
|
};
|
|
4020
4102
|
};
|
|
4021
4103
|
readonly "novita/minimax-m2.5": {
|
|
@@ -4039,6 +4121,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4039
4121
|
readonly tools: true;
|
|
4040
4122
|
readonly reasoning: true;
|
|
4041
4123
|
readonly webSearch: false;
|
|
4124
|
+
readonly jsonResponseWithTools: false;
|
|
4042
4125
|
};
|
|
4043
4126
|
};
|
|
4044
4127
|
readonly "minimax-m2": {
|
|
@@ -4062,6 +4145,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4062
4145
|
readonly tools: false;
|
|
4063
4146
|
readonly reasoning: true;
|
|
4064
4147
|
readonly webSearch: false;
|
|
4148
|
+
readonly jsonResponseWithTools: false;
|
|
4065
4149
|
};
|
|
4066
4150
|
};
|
|
4067
4151
|
readonly "minimax-m2.1": {
|
|
@@ -4085,6 +4169,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4085
4169
|
readonly tools: false;
|
|
4086
4170
|
readonly reasoning: true;
|
|
4087
4171
|
readonly webSearch: false;
|
|
4172
|
+
readonly jsonResponseWithTools: false;
|
|
4088
4173
|
};
|
|
4089
4174
|
};
|
|
4090
4175
|
readonly "minimax-m2.1-lightning": {
|
|
@@ -4108,6 +4193,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4108
4193
|
readonly tools: false;
|
|
4109
4194
|
readonly reasoning: true;
|
|
4110
4195
|
readonly webSearch: false;
|
|
4196
|
+
readonly jsonResponseWithTools: false;
|
|
4111
4197
|
};
|
|
4112
4198
|
};
|
|
4113
4199
|
readonly "minimax-text-01": {
|
|
@@ -4131,6 +4217,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4131
4217
|
readonly tools: false;
|
|
4132
4218
|
readonly reasoning: false;
|
|
4133
4219
|
readonly webSearch: false;
|
|
4220
|
+
readonly jsonResponseWithTools: false;
|
|
4134
4221
|
};
|
|
4135
4222
|
};
|
|
4136
4223
|
readonly "kimi-k2": {
|
|
@@ -4154,6 +4241,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4154
4241
|
readonly tools: true;
|
|
4155
4242
|
readonly reasoning: false;
|
|
4156
4243
|
readonly webSearch: false;
|
|
4244
|
+
readonly jsonResponseWithTools: false;
|
|
4157
4245
|
};
|
|
4158
4246
|
};
|
|
4159
4247
|
readonly "kimi-k2-thinking-turbo": {
|
|
@@ -4177,6 +4265,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4177
4265
|
readonly tools: true;
|
|
4178
4266
|
readonly reasoning: true;
|
|
4179
4267
|
readonly webSearch: false;
|
|
4268
|
+
readonly jsonResponseWithTools: false;
|
|
4180
4269
|
};
|
|
4181
4270
|
};
|
|
4182
4271
|
readonly "moonshot/kimi-k2.5": {
|
|
@@ -4200,6 +4289,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4200
4289
|
readonly tools: true;
|
|
4201
4290
|
readonly reasoning: false;
|
|
4202
4291
|
readonly webSearch: false;
|
|
4292
|
+
readonly jsonResponseWithTools: false;
|
|
4203
4293
|
};
|
|
4204
4294
|
};
|
|
4205
4295
|
readonly "qwen-max": {
|
|
@@ -4223,6 +4313,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4223
4313
|
readonly tools: true;
|
|
4224
4314
|
readonly reasoning: false;
|
|
4225
4315
|
readonly webSearch: false;
|
|
4316
|
+
readonly jsonResponseWithTools: false;
|
|
4226
4317
|
};
|
|
4227
4318
|
};
|
|
4228
4319
|
readonly "qwen-max-latest": {
|
|
@@ -4246,6 +4337,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4246
4337
|
readonly tools: true;
|
|
4247
4338
|
readonly reasoning: false;
|
|
4248
4339
|
readonly webSearch: false;
|
|
4340
|
+
readonly jsonResponseWithTools: false;
|
|
4249
4341
|
};
|
|
4250
4342
|
};
|
|
4251
4343
|
readonly "qwen-plus": {
|
|
@@ -4269,6 +4361,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4269
4361
|
readonly tools: true;
|
|
4270
4362
|
readonly reasoning: false;
|
|
4271
4363
|
readonly webSearch: false;
|
|
4364
|
+
readonly jsonResponseWithTools: false;
|
|
4272
4365
|
};
|
|
4273
4366
|
};
|
|
4274
4367
|
readonly "qwen-plus-latest": {
|
|
@@ -4292,6 +4385,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4292
4385
|
readonly tools: true;
|
|
4293
4386
|
readonly reasoning: false;
|
|
4294
4387
|
readonly webSearch: false;
|
|
4388
|
+
readonly jsonResponseWithTools: false;
|
|
4295
4389
|
};
|
|
4296
4390
|
};
|
|
4297
4391
|
readonly "qwen-flash": {
|
|
@@ -4315,6 +4409,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4315
4409
|
readonly tools: true;
|
|
4316
4410
|
readonly reasoning: false;
|
|
4317
4411
|
readonly webSearch: false;
|
|
4412
|
+
readonly jsonResponseWithTools: false;
|
|
4318
4413
|
};
|
|
4319
4414
|
};
|
|
4320
4415
|
readonly "qwen-turbo": {
|
|
@@ -4338,6 +4433,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4338
4433
|
readonly tools: false;
|
|
4339
4434
|
readonly reasoning: false;
|
|
4340
4435
|
readonly webSearch: false;
|
|
4436
|
+
readonly jsonResponseWithTools: false;
|
|
4341
4437
|
};
|
|
4342
4438
|
};
|
|
4343
4439
|
readonly "qwen-omni-turbo": {
|
|
@@ -4361,6 +4457,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4361
4457
|
readonly tools: false;
|
|
4362
4458
|
readonly reasoning: false;
|
|
4363
4459
|
readonly webSearch: false;
|
|
4460
|
+
readonly jsonResponseWithTools: false;
|
|
4364
4461
|
};
|
|
4365
4462
|
};
|
|
4366
4463
|
readonly "qwen-vl-max": {
|
|
@@ -4384,6 +4481,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4384
4481
|
readonly tools: false;
|
|
4385
4482
|
readonly reasoning: false;
|
|
4386
4483
|
readonly webSearch: false;
|
|
4484
|
+
readonly jsonResponseWithTools: false;
|
|
4387
4485
|
};
|
|
4388
4486
|
};
|
|
4389
4487
|
readonly "qwen-vl-plus": {
|
|
@@ -4407,6 +4505,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4407
4505
|
readonly tools: false;
|
|
4408
4506
|
readonly reasoning: false;
|
|
4409
4507
|
readonly webSearch: false;
|
|
4508
|
+
readonly jsonResponseWithTools: false;
|
|
4410
4509
|
};
|
|
4411
4510
|
};
|
|
4412
4511
|
readonly "qwen-coder-plus": {
|
|
@@ -4430,6 +4529,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4430
4529
|
readonly tools: true;
|
|
4431
4530
|
readonly reasoning: false;
|
|
4432
4531
|
readonly webSearch: false;
|
|
4532
|
+
readonly jsonResponseWithTools: false;
|
|
4433
4533
|
};
|
|
4434
4534
|
};
|
|
4435
4535
|
readonly "qwq-plus": {
|
|
@@ -4453,6 +4553,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4453
4553
|
readonly tools: false;
|
|
4454
4554
|
readonly reasoning: true;
|
|
4455
4555
|
readonly webSearch: false;
|
|
4556
|
+
readonly jsonResponseWithTools: false;
|
|
4456
4557
|
};
|
|
4457
4558
|
};
|
|
4458
4559
|
readonly "qwen3-max": {
|
|
@@ -4476,6 +4577,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4476
4577
|
readonly tools: true;
|
|
4477
4578
|
readonly reasoning: true;
|
|
4478
4579
|
readonly webSearch: false;
|
|
4580
|
+
readonly jsonResponseWithTools: false;
|
|
4479
4581
|
};
|
|
4480
4582
|
};
|
|
4481
4583
|
readonly "qwen3-max-2026-01-23": {
|
|
@@ -4499,6 +4601,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4499
4601
|
readonly tools: true;
|
|
4500
4602
|
readonly reasoning: true;
|
|
4501
4603
|
readonly webSearch: false;
|
|
4604
|
+
readonly jsonResponseWithTools: false;
|
|
4502
4605
|
};
|
|
4503
4606
|
};
|
|
4504
4607
|
readonly "qwen3-32b": {
|
|
@@ -4522,6 +4625,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4522
4625
|
readonly tools: true;
|
|
4523
4626
|
readonly reasoning: false;
|
|
4524
4627
|
readonly webSearch: false;
|
|
4628
|
+
readonly jsonResponseWithTools: false;
|
|
4525
4629
|
};
|
|
4526
4630
|
};
|
|
4527
4631
|
readonly "qwen3-32b-fp8": {
|
|
@@ -4545,6 +4649,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4545
4649
|
readonly tools: false;
|
|
4546
4650
|
readonly reasoning: false;
|
|
4547
4651
|
readonly webSearch: false;
|
|
4652
|
+
readonly jsonResponseWithTools: false;
|
|
4548
4653
|
};
|
|
4549
4654
|
};
|
|
4550
4655
|
readonly "qwen3-235b-a22b-instruct-2507": {
|
|
@@ -4568,6 +4673,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4568
4673
|
readonly tools: true;
|
|
4569
4674
|
readonly reasoning: false;
|
|
4570
4675
|
readonly webSearch: false;
|
|
4676
|
+
readonly jsonResponseWithTools: false;
|
|
4571
4677
|
};
|
|
4572
4678
|
};
|
|
4573
4679
|
readonly "qwen3-235b-a22b-thinking-2507": {
|
|
@@ -4591,6 +4697,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4591
4697
|
readonly tools: true;
|
|
4592
4698
|
readonly reasoning: true;
|
|
4593
4699
|
readonly webSearch: false;
|
|
4700
|
+
readonly jsonResponseWithTools: false;
|
|
4594
4701
|
};
|
|
4595
4702
|
};
|
|
4596
4703
|
readonly "qwen3-235b-a22b-fp8": {
|
|
@@ -4614,6 +4721,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4614
4721
|
readonly tools: false;
|
|
4615
4722
|
readonly reasoning: false;
|
|
4616
4723
|
readonly webSearch: false;
|
|
4724
|
+
readonly jsonResponseWithTools: false;
|
|
4617
4725
|
};
|
|
4618
4726
|
};
|
|
4619
4727
|
readonly "qwen3-30b-a3b-instruct-2507": {
|
|
@@ -4637,6 +4745,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4637
4745
|
readonly tools: true;
|
|
4638
4746
|
readonly reasoning: false;
|
|
4639
4747
|
readonly webSearch: false;
|
|
4748
|
+
readonly jsonResponseWithTools: false;
|
|
4640
4749
|
};
|
|
4641
4750
|
};
|
|
4642
4751
|
readonly "qwen3-30b-a3b-thinking-2507": {
|
|
@@ -4660,6 +4769,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4660
4769
|
readonly tools: true;
|
|
4661
4770
|
readonly reasoning: true;
|
|
4662
4771
|
readonly webSearch: false;
|
|
4772
|
+
readonly jsonResponseWithTools: false;
|
|
4663
4773
|
};
|
|
4664
4774
|
};
|
|
4665
4775
|
readonly "qwen3-30b-a3b-fp8": {
|
|
@@ -4683,6 +4793,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4683
4793
|
readonly tools: false;
|
|
4684
4794
|
readonly reasoning: false;
|
|
4685
4795
|
readonly webSearch: false;
|
|
4796
|
+
readonly jsonResponseWithTools: false;
|
|
4686
4797
|
};
|
|
4687
4798
|
};
|
|
4688
4799
|
readonly "qwen3-4b-fp8": {
|
|
@@ -4706,6 +4817,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4706
4817
|
readonly tools: false;
|
|
4707
4818
|
readonly reasoning: false;
|
|
4708
4819
|
readonly webSearch: false;
|
|
4820
|
+
readonly jsonResponseWithTools: false;
|
|
4709
4821
|
};
|
|
4710
4822
|
};
|
|
4711
4823
|
readonly "qwen35-397b-a17b": {
|
|
@@ -4729,6 +4841,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4729
4841
|
readonly tools: true;
|
|
4730
4842
|
readonly reasoning: true;
|
|
4731
4843
|
readonly webSearch: true;
|
|
4844
|
+
readonly jsonResponseWithTools: false;
|
|
4732
4845
|
};
|
|
4733
4846
|
};
|
|
4734
4847
|
readonly "qwen3-next-80b-a3b-thinking": {
|
|
@@ -4752,6 +4865,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4752
4865
|
readonly tools: true;
|
|
4753
4866
|
readonly reasoning: true;
|
|
4754
4867
|
readonly webSearch: false;
|
|
4868
|
+
readonly jsonResponseWithTools: false;
|
|
4755
4869
|
};
|
|
4756
4870
|
};
|
|
4757
4871
|
readonly "qwen3-next-80b-a3b-instruct": {
|
|
@@ -4775,6 +4889,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4775
4889
|
readonly tools: true;
|
|
4776
4890
|
readonly reasoning: false;
|
|
4777
4891
|
readonly webSearch: false;
|
|
4892
|
+
readonly jsonResponseWithTools: false;
|
|
4778
4893
|
};
|
|
4779
4894
|
};
|
|
4780
4895
|
readonly "qwen3-coder-plus": {
|
|
@@ -4798,6 +4913,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4798
4913
|
readonly tools: true;
|
|
4799
4914
|
readonly reasoning: false;
|
|
4800
4915
|
readonly webSearch: false;
|
|
4916
|
+
readonly jsonResponseWithTools: false;
|
|
4801
4917
|
};
|
|
4802
4918
|
};
|
|
4803
4919
|
readonly "qwen3-coder-flash": {
|
|
@@ -4821,6 +4937,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4821
4937
|
readonly tools: true;
|
|
4822
4938
|
readonly reasoning: false;
|
|
4823
4939
|
readonly webSearch: false;
|
|
4940
|
+
readonly jsonResponseWithTools: false;
|
|
4824
4941
|
};
|
|
4825
4942
|
};
|
|
4826
4943
|
readonly "qwen3-coder-30b-a3b-instruct": {
|
|
@@ -4844,6 +4961,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4844
4961
|
readonly tools: true;
|
|
4845
4962
|
readonly reasoning: false;
|
|
4846
4963
|
readonly webSearch: false;
|
|
4964
|
+
readonly jsonResponseWithTools: false;
|
|
4847
4965
|
};
|
|
4848
4966
|
};
|
|
4849
4967
|
readonly "qwen3-vl-8b-instruct": {
|
|
@@ -4867,6 +4985,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4867
4985
|
readonly tools: false;
|
|
4868
4986
|
readonly reasoning: false;
|
|
4869
4987
|
readonly webSearch: false;
|
|
4988
|
+
readonly jsonResponseWithTools: false;
|
|
4870
4989
|
};
|
|
4871
4990
|
};
|
|
4872
4991
|
readonly "qwen3-vl-plus": {
|
|
@@ -4890,6 +5009,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4890
5009
|
readonly tools: false;
|
|
4891
5010
|
readonly reasoning: false;
|
|
4892
5011
|
readonly webSearch: false;
|
|
5012
|
+
readonly jsonResponseWithTools: false;
|
|
4893
5013
|
};
|
|
4894
5014
|
};
|
|
4895
5015
|
readonly "qwen3-vl-flash": {
|
|
@@ -4913,6 +5033,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4913
5033
|
readonly tools: true;
|
|
4914
5034
|
readonly reasoning: false;
|
|
4915
5035
|
readonly webSearch: false;
|
|
5036
|
+
readonly jsonResponseWithTools: false;
|
|
4916
5037
|
};
|
|
4917
5038
|
};
|
|
4918
5039
|
readonly "qwen3-vl-30b-a3b-instruct": {
|
|
@@ -4936,6 +5057,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4936
5057
|
readonly tools: true;
|
|
4937
5058
|
readonly reasoning: false;
|
|
4938
5059
|
readonly webSearch: false;
|
|
5060
|
+
readonly jsonResponseWithTools: false;
|
|
4939
5061
|
};
|
|
4940
5062
|
};
|
|
4941
5063
|
readonly "qwen3-vl-30b-a3b-thinking": {
|
|
@@ -4959,6 +5081,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4959
5081
|
readonly tools: true;
|
|
4960
5082
|
readonly reasoning: true;
|
|
4961
5083
|
readonly webSearch: false;
|
|
5084
|
+
readonly jsonResponseWithTools: false;
|
|
4962
5085
|
};
|
|
4963
5086
|
};
|
|
4964
5087
|
readonly "qwen3-vl-235b-a22b-instruct": {
|
|
@@ -4982,6 +5105,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
4982
5105
|
readonly tools: true;
|
|
4983
5106
|
readonly reasoning: false;
|
|
4984
5107
|
readonly webSearch: false;
|
|
5108
|
+
readonly jsonResponseWithTools: false;
|
|
4985
5109
|
};
|
|
4986
5110
|
};
|
|
4987
5111
|
readonly "qwen3-vl-235b-a22b-thinking": {
|
|
@@ -5005,6 +5129,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5005
5129
|
readonly tools: false;
|
|
5006
5130
|
readonly reasoning: true;
|
|
5007
5131
|
readonly webSearch: false;
|
|
5132
|
+
readonly jsonResponseWithTools: false;
|
|
5008
5133
|
};
|
|
5009
5134
|
};
|
|
5010
5135
|
readonly "qwen2-5-vl-32b-instruct": {
|
|
@@ -5028,6 +5153,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5028
5153
|
readonly tools: false;
|
|
5029
5154
|
readonly reasoning: false;
|
|
5030
5155
|
readonly webSearch: false;
|
|
5156
|
+
readonly jsonResponseWithTools: false;
|
|
5031
5157
|
};
|
|
5032
5158
|
};
|
|
5033
5159
|
readonly "glm-5": {
|
|
@@ -5051,6 +5177,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5051
5177
|
readonly tools: true;
|
|
5052
5178
|
readonly reasoning: true;
|
|
5053
5179
|
readonly webSearch: true;
|
|
5180
|
+
readonly jsonResponseWithTools: false;
|
|
5054
5181
|
};
|
|
5055
5182
|
};
|
|
5056
5183
|
readonly "glm-4.5": {
|
|
@@ -5074,6 +5201,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5074
5201
|
readonly tools: true;
|
|
5075
5202
|
readonly reasoning: true;
|
|
5076
5203
|
readonly webSearch: true;
|
|
5204
|
+
readonly jsonResponseWithTools: false;
|
|
5077
5205
|
};
|
|
5078
5206
|
};
|
|
5079
5207
|
readonly "glm-4.5v": {
|
|
@@ -5097,6 +5225,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5097
5225
|
readonly tools: true;
|
|
5098
5226
|
readonly reasoning: true;
|
|
5099
5227
|
readonly webSearch: false;
|
|
5228
|
+
readonly jsonResponseWithTools: false;
|
|
5100
5229
|
};
|
|
5101
5230
|
};
|
|
5102
5231
|
readonly "glm-4.5-air": {
|
|
@@ -5120,6 +5249,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5120
5249
|
readonly tools: true;
|
|
5121
5250
|
readonly reasoning: false;
|
|
5122
5251
|
readonly webSearch: false;
|
|
5252
|
+
readonly jsonResponseWithTools: false;
|
|
5123
5253
|
};
|
|
5124
5254
|
};
|
|
5125
5255
|
readonly "glm-4.5-x": {
|
|
@@ -5143,6 +5273,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5143
5273
|
readonly tools: true;
|
|
5144
5274
|
readonly reasoning: true;
|
|
5145
5275
|
readonly webSearch: false;
|
|
5276
|
+
readonly jsonResponseWithTools: false;
|
|
5146
5277
|
};
|
|
5147
5278
|
};
|
|
5148
5279
|
readonly "glm-4.5-airx": {
|
|
@@ -5166,6 +5297,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5166
5297
|
readonly tools: true;
|
|
5167
5298
|
readonly reasoning: false;
|
|
5168
5299
|
readonly webSearch: false;
|
|
5300
|
+
readonly jsonResponseWithTools: false;
|
|
5169
5301
|
};
|
|
5170
5302
|
};
|
|
5171
5303
|
readonly "glm-4.5-flash": {
|
|
@@ -5189,6 +5321,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5189
5321
|
readonly tools: true;
|
|
5190
5322
|
readonly reasoning: false;
|
|
5191
5323
|
readonly webSearch: false;
|
|
5324
|
+
readonly jsonResponseWithTools: false;
|
|
5192
5325
|
};
|
|
5193
5326
|
};
|
|
5194
5327
|
readonly "glm-4.6": {
|
|
@@ -5212,6 +5345,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5212
5345
|
readonly tools: true;
|
|
5213
5346
|
readonly reasoning: true;
|
|
5214
5347
|
readonly webSearch: true;
|
|
5348
|
+
readonly jsonResponseWithTools: false;
|
|
5215
5349
|
};
|
|
5216
5350
|
};
|
|
5217
5351
|
readonly "glm-4.6v": {
|
|
@@ -5235,6 +5369,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5235
5369
|
readonly tools: true;
|
|
5236
5370
|
readonly reasoning: true;
|
|
5237
5371
|
readonly webSearch: false;
|
|
5372
|
+
readonly jsonResponseWithTools: false;
|
|
5238
5373
|
};
|
|
5239
5374
|
};
|
|
5240
5375
|
readonly "glm-4.6v-flashx": {
|
|
@@ -5258,6 +5393,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5258
5393
|
readonly tools: true;
|
|
5259
5394
|
readonly reasoning: true;
|
|
5260
5395
|
readonly webSearch: false;
|
|
5396
|
+
readonly jsonResponseWithTools: false;
|
|
5261
5397
|
};
|
|
5262
5398
|
};
|
|
5263
5399
|
readonly "glm-4.6v-flash": {
|
|
@@ -5281,6 +5417,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5281
5417
|
readonly tools: true;
|
|
5282
5418
|
readonly reasoning: true;
|
|
5283
5419
|
readonly webSearch: false;
|
|
5420
|
+
readonly jsonResponseWithTools: false;
|
|
5284
5421
|
};
|
|
5285
5422
|
};
|
|
5286
5423
|
readonly "glm-4.7": {
|
|
@@ -5304,6 +5441,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5304
5441
|
readonly tools: true;
|
|
5305
5442
|
readonly reasoning: true;
|
|
5306
5443
|
readonly webSearch: true;
|
|
5444
|
+
readonly jsonResponseWithTools: false;
|
|
5307
5445
|
};
|
|
5308
5446
|
};
|
|
5309
5447
|
readonly "glm-4.7-flashx": {
|
|
@@ -5327,6 +5465,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5327
5465
|
readonly tools: true;
|
|
5328
5466
|
readonly reasoning: true;
|
|
5329
5467
|
readonly webSearch: false;
|
|
5468
|
+
readonly jsonResponseWithTools: false;
|
|
5330
5469
|
};
|
|
5331
5470
|
};
|
|
5332
5471
|
readonly "glm-4.7-flash": {
|
|
@@ -5350,6 +5489,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5350
5489
|
readonly tools: true;
|
|
5351
5490
|
readonly reasoning: true;
|
|
5352
5491
|
readonly webSearch: false;
|
|
5492
|
+
readonly jsonResponseWithTools: false;
|
|
5353
5493
|
};
|
|
5354
5494
|
};
|
|
5355
5495
|
readonly "glm-4-32b-0414-128k": {
|
|
@@ -5373,6 +5513,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5373
5513
|
readonly tools: true;
|
|
5374
5514
|
readonly reasoning: false;
|
|
5375
5515
|
readonly webSearch: false;
|
|
5516
|
+
readonly jsonResponseWithTools: false;
|
|
5376
5517
|
};
|
|
5377
5518
|
};
|
|
5378
5519
|
};
|
|
@@ -5398,6 +5539,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5398
5539
|
readonly tools: true;
|
|
5399
5540
|
readonly reasoning: false;
|
|
5400
5541
|
readonly webSearch: false;
|
|
5542
|
+
readonly jsonResponseWithTools: true;
|
|
5401
5543
|
};
|
|
5402
5544
|
};
|
|
5403
5545
|
readonly "gpt-4": {
|
|
@@ -5421,6 +5563,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5421
5563
|
readonly tools: true;
|
|
5422
5564
|
readonly reasoning: false;
|
|
5423
5565
|
readonly webSearch: false;
|
|
5566
|
+
readonly jsonResponseWithTools: true;
|
|
5424
5567
|
};
|
|
5425
5568
|
};
|
|
5426
5569
|
readonly "gpt-4-turbo": {
|
|
@@ -5444,6 +5587,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5444
5587
|
readonly tools: true;
|
|
5445
5588
|
readonly reasoning: false;
|
|
5446
5589
|
readonly webSearch: false;
|
|
5590
|
+
readonly jsonResponseWithTools: true;
|
|
5447
5591
|
};
|
|
5448
5592
|
};
|
|
5449
5593
|
readonly "gpt-4o": {
|
|
@@ -5467,6 +5611,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5467
5611
|
readonly tools: true;
|
|
5468
5612
|
readonly reasoning: false;
|
|
5469
5613
|
readonly webSearch: true;
|
|
5614
|
+
readonly jsonResponseWithTools: true;
|
|
5470
5615
|
};
|
|
5471
5616
|
};
|
|
5472
5617
|
readonly "gpt-4o-mini": {
|
|
@@ -5490,6 +5635,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5490
5635
|
readonly tools: true;
|
|
5491
5636
|
readonly reasoning: false;
|
|
5492
5637
|
readonly webSearch: false;
|
|
5638
|
+
readonly jsonResponseWithTools: true;
|
|
5493
5639
|
};
|
|
5494
5640
|
};
|
|
5495
5641
|
readonly "gpt-4o-search-preview": {
|
|
@@ -5513,6 +5659,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5513
5659
|
readonly tools: false;
|
|
5514
5660
|
readonly reasoning: false;
|
|
5515
5661
|
readonly webSearch: true;
|
|
5662
|
+
readonly jsonResponseWithTools: true;
|
|
5516
5663
|
};
|
|
5517
5664
|
};
|
|
5518
5665
|
readonly "gpt-4o-mini-search-preview": {
|
|
@@ -5536,6 +5683,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5536
5683
|
readonly tools: false;
|
|
5537
5684
|
readonly reasoning: false;
|
|
5538
5685
|
readonly webSearch: true;
|
|
5686
|
+
readonly jsonResponseWithTools: true;
|
|
5539
5687
|
};
|
|
5540
5688
|
};
|
|
5541
5689
|
readonly "gpt-4.1": {
|
|
@@ -5559,6 +5707,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5559
5707
|
readonly tools: true;
|
|
5560
5708
|
readonly reasoning: false;
|
|
5561
5709
|
readonly webSearch: false;
|
|
5710
|
+
readonly jsonResponseWithTools: true;
|
|
5562
5711
|
};
|
|
5563
5712
|
};
|
|
5564
5713
|
readonly "gpt-4.1-mini": {
|
|
@@ -5582,6 +5731,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5582
5731
|
readonly tools: true;
|
|
5583
5732
|
readonly reasoning: false;
|
|
5584
5733
|
readonly webSearch: false;
|
|
5734
|
+
readonly jsonResponseWithTools: true;
|
|
5585
5735
|
};
|
|
5586
5736
|
};
|
|
5587
5737
|
readonly "gpt-4.1-nano": {
|
|
@@ -5605,6 +5755,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5605
5755
|
readonly tools: true;
|
|
5606
5756
|
readonly reasoning: false;
|
|
5607
5757
|
readonly webSearch: false;
|
|
5758
|
+
readonly jsonResponseWithTools: true;
|
|
5608
5759
|
};
|
|
5609
5760
|
};
|
|
5610
5761
|
readonly o1: {
|
|
@@ -5628,6 +5779,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5628
5779
|
readonly tools: false;
|
|
5629
5780
|
readonly reasoning: true;
|
|
5630
5781
|
readonly webSearch: false;
|
|
5782
|
+
readonly jsonResponseWithTools: false;
|
|
5631
5783
|
};
|
|
5632
5784
|
};
|
|
5633
5785
|
readonly o3: {
|
|
@@ -5651,6 +5803,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5651
5803
|
readonly tools: false;
|
|
5652
5804
|
readonly reasoning: false;
|
|
5653
5805
|
readonly webSearch: false;
|
|
5806
|
+
readonly jsonResponseWithTools: false;
|
|
5654
5807
|
};
|
|
5655
5808
|
};
|
|
5656
5809
|
readonly "o3-mini": {
|
|
@@ -5674,6 +5827,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5674
5827
|
readonly tools: false;
|
|
5675
5828
|
readonly reasoning: false;
|
|
5676
5829
|
readonly webSearch: false;
|
|
5830
|
+
readonly jsonResponseWithTools: false;
|
|
5677
5831
|
};
|
|
5678
5832
|
};
|
|
5679
5833
|
readonly "gpt-oss-20b": {
|
|
@@ -5697,6 +5851,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5697
5851
|
readonly tools: true;
|
|
5698
5852
|
readonly reasoning: true;
|
|
5699
5853
|
readonly webSearch: false;
|
|
5854
|
+
readonly jsonResponseWithTools: true;
|
|
5700
5855
|
};
|
|
5701
5856
|
};
|
|
5702
5857
|
readonly "gpt-5": {
|
|
@@ -5720,6 +5875,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5720
5875
|
readonly tools: true;
|
|
5721
5876
|
readonly reasoning: true;
|
|
5722
5877
|
readonly webSearch: true;
|
|
5878
|
+
readonly jsonResponseWithTools: true;
|
|
5723
5879
|
};
|
|
5724
5880
|
};
|
|
5725
5881
|
readonly "gpt-5-mini": {
|
|
@@ -5743,6 +5899,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5743
5899
|
readonly tools: true;
|
|
5744
5900
|
readonly reasoning: true;
|
|
5745
5901
|
readonly webSearch: true;
|
|
5902
|
+
readonly jsonResponseWithTools: true;
|
|
5746
5903
|
};
|
|
5747
5904
|
};
|
|
5748
5905
|
readonly "gpt-5-nano": {
|
|
@@ -5766,6 +5923,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5766
5923
|
readonly tools: true;
|
|
5767
5924
|
readonly reasoning: true;
|
|
5768
5925
|
readonly webSearch: true;
|
|
5926
|
+
readonly jsonResponseWithTools: true;
|
|
5769
5927
|
};
|
|
5770
5928
|
};
|
|
5771
5929
|
readonly "gpt-5-codex": {
|
|
@@ -5789,6 +5947,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5789
5947
|
readonly tools: true;
|
|
5790
5948
|
readonly reasoning: true;
|
|
5791
5949
|
readonly webSearch: false;
|
|
5950
|
+
readonly jsonResponseWithTools: true;
|
|
5792
5951
|
};
|
|
5793
5952
|
};
|
|
5794
5953
|
readonly "gpt-5-pro": {
|
|
@@ -5812,6 +5971,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5812
5971
|
readonly tools: true;
|
|
5813
5972
|
readonly reasoning: true;
|
|
5814
5973
|
readonly webSearch: true;
|
|
5974
|
+
readonly jsonResponseWithTools: true;
|
|
5815
5975
|
};
|
|
5816
5976
|
};
|
|
5817
5977
|
readonly "gpt-5.1": {
|
|
@@ -5835,6 +5995,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5835
5995
|
readonly tools: true;
|
|
5836
5996
|
readonly reasoning: true;
|
|
5837
5997
|
readonly webSearch: true;
|
|
5998
|
+
readonly jsonResponseWithTools: true;
|
|
5838
5999
|
};
|
|
5839
6000
|
};
|
|
5840
6001
|
readonly "gpt-5.1-chat": {
|
|
@@ -5858,6 +6019,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5858
6019
|
readonly tools: true;
|
|
5859
6020
|
readonly reasoning: true;
|
|
5860
6021
|
readonly webSearch: false;
|
|
6022
|
+
readonly jsonResponseWithTools: true;
|
|
5861
6023
|
};
|
|
5862
6024
|
};
|
|
5863
6025
|
readonly "gpt-5.1-codex": {
|
|
@@ -5881,6 +6043,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5881
6043
|
readonly tools: true;
|
|
5882
6044
|
readonly reasoning: true;
|
|
5883
6045
|
readonly webSearch: true;
|
|
6046
|
+
readonly jsonResponseWithTools: true;
|
|
5884
6047
|
};
|
|
5885
6048
|
};
|
|
5886
6049
|
readonly "gpt-5.1-codex-mini": {
|
|
@@ -5904,6 +6067,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5904
6067
|
readonly tools: true;
|
|
5905
6068
|
readonly reasoning: true;
|
|
5906
6069
|
readonly webSearch: true;
|
|
6070
|
+
readonly jsonResponseWithTools: true;
|
|
5907
6071
|
};
|
|
5908
6072
|
};
|
|
5909
6073
|
readonly "gpt-5.2": {
|
|
@@ -5927,6 +6091,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5927
6091
|
readonly tools: true;
|
|
5928
6092
|
readonly reasoning: true;
|
|
5929
6093
|
readonly webSearch: true;
|
|
6094
|
+
readonly jsonResponseWithTools: true;
|
|
5930
6095
|
};
|
|
5931
6096
|
};
|
|
5932
6097
|
readonly "gpt-5.2-pro": {
|
|
@@ -5950,6 +6115,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5950
6115
|
readonly tools: true;
|
|
5951
6116
|
readonly reasoning: true;
|
|
5952
6117
|
readonly webSearch: true;
|
|
6118
|
+
readonly jsonResponseWithTools: true;
|
|
5953
6119
|
};
|
|
5954
6120
|
};
|
|
5955
6121
|
readonly "gpt-5.2-codex": {
|
|
@@ -5973,6 +6139,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5973
6139
|
readonly tools: true;
|
|
5974
6140
|
readonly reasoning: true;
|
|
5975
6141
|
readonly webSearch: true;
|
|
6142
|
+
readonly jsonResponseWithTools: true;
|
|
5976
6143
|
};
|
|
5977
6144
|
};
|
|
5978
6145
|
readonly "gpt-5.3-codex": {
|
|
@@ -5996,6 +6163,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
5996
6163
|
readonly tools: true;
|
|
5997
6164
|
readonly reasoning: true;
|
|
5998
6165
|
readonly webSearch: true;
|
|
6166
|
+
readonly jsonResponseWithTools: true;
|
|
5999
6167
|
};
|
|
6000
6168
|
};
|
|
6001
6169
|
readonly "gpt-5.4": {
|
|
@@ -6019,6 +6187,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6019
6187
|
readonly tools: true;
|
|
6020
6188
|
readonly reasoning: true;
|
|
6021
6189
|
readonly webSearch: true;
|
|
6190
|
+
readonly jsonResponseWithTools: true;
|
|
6022
6191
|
};
|
|
6023
6192
|
};
|
|
6024
6193
|
readonly "gpt-5.4-pro": {
|
|
@@ -6042,6 +6211,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6042
6211
|
readonly tools: true;
|
|
6043
6212
|
readonly reasoning: true;
|
|
6044
6213
|
readonly webSearch: true;
|
|
6214
|
+
readonly jsonResponseWithTools: true;
|
|
6045
6215
|
};
|
|
6046
6216
|
};
|
|
6047
6217
|
readonly "claude-sonnet-4-20250514": {
|
|
@@ -6065,6 +6235,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6065
6235
|
readonly tools: true;
|
|
6066
6236
|
readonly reasoning: true;
|
|
6067
6237
|
readonly webSearch: true;
|
|
6238
|
+
readonly jsonResponseWithTools: false;
|
|
6068
6239
|
};
|
|
6069
6240
|
};
|
|
6070
6241
|
readonly "claude-sonnet-4-5": {
|
|
@@ -6088,6 +6259,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6088
6259
|
readonly tools: true;
|
|
6089
6260
|
readonly reasoning: true;
|
|
6090
6261
|
readonly webSearch: true;
|
|
6262
|
+
readonly jsonResponseWithTools: false;
|
|
6091
6263
|
};
|
|
6092
6264
|
};
|
|
6093
6265
|
readonly "claude-sonnet-4-5-20250929": {
|
|
@@ -6111,6 +6283,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6111
6283
|
readonly tools: true;
|
|
6112
6284
|
readonly reasoning: true;
|
|
6113
6285
|
readonly webSearch: true;
|
|
6286
|
+
readonly jsonResponseWithTools: false;
|
|
6114
6287
|
};
|
|
6115
6288
|
};
|
|
6116
6289
|
readonly "claude-sonnet-4-6": {
|
|
@@ -6134,6 +6307,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6134
6307
|
readonly tools: true;
|
|
6135
6308
|
readonly reasoning: true;
|
|
6136
6309
|
readonly webSearch: true;
|
|
6310
|
+
readonly jsonResponseWithTools: false;
|
|
6137
6311
|
};
|
|
6138
6312
|
};
|
|
6139
6313
|
readonly "claude-haiku-4-5": {
|
|
@@ -6157,6 +6331,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6157
6331
|
readonly tools: true;
|
|
6158
6332
|
readonly reasoning: false;
|
|
6159
6333
|
readonly webSearch: true;
|
|
6334
|
+
readonly jsonResponseWithTools: false;
|
|
6160
6335
|
};
|
|
6161
6336
|
};
|
|
6162
6337
|
readonly "claude-haiku-4-5-20251001": {
|
|
@@ -6180,6 +6355,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6180
6355
|
readonly tools: true;
|
|
6181
6356
|
readonly reasoning: false;
|
|
6182
6357
|
readonly webSearch: true;
|
|
6358
|
+
readonly jsonResponseWithTools: false;
|
|
6183
6359
|
};
|
|
6184
6360
|
};
|
|
6185
6361
|
readonly "claude-opus-4-20250514": {
|
|
@@ -6203,6 +6379,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6203
6379
|
readonly tools: true;
|
|
6204
6380
|
readonly reasoning: true;
|
|
6205
6381
|
readonly webSearch: true;
|
|
6382
|
+
readonly jsonResponseWithTools: false;
|
|
6206
6383
|
};
|
|
6207
6384
|
};
|
|
6208
6385
|
readonly "claude-opus-4-1-20250805": {
|
|
@@ -6226,6 +6403,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6226
6403
|
readonly tools: true;
|
|
6227
6404
|
readonly reasoning: true;
|
|
6228
6405
|
readonly webSearch: true;
|
|
6406
|
+
readonly jsonResponseWithTools: false;
|
|
6229
6407
|
};
|
|
6230
6408
|
};
|
|
6231
6409
|
readonly "claude-opus-4-5-20251101": {
|
|
@@ -6249,6 +6427,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6249
6427
|
readonly tools: true;
|
|
6250
6428
|
readonly reasoning: true;
|
|
6251
6429
|
readonly webSearch: true;
|
|
6430
|
+
readonly jsonResponseWithTools: false;
|
|
6252
6431
|
};
|
|
6253
6432
|
};
|
|
6254
6433
|
readonly "claude-opus-4-6": {
|
|
@@ -6272,6 +6451,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6272
6451
|
readonly tools: true;
|
|
6273
6452
|
readonly reasoning: true;
|
|
6274
6453
|
readonly webSearch: true;
|
|
6454
|
+
readonly jsonResponseWithTools: false;
|
|
6275
6455
|
};
|
|
6276
6456
|
};
|
|
6277
6457
|
readonly "gemini-2.5-pro": {
|
|
@@ -6295,6 +6475,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6295
6475
|
readonly tools: true;
|
|
6296
6476
|
readonly reasoning: true;
|
|
6297
6477
|
readonly webSearch: true;
|
|
6478
|
+
readonly jsonResponseWithTools: true;
|
|
6298
6479
|
};
|
|
6299
6480
|
};
|
|
6300
6481
|
readonly "gemini-2.5-flash": {
|
|
@@ -6318,6 +6499,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6318
6499
|
readonly tools: true;
|
|
6319
6500
|
readonly reasoning: true;
|
|
6320
6501
|
readonly webSearch: true;
|
|
6502
|
+
readonly jsonResponseWithTools: true;
|
|
6321
6503
|
};
|
|
6322
6504
|
};
|
|
6323
6505
|
readonly "gemini-2.5-flash-lite": {
|
|
@@ -6341,6 +6523,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6341
6523
|
readonly tools: true;
|
|
6342
6524
|
readonly reasoning: false;
|
|
6343
6525
|
readonly webSearch: false;
|
|
6526
|
+
readonly jsonResponseWithTools: true;
|
|
6344
6527
|
};
|
|
6345
6528
|
};
|
|
6346
6529
|
readonly "gemini-2.5-flash-lite-preview-09-2025": {
|
|
@@ -6364,6 +6547,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6364
6547
|
readonly tools: true;
|
|
6365
6548
|
readonly reasoning: false;
|
|
6366
6549
|
readonly webSearch: false;
|
|
6550
|
+
readonly jsonResponseWithTools: true;
|
|
6367
6551
|
};
|
|
6368
6552
|
};
|
|
6369
6553
|
readonly "gemini-3.1-pro-preview": {
|
|
@@ -6387,6 +6571,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6387
6571
|
readonly tools: true;
|
|
6388
6572
|
readonly reasoning: true;
|
|
6389
6573
|
readonly webSearch: true;
|
|
6574
|
+
readonly jsonResponseWithTools: true;
|
|
6390
6575
|
};
|
|
6391
6576
|
};
|
|
6392
6577
|
readonly "gemini-3-flash-preview": {
|
|
@@ -6410,6 +6595,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6410
6595
|
readonly tools: true;
|
|
6411
6596
|
readonly reasoning: true;
|
|
6412
6597
|
readonly webSearch: true;
|
|
6598
|
+
readonly jsonResponseWithTools: true;
|
|
6413
6599
|
};
|
|
6414
6600
|
};
|
|
6415
6601
|
readonly "gemini-2.5-flash-image": {
|
|
@@ -6433,6 +6619,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6433
6619
|
readonly tools: false;
|
|
6434
6620
|
readonly reasoning: false;
|
|
6435
6621
|
readonly webSearch: false;
|
|
6622
|
+
readonly jsonResponseWithTools: true;
|
|
6436
6623
|
};
|
|
6437
6624
|
};
|
|
6438
6625
|
readonly "gemma-3n-e2b-it": {
|
|
@@ -6456,6 +6643,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6456
6643
|
readonly tools: false;
|
|
6457
6644
|
readonly reasoning: false;
|
|
6458
6645
|
readonly webSearch: false;
|
|
6646
|
+
readonly jsonResponseWithTools: false;
|
|
6459
6647
|
};
|
|
6460
6648
|
};
|
|
6461
6649
|
readonly "gemma-3n-e4b-it": {
|
|
@@ -6479,6 +6667,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6479
6667
|
readonly tools: false;
|
|
6480
6668
|
readonly reasoning: false;
|
|
6481
6669
|
readonly webSearch: false;
|
|
6670
|
+
readonly jsonResponseWithTools: false;
|
|
6482
6671
|
};
|
|
6483
6672
|
};
|
|
6484
6673
|
readonly "gemma-3-1b-it": {
|
|
@@ -6502,6 +6691,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6502
6691
|
readonly tools: false;
|
|
6503
6692
|
readonly reasoning: false;
|
|
6504
6693
|
readonly webSearch: false;
|
|
6694
|
+
readonly jsonResponseWithTools: false;
|
|
6505
6695
|
};
|
|
6506
6696
|
};
|
|
6507
6697
|
readonly "gemma-3-4b-it": {
|
|
@@ -6525,6 +6715,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6525
6715
|
readonly tools: false;
|
|
6526
6716
|
readonly reasoning: false;
|
|
6527
6717
|
readonly webSearch: false;
|
|
6718
|
+
readonly jsonResponseWithTools: false;
|
|
6528
6719
|
};
|
|
6529
6720
|
};
|
|
6530
6721
|
readonly "gemma-3-12b-it": {
|
|
@@ -6548,6 +6739,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6548
6739
|
readonly tools: false;
|
|
6549
6740
|
readonly reasoning: false;
|
|
6550
6741
|
readonly webSearch: false;
|
|
6742
|
+
readonly jsonResponseWithTools: false;
|
|
6551
6743
|
};
|
|
6552
6744
|
};
|
|
6553
6745
|
readonly "grok-3": {
|
|
@@ -6571,6 +6763,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6571
6763
|
readonly tools: true;
|
|
6572
6764
|
readonly reasoning: false;
|
|
6573
6765
|
readonly webSearch: false;
|
|
6766
|
+
readonly jsonResponseWithTools: false;
|
|
6574
6767
|
};
|
|
6575
6768
|
};
|
|
6576
6769
|
readonly "grok-4-0709": {
|
|
@@ -6594,6 +6787,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6594
6787
|
readonly tools: true;
|
|
6595
6788
|
readonly reasoning: false;
|
|
6596
6789
|
readonly webSearch: false;
|
|
6790
|
+
readonly jsonResponseWithTools: false;
|
|
6597
6791
|
};
|
|
6598
6792
|
};
|
|
6599
6793
|
readonly "grok-4": {
|
|
@@ -6617,6 +6811,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6617
6811
|
readonly tools: true;
|
|
6618
6812
|
readonly reasoning: false;
|
|
6619
6813
|
readonly webSearch: false;
|
|
6814
|
+
readonly jsonResponseWithTools: false;
|
|
6620
6815
|
};
|
|
6621
6816
|
};
|
|
6622
6817
|
readonly "grok-4-fast-reasoning": {
|
|
@@ -6640,6 +6835,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6640
6835
|
readonly tools: true;
|
|
6641
6836
|
readonly reasoning: false;
|
|
6642
6837
|
readonly webSearch: false;
|
|
6838
|
+
readonly jsonResponseWithTools: false;
|
|
6643
6839
|
};
|
|
6644
6840
|
};
|
|
6645
6841
|
readonly "grok-4-fast-non-reasoning": {
|
|
@@ -6663,6 +6859,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6663
6859
|
readonly tools: true;
|
|
6664
6860
|
readonly reasoning: false;
|
|
6665
6861
|
readonly webSearch: false;
|
|
6862
|
+
readonly jsonResponseWithTools: false;
|
|
6666
6863
|
};
|
|
6667
6864
|
};
|
|
6668
6865
|
readonly "grok-code-fast-1": {
|
|
@@ -6686,6 +6883,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6686
6883
|
readonly tools: true;
|
|
6687
6884
|
readonly reasoning: false;
|
|
6688
6885
|
readonly webSearch: false;
|
|
6886
|
+
readonly jsonResponseWithTools: false;
|
|
6689
6887
|
};
|
|
6690
6888
|
};
|
|
6691
6889
|
readonly "grok-4-1-fast-reasoning": {
|
|
@@ -6709,6 +6907,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6709
6907
|
readonly tools: true;
|
|
6710
6908
|
readonly reasoning: false;
|
|
6711
6909
|
readonly webSearch: false;
|
|
6910
|
+
readonly jsonResponseWithTools: false;
|
|
6712
6911
|
};
|
|
6713
6912
|
};
|
|
6714
6913
|
readonly "grok-4-1-fast-non-reasoning": {
|
|
@@ -6732,6 +6931,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6732
6931
|
readonly tools: true;
|
|
6733
6932
|
readonly reasoning: false;
|
|
6734
6933
|
readonly webSearch: false;
|
|
6934
|
+
readonly jsonResponseWithTools: false;
|
|
6735
6935
|
};
|
|
6736
6936
|
};
|
|
6737
6937
|
readonly "llama-3-8b-instruct": {
|
|
@@ -6755,6 +6955,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6755
6955
|
readonly tools: false;
|
|
6756
6956
|
readonly reasoning: false;
|
|
6757
6957
|
readonly webSearch: false;
|
|
6958
|
+
readonly jsonResponseWithTools: false;
|
|
6758
6959
|
};
|
|
6759
6960
|
};
|
|
6760
6961
|
readonly "llama-3-70b-instruct": {
|
|
@@ -6778,6 +6979,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6778
6979
|
readonly tools: false;
|
|
6779
6980
|
readonly reasoning: false;
|
|
6780
6981
|
readonly webSearch: false;
|
|
6982
|
+
readonly jsonResponseWithTools: false;
|
|
6781
6983
|
};
|
|
6782
6984
|
};
|
|
6783
6985
|
readonly "llama-3.1-8b-instruct": {
|
|
@@ -6801,6 +7003,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6801
7003
|
readonly tools: false;
|
|
6802
7004
|
readonly reasoning: false;
|
|
6803
7005
|
readonly webSearch: false;
|
|
7006
|
+
readonly jsonResponseWithTools: false;
|
|
6804
7007
|
};
|
|
6805
7008
|
};
|
|
6806
7009
|
readonly "llama-3.1-70b-instruct": {
|
|
@@ -6824,6 +7027,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6824
7027
|
readonly tools: false;
|
|
6825
7028
|
readonly reasoning: false;
|
|
6826
7029
|
readonly webSearch: false;
|
|
7030
|
+
readonly jsonResponseWithTools: false;
|
|
6827
7031
|
};
|
|
6828
7032
|
};
|
|
6829
7033
|
readonly "llama-3.1-nemotron-ultra-253b": {
|
|
@@ -6847,6 +7051,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6847
7051
|
readonly tools: false;
|
|
6848
7052
|
readonly reasoning: false;
|
|
6849
7053
|
readonly webSearch: false;
|
|
7054
|
+
readonly jsonResponseWithTools: false;
|
|
6850
7055
|
};
|
|
6851
7056
|
};
|
|
6852
7057
|
readonly "llama-3.2-3b-instruct": {
|
|
@@ -6870,6 +7075,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6870
7075
|
readonly tools: false;
|
|
6871
7076
|
readonly reasoning: false;
|
|
6872
7077
|
readonly webSearch: false;
|
|
7078
|
+
readonly jsonResponseWithTools: false;
|
|
6873
7079
|
};
|
|
6874
7080
|
};
|
|
6875
7081
|
readonly "llama-3.3-70b-instruct": {
|
|
@@ -6893,6 +7099,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6893
7099
|
readonly tools: true;
|
|
6894
7100
|
readonly reasoning: false;
|
|
6895
7101
|
readonly webSearch: false;
|
|
7102
|
+
readonly jsonResponseWithTools: false;
|
|
6896
7103
|
};
|
|
6897
7104
|
};
|
|
6898
7105
|
readonly "llama-4-scout-17b-instruct": {
|
|
@@ -6916,6 +7123,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6916
7123
|
readonly tools: false;
|
|
6917
7124
|
readonly reasoning: false;
|
|
6918
7125
|
readonly webSearch: false;
|
|
7126
|
+
readonly jsonResponseWithTools: false;
|
|
6919
7127
|
};
|
|
6920
7128
|
};
|
|
6921
7129
|
readonly "llama-4-maverick-17b-instruct": {
|
|
@@ -6939,6 +7147,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6939
7147
|
readonly tools: false;
|
|
6940
7148
|
readonly reasoning: false;
|
|
6941
7149
|
readonly webSearch: false;
|
|
7150
|
+
readonly jsonResponseWithTools: false;
|
|
6942
7151
|
};
|
|
6943
7152
|
};
|
|
6944
7153
|
readonly "deepseek-r1-0528": {
|
|
@@ -6962,6 +7171,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6962
7171
|
readonly tools: false;
|
|
6963
7172
|
readonly reasoning: false;
|
|
6964
7173
|
readonly webSearch: false;
|
|
7174
|
+
readonly jsonResponseWithTools: false;
|
|
6965
7175
|
};
|
|
6966
7176
|
};
|
|
6967
7177
|
readonly "deepseek-v3.2": {
|
|
@@ -6985,6 +7195,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
6985
7195
|
readonly tools: true;
|
|
6986
7196
|
readonly reasoning: false;
|
|
6987
7197
|
readonly webSearch: false;
|
|
7198
|
+
readonly jsonResponseWithTools: false;
|
|
6988
7199
|
};
|
|
6989
7200
|
};
|
|
6990
7201
|
readonly "mistral-large-latest": {
|
|
@@ -7008,6 +7219,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7008
7219
|
readonly tools: false;
|
|
7009
7220
|
readonly reasoning: false;
|
|
7010
7221
|
readonly webSearch: false;
|
|
7222
|
+
readonly jsonResponseWithTools: false;
|
|
7011
7223
|
};
|
|
7012
7224
|
};
|
|
7013
7225
|
readonly "mistral-large-2512": {
|
|
@@ -7031,6 +7243,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7031
7243
|
readonly tools: false;
|
|
7032
7244
|
readonly reasoning: false;
|
|
7033
7245
|
readonly webSearch: false;
|
|
7246
|
+
readonly jsonResponseWithTools: false;
|
|
7034
7247
|
};
|
|
7035
7248
|
};
|
|
7036
7249
|
readonly "mistral-small-2506": {
|
|
@@ -7054,6 +7267,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7054
7267
|
readonly tools: false;
|
|
7055
7268
|
readonly reasoning: false;
|
|
7056
7269
|
readonly webSearch: false;
|
|
7270
|
+
readonly jsonResponseWithTools: false;
|
|
7057
7271
|
};
|
|
7058
7272
|
};
|
|
7059
7273
|
readonly "pixtral-large-latest": {
|
|
@@ -7077,6 +7291,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7077
7291
|
readonly tools: false;
|
|
7078
7292
|
readonly reasoning: false;
|
|
7079
7293
|
readonly webSearch: false;
|
|
7294
|
+
readonly jsonResponseWithTools: false;
|
|
7080
7295
|
};
|
|
7081
7296
|
};
|
|
7082
7297
|
readonly "ministral-14b-2512": {
|
|
@@ -7100,6 +7315,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7100
7315
|
readonly tools: false;
|
|
7101
7316
|
readonly reasoning: false;
|
|
7102
7317
|
readonly webSearch: false;
|
|
7318
|
+
readonly jsonResponseWithTools: false;
|
|
7103
7319
|
};
|
|
7104
7320
|
};
|
|
7105
7321
|
readonly "ministral-8b-2512": {
|
|
@@ -7123,6 +7339,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7123
7339
|
readonly tools: false;
|
|
7124
7340
|
readonly reasoning: false;
|
|
7125
7341
|
readonly webSearch: false;
|
|
7342
|
+
readonly jsonResponseWithTools: false;
|
|
7126
7343
|
};
|
|
7127
7344
|
};
|
|
7128
7345
|
readonly "ministral-3b-2512": {
|
|
@@ -7146,6 +7363,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7146
7363
|
readonly tools: false;
|
|
7147
7364
|
readonly reasoning: false;
|
|
7148
7365
|
readonly webSearch: false;
|
|
7366
|
+
readonly jsonResponseWithTools: false;
|
|
7149
7367
|
};
|
|
7150
7368
|
};
|
|
7151
7369
|
readonly "codestral-2508": {
|
|
@@ -7169,6 +7387,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7169
7387
|
readonly tools: false;
|
|
7170
7388
|
readonly reasoning: false;
|
|
7171
7389
|
readonly webSearch: false;
|
|
7390
|
+
readonly jsonResponseWithTools: false;
|
|
7172
7391
|
};
|
|
7173
7392
|
};
|
|
7174
7393
|
readonly "devstral-2512": {
|
|
@@ -7192,6 +7411,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7192
7411
|
readonly tools: false;
|
|
7193
7412
|
readonly reasoning: false;
|
|
7194
7413
|
readonly webSearch: false;
|
|
7414
|
+
readonly jsonResponseWithTools: false;
|
|
7195
7415
|
};
|
|
7196
7416
|
};
|
|
7197
7417
|
readonly "devstral-small-2507": {
|
|
@@ -7215,6 +7435,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7215
7435
|
readonly tools: false;
|
|
7216
7436
|
readonly reasoning: false;
|
|
7217
7437
|
readonly webSearch: false;
|
|
7438
|
+
readonly jsonResponseWithTools: false;
|
|
7218
7439
|
};
|
|
7219
7440
|
};
|
|
7220
7441
|
readonly "minimax-m2.5": {
|
|
@@ -7238,6 +7459,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7238
7459
|
readonly tools: true;
|
|
7239
7460
|
readonly reasoning: true;
|
|
7240
7461
|
readonly webSearch: false;
|
|
7462
|
+
readonly jsonResponseWithTools: false;
|
|
7241
7463
|
};
|
|
7242
7464
|
};
|
|
7243
7465
|
readonly "minimax/minimax-m2.5": {
|
|
@@ -7261,6 +7483,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7261
7483
|
readonly tools: true;
|
|
7262
7484
|
readonly reasoning: true;
|
|
7263
7485
|
readonly webSearch: false;
|
|
7486
|
+
readonly jsonResponseWithTools: false;
|
|
7264
7487
|
};
|
|
7265
7488
|
};
|
|
7266
7489
|
readonly "novita/minimax-m2.5": {
|
|
@@ -7284,6 +7507,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7284
7507
|
readonly tools: true;
|
|
7285
7508
|
readonly reasoning: true;
|
|
7286
7509
|
readonly webSearch: false;
|
|
7510
|
+
readonly jsonResponseWithTools: false;
|
|
7287
7511
|
};
|
|
7288
7512
|
};
|
|
7289
7513
|
readonly "minimax-m2": {
|
|
@@ -7307,6 +7531,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7307
7531
|
readonly tools: false;
|
|
7308
7532
|
readonly reasoning: true;
|
|
7309
7533
|
readonly webSearch: false;
|
|
7534
|
+
readonly jsonResponseWithTools: false;
|
|
7310
7535
|
};
|
|
7311
7536
|
};
|
|
7312
7537
|
readonly "minimax-m2.1": {
|
|
@@ -7330,6 +7555,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7330
7555
|
readonly tools: false;
|
|
7331
7556
|
readonly reasoning: true;
|
|
7332
7557
|
readonly webSearch: false;
|
|
7558
|
+
readonly jsonResponseWithTools: false;
|
|
7333
7559
|
};
|
|
7334
7560
|
};
|
|
7335
7561
|
readonly "minimax-m2.1-lightning": {
|
|
@@ -7353,6 +7579,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7353
7579
|
readonly tools: false;
|
|
7354
7580
|
readonly reasoning: true;
|
|
7355
7581
|
readonly webSearch: false;
|
|
7582
|
+
readonly jsonResponseWithTools: false;
|
|
7356
7583
|
};
|
|
7357
7584
|
};
|
|
7358
7585
|
readonly "minimax-text-01": {
|
|
@@ -7376,6 +7603,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7376
7603
|
readonly tools: false;
|
|
7377
7604
|
readonly reasoning: false;
|
|
7378
7605
|
readonly webSearch: false;
|
|
7606
|
+
readonly jsonResponseWithTools: false;
|
|
7379
7607
|
};
|
|
7380
7608
|
};
|
|
7381
7609
|
readonly "kimi-k2": {
|
|
@@ -7399,6 +7627,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7399
7627
|
readonly tools: true;
|
|
7400
7628
|
readonly reasoning: false;
|
|
7401
7629
|
readonly webSearch: false;
|
|
7630
|
+
readonly jsonResponseWithTools: false;
|
|
7402
7631
|
};
|
|
7403
7632
|
};
|
|
7404
7633
|
readonly "kimi-k2-thinking-turbo": {
|
|
@@ -7422,6 +7651,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7422
7651
|
readonly tools: true;
|
|
7423
7652
|
readonly reasoning: true;
|
|
7424
7653
|
readonly webSearch: false;
|
|
7654
|
+
readonly jsonResponseWithTools: false;
|
|
7425
7655
|
};
|
|
7426
7656
|
};
|
|
7427
7657
|
readonly "moonshot/kimi-k2.5": {
|
|
@@ -7445,6 +7675,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7445
7675
|
readonly tools: true;
|
|
7446
7676
|
readonly reasoning: false;
|
|
7447
7677
|
readonly webSearch: false;
|
|
7678
|
+
readonly jsonResponseWithTools: false;
|
|
7448
7679
|
};
|
|
7449
7680
|
};
|
|
7450
7681
|
readonly "qwen-max": {
|
|
@@ -7468,6 +7699,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7468
7699
|
readonly tools: true;
|
|
7469
7700
|
readonly reasoning: false;
|
|
7470
7701
|
readonly webSearch: false;
|
|
7702
|
+
readonly jsonResponseWithTools: false;
|
|
7471
7703
|
};
|
|
7472
7704
|
};
|
|
7473
7705
|
readonly "qwen-max-latest": {
|
|
@@ -7491,6 +7723,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7491
7723
|
readonly tools: true;
|
|
7492
7724
|
readonly reasoning: false;
|
|
7493
7725
|
readonly webSearch: false;
|
|
7726
|
+
readonly jsonResponseWithTools: false;
|
|
7494
7727
|
};
|
|
7495
7728
|
};
|
|
7496
7729
|
readonly "qwen-plus": {
|
|
@@ -7514,6 +7747,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7514
7747
|
readonly tools: true;
|
|
7515
7748
|
readonly reasoning: false;
|
|
7516
7749
|
readonly webSearch: false;
|
|
7750
|
+
readonly jsonResponseWithTools: false;
|
|
7517
7751
|
};
|
|
7518
7752
|
};
|
|
7519
7753
|
readonly "qwen-plus-latest": {
|
|
@@ -7537,6 +7771,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7537
7771
|
readonly tools: true;
|
|
7538
7772
|
readonly reasoning: false;
|
|
7539
7773
|
readonly webSearch: false;
|
|
7774
|
+
readonly jsonResponseWithTools: false;
|
|
7540
7775
|
};
|
|
7541
7776
|
};
|
|
7542
7777
|
readonly "qwen-flash": {
|
|
@@ -7560,6 +7795,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7560
7795
|
readonly tools: true;
|
|
7561
7796
|
readonly reasoning: false;
|
|
7562
7797
|
readonly webSearch: false;
|
|
7798
|
+
readonly jsonResponseWithTools: false;
|
|
7563
7799
|
};
|
|
7564
7800
|
};
|
|
7565
7801
|
readonly "qwen-turbo": {
|
|
@@ -7583,6 +7819,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7583
7819
|
readonly tools: false;
|
|
7584
7820
|
readonly reasoning: false;
|
|
7585
7821
|
readonly webSearch: false;
|
|
7822
|
+
readonly jsonResponseWithTools: false;
|
|
7586
7823
|
};
|
|
7587
7824
|
};
|
|
7588
7825
|
readonly "qwen-omni-turbo": {
|
|
@@ -7606,6 +7843,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7606
7843
|
readonly tools: false;
|
|
7607
7844
|
readonly reasoning: false;
|
|
7608
7845
|
readonly webSearch: false;
|
|
7846
|
+
readonly jsonResponseWithTools: false;
|
|
7609
7847
|
};
|
|
7610
7848
|
};
|
|
7611
7849
|
readonly "qwen-vl-max": {
|
|
@@ -7629,6 +7867,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7629
7867
|
readonly tools: false;
|
|
7630
7868
|
readonly reasoning: false;
|
|
7631
7869
|
readonly webSearch: false;
|
|
7870
|
+
readonly jsonResponseWithTools: false;
|
|
7632
7871
|
};
|
|
7633
7872
|
};
|
|
7634
7873
|
readonly "qwen-vl-plus": {
|
|
@@ -7652,6 +7891,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7652
7891
|
readonly tools: false;
|
|
7653
7892
|
readonly reasoning: false;
|
|
7654
7893
|
readonly webSearch: false;
|
|
7894
|
+
readonly jsonResponseWithTools: false;
|
|
7655
7895
|
};
|
|
7656
7896
|
};
|
|
7657
7897
|
readonly "qwen-coder-plus": {
|
|
@@ -7675,6 +7915,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7675
7915
|
readonly tools: true;
|
|
7676
7916
|
readonly reasoning: false;
|
|
7677
7917
|
readonly webSearch: false;
|
|
7918
|
+
readonly jsonResponseWithTools: false;
|
|
7678
7919
|
};
|
|
7679
7920
|
};
|
|
7680
7921
|
readonly "qwq-plus": {
|
|
@@ -7698,6 +7939,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7698
7939
|
readonly tools: false;
|
|
7699
7940
|
readonly reasoning: true;
|
|
7700
7941
|
readonly webSearch: false;
|
|
7942
|
+
readonly jsonResponseWithTools: false;
|
|
7701
7943
|
};
|
|
7702
7944
|
};
|
|
7703
7945
|
readonly "qwen3-max": {
|
|
@@ -7721,6 +7963,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7721
7963
|
readonly tools: true;
|
|
7722
7964
|
readonly reasoning: true;
|
|
7723
7965
|
readonly webSearch: false;
|
|
7966
|
+
readonly jsonResponseWithTools: false;
|
|
7724
7967
|
};
|
|
7725
7968
|
};
|
|
7726
7969
|
readonly "qwen3-max-2026-01-23": {
|
|
@@ -7744,6 +7987,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7744
7987
|
readonly tools: true;
|
|
7745
7988
|
readonly reasoning: true;
|
|
7746
7989
|
readonly webSearch: false;
|
|
7990
|
+
readonly jsonResponseWithTools: false;
|
|
7747
7991
|
};
|
|
7748
7992
|
};
|
|
7749
7993
|
readonly "qwen3-32b": {
|
|
@@ -7767,6 +8011,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7767
8011
|
readonly tools: true;
|
|
7768
8012
|
readonly reasoning: false;
|
|
7769
8013
|
readonly webSearch: false;
|
|
8014
|
+
readonly jsonResponseWithTools: false;
|
|
7770
8015
|
};
|
|
7771
8016
|
};
|
|
7772
8017
|
readonly "qwen3-32b-fp8": {
|
|
@@ -7790,6 +8035,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7790
8035
|
readonly tools: false;
|
|
7791
8036
|
readonly reasoning: false;
|
|
7792
8037
|
readonly webSearch: false;
|
|
8038
|
+
readonly jsonResponseWithTools: false;
|
|
7793
8039
|
};
|
|
7794
8040
|
};
|
|
7795
8041
|
readonly "qwen3-235b-a22b-instruct-2507": {
|
|
@@ -7813,6 +8059,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7813
8059
|
readonly tools: true;
|
|
7814
8060
|
readonly reasoning: false;
|
|
7815
8061
|
readonly webSearch: false;
|
|
8062
|
+
readonly jsonResponseWithTools: false;
|
|
7816
8063
|
};
|
|
7817
8064
|
};
|
|
7818
8065
|
readonly "qwen3-235b-a22b-thinking-2507": {
|
|
@@ -7836,6 +8083,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7836
8083
|
readonly tools: true;
|
|
7837
8084
|
readonly reasoning: true;
|
|
7838
8085
|
readonly webSearch: false;
|
|
8086
|
+
readonly jsonResponseWithTools: false;
|
|
7839
8087
|
};
|
|
7840
8088
|
};
|
|
7841
8089
|
readonly "qwen3-235b-a22b-fp8": {
|
|
@@ -7859,6 +8107,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7859
8107
|
readonly tools: false;
|
|
7860
8108
|
readonly reasoning: false;
|
|
7861
8109
|
readonly webSearch: false;
|
|
8110
|
+
readonly jsonResponseWithTools: false;
|
|
7862
8111
|
};
|
|
7863
8112
|
};
|
|
7864
8113
|
readonly "qwen3-30b-a3b-instruct-2507": {
|
|
@@ -7882,6 +8131,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7882
8131
|
readonly tools: true;
|
|
7883
8132
|
readonly reasoning: false;
|
|
7884
8133
|
readonly webSearch: false;
|
|
8134
|
+
readonly jsonResponseWithTools: false;
|
|
7885
8135
|
};
|
|
7886
8136
|
};
|
|
7887
8137
|
readonly "qwen3-30b-a3b-thinking-2507": {
|
|
@@ -7905,6 +8155,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7905
8155
|
readonly tools: true;
|
|
7906
8156
|
readonly reasoning: true;
|
|
7907
8157
|
readonly webSearch: false;
|
|
8158
|
+
readonly jsonResponseWithTools: false;
|
|
7908
8159
|
};
|
|
7909
8160
|
};
|
|
7910
8161
|
readonly "qwen3-30b-a3b-fp8": {
|
|
@@ -7928,6 +8179,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7928
8179
|
readonly tools: false;
|
|
7929
8180
|
readonly reasoning: false;
|
|
7930
8181
|
readonly webSearch: false;
|
|
8182
|
+
readonly jsonResponseWithTools: false;
|
|
7931
8183
|
};
|
|
7932
8184
|
};
|
|
7933
8185
|
readonly "qwen3-4b-fp8": {
|
|
@@ -7951,6 +8203,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7951
8203
|
readonly tools: false;
|
|
7952
8204
|
readonly reasoning: false;
|
|
7953
8205
|
readonly webSearch: false;
|
|
8206
|
+
readonly jsonResponseWithTools: false;
|
|
7954
8207
|
};
|
|
7955
8208
|
};
|
|
7956
8209
|
readonly "qwen35-397b-a17b": {
|
|
@@ -7974,6 +8227,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7974
8227
|
readonly tools: true;
|
|
7975
8228
|
readonly reasoning: true;
|
|
7976
8229
|
readonly webSearch: true;
|
|
8230
|
+
readonly jsonResponseWithTools: false;
|
|
7977
8231
|
};
|
|
7978
8232
|
};
|
|
7979
8233
|
readonly "qwen3-next-80b-a3b-thinking": {
|
|
@@ -7997,6 +8251,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
7997
8251
|
readonly tools: true;
|
|
7998
8252
|
readonly reasoning: true;
|
|
7999
8253
|
readonly webSearch: false;
|
|
8254
|
+
readonly jsonResponseWithTools: false;
|
|
8000
8255
|
};
|
|
8001
8256
|
};
|
|
8002
8257
|
readonly "qwen3-next-80b-a3b-instruct": {
|
|
@@ -8020,6 +8275,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
8020
8275
|
readonly tools: true;
|
|
8021
8276
|
readonly reasoning: false;
|
|
8022
8277
|
readonly webSearch: false;
|
|
8278
|
+
readonly jsonResponseWithTools: false;
|
|
8023
8279
|
};
|
|
8024
8280
|
};
|
|
8025
8281
|
readonly "qwen3-coder-plus": {
|
|
@@ -8043,6 +8299,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
8043
8299
|
readonly tools: true;
|
|
8044
8300
|
readonly reasoning: false;
|
|
8045
8301
|
readonly webSearch: false;
|
|
8302
|
+
readonly jsonResponseWithTools: false;
|
|
8046
8303
|
};
|
|
8047
8304
|
};
|
|
8048
8305
|
readonly "qwen3-coder-flash": {
|
|
@@ -8066,6 +8323,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
8066
8323
|
readonly tools: true;
|
|
8067
8324
|
readonly reasoning: false;
|
|
8068
8325
|
readonly webSearch: false;
|
|
8326
|
+
readonly jsonResponseWithTools: false;
|
|
8069
8327
|
};
|
|
8070
8328
|
};
|
|
8071
8329
|
readonly "qwen3-coder-30b-a3b-instruct": {
|
|
@@ -8089,6 +8347,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
8089
8347
|
readonly tools: true;
|
|
8090
8348
|
readonly reasoning: false;
|
|
8091
8349
|
readonly webSearch: false;
|
|
8350
|
+
readonly jsonResponseWithTools: false;
|
|
8092
8351
|
};
|
|
8093
8352
|
};
|
|
8094
8353
|
readonly "qwen3-vl-8b-instruct": {
|
|
@@ -8112,6 +8371,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
8112
8371
|
readonly tools: false;
|
|
8113
8372
|
readonly reasoning: false;
|
|
8114
8373
|
readonly webSearch: false;
|
|
8374
|
+
readonly jsonResponseWithTools: false;
|
|
8115
8375
|
};
|
|
8116
8376
|
};
|
|
8117
8377
|
readonly "qwen3-vl-plus": {
|
|
@@ -8135,6 +8395,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
8135
8395
|
readonly tools: false;
|
|
8136
8396
|
readonly reasoning: false;
|
|
8137
8397
|
readonly webSearch: false;
|
|
8398
|
+
readonly jsonResponseWithTools: false;
|
|
8138
8399
|
};
|
|
8139
8400
|
};
|
|
8140
8401
|
readonly "qwen3-vl-flash": {
|
|
@@ -8158,6 +8419,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
8158
8419
|
readonly tools: true;
|
|
8159
8420
|
readonly reasoning: false;
|
|
8160
8421
|
readonly webSearch: false;
|
|
8422
|
+
readonly jsonResponseWithTools: false;
|
|
8161
8423
|
};
|
|
8162
8424
|
};
|
|
8163
8425
|
readonly "qwen3-vl-30b-a3b-instruct": {
|
|
@@ -8181,6 +8443,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
8181
8443
|
readonly tools: true;
|
|
8182
8444
|
readonly reasoning: false;
|
|
8183
8445
|
readonly webSearch: false;
|
|
8446
|
+
readonly jsonResponseWithTools: false;
|
|
8184
8447
|
};
|
|
8185
8448
|
};
|
|
8186
8449
|
readonly "qwen3-vl-30b-a3b-thinking": {
|
|
@@ -8204,6 +8467,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
8204
8467
|
readonly tools: true;
|
|
8205
8468
|
readonly reasoning: true;
|
|
8206
8469
|
readonly webSearch: false;
|
|
8470
|
+
readonly jsonResponseWithTools: false;
|
|
8207
8471
|
};
|
|
8208
8472
|
};
|
|
8209
8473
|
readonly "qwen3-vl-235b-a22b-instruct": {
|
|
@@ -8227,6 +8491,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
8227
8491
|
readonly tools: true;
|
|
8228
8492
|
readonly reasoning: false;
|
|
8229
8493
|
readonly webSearch: false;
|
|
8494
|
+
readonly jsonResponseWithTools: false;
|
|
8230
8495
|
};
|
|
8231
8496
|
};
|
|
8232
8497
|
readonly "qwen3-vl-235b-a22b-thinking": {
|
|
@@ -8250,6 +8515,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
8250
8515
|
readonly tools: false;
|
|
8251
8516
|
readonly reasoning: true;
|
|
8252
8517
|
readonly webSearch: false;
|
|
8518
|
+
readonly jsonResponseWithTools: false;
|
|
8253
8519
|
};
|
|
8254
8520
|
};
|
|
8255
8521
|
readonly "qwen2-5-vl-32b-instruct": {
|
|
@@ -8273,6 +8539,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
8273
8539
|
readonly tools: false;
|
|
8274
8540
|
readonly reasoning: false;
|
|
8275
8541
|
readonly webSearch: false;
|
|
8542
|
+
readonly jsonResponseWithTools: false;
|
|
8276
8543
|
};
|
|
8277
8544
|
};
|
|
8278
8545
|
readonly "glm-5": {
|
|
@@ -8296,6 +8563,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
8296
8563
|
readonly tools: true;
|
|
8297
8564
|
readonly reasoning: true;
|
|
8298
8565
|
readonly webSearch: true;
|
|
8566
|
+
readonly jsonResponseWithTools: false;
|
|
8299
8567
|
};
|
|
8300
8568
|
};
|
|
8301
8569
|
readonly "glm-4.5": {
|
|
@@ -8319,6 +8587,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
8319
8587
|
readonly tools: true;
|
|
8320
8588
|
readonly reasoning: true;
|
|
8321
8589
|
readonly webSearch: true;
|
|
8590
|
+
readonly jsonResponseWithTools: false;
|
|
8322
8591
|
};
|
|
8323
8592
|
};
|
|
8324
8593
|
readonly "glm-4.5v": {
|
|
@@ -8342,6 +8611,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
8342
8611
|
readonly tools: true;
|
|
8343
8612
|
readonly reasoning: true;
|
|
8344
8613
|
readonly webSearch: false;
|
|
8614
|
+
readonly jsonResponseWithTools: false;
|
|
8345
8615
|
};
|
|
8346
8616
|
};
|
|
8347
8617
|
readonly "glm-4.5-air": {
|
|
@@ -8365,6 +8635,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
8365
8635
|
readonly tools: true;
|
|
8366
8636
|
readonly reasoning: false;
|
|
8367
8637
|
readonly webSearch: false;
|
|
8638
|
+
readonly jsonResponseWithTools: false;
|
|
8368
8639
|
};
|
|
8369
8640
|
};
|
|
8370
8641
|
readonly "glm-4.5-x": {
|
|
@@ -8388,6 +8659,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
8388
8659
|
readonly tools: true;
|
|
8389
8660
|
readonly reasoning: true;
|
|
8390
8661
|
readonly webSearch: false;
|
|
8662
|
+
readonly jsonResponseWithTools: false;
|
|
8391
8663
|
};
|
|
8392
8664
|
};
|
|
8393
8665
|
readonly "glm-4.5-airx": {
|
|
@@ -8411,6 +8683,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
8411
8683
|
readonly tools: true;
|
|
8412
8684
|
readonly reasoning: false;
|
|
8413
8685
|
readonly webSearch: false;
|
|
8686
|
+
readonly jsonResponseWithTools: false;
|
|
8414
8687
|
};
|
|
8415
8688
|
};
|
|
8416
8689
|
readonly "glm-4.5-flash": {
|
|
@@ -8434,6 +8707,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
8434
8707
|
readonly tools: true;
|
|
8435
8708
|
readonly reasoning: false;
|
|
8436
8709
|
readonly webSearch: false;
|
|
8710
|
+
readonly jsonResponseWithTools: false;
|
|
8437
8711
|
};
|
|
8438
8712
|
};
|
|
8439
8713
|
readonly "glm-4.6": {
|
|
@@ -8457,6 +8731,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
8457
8731
|
readonly tools: true;
|
|
8458
8732
|
readonly reasoning: true;
|
|
8459
8733
|
readonly webSearch: true;
|
|
8734
|
+
readonly jsonResponseWithTools: false;
|
|
8460
8735
|
};
|
|
8461
8736
|
};
|
|
8462
8737
|
readonly "glm-4.6v": {
|
|
@@ -8480,6 +8755,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
8480
8755
|
readonly tools: true;
|
|
8481
8756
|
readonly reasoning: true;
|
|
8482
8757
|
readonly webSearch: false;
|
|
8758
|
+
readonly jsonResponseWithTools: false;
|
|
8483
8759
|
};
|
|
8484
8760
|
};
|
|
8485
8761
|
readonly "glm-4.6v-flashx": {
|
|
@@ -8503,6 +8779,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
8503
8779
|
readonly tools: true;
|
|
8504
8780
|
readonly reasoning: true;
|
|
8505
8781
|
readonly webSearch: false;
|
|
8782
|
+
readonly jsonResponseWithTools: false;
|
|
8506
8783
|
};
|
|
8507
8784
|
};
|
|
8508
8785
|
readonly "glm-4.6v-flash": {
|
|
@@ -8526,6 +8803,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
8526
8803
|
readonly tools: true;
|
|
8527
8804
|
readonly reasoning: true;
|
|
8528
8805
|
readonly webSearch: false;
|
|
8806
|
+
readonly jsonResponseWithTools: false;
|
|
8529
8807
|
};
|
|
8530
8808
|
};
|
|
8531
8809
|
readonly "glm-4.7": {
|
|
@@ -8549,6 +8827,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
8549
8827
|
readonly tools: true;
|
|
8550
8828
|
readonly reasoning: true;
|
|
8551
8829
|
readonly webSearch: true;
|
|
8830
|
+
readonly jsonResponseWithTools: false;
|
|
8552
8831
|
};
|
|
8553
8832
|
};
|
|
8554
8833
|
readonly "glm-4.7-flashx": {
|
|
@@ -8572,6 +8851,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
8572
8851
|
readonly tools: true;
|
|
8573
8852
|
readonly reasoning: true;
|
|
8574
8853
|
readonly webSearch: false;
|
|
8854
|
+
readonly jsonResponseWithTools: false;
|
|
8575
8855
|
};
|
|
8576
8856
|
};
|
|
8577
8857
|
readonly "glm-4.7-flash": {
|
|
@@ -8595,6 +8875,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
8595
8875
|
readonly tools: true;
|
|
8596
8876
|
readonly reasoning: true;
|
|
8597
8877
|
readonly webSearch: false;
|
|
8878
|
+
readonly jsonResponseWithTools: false;
|
|
8598
8879
|
};
|
|
8599
8880
|
};
|
|
8600
8881
|
readonly "glm-4-32b-0414-128k": {
|
|
@@ -8618,6 +8899,7 @@ export declare const LLM_SERVICE_MODELS: {
|
|
|
8618
8899
|
readonly tools: true;
|
|
8619
8900
|
readonly reasoning: false;
|
|
8620
8901
|
readonly webSearch: false;
|
|
8902
|
+
readonly jsonResponseWithTools: false;
|
|
8621
8903
|
};
|
|
8622
8904
|
};
|
|
8623
8905
|
};
|