@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
|
@@ -22,7 +22,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
22
22
|
getPriceForAudioOutput: () => 0,
|
|
23
23
|
currency: 'USD',
|
|
24
24
|
},
|
|
25
|
-
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false },
|
|
25
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: true },
|
|
26
26
|
},
|
|
27
27
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4]: {
|
|
28
28
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4,
|
|
@@ -40,7 +40,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
40
40
|
getPriceForAudioOutput: () => 0,
|
|
41
41
|
currency: 'USD',
|
|
42
42
|
},
|
|
43
|
-
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false },
|
|
43
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: true },
|
|
44
44
|
},
|
|
45
45
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_TURBO]: {
|
|
46
46
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_TURBO,
|
|
@@ -58,7 +58,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
58
58
|
getPriceForAudioOutput: () => 0,
|
|
59
59
|
currency: 'USD',
|
|
60
60
|
},
|
|
61
|
-
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false },
|
|
61
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: true },
|
|
62
62
|
},
|
|
63
63
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O]: {
|
|
64
64
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O,
|
|
@@ -76,7 +76,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
76
76
|
getPriceForAudioOutput: () => 0,
|
|
77
77
|
currency: 'USD',
|
|
78
78
|
},
|
|
79
|
-
capabilities: { vision: true, tools: true, reasoning: false, webSearch: true },
|
|
79
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: true, jsonResponseWithTools: true },
|
|
80
80
|
},
|
|
81
81
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O_MINI]: {
|
|
82
82
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O_MINI,
|
|
@@ -94,7 +94,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
94
94
|
getPriceForAudioOutput: () => 0,
|
|
95
95
|
currency: 'USD',
|
|
96
96
|
},
|
|
97
|
-
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false },
|
|
97
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: true },
|
|
98
98
|
},
|
|
99
99
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O_SEARCH_PREVIEW]: {
|
|
100
100
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O_SEARCH_PREVIEW,
|
|
@@ -112,7 +112,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
112
112
|
getPriceForAudioOutput: () => 0,
|
|
113
113
|
currency: 'USD',
|
|
114
114
|
},
|
|
115
|
-
capabilities: { vision: true, tools: false, reasoning: false, webSearch: true },
|
|
115
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: true, jsonResponseWithTools: true },
|
|
116
116
|
},
|
|
117
117
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O_MINI_SEARCH_PREVIEW]: {
|
|
118
118
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O_MINI_SEARCH_PREVIEW,
|
|
@@ -130,7 +130,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
130
130
|
getPriceForAudioOutput: () => 0,
|
|
131
131
|
currency: 'USD',
|
|
132
132
|
},
|
|
133
|
-
capabilities: { vision: true, tools: false, reasoning: false, webSearch: true },
|
|
133
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: true, jsonResponseWithTools: true },
|
|
134
134
|
},
|
|
135
135
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_1]: {
|
|
136
136
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_1,
|
|
@@ -148,7 +148,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
148
148
|
getPriceForAudioOutput: () => 0,
|
|
149
149
|
currency: 'USD',
|
|
150
150
|
},
|
|
151
|
-
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false },
|
|
151
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: true },
|
|
152
152
|
},
|
|
153
153
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_1_MINI]: {
|
|
154
154
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_1_MINI,
|
|
@@ -166,7 +166,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
166
166
|
getPriceForAudioOutput: () => 0,
|
|
167
167
|
currency: 'USD',
|
|
168
168
|
},
|
|
169
|
-
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false },
|
|
169
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: true },
|
|
170
170
|
},
|
|
171
171
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_1_NANO]: {
|
|
172
172
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_1_NANO,
|
|
@@ -184,7 +184,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
184
184
|
getPriceForAudioOutput: () => 0,
|
|
185
185
|
currency: 'USD',
|
|
186
186
|
},
|
|
187
|
-
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false },
|
|
187
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: true },
|
|
188
188
|
},
|
|
189
189
|
[LLMAPI_typedefs_1.LLMAPIModelNames.O1]: {
|
|
190
190
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.O1,
|
|
@@ -202,7 +202,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
202
202
|
getPriceForAudioOutput: () => 0,
|
|
203
203
|
currency: 'USD',
|
|
204
204
|
},
|
|
205
|
-
capabilities: { vision: true, tools: false, reasoning: true, webSearch: false },
|
|
205
|
+
capabilities: { vision: true, tools: false, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
206
206
|
},
|
|
207
207
|
[LLMAPI_typedefs_1.LLMAPIModelNames.O3]: {
|
|
208
208
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.O3,
|
|
@@ -220,7 +220,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
220
220
|
getPriceForAudioOutput: () => 0,
|
|
221
221
|
currency: 'USD',
|
|
222
222
|
},
|
|
223
|
-
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false },
|
|
223
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
224
224
|
},
|
|
225
225
|
[LLMAPI_typedefs_1.LLMAPIModelNames.O3_MINI]: {
|
|
226
226
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.O3_MINI,
|
|
@@ -238,7 +238,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
238
238
|
getPriceForAudioOutput: () => 0,
|
|
239
239
|
currency: 'USD',
|
|
240
240
|
},
|
|
241
|
-
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false },
|
|
241
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
242
242
|
},
|
|
243
243
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_OSS_20B]: {
|
|
244
244
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_OSS_20B,
|
|
@@ -256,7 +256,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
256
256
|
getPriceForAudioOutput: () => 0,
|
|
257
257
|
currency: 'USD',
|
|
258
258
|
},
|
|
259
|
-
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false },
|
|
259
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: true },
|
|
260
260
|
},
|
|
261
261
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5]: {
|
|
262
262
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5,
|
|
@@ -274,7 +274,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
274
274
|
getPriceForAudioOutput: () => 0,
|
|
275
275
|
currency: 'USD',
|
|
276
276
|
},
|
|
277
|
-
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
|
|
277
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
278
278
|
},
|
|
279
279
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI]: {
|
|
280
280
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI,
|
|
@@ -292,7 +292,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
292
292
|
getPriceForAudioOutput: () => 0,
|
|
293
293
|
currency: 'USD',
|
|
294
294
|
},
|
|
295
|
-
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
|
|
295
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
296
296
|
},
|
|
297
297
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO]: {
|
|
298
298
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO,
|
|
@@ -310,7 +310,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
310
310
|
getPriceForAudioOutput: () => 0,
|
|
311
311
|
currency: 'USD',
|
|
312
312
|
},
|
|
313
|
-
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true },
|
|
313
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
314
314
|
},
|
|
315
315
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_CODEX]: {
|
|
316
316
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_CODEX,
|
|
@@ -328,7 +328,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
328
328
|
getPriceForAudioOutput: () => 0,
|
|
329
329
|
currency: 'USD',
|
|
330
330
|
},
|
|
331
|
-
capabilities: { vision: true, tools: true, reasoning: true, webSearch: false },
|
|
331
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: true },
|
|
332
332
|
},
|
|
333
333
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO]: {
|
|
334
334
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO,
|
|
@@ -346,7 +346,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
346
346
|
getPriceForAudioOutput: () => 0,
|
|
347
347
|
currency: 'USD',
|
|
348
348
|
},
|
|
349
|
-
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
|
|
349
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
350
350
|
},
|
|
351
351
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1]: {
|
|
352
352
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1,
|
|
@@ -364,7 +364,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
364
364
|
getPriceForAudioOutput: () => 0,
|
|
365
365
|
currency: 'USD',
|
|
366
366
|
},
|
|
367
|
-
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
|
|
367
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
368
368
|
},
|
|
369
369
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CHAT]: {
|
|
370
370
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CHAT,
|
|
@@ -382,7 +382,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
382
382
|
getPriceForAudioOutput: () => 0,
|
|
383
383
|
currency: 'USD',
|
|
384
384
|
},
|
|
385
|
-
capabilities: { vision: true, tools: true, reasoning: true, webSearch: false },
|
|
385
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: true },
|
|
386
386
|
},
|
|
387
387
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX]: {
|
|
388
388
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX,
|
|
@@ -400,7 +400,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
400
400
|
getPriceForAudioOutput: () => 0,
|
|
401
401
|
currency: 'USD',
|
|
402
402
|
},
|
|
403
|
-
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
|
|
403
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
404
404
|
},
|
|
405
405
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI]: {
|
|
406
406
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI,
|
|
@@ -418,7 +418,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
418
418
|
getPriceForAudioOutput: () => 0,
|
|
419
419
|
currency: 'USD',
|
|
420
420
|
},
|
|
421
|
-
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
|
|
421
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
422
422
|
},
|
|
423
423
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2]: {
|
|
424
424
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2,
|
|
@@ -436,7 +436,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
436
436
|
getPriceForAudioOutput: () => 0,
|
|
437
437
|
currency: 'USD',
|
|
438
438
|
},
|
|
439
|
-
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
|
|
439
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
440
440
|
},
|
|
441
441
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_PRO]: {
|
|
442
442
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_PRO,
|
|
@@ -454,7 +454,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
454
454
|
getPriceForAudioOutput: () => 0,
|
|
455
455
|
currency: 'USD',
|
|
456
456
|
},
|
|
457
|
-
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
|
|
457
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
458
458
|
},
|
|
459
459
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX]: {
|
|
460
460
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX,
|
|
@@ -472,7 +472,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
472
472
|
getPriceForAudioOutput: () => 0,
|
|
473
473
|
currency: 'USD',
|
|
474
474
|
},
|
|
475
|
-
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
|
|
475
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
476
476
|
},
|
|
477
477
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX]: {
|
|
478
478
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX,
|
|
@@ -490,7 +490,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
490
490
|
getPriceForAudioOutput: () => 0,
|
|
491
491
|
currency: 'USD',
|
|
492
492
|
},
|
|
493
|
-
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
|
|
493
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
494
494
|
},
|
|
495
495
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4]: {
|
|
496
496
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4,
|
|
@@ -508,7 +508,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
508
508
|
getPriceForAudioOutput: () => 0,
|
|
509
509
|
currency: 'USD',
|
|
510
510
|
},
|
|
511
|
-
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
|
|
511
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
512
512
|
},
|
|
513
513
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO]: {
|
|
514
514
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO,
|
|
@@ -526,7 +526,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
526
526
|
getPriceForAudioOutput: () => 0,
|
|
527
527
|
currency: 'USD',
|
|
528
528
|
},
|
|
529
|
-
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
|
|
529
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
530
530
|
},
|
|
531
531
|
// ─── Anthropic ─────────────────────────────────────────────────
|
|
532
532
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_20250514]: {
|
|
@@ -545,7 +545,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
545
545
|
getPriceForAudioOutput: () => 0,
|
|
546
546
|
currency: 'USD',
|
|
547
547
|
},
|
|
548
|
-
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true },
|
|
548
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
|
|
549
549
|
},
|
|
550
550
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_5]: {
|
|
551
551
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_5,
|
|
@@ -563,7 +563,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
563
563
|
getPriceForAudioOutput: () => 0,
|
|
564
564
|
currency: 'USD',
|
|
565
565
|
},
|
|
566
|
-
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true },
|
|
566
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
|
|
567
567
|
},
|
|
568
568
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_5_20250929]: {
|
|
569
569
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_5_20250929,
|
|
@@ -581,7 +581,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
581
581
|
getPriceForAudioOutput: () => 0,
|
|
582
582
|
currency: 'USD',
|
|
583
583
|
},
|
|
584
|
-
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true },
|
|
584
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
|
|
585
585
|
},
|
|
586
586
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_6]: {
|
|
587
587
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_6,
|
|
@@ -599,7 +599,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
599
599
|
getPriceForAudioOutput: () => 0,
|
|
600
600
|
currency: 'USD',
|
|
601
601
|
},
|
|
602
|
-
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true },
|
|
602
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
|
|
603
603
|
},
|
|
604
604
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_HAIKU_4_5]: {
|
|
605
605
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_HAIKU_4_5,
|
|
@@ -617,7 +617,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
617
617
|
getPriceForAudioOutput: () => 0,
|
|
618
618
|
currency: 'USD',
|
|
619
619
|
},
|
|
620
|
-
capabilities: { vision: false, tools: true, reasoning: false, webSearch: true },
|
|
620
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: true, jsonResponseWithTools: false },
|
|
621
621
|
},
|
|
622
622
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_HAIKU_4_5_20251001]: {
|
|
623
623
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_HAIKU_4_5_20251001,
|
|
@@ -635,7 +635,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
635
635
|
getPriceForAudioOutput: () => 0,
|
|
636
636
|
currency: 'USD',
|
|
637
637
|
},
|
|
638
|
-
capabilities: { vision: false, tools: true, reasoning: false, webSearch: true },
|
|
638
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: true, jsonResponseWithTools: false },
|
|
639
639
|
},
|
|
640
640
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_20250514]: {
|
|
641
641
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_20250514,
|
|
@@ -653,7 +653,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
653
653
|
getPriceForAudioOutput: () => 0,
|
|
654
654
|
currency: 'USD',
|
|
655
655
|
},
|
|
656
|
-
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true },
|
|
656
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
|
|
657
657
|
},
|
|
658
658
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_1_20250805]: {
|
|
659
659
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_1_20250805,
|
|
@@ -671,7 +671,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
671
671
|
getPriceForAudioOutput: () => 0,
|
|
672
672
|
currency: 'USD',
|
|
673
673
|
},
|
|
674
|
-
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
|
|
674
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
|
|
675
675
|
},
|
|
676
676
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_5_20251101]: {
|
|
677
677
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_5_20251101,
|
|
@@ -689,7 +689,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
689
689
|
getPriceForAudioOutput: () => 0,
|
|
690
690
|
currency: 'USD',
|
|
691
691
|
},
|
|
692
|
-
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
|
|
692
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
|
|
693
693
|
},
|
|
694
694
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_6]: {
|
|
695
695
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_6,
|
|
@@ -707,7 +707,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
707
707
|
getPriceForAudioOutput: () => 0,
|
|
708
708
|
currency: 'USD',
|
|
709
709
|
},
|
|
710
|
-
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
|
|
710
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
|
|
711
711
|
},
|
|
712
712
|
// ─── Google Gemini ─────────────────────────────────────────────
|
|
713
713
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_PRO]: {
|
|
@@ -726,7 +726,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
726
726
|
getPriceForAudioOutput: () => 0,
|
|
727
727
|
currency: 'USD',
|
|
728
728
|
},
|
|
729
|
-
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
|
|
729
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
730
730
|
},
|
|
731
731
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH]: {
|
|
732
732
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH,
|
|
@@ -744,7 +744,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
744
744
|
getPriceForAudioOutput: () => 0,
|
|
745
745
|
currency: 'USD',
|
|
746
746
|
},
|
|
747
|
-
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
|
|
747
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
748
748
|
},
|
|
749
749
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE]: {
|
|
750
750
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE,
|
|
@@ -762,7 +762,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
762
762
|
getPriceForAudioOutput: () => 0,
|
|
763
763
|
currency: 'USD',
|
|
764
764
|
},
|
|
765
|
-
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false },
|
|
765
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: true },
|
|
766
766
|
},
|
|
767
767
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_PREVIEW_09_2025]: {
|
|
768
768
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_PREVIEW_09_2025,
|
|
@@ -780,7 +780,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
780
780
|
getPriceForAudioOutput: () => 0,
|
|
781
781
|
currency: 'USD',
|
|
782
782
|
},
|
|
783
|
-
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false },
|
|
783
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: true },
|
|
784
784
|
},
|
|
785
785
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW]: {
|
|
786
786
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW,
|
|
@@ -798,7 +798,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
798
798
|
getPriceForAudioOutput: () => 0,
|
|
799
799
|
currency: 'USD',
|
|
800
800
|
},
|
|
801
|
-
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
|
|
801
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
802
802
|
},
|
|
803
803
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW]: {
|
|
804
804
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW,
|
|
@@ -816,7 +816,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
816
816
|
getPriceForAudioOutput: () => 0,
|
|
817
817
|
currency: 'USD',
|
|
818
818
|
},
|
|
819
|
-
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
|
|
819
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
820
820
|
},
|
|
821
821
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE]: {
|
|
822
822
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE,
|
|
@@ -834,7 +834,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
834
834
|
getPriceForAudioOutput: () => 0,
|
|
835
835
|
currency: 'USD',
|
|
836
836
|
},
|
|
837
|
-
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false },
|
|
837
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: true },
|
|
838
838
|
},
|
|
839
839
|
// ─── Google Gemma ──────────────────────────────────────────────
|
|
840
840
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3N_E2B_IT]: {
|
|
@@ -853,7 +853,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
853
853
|
getPriceForAudioOutput: () => 0,
|
|
854
854
|
currency: 'USD',
|
|
855
855
|
},
|
|
856
|
-
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false },
|
|
856
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
857
857
|
},
|
|
858
858
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3N_E4B_IT]: {
|
|
859
859
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3N_E4B_IT,
|
|
@@ -871,7 +871,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
871
871
|
getPriceForAudioOutput: () => 0,
|
|
872
872
|
currency: 'USD',
|
|
873
873
|
},
|
|
874
|
-
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false },
|
|
874
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
875
875
|
},
|
|
876
876
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3_1B_IT]: {
|
|
877
877
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3_1B_IT,
|
|
@@ -889,7 +889,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
889
889
|
getPriceForAudioOutput: () => 0,
|
|
890
890
|
currency: 'USD',
|
|
891
891
|
},
|
|
892
|
-
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false },
|
|
892
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
893
893
|
},
|
|
894
894
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3_4B_IT]: {
|
|
895
895
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3_4B_IT,
|
|
@@ -907,7 +907,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
907
907
|
getPriceForAudioOutput: () => 0,
|
|
908
908
|
currency: 'USD',
|
|
909
909
|
},
|
|
910
|
-
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false },
|
|
910
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
911
911
|
},
|
|
912
912
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3_12B_IT]: {
|
|
913
913
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3_12B_IT,
|
|
@@ -925,7 +925,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
925
925
|
getPriceForAudioOutput: () => 0,
|
|
926
926
|
currency: 'USD',
|
|
927
927
|
},
|
|
928
|
-
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false },
|
|
928
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
929
929
|
},
|
|
930
930
|
// ─── xAI Grok ──────────────────────────────────────────────────
|
|
931
931
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GROK_3]: {
|
|
@@ -944,7 +944,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
944
944
|
getPriceForAudioOutput: () => 0,
|
|
945
945
|
currency: 'USD',
|
|
946
946
|
},
|
|
947
|
-
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false },
|
|
947
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
948
948
|
},
|
|
949
949
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_0709]: {
|
|
950
950
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_0709,
|
|
@@ -962,7 +962,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
962
962
|
getPriceForAudioOutput: () => 0,
|
|
963
963
|
currency: 'USD',
|
|
964
964
|
},
|
|
965
|
-
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false },
|
|
965
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
966
966
|
},
|
|
967
967
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4]: {
|
|
968
968
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4,
|
|
@@ -980,7 +980,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
980
980
|
getPriceForAudioOutput: () => 0,
|
|
981
981
|
currency: 'USD',
|
|
982
982
|
},
|
|
983
|
-
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false },
|
|
983
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
984
984
|
},
|
|
985
985
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_FAST_REASONING]: {
|
|
986
986
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_FAST_REASONING,
|
|
@@ -998,7 +998,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
998
998
|
getPriceForAudioOutput: () => 0,
|
|
999
999
|
currency: 'USD',
|
|
1000
1000
|
},
|
|
1001
|
-
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false },
|
|
1001
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1002
1002
|
},
|
|
1003
1003
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_FAST_NON_REASONING]: {
|
|
1004
1004
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_FAST_NON_REASONING,
|
|
@@ -1016,7 +1016,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1016
1016
|
getPriceForAudioOutput: () => 0,
|
|
1017
1017
|
currency: 'USD',
|
|
1018
1018
|
},
|
|
1019
|
-
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false },
|
|
1019
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1020
1020
|
},
|
|
1021
1021
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GROK_CODE_FAST_1]: {
|
|
1022
1022
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_CODE_FAST_1,
|
|
@@ -1034,7 +1034,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1034
1034
|
getPriceForAudioOutput: () => 0,
|
|
1035
1035
|
currency: 'USD',
|
|
1036
1036
|
},
|
|
1037
|
-
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false },
|
|
1037
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1038
1038
|
},
|
|
1039
1039
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_1_FAST_REASONING]: {
|
|
1040
1040
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_1_FAST_REASONING,
|
|
@@ -1052,7 +1052,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1052
1052
|
getPriceForAudioOutput: () => 0,
|
|
1053
1053
|
currency: 'USD',
|
|
1054
1054
|
},
|
|
1055
|
-
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false },
|
|
1055
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1056
1056
|
},
|
|
1057
1057
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_1_FAST_NON_REASONING]: {
|
|
1058
1058
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_1_FAST_NON_REASONING,
|
|
@@ -1070,7 +1070,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1070
1070
|
getPriceForAudioOutput: () => 0,
|
|
1071
1071
|
currency: 'USD',
|
|
1072
1072
|
},
|
|
1073
|
-
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false },
|
|
1073
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1074
1074
|
},
|
|
1075
1075
|
// ─── Meta Llama ────────────────────────────────────────────────
|
|
1076
1076
|
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_8B_INSTRUCT]: {
|
|
@@ -1089,7 +1089,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1089
1089
|
getPriceForAudioOutput: () => 0,
|
|
1090
1090
|
currency: 'USD',
|
|
1091
1091
|
},
|
|
1092
|
-
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false },
|
|
1092
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1093
1093
|
},
|
|
1094
1094
|
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_70B_INSTRUCT]: {
|
|
1095
1095
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_70B_INSTRUCT,
|
|
@@ -1107,7 +1107,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1107
1107
|
getPriceForAudioOutput: () => 0,
|
|
1108
1108
|
currency: 'USD',
|
|
1109
1109
|
},
|
|
1110
|
-
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false },
|
|
1110
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1111
1111
|
},
|
|
1112
1112
|
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_8B_INSTRUCT]: {
|
|
1113
1113
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_8B_INSTRUCT,
|
|
@@ -1125,7 +1125,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1125
1125
|
getPriceForAudioOutput: () => 0,
|
|
1126
1126
|
currency: 'USD',
|
|
1127
1127
|
},
|
|
1128
|
-
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false },
|
|
1128
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1129
1129
|
},
|
|
1130
1130
|
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_70B_INSTRUCT]: {
|
|
1131
1131
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_70B_INSTRUCT,
|
|
@@ -1143,7 +1143,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1143
1143
|
getPriceForAudioOutput: () => 0,
|
|
1144
1144
|
currency: 'USD',
|
|
1145
1145
|
},
|
|
1146
|
-
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false },
|
|
1146
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1147
1147
|
},
|
|
1148
1148
|
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_NEMOTRON_ULTRA_253B]: {
|
|
1149
1149
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_NEMOTRON_ULTRA_253B,
|
|
@@ -1161,7 +1161,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1161
1161
|
getPriceForAudioOutput: () => 0,
|
|
1162
1162
|
currency: 'USD',
|
|
1163
1163
|
},
|
|
1164
|
-
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false },
|
|
1164
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1165
1165
|
},
|
|
1166
1166
|
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_2_3B_INSTRUCT]: {
|
|
1167
1167
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_2_3B_INSTRUCT,
|
|
@@ -1179,7 +1179,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1179
1179
|
getPriceForAudioOutput: () => 0,
|
|
1180
1180
|
currency: 'USD',
|
|
1181
1181
|
},
|
|
1182
|
-
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false },
|
|
1182
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1183
1183
|
},
|
|
1184
1184
|
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_3_70B_INSTRUCT]: {
|
|
1185
1185
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_3_70B_INSTRUCT,
|
|
@@ -1197,7 +1197,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1197
1197
|
getPriceForAudioOutput: () => 0,
|
|
1198
1198
|
currency: 'USD',
|
|
1199
1199
|
},
|
|
1200
|
-
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false },
|
|
1200
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1201
1201
|
},
|
|
1202
1202
|
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_4_SCOUT_17B_INSTRUCT]: {
|
|
1203
1203
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_4_SCOUT_17B_INSTRUCT,
|
|
@@ -1215,7 +1215,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1215
1215
|
getPriceForAudioOutput: () => 0,
|
|
1216
1216
|
currency: 'USD',
|
|
1217
1217
|
},
|
|
1218
|
-
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false },
|
|
1218
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1219
1219
|
},
|
|
1220
1220
|
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_4_MAVERICK_17B_INSTRUCT]: {
|
|
1221
1221
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_4_MAVERICK_17B_INSTRUCT,
|
|
@@ -1233,7 +1233,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1233
1233
|
getPriceForAudioOutput: () => 0,
|
|
1234
1234
|
currency: 'USD',
|
|
1235
1235
|
},
|
|
1236
|
-
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false },
|
|
1236
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1237
1237
|
},
|
|
1238
1238
|
// ─── DeepSeek ──────────────────────────────────────────────────
|
|
1239
1239
|
[LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_R1_0528]: {
|
|
@@ -1252,7 +1252,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1252
1252
|
getPriceForAudioOutput: () => 0,
|
|
1253
1253
|
currency: 'USD',
|
|
1254
1254
|
},
|
|
1255
|
-
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false },
|
|
1255
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1256
1256
|
},
|
|
1257
1257
|
[LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_V3_2]: {
|
|
1258
1258
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_V3_2,
|
|
@@ -1270,7 +1270,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1270
1270
|
getPriceForAudioOutput: () => 0,
|
|
1271
1271
|
currency: 'USD',
|
|
1272
1272
|
},
|
|
1273
|
-
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false },
|
|
1273
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1274
1274
|
},
|
|
1275
1275
|
// ─── Mistral ───────────────────────────────────────────────────
|
|
1276
1276
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MISTRAL_LARGE_LATEST]: {
|
|
@@ -1289,7 +1289,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1289
1289
|
getPriceForAudioOutput: () => 0,
|
|
1290
1290
|
currency: 'USD',
|
|
1291
1291
|
},
|
|
1292
|
-
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false },
|
|
1292
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1293
1293
|
},
|
|
1294
1294
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MISTRAL_LARGE_2512]: {
|
|
1295
1295
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MISTRAL_LARGE_2512,
|
|
@@ -1307,7 +1307,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1307
1307
|
getPriceForAudioOutput: () => 0,
|
|
1308
1308
|
currency: 'USD',
|
|
1309
1309
|
},
|
|
1310
|
-
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false },
|
|
1310
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1311
1311
|
},
|
|
1312
1312
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MISTRAL_SMALL_2506]: {
|
|
1313
1313
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MISTRAL_SMALL_2506,
|
|
@@ -1325,7 +1325,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1325
1325
|
getPriceForAudioOutput: () => 0,
|
|
1326
1326
|
currency: 'USD',
|
|
1327
1327
|
},
|
|
1328
|
-
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false },
|
|
1328
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1329
1329
|
},
|
|
1330
1330
|
[LLMAPI_typedefs_1.LLMAPIModelNames.PIXTRAL_LARGE_LATEST]: {
|
|
1331
1331
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.PIXTRAL_LARGE_LATEST,
|
|
@@ -1343,7 +1343,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1343
1343
|
getPriceForAudioOutput: () => 0,
|
|
1344
1344
|
currency: 'USD',
|
|
1345
1345
|
},
|
|
1346
|
-
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false },
|
|
1346
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1347
1347
|
},
|
|
1348
1348
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINISTRAL_14B_2512]: {
|
|
1349
1349
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINISTRAL_14B_2512,
|
|
@@ -1361,7 +1361,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1361
1361
|
getPriceForAudioOutput: () => 0,
|
|
1362
1362
|
currency: 'USD',
|
|
1363
1363
|
},
|
|
1364
|
-
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false },
|
|
1364
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1365
1365
|
},
|
|
1366
1366
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINISTRAL_8B_2512]: {
|
|
1367
1367
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINISTRAL_8B_2512,
|
|
@@ -1379,7 +1379,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1379
1379
|
getPriceForAudioOutput: () => 0,
|
|
1380
1380
|
currency: 'USD',
|
|
1381
1381
|
},
|
|
1382
|
-
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false },
|
|
1382
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1383
1383
|
},
|
|
1384
1384
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINISTRAL_3B_2512]: {
|
|
1385
1385
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINISTRAL_3B_2512,
|
|
@@ -1397,7 +1397,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1397
1397
|
getPriceForAudioOutput: () => 0,
|
|
1398
1398
|
currency: 'USD',
|
|
1399
1399
|
},
|
|
1400
|
-
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false },
|
|
1400
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1401
1401
|
},
|
|
1402
1402
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CODESTRAL_2508]: {
|
|
1403
1403
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CODESTRAL_2508,
|
|
@@ -1415,7 +1415,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1415
1415
|
getPriceForAudioOutput: () => 0,
|
|
1416
1416
|
currency: 'USD',
|
|
1417
1417
|
},
|
|
1418
|
-
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false },
|
|
1418
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1419
1419
|
},
|
|
1420
1420
|
[LLMAPI_typedefs_1.LLMAPIModelNames.DEVSTRAL_2512]: {
|
|
1421
1421
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.DEVSTRAL_2512,
|
|
@@ -1433,7 +1433,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1433
1433
|
getPriceForAudioOutput: () => 0,
|
|
1434
1434
|
currency: 'USD',
|
|
1435
1435
|
},
|
|
1436
|
-
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false },
|
|
1436
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1437
1437
|
},
|
|
1438
1438
|
[LLMAPI_typedefs_1.LLMAPIModelNames.DEVSTRAL_SMALL_2507]: {
|
|
1439
1439
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.DEVSTRAL_SMALL_2507,
|
|
@@ -1451,7 +1451,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1451
1451
|
getPriceForAudioOutput: () => 0,
|
|
1452
1452
|
currency: 'USD',
|
|
1453
1453
|
},
|
|
1454
|
-
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false },
|
|
1454
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1455
1455
|
},
|
|
1456
1456
|
// ─── MiniMax ───────────────────────────────────────────────────
|
|
1457
1457
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5]: {
|
|
@@ -1470,7 +1470,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1470
1470
|
getPriceForAudioOutput: () => 0,
|
|
1471
1471
|
currency: 'USD',
|
|
1472
1472
|
},
|
|
1473
|
-
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false },
|
|
1473
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
1474
1474
|
},
|
|
1475
1475
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_NATIVE]: {
|
|
1476
1476
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_NATIVE,
|
|
@@ -1488,7 +1488,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1488
1488
|
getPriceForAudioOutput: () => 0,
|
|
1489
1489
|
currency: 'USD',
|
|
1490
1490
|
},
|
|
1491
|
-
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false },
|
|
1491
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
1492
1492
|
},
|
|
1493
1493
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_NOVITA]: {
|
|
1494
1494
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_NOVITA,
|
|
@@ -1506,7 +1506,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1506
1506
|
getPriceForAudioOutput: () => 0,
|
|
1507
1507
|
currency: 'USD',
|
|
1508
1508
|
},
|
|
1509
|
-
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false },
|
|
1509
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
1510
1510
|
},
|
|
1511
1511
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2]: {
|
|
1512
1512
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2,
|
|
@@ -1524,7 +1524,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1524
1524
|
getPriceForAudioOutput: () => 0,
|
|
1525
1525
|
currency: 'USD',
|
|
1526
1526
|
},
|
|
1527
|
-
capabilities: { vision: false, tools: false, reasoning: true, webSearch: false },
|
|
1527
|
+
capabilities: { vision: false, tools: false, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
1528
1528
|
},
|
|
1529
1529
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1]: {
|
|
1530
1530
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1,
|
|
@@ -1542,7 +1542,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1542
1542
|
getPriceForAudioOutput: () => 0,
|
|
1543
1543
|
currency: 'USD',
|
|
1544
1544
|
},
|
|
1545
|
-
capabilities: { vision: false, tools: false, reasoning: true, webSearch: false },
|
|
1545
|
+
capabilities: { vision: false, tools: false, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
1546
1546
|
},
|
|
1547
1547
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1_LIGHTNING]: {
|
|
1548
1548
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1_LIGHTNING,
|
|
@@ -1560,7 +1560,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1560
1560
|
getPriceForAudioOutput: () => 0,
|
|
1561
1561
|
currency: 'USD',
|
|
1562
1562
|
},
|
|
1563
|
-
capabilities: { vision: false, tools: false, reasoning: true, webSearch: false },
|
|
1563
|
+
capabilities: { vision: false, tools: false, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
1564
1564
|
},
|
|
1565
1565
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_TEXT_01]: {
|
|
1566
1566
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_TEXT_01,
|
|
@@ -1578,7 +1578,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1578
1578
|
getPriceForAudioOutput: () => 0,
|
|
1579
1579
|
currency: 'USD',
|
|
1580
1580
|
},
|
|
1581
|
-
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false },
|
|
1581
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1582
1582
|
},
|
|
1583
1583
|
// ─── Moonshot Kimi ─────────────────────────────────────────────
|
|
1584
1584
|
[LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2]: {
|
|
@@ -1597,7 +1597,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1597
1597
|
getPriceForAudioOutput: () => 0,
|
|
1598
1598
|
currency: 'USD',
|
|
1599
1599
|
},
|
|
1600
|
-
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false },
|
|
1600
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1601
1601
|
},
|
|
1602
1602
|
[LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_THINKING_TURBO]: {
|
|
1603
1603
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_THINKING_TURBO,
|
|
@@ -1615,7 +1615,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1615
1615
|
getPriceForAudioOutput: () => 0,
|
|
1616
1616
|
currency: 'USD',
|
|
1617
1617
|
},
|
|
1618
|
-
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false },
|
|
1618
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
1619
1619
|
},
|
|
1620
1620
|
[LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_5]: {
|
|
1621
1621
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_5,
|
|
@@ -1633,7 +1633,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1633
1633
|
getPriceForAudioOutput: () => 0,
|
|
1634
1634
|
currency: 'USD',
|
|
1635
1635
|
},
|
|
1636
|
-
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false },
|
|
1636
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1637
1637
|
},
|
|
1638
1638
|
// ─── Alibaba Qwen ──────────────────────────────────────────────
|
|
1639
1639
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_MAX]: {
|
|
@@ -1652,7 +1652,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1652
1652
|
getPriceForAudioOutput: () => 0,
|
|
1653
1653
|
currency: 'USD',
|
|
1654
1654
|
},
|
|
1655
|
-
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false },
|
|
1655
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1656
1656
|
},
|
|
1657
1657
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_MAX_LATEST]: {
|
|
1658
1658
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_MAX_LATEST,
|
|
@@ -1670,7 +1670,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1670
1670
|
getPriceForAudioOutput: () => 0,
|
|
1671
1671
|
currency: 'USD',
|
|
1672
1672
|
},
|
|
1673
|
-
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false },
|
|
1673
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1674
1674
|
},
|
|
1675
1675
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_PLUS]: {
|
|
1676
1676
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_PLUS,
|
|
@@ -1688,7 +1688,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1688
1688
|
getPriceForAudioOutput: () => 0,
|
|
1689
1689
|
currency: 'USD',
|
|
1690
1690
|
},
|
|
1691
|
-
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false },
|
|
1691
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1692
1692
|
},
|
|
1693
1693
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_PLUS_LATEST]: {
|
|
1694
1694
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_PLUS_LATEST,
|
|
@@ -1706,7 +1706,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1706
1706
|
getPriceForAudioOutput: () => 0,
|
|
1707
1707
|
currency: 'USD',
|
|
1708
1708
|
},
|
|
1709
|
-
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false },
|
|
1709
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1710
1710
|
},
|
|
1711
1711
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_FLASH]: {
|
|
1712
1712
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_FLASH,
|
|
@@ -1724,7 +1724,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1724
1724
|
getPriceForAudioOutput: () => 0,
|
|
1725
1725
|
currency: 'USD',
|
|
1726
1726
|
},
|
|
1727
|
-
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false },
|
|
1727
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1728
1728
|
},
|
|
1729
1729
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_TURBO]: {
|
|
1730
1730
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_TURBO,
|
|
@@ -1742,7 +1742,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1742
1742
|
getPriceForAudioOutput: () => 0,
|
|
1743
1743
|
currency: 'USD',
|
|
1744
1744
|
},
|
|
1745
|
-
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false },
|
|
1745
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1746
1746
|
},
|
|
1747
1747
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_OMNI_TURBO]: {
|
|
1748
1748
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_OMNI_TURBO,
|
|
@@ -1760,7 +1760,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1760
1760
|
getPriceForAudioOutput: () => 0,
|
|
1761
1761
|
currency: 'USD',
|
|
1762
1762
|
},
|
|
1763
|
-
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false },
|
|
1763
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1764
1764
|
},
|
|
1765
1765
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_VL_MAX]: {
|
|
1766
1766
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_VL_MAX,
|
|
@@ -1778,7 +1778,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1778
1778
|
getPriceForAudioOutput: () => 0,
|
|
1779
1779
|
currency: 'USD',
|
|
1780
1780
|
},
|
|
1781
|
-
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false },
|
|
1781
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1782
1782
|
},
|
|
1783
1783
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_VL_PLUS]: {
|
|
1784
1784
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_VL_PLUS,
|
|
@@ -1796,7 +1796,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1796
1796
|
getPriceForAudioOutput: () => 0,
|
|
1797
1797
|
currency: 'USD',
|
|
1798
1798
|
},
|
|
1799
|
-
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false },
|
|
1799
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1800
1800
|
},
|
|
1801
1801
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_CODER_PLUS]: {
|
|
1802
1802
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_CODER_PLUS,
|
|
@@ -1814,7 +1814,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1814
1814
|
getPriceForAudioOutput: () => 0,
|
|
1815
1815
|
currency: 'USD',
|
|
1816
1816
|
},
|
|
1817
|
-
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false },
|
|
1817
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1818
1818
|
},
|
|
1819
1819
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWQ_PLUS]: {
|
|
1820
1820
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWQ_PLUS,
|
|
@@ -1832,7 +1832,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1832
1832
|
getPriceForAudioOutput: () => 0,
|
|
1833
1833
|
currency: 'USD',
|
|
1834
1834
|
},
|
|
1835
|
-
capabilities: { vision: false, tools: false, reasoning: true, webSearch: false },
|
|
1835
|
+
capabilities: { vision: false, tools: false, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
1836
1836
|
},
|
|
1837
1837
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_MAX]: {
|
|
1838
1838
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_MAX,
|
|
@@ -1850,7 +1850,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1850
1850
|
getPriceForAudioOutput: () => 0,
|
|
1851
1851
|
currency: 'USD',
|
|
1852
1852
|
},
|
|
1853
|
-
capabilities: { vision: true, tools: true, reasoning: true, webSearch: false },
|
|
1853
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
1854
1854
|
},
|
|
1855
1855
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_MAX_2026_01_23]: {
|
|
1856
1856
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_MAX_2026_01_23,
|
|
@@ -1868,7 +1868,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1868
1868
|
getPriceForAudioOutput: () => 0,
|
|
1869
1869
|
currency: 'USD',
|
|
1870
1870
|
},
|
|
1871
|
-
capabilities: { vision: true, tools: true, reasoning: true, webSearch: false },
|
|
1871
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
1872
1872
|
},
|
|
1873
1873
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_32B]: {
|
|
1874
1874
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_32B,
|
|
@@ -1886,7 +1886,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1886
1886
|
getPriceForAudioOutput: () => 0,
|
|
1887
1887
|
currency: 'USD',
|
|
1888
1888
|
},
|
|
1889
|
-
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false },
|
|
1889
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1890
1890
|
},
|
|
1891
1891
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_32B_FP8]: {
|
|
1892
1892
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_32B_FP8,
|
|
@@ -1904,7 +1904,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1904
1904
|
getPriceForAudioOutput: () => 0,
|
|
1905
1905
|
currency: 'USD',
|
|
1906
1906
|
},
|
|
1907
|
-
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false },
|
|
1907
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1908
1908
|
},
|
|
1909
1909
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_INSTRUCT_2507]: {
|
|
1910
1910
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_INSTRUCT_2507,
|
|
@@ -1922,7 +1922,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1922
1922
|
getPriceForAudioOutput: () => 0,
|
|
1923
1923
|
currency: 'USD',
|
|
1924
1924
|
},
|
|
1925
|
-
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false },
|
|
1925
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1926
1926
|
},
|
|
1927
1927
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_THINKING_2507]: {
|
|
1928
1928
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_THINKING_2507,
|
|
@@ -1940,7 +1940,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1940
1940
|
getPriceForAudioOutput: () => 0,
|
|
1941
1941
|
currency: 'USD',
|
|
1942
1942
|
},
|
|
1943
|
-
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false },
|
|
1943
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
1944
1944
|
},
|
|
1945
1945
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_FP8]: {
|
|
1946
1946
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_FP8,
|
|
@@ -1958,7 +1958,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1958
1958
|
getPriceForAudioOutput: () => 0,
|
|
1959
1959
|
currency: 'USD',
|
|
1960
1960
|
},
|
|
1961
|
-
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false },
|
|
1961
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1962
1962
|
},
|
|
1963
1963
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_30B_A3B_INSTRUCT_2507]: {
|
|
1964
1964
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_30B_A3B_INSTRUCT_2507,
|
|
@@ -1976,7 +1976,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1976
1976
|
getPriceForAudioOutput: () => 0,
|
|
1977
1977
|
currency: 'USD',
|
|
1978
1978
|
},
|
|
1979
|
-
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false },
|
|
1979
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1980
1980
|
},
|
|
1981
1981
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_30B_A3B_THINKING_2507]: {
|
|
1982
1982
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_30B_A3B_THINKING_2507,
|
|
@@ -1994,7 +1994,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1994
1994
|
getPriceForAudioOutput: () => 0,
|
|
1995
1995
|
currency: 'USD',
|
|
1996
1996
|
},
|
|
1997
|
-
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false },
|
|
1997
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
1998
1998
|
},
|
|
1999
1999
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_30B_A3B_FP8]: {
|
|
2000
2000
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_30B_A3B_FP8,
|
|
@@ -2012,7 +2012,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2012
2012
|
getPriceForAudioOutput: () => 0,
|
|
2013
2013
|
currency: 'USD',
|
|
2014
2014
|
},
|
|
2015
|
-
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false },
|
|
2015
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2016
2016
|
},
|
|
2017
2017
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_4B_FP8]: {
|
|
2018
2018
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_4B_FP8,
|
|
@@ -2030,7 +2030,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2030
2030
|
getPriceForAudioOutput: () => 0,
|
|
2031
2031
|
currency: 'USD',
|
|
2032
2032
|
},
|
|
2033
|
-
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false },
|
|
2033
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2034
2034
|
},
|
|
2035
2035
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_5_397B]: {
|
|
2036
2036
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_5_397B,
|
|
@@ -2048,7 +2048,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2048
2048
|
getPriceForAudioOutput: () => 0,
|
|
2049
2049
|
currency: 'USD',
|
|
2050
2050
|
},
|
|
2051
|
-
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
|
|
2051
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
|
|
2052
2052
|
},
|
|
2053
2053
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_THINKING]: {
|
|
2054
2054
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_THINKING,
|
|
@@ -2066,7 +2066,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2066
2066
|
getPriceForAudioOutput: () => 0,
|
|
2067
2067
|
currency: 'USD',
|
|
2068
2068
|
},
|
|
2069
|
-
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false },
|
|
2069
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
2070
2070
|
},
|
|
2071
2071
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_INSTRUCT]: {
|
|
2072
2072
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_INSTRUCT,
|
|
@@ -2084,7 +2084,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2084
2084
|
getPriceForAudioOutput: () => 0,
|
|
2085
2085
|
currency: 'USD',
|
|
2086
2086
|
},
|
|
2087
|
-
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false },
|
|
2087
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2088
2088
|
},
|
|
2089
2089
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_PLUS]: {
|
|
2090
2090
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_PLUS,
|
|
@@ -2102,7 +2102,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2102
2102
|
getPriceForAudioOutput: () => 0,
|
|
2103
2103
|
currency: 'USD',
|
|
2104
2104
|
},
|
|
2105
|
-
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false },
|
|
2105
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2106
2106
|
},
|
|
2107
2107
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_FLASH]: {
|
|
2108
2108
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_FLASH,
|
|
@@ -2120,7 +2120,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2120
2120
|
getPriceForAudioOutput: () => 0,
|
|
2121
2121
|
currency: 'USD',
|
|
2122
2122
|
},
|
|
2123
|
-
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false },
|
|
2123
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2124
2124
|
},
|
|
2125
2125
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_30B_A3B_INSTRUCT]: {
|
|
2126
2126
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_30B_A3B_INSTRUCT,
|
|
@@ -2138,7 +2138,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2138
2138
|
getPriceForAudioOutput: () => 0,
|
|
2139
2139
|
currency: 'USD',
|
|
2140
2140
|
},
|
|
2141
|
-
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false },
|
|
2141
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2142
2142
|
},
|
|
2143
2143
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_8B_INSTRUCT]: {
|
|
2144
2144
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_8B_INSTRUCT,
|
|
@@ -2156,7 +2156,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2156
2156
|
getPriceForAudioOutput: () => 0,
|
|
2157
2157
|
currency: 'USD',
|
|
2158
2158
|
},
|
|
2159
|
-
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false },
|
|
2159
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2160
2160
|
},
|
|
2161
2161
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_PLUS]: {
|
|
2162
2162
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_PLUS,
|
|
@@ -2174,7 +2174,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2174
2174
|
getPriceForAudioOutput: () => 0,
|
|
2175
2175
|
currency: 'USD',
|
|
2176
2176
|
},
|
|
2177
|
-
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false },
|
|
2177
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2178
2178
|
},
|
|
2179
2179
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_FLASH]: {
|
|
2180
2180
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_FLASH,
|
|
@@ -2192,7 +2192,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2192
2192
|
getPriceForAudioOutput: () => 0,
|
|
2193
2193
|
currency: 'USD',
|
|
2194
2194
|
},
|
|
2195
|
-
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false },
|
|
2195
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2196
2196
|
},
|
|
2197
2197
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_30B_A3B_INSTRUCT]: {
|
|
2198
2198
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_30B_A3B_INSTRUCT,
|
|
@@ -2210,7 +2210,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2210
2210
|
getPriceForAudioOutput: () => 0,
|
|
2211
2211
|
currency: 'USD',
|
|
2212
2212
|
},
|
|
2213
|
-
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false },
|
|
2213
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2214
2214
|
},
|
|
2215
2215
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_30B_A3B_THINKING]: {
|
|
2216
2216
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_30B_A3B_THINKING,
|
|
@@ -2228,7 +2228,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2228
2228
|
getPriceForAudioOutput: () => 0,
|
|
2229
2229
|
currency: 'USD',
|
|
2230
2230
|
},
|
|
2231
|
-
capabilities: { vision: true, tools: true, reasoning: true, webSearch: false },
|
|
2231
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
2232
2232
|
},
|
|
2233
2233
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_INSTRUCT]: {
|
|
2234
2234
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_INSTRUCT,
|
|
@@ -2246,7 +2246,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2246
2246
|
getPriceForAudioOutput: () => 0,
|
|
2247
2247
|
currency: 'USD',
|
|
2248
2248
|
},
|
|
2249
|
-
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false },
|
|
2249
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2250
2250
|
},
|
|
2251
2251
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_THINKING]: {
|
|
2252
2252
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_THINKING,
|
|
@@ -2264,7 +2264,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2264
2264
|
getPriceForAudioOutput: () => 0,
|
|
2265
2265
|
currency: 'USD',
|
|
2266
2266
|
},
|
|
2267
|
-
capabilities: { vision: true, tools: false, reasoning: true, webSearch: false },
|
|
2267
|
+
capabilities: { vision: true, tools: false, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
2268
2268
|
},
|
|
2269
2269
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN2_5_VL_32B_INSTRUCT]: {
|
|
2270
2270
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN2_5_VL_32B_INSTRUCT,
|
|
@@ -2282,7 +2282,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2282
2282
|
getPriceForAudioOutput: () => 0,
|
|
2283
2283
|
currency: 'USD',
|
|
2284
2284
|
},
|
|
2285
|
-
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false },
|
|
2285
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2286
2286
|
},
|
|
2287
2287
|
// ─── Zhipu GLM ─────────────────────────────────────────────────
|
|
2288
2288
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5]: {
|
|
@@ -2301,7 +2301,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2301
2301
|
getPriceForAudioOutput: () => 0,
|
|
2302
2302
|
currency: 'USD',
|
|
2303
2303
|
},
|
|
2304
|
-
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true },
|
|
2304
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
|
|
2305
2305
|
},
|
|
2306
2306
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5]: {
|
|
2307
2307
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5,
|
|
@@ -2319,7 +2319,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2319
2319
|
getPriceForAudioOutput: () => 0,
|
|
2320
2320
|
currency: 'USD',
|
|
2321
2321
|
},
|
|
2322
|
-
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true },
|
|
2322
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
|
|
2323
2323
|
},
|
|
2324
2324
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5V]: {
|
|
2325
2325
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5V,
|
|
@@ -2337,7 +2337,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2337
2337
|
getPriceForAudioOutput: () => 0,
|
|
2338
2338
|
currency: 'USD',
|
|
2339
2339
|
},
|
|
2340
|
-
capabilities: { vision: true, tools: true, reasoning: true, webSearch: false },
|
|
2340
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
2341
2341
|
},
|
|
2342
2342
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIR]: {
|
|
2343
2343
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIR,
|
|
@@ -2355,7 +2355,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2355
2355
|
getPriceForAudioOutput: () => 0,
|
|
2356
2356
|
currency: 'USD',
|
|
2357
2357
|
},
|
|
2358
|
-
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false },
|
|
2358
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2359
2359
|
},
|
|
2360
2360
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_X]: {
|
|
2361
2361
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_X,
|
|
@@ -2373,7 +2373,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2373
2373
|
getPriceForAudioOutput: () => 0,
|
|
2374
2374
|
currency: 'USD',
|
|
2375
2375
|
},
|
|
2376
|
-
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false },
|
|
2376
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
2377
2377
|
},
|
|
2378
2378
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIRX]: {
|
|
2379
2379
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIRX,
|
|
@@ -2391,7 +2391,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2391
2391
|
getPriceForAudioOutput: () => 0,
|
|
2392
2392
|
currency: 'USD',
|
|
2393
2393
|
},
|
|
2394
|
-
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false },
|
|
2394
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2395
2395
|
},
|
|
2396
2396
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_FLASH]: {
|
|
2397
2397
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_FLASH,
|
|
@@ -2409,7 +2409,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2409
2409
|
getPriceForAudioOutput: () => 0,
|
|
2410
2410
|
currency: 'USD',
|
|
2411
2411
|
},
|
|
2412
|
-
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false },
|
|
2412
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2413
2413
|
},
|
|
2414
2414
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6]: {
|
|
2415
2415
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6,
|
|
@@ -2427,7 +2427,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2427
2427
|
getPriceForAudioOutput: () => 0,
|
|
2428
2428
|
currency: 'USD',
|
|
2429
2429
|
},
|
|
2430
|
-
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true },
|
|
2430
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
|
|
2431
2431
|
},
|
|
2432
2432
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V]: {
|
|
2433
2433
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V,
|
|
@@ -2445,7 +2445,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2445
2445
|
getPriceForAudioOutput: () => 0,
|
|
2446
2446
|
currency: 'USD',
|
|
2447
2447
|
},
|
|
2448
|
-
capabilities: { vision: true, tools: true, reasoning: true, webSearch: false },
|
|
2448
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
2449
2449
|
},
|
|
2450
2450
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_FLASHX]: {
|
|
2451
2451
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_FLASHX,
|
|
@@ -2463,7 +2463,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2463
2463
|
getPriceForAudioOutput: () => 0,
|
|
2464
2464
|
currency: 'USD',
|
|
2465
2465
|
},
|
|
2466
|
-
capabilities: { vision: true, tools: true, reasoning: true, webSearch: false },
|
|
2466
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
2467
2467
|
},
|
|
2468
2468
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_FLASH]: {
|
|
2469
2469
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_FLASH,
|
|
@@ -2481,7 +2481,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2481
2481
|
getPriceForAudioOutput: () => 0,
|
|
2482
2482
|
currency: 'USD',
|
|
2483
2483
|
},
|
|
2484
|
-
capabilities: { vision: true, tools: true, reasoning: true, webSearch: false },
|
|
2484
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
2485
2485
|
},
|
|
2486
2486
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7]: {
|
|
2487
2487
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7,
|
|
@@ -2499,7 +2499,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2499
2499
|
getPriceForAudioOutput: () => 0,
|
|
2500
2500
|
currency: 'USD',
|
|
2501
2501
|
},
|
|
2502
|
-
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true },
|
|
2502
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
|
|
2503
2503
|
},
|
|
2504
2504
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASHX]: {
|
|
2505
2505
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASHX,
|
|
@@ -2517,7 +2517,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2517
2517
|
getPriceForAudioOutput: () => 0,
|
|
2518
2518
|
currency: 'USD',
|
|
2519
2519
|
},
|
|
2520
|
-
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false },
|
|
2520
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
2521
2521
|
},
|
|
2522
2522
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASH]: {
|
|
2523
2523
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASH,
|
|
@@ -2535,7 +2535,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2535
2535
|
getPriceForAudioOutput: () => 0,
|
|
2536
2536
|
currency: 'USD',
|
|
2537
2537
|
},
|
|
2538
|
-
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false },
|
|
2538
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
2539
2539
|
},
|
|
2540
2540
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_32B_0414_128K]: {
|
|
2541
2541
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_32B_0414_128K,
|
|
@@ -2553,7 +2553,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2553
2553
|
getPriceForAudioOutput: () => 0,
|
|
2554
2554
|
currency: 'USD',
|
|
2555
2555
|
},
|
|
2556
|
-
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false },
|
|
2556
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2557
2557
|
},
|
|
2558
2558
|
};
|
|
2559
2559
|
const LLMAPI_COMPLETION_MODELS = exports.LLMAPI_AVAILABLE_MODELS;
|