@mate-academy/llm-gateway 7.1.5 → 7.2.1
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 +5253 -1377
- package/dist/LLMService.typedefs.d.ts +2 -1
- package/dist/LLMService.typedefs.js.map +1 -1
- package/dist/providers/LLMAPI/LLMAPI.constants.d.ts +8570 -2756
- package/dist/providers/LLMAPI/LLMAPI.constants.js +3209 -225
- package/dist/providers/LLMAPI/LLMAPI.constants.js.map +1 -1
- package/dist/providers/LLMAPI/LLMAPI.typedefs.d.ts +82 -1
- package/dist/providers/LLMAPI/LLMAPI.typedefs.js +69 -0
- package/dist/providers/LLMAPI/LLMAPI.typedefs.js.map +1 -1
- package/dist/providers/LLMAPI/services/LLMAPIAssistance.service.js +16 -12
- package/dist/providers/LLMAPI/services/LLMAPIAssistance.service.js.map +1 -1
- package/dist/providers/LLMAPI/services/LLMAPICompletion.service.d.ts +1 -0
- package/dist/providers/LLMAPI/services/LLMAPICompletion.service.js +13 -7
- package/dist/providers/LLMAPI/services/LLMAPICompletion.service.js.map +1 -1
- package/dist/providers/LLMAPI/utilities/index.d.ts +1 -0
- package/dist/providers/LLMAPI/utilities/index.js +4 -1
- package/dist/providers/LLMAPI/utilities/index.js.map +1 -1
- package/dist/providers/LLMAPI/utilities/structuredOutput.d.ts +13 -0
- package/dist/providers/LLMAPI/utilities/structuredOutput.js +29 -0
- package/dist/providers/LLMAPI/utilities/structuredOutput.js.map +1 -0
- package/dist/services/chatState/CompletionsChatState.js +1 -1
- package/dist/services/chatState/CompletionsChatState.js.map +1 -1
- package/package.json +1 -1
|
@@ -22,7 +22,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
22
22
|
getPriceForAudioOutput: () => 0,
|
|
23
23
|
currency: 'USD',
|
|
24
24
|
},
|
|
25
|
-
capabilities: {
|
|
25
|
+
capabilities: {
|
|
26
|
+
vision: false,
|
|
27
|
+
tools: true,
|
|
28
|
+
reasoning: false,
|
|
29
|
+
webSearch: false,
|
|
30
|
+
jsonOutput: true,
|
|
31
|
+
structuredOutputs: false,
|
|
32
|
+
},
|
|
26
33
|
},
|
|
27
34
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4]: {
|
|
28
35
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4,
|
|
@@ -40,7 +47,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
40
47
|
getPriceForAudioOutput: () => 0,
|
|
41
48
|
currency: 'USD',
|
|
42
49
|
},
|
|
43
|
-
capabilities: {
|
|
50
|
+
capabilities: {
|
|
51
|
+
vision: false,
|
|
52
|
+
tools: true,
|
|
53
|
+
reasoning: false,
|
|
54
|
+
webSearch: false,
|
|
55
|
+
jsonOutput: false,
|
|
56
|
+
structuredOutputs: false,
|
|
57
|
+
},
|
|
44
58
|
},
|
|
45
59
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_TURBO]: {
|
|
46
60
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_TURBO,
|
|
@@ -58,7 +72,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
58
72
|
getPriceForAudioOutput: () => 0,
|
|
59
73
|
currency: 'USD',
|
|
60
74
|
},
|
|
61
|
-
capabilities: {
|
|
75
|
+
capabilities: {
|
|
76
|
+
vision: true,
|
|
77
|
+
tools: true,
|
|
78
|
+
reasoning: false,
|
|
79
|
+
webSearch: false,
|
|
80
|
+
jsonOutput: true,
|
|
81
|
+
structuredOutputs: false,
|
|
82
|
+
},
|
|
62
83
|
},
|
|
63
84
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O]: {
|
|
64
85
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O,
|
|
@@ -76,7 +97,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
76
97
|
getPriceForAudioOutput: () => 0,
|
|
77
98
|
currency: 'USD',
|
|
78
99
|
},
|
|
79
|
-
capabilities: {
|
|
100
|
+
capabilities: {
|
|
101
|
+
vision: true,
|
|
102
|
+
tools: true,
|
|
103
|
+
reasoning: false,
|
|
104
|
+
webSearch: true,
|
|
105
|
+
jsonOutput: true,
|
|
106
|
+
structuredOutputs: true,
|
|
107
|
+
},
|
|
80
108
|
},
|
|
81
109
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O_MINI]: {
|
|
82
110
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O_MINI,
|
|
@@ -94,7 +122,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
94
122
|
getPriceForAudioOutput: () => 0,
|
|
95
123
|
currency: 'USD',
|
|
96
124
|
},
|
|
97
|
-
capabilities: {
|
|
125
|
+
capabilities: {
|
|
126
|
+
vision: false,
|
|
127
|
+
tools: true,
|
|
128
|
+
reasoning: false,
|
|
129
|
+
webSearch: false,
|
|
130
|
+
jsonOutput: true,
|
|
131
|
+
structuredOutputs: true,
|
|
132
|
+
},
|
|
98
133
|
},
|
|
99
134
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O_SEARCH_PREVIEW]: {
|
|
100
135
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O_SEARCH_PREVIEW,
|
|
@@ -112,7 +147,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
112
147
|
getPriceForAudioOutput: () => 0,
|
|
113
148
|
currency: 'USD',
|
|
114
149
|
},
|
|
115
|
-
capabilities: {
|
|
150
|
+
capabilities: {
|
|
151
|
+
vision: true,
|
|
152
|
+
tools: false,
|
|
153
|
+
reasoning: false,
|
|
154
|
+
webSearch: true,
|
|
155
|
+
jsonOutput: false,
|
|
156
|
+
structuredOutputs: false,
|
|
157
|
+
},
|
|
116
158
|
},
|
|
117
159
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O_MINI_SEARCH_PREVIEW]: {
|
|
118
160
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O_MINI_SEARCH_PREVIEW,
|
|
@@ -130,7 +172,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
130
172
|
getPriceForAudioOutput: () => 0,
|
|
131
173
|
currency: 'USD',
|
|
132
174
|
},
|
|
133
|
-
capabilities: {
|
|
175
|
+
capabilities: {
|
|
176
|
+
vision: true,
|
|
177
|
+
tools: false,
|
|
178
|
+
reasoning: false,
|
|
179
|
+
webSearch: true,
|
|
180
|
+
jsonOutput: false,
|
|
181
|
+
structuredOutputs: false,
|
|
182
|
+
},
|
|
134
183
|
},
|
|
135
184
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_1]: {
|
|
136
185
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_1,
|
|
@@ -148,7 +197,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
148
197
|
getPriceForAudioOutput: () => 0,
|
|
149
198
|
currency: 'USD',
|
|
150
199
|
},
|
|
151
|
-
capabilities: {
|
|
200
|
+
capabilities: {
|
|
201
|
+
vision: true,
|
|
202
|
+
tools: true,
|
|
203
|
+
reasoning: false,
|
|
204
|
+
webSearch: false,
|
|
205
|
+
jsonOutput: true,
|
|
206
|
+
structuredOutputs: true,
|
|
207
|
+
},
|
|
152
208
|
},
|
|
153
209
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_1_MINI]: {
|
|
154
210
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_1_MINI,
|
|
@@ -166,7 +222,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
166
222
|
getPriceForAudioOutput: () => 0,
|
|
167
223
|
currency: 'USD',
|
|
168
224
|
},
|
|
169
|
-
capabilities: {
|
|
225
|
+
capabilities: {
|
|
226
|
+
vision: true,
|
|
227
|
+
tools: true,
|
|
228
|
+
reasoning: false,
|
|
229
|
+
webSearch: false,
|
|
230
|
+
jsonOutput: true,
|
|
231
|
+
structuredOutputs: true,
|
|
232
|
+
},
|
|
170
233
|
},
|
|
171
234
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_1_NANO]: {
|
|
172
235
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_1_NANO,
|
|
@@ -184,7 +247,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
184
247
|
getPriceForAudioOutput: () => 0,
|
|
185
248
|
currency: 'USD',
|
|
186
249
|
},
|
|
187
|
-
capabilities: {
|
|
250
|
+
capabilities: {
|
|
251
|
+
vision: true,
|
|
252
|
+
tools: true,
|
|
253
|
+
reasoning: false,
|
|
254
|
+
webSearch: false,
|
|
255
|
+
jsonOutput: true,
|
|
256
|
+
structuredOutputs: true,
|
|
257
|
+
},
|
|
188
258
|
},
|
|
189
259
|
[LLMAPI_typedefs_1.LLMAPIModelNames.O1]: {
|
|
190
260
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.O1,
|
|
@@ -202,7 +272,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
202
272
|
getPriceForAudioOutput: () => 0,
|
|
203
273
|
currency: 'USD',
|
|
204
274
|
},
|
|
205
|
-
capabilities: {
|
|
275
|
+
capabilities: {
|
|
276
|
+
vision: true,
|
|
277
|
+
tools: false,
|
|
278
|
+
reasoning: true,
|
|
279
|
+
webSearch: false,
|
|
280
|
+
jsonOutput: true,
|
|
281
|
+
structuredOutputs: true,
|
|
282
|
+
},
|
|
206
283
|
},
|
|
207
284
|
[LLMAPI_typedefs_1.LLMAPIModelNames.O3]: {
|
|
208
285
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.O3,
|
|
@@ -220,7 +297,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
220
297
|
getPriceForAudioOutput: () => 0,
|
|
221
298
|
currency: 'USD',
|
|
222
299
|
},
|
|
223
|
-
capabilities: {
|
|
300
|
+
capabilities: {
|
|
301
|
+
vision: true,
|
|
302
|
+
tools: false,
|
|
303
|
+
reasoning: false,
|
|
304
|
+
webSearch: false,
|
|
305
|
+
jsonOutput: true,
|
|
306
|
+
structuredOutputs: true,
|
|
307
|
+
},
|
|
224
308
|
},
|
|
225
309
|
[LLMAPI_typedefs_1.LLMAPIModelNames.O3_MINI]: {
|
|
226
310
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.O3_MINI,
|
|
@@ -238,7 +322,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
238
322
|
getPriceForAudioOutput: () => 0,
|
|
239
323
|
currency: 'USD',
|
|
240
324
|
},
|
|
241
|
-
capabilities: {
|
|
325
|
+
capabilities: {
|
|
326
|
+
vision: false,
|
|
327
|
+
tools: false,
|
|
328
|
+
reasoning: false,
|
|
329
|
+
webSearch: false,
|
|
330
|
+
jsonOutput: true,
|
|
331
|
+
structuredOutputs: true,
|
|
332
|
+
},
|
|
242
333
|
},
|
|
243
334
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_OSS_20B]: {
|
|
244
335
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_OSS_20B,
|
|
@@ -256,7 +347,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
256
347
|
getPriceForAudioOutput: () => 0,
|
|
257
348
|
currency: 'USD',
|
|
258
349
|
},
|
|
259
|
-
capabilities: {
|
|
350
|
+
capabilities: {
|
|
351
|
+
vision: false,
|
|
352
|
+
tools: true,
|
|
353
|
+
reasoning: true,
|
|
354
|
+
webSearch: false,
|
|
355
|
+
jsonOutput: true,
|
|
356
|
+
structuredOutputs: false,
|
|
357
|
+
},
|
|
260
358
|
},
|
|
261
359
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5]: {
|
|
262
360
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5,
|
|
@@ -266,6 +364,8 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
266
364
|
},
|
|
267
365
|
config: {
|
|
268
366
|
temperature: 1,
|
|
367
|
+
reasoning_effort: 'minimal',
|
|
368
|
+
verbosity: 'medium',
|
|
269
369
|
},
|
|
270
370
|
pricing: {
|
|
271
371
|
getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000,
|
|
@@ -274,7 +374,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
274
374
|
getPriceForAudioOutput: () => 0,
|
|
275
375
|
currency: 'USD',
|
|
276
376
|
},
|
|
277
|
-
capabilities: {
|
|
377
|
+
capabilities: {
|
|
378
|
+
vision: true,
|
|
379
|
+
tools: true,
|
|
380
|
+
reasoning: true,
|
|
381
|
+
webSearch: true,
|
|
382
|
+
jsonOutput: true,
|
|
383
|
+
structuredOutputs: true,
|
|
384
|
+
},
|
|
278
385
|
},
|
|
279
386
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI]: {
|
|
280
387
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI,
|
|
@@ -284,6 +391,8 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
284
391
|
},
|
|
285
392
|
config: {
|
|
286
393
|
temperature: 1,
|
|
394
|
+
reasoning_effort: 'minimal',
|
|
395
|
+
verbosity: 'medium',
|
|
287
396
|
},
|
|
288
397
|
pricing: {
|
|
289
398
|
getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000,
|
|
@@ -292,7 +401,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
292
401
|
getPriceForAudioOutput: () => 0,
|
|
293
402
|
currency: 'USD',
|
|
294
403
|
},
|
|
295
|
-
capabilities: {
|
|
404
|
+
capabilities: {
|
|
405
|
+
vision: true,
|
|
406
|
+
tools: true,
|
|
407
|
+
reasoning: true,
|
|
408
|
+
webSearch: true,
|
|
409
|
+
jsonOutput: true,
|
|
410
|
+
structuredOutputs: true,
|
|
411
|
+
},
|
|
296
412
|
},
|
|
297
413
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO]: {
|
|
298
414
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO,
|
|
@@ -302,6 +418,8 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
302
418
|
},
|
|
303
419
|
config: {
|
|
304
420
|
temperature: 1,
|
|
421
|
+
reasoning_effort: 'minimal',
|
|
422
|
+
verbosity: 'medium',
|
|
305
423
|
},
|
|
306
424
|
pricing: {
|
|
307
425
|
getPriceForTextInput: (tokens) => 0.05 * tokens / 1_000_000,
|
|
@@ -310,7 +428,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
310
428
|
getPriceForAudioOutput: () => 0,
|
|
311
429
|
currency: 'USD',
|
|
312
430
|
},
|
|
313
|
-
capabilities: {
|
|
431
|
+
capabilities: {
|
|
432
|
+
vision: false,
|
|
433
|
+
tools: true,
|
|
434
|
+
reasoning: true,
|
|
435
|
+
webSearch: true,
|
|
436
|
+
jsonOutput: true,
|
|
437
|
+
structuredOutputs: true,
|
|
438
|
+
},
|
|
314
439
|
},
|
|
315
440
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_CODEX]: {
|
|
316
441
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_CODEX,
|
|
@@ -328,7 +453,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
328
453
|
getPriceForAudioOutput: () => 0,
|
|
329
454
|
currency: 'USD',
|
|
330
455
|
},
|
|
331
|
-
capabilities: {
|
|
456
|
+
capabilities: {
|
|
457
|
+
vision: true,
|
|
458
|
+
tools: true,
|
|
459
|
+
reasoning: true,
|
|
460
|
+
webSearch: false,
|
|
461
|
+
jsonOutput: true,
|
|
462
|
+
structuredOutputs: true,
|
|
463
|
+
},
|
|
332
464
|
},
|
|
333
465
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO]: {
|
|
334
466
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO,
|
|
@@ -346,7 +478,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
346
478
|
getPriceForAudioOutput: () => 0,
|
|
347
479
|
currency: 'USD',
|
|
348
480
|
},
|
|
349
|
-
capabilities: {
|
|
481
|
+
capabilities: {
|
|
482
|
+
vision: true,
|
|
483
|
+
tools: true,
|
|
484
|
+
reasoning: true,
|
|
485
|
+
webSearch: true,
|
|
486
|
+
jsonOutput: true,
|
|
487
|
+
structuredOutputs: true,
|
|
488
|
+
},
|
|
350
489
|
},
|
|
351
490
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1]: {
|
|
352
491
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1,
|
|
@@ -356,6 +495,8 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
356
495
|
},
|
|
357
496
|
config: {
|
|
358
497
|
temperature: 1,
|
|
498
|
+
reasoning_effort: 'none',
|
|
499
|
+
verbosity: 'medium',
|
|
359
500
|
},
|
|
360
501
|
pricing: {
|
|
361
502
|
getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000,
|
|
@@ -364,7 +505,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
364
505
|
getPriceForAudioOutput: () => 0,
|
|
365
506
|
currency: 'USD',
|
|
366
507
|
},
|
|
367
|
-
capabilities: {
|
|
508
|
+
capabilities: {
|
|
509
|
+
vision: true,
|
|
510
|
+
tools: true,
|
|
511
|
+
reasoning: true,
|
|
512
|
+
webSearch: true,
|
|
513
|
+
jsonOutput: true,
|
|
514
|
+
structuredOutputs: true,
|
|
515
|
+
},
|
|
368
516
|
},
|
|
369
517
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CHAT]: {
|
|
370
518
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CHAT,
|
|
@@ -382,7 +530,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
382
530
|
getPriceForAudioOutput: () => 0,
|
|
383
531
|
currency: 'USD',
|
|
384
532
|
},
|
|
385
|
-
capabilities: {
|
|
533
|
+
capabilities: {
|
|
534
|
+
vision: true,
|
|
535
|
+
tools: true,
|
|
536
|
+
reasoning: true,
|
|
537
|
+
webSearch: false,
|
|
538
|
+
jsonOutput: true,
|
|
539
|
+
structuredOutputs: true,
|
|
540
|
+
},
|
|
386
541
|
},
|
|
387
542
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX]: {
|
|
388
543
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX,
|
|
@@ -400,7 +555,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
400
555
|
getPriceForAudioOutput: () => 0,
|
|
401
556
|
currency: 'USD',
|
|
402
557
|
},
|
|
403
|
-
capabilities: {
|
|
558
|
+
capabilities: {
|
|
559
|
+
vision: true,
|
|
560
|
+
tools: true,
|
|
561
|
+
reasoning: true,
|
|
562
|
+
webSearch: true,
|
|
563
|
+
jsonOutput: true,
|
|
564
|
+
structuredOutputs: true,
|
|
565
|
+
},
|
|
404
566
|
},
|
|
405
567
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI]: {
|
|
406
568
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI,
|
|
@@ -418,7 +580,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
418
580
|
getPriceForAudioOutput: () => 0,
|
|
419
581
|
currency: 'USD',
|
|
420
582
|
},
|
|
421
|
-
capabilities: {
|
|
583
|
+
capabilities: {
|
|
584
|
+
vision: true,
|
|
585
|
+
tools: true,
|
|
586
|
+
reasoning: true,
|
|
587
|
+
webSearch: true,
|
|
588
|
+
jsonOutput: true,
|
|
589
|
+
structuredOutputs: true,
|
|
590
|
+
},
|
|
422
591
|
},
|
|
423
592
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2]: {
|
|
424
593
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2,
|
|
@@ -428,6 +597,8 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
428
597
|
},
|
|
429
598
|
config: {
|
|
430
599
|
temperature: 1,
|
|
600
|
+
reasoning_effort: 'none',
|
|
601
|
+
verbosity: 'medium',
|
|
431
602
|
},
|
|
432
603
|
pricing: {
|
|
433
604
|
getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000,
|
|
@@ -436,7 +607,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
436
607
|
getPriceForAudioOutput: () => 0,
|
|
437
608
|
currency: 'USD',
|
|
438
609
|
},
|
|
439
|
-
capabilities: {
|
|
610
|
+
capabilities: {
|
|
611
|
+
vision: true,
|
|
612
|
+
tools: true,
|
|
613
|
+
reasoning: true,
|
|
614
|
+
webSearch: true,
|
|
615
|
+
jsonOutput: true,
|
|
616
|
+
structuredOutputs: true,
|
|
617
|
+
},
|
|
440
618
|
},
|
|
441
619
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_PRO]: {
|
|
442
620
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_PRO,
|
|
@@ -454,7 +632,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
454
632
|
getPriceForAudioOutput: () => 0,
|
|
455
633
|
currency: 'USD',
|
|
456
634
|
},
|
|
457
|
-
capabilities: {
|
|
635
|
+
capabilities: {
|
|
636
|
+
vision: true,
|
|
637
|
+
tools: true,
|
|
638
|
+
reasoning: true,
|
|
639
|
+
webSearch: true,
|
|
640
|
+
jsonOutput: false,
|
|
641
|
+
structuredOutputs: true,
|
|
642
|
+
},
|
|
458
643
|
},
|
|
459
644
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX]: {
|
|
460
645
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX,
|
|
@@ -472,7 +657,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
472
657
|
getPriceForAudioOutput: () => 0,
|
|
473
658
|
currency: 'USD',
|
|
474
659
|
},
|
|
475
|
-
capabilities: {
|
|
660
|
+
capabilities: {
|
|
661
|
+
vision: true,
|
|
662
|
+
tools: true,
|
|
663
|
+
reasoning: true,
|
|
664
|
+
webSearch: true,
|
|
665
|
+
jsonOutput: true,
|
|
666
|
+
structuredOutputs: true,
|
|
667
|
+
},
|
|
476
668
|
},
|
|
477
669
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX]: {
|
|
478
670
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX,
|
|
@@ -490,7 +682,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
490
682
|
getPriceForAudioOutput: () => 0,
|
|
491
683
|
currency: 'USD',
|
|
492
684
|
},
|
|
493
|
-
capabilities: {
|
|
685
|
+
capabilities: {
|
|
686
|
+
vision: true,
|
|
687
|
+
tools: true,
|
|
688
|
+
reasoning: true,
|
|
689
|
+
webSearch: true,
|
|
690
|
+
jsonOutput: true,
|
|
691
|
+
structuredOutputs: true,
|
|
692
|
+
},
|
|
494
693
|
},
|
|
495
694
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4]: {
|
|
496
695
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4,
|
|
@@ -500,6 +699,8 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
500
699
|
},
|
|
501
700
|
config: {
|
|
502
701
|
temperature: 1,
|
|
702
|
+
reasoning_effort: 'none',
|
|
703
|
+
verbosity: 'medium',
|
|
503
704
|
},
|
|
504
705
|
pricing: {
|
|
505
706
|
getPriceForTextInput: (tokens) => 2.5 * tokens / 1_000_000,
|
|
@@ -508,7 +709,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
508
709
|
getPriceForAudioOutput: () => 0,
|
|
509
710
|
currency: 'USD',
|
|
510
711
|
},
|
|
511
|
-
capabilities: {
|
|
712
|
+
capabilities: {
|
|
713
|
+
vision: true,
|
|
714
|
+
tools: true,
|
|
715
|
+
reasoning: true,
|
|
716
|
+
webSearch: true,
|
|
717
|
+
jsonOutput: true,
|
|
718
|
+
structuredOutputs: true,
|
|
719
|
+
},
|
|
512
720
|
},
|
|
513
721
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO]: {
|
|
514
722
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO,
|
|
@@ -526,7 +734,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
526
734
|
getPriceForAudioOutput: () => 0,
|
|
527
735
|
currency: 'USD',
|
|
528
736
|
},
|
|
529
|
-
capabilities: {
|
|
737
|
+
capabilities: {
|
|
738
|
+
vision: true,
|
|
739
|
+
tools: true,
|
|
740
|
+
reasoning: true,
|
|
741
|
+
webSearch: true,
|
|
742
|
+
jsonOutput: true,
|
|
743
|
+
structuredOutputs: true,
|
|
744
|
+
},
|
|
530
745
|
},
|
|
531
746
|
// ─── Anthropic ─────────────────────────────────────────────────
|
|
532
747
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_20250514]: {
|
|
@@ -545,7 +760,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
545
760
|
getPriceForAudioOutput: () => 0,
|
|
546
761
|
currency: 'USD',
|
|
547
762
|
},
|
|
548
|
-
capabilities: {
|
|
763
|
+
capabilities: {
|
|
764
|
+
vision: false,
|
|
765
|
+
tools: true,
|
|
766
|
+
reasoning: true,
|
|
767
|
+
webSearch: true,
|
|
768
|
+
jsonOutput: false,
|
|
769
|
+
structuredOutputs: false,
|
|
770
|
+
},
|
|
549
771
|
},
|
|
550
772
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_5]: {
|
|
551
773
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_5,
|
|
@@ -563,7 +785,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
563
785
|
getPriceForAudioOutput: () => 0,
|
|
564
786
|
currency: 'USD',
|
|
565
787
|
},
|
|
566
|
-
capabilities: {
|
|
788
|
+
capabilities: {
|
|
789
|
+
vision: false,
|
|
790
|
+
tools: true,
|
|
791
|
+
reasoning: true,
|
|
792
|
+
webSearch: true,
|
|
793
|
+
jsonOutput: false,
|
|
794
|
+
structuredOutputs: true,
|
|
795
|
+
},
|
|
567
796
|
},
|
|
568
797
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_5_20250929]: {
|
|
569
798
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_5_20250929,
|
|
@@ -581,7 +810,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
581
810
|
getPriceForAudioOutput: () => 0,
|
|
582
811
|
currency: 'USD',
|
|
583
812
|
},
|
|
584
|
-
capabilities: {
|
|
813
|
+
capabilities: {
|
|
814
|
+
vision: false,
|
|
815
|
+
tools: true,
|
|
816
|
+
reasoning: true,
|
|
817
|
+
webSearch: true,
|
|
818
|
+
jsonOutput: false,
|
|
819
|
+
structuredOutputs: true,
|
|
820
|
+
},
|
|
585
821
|
},
|
|
586
822
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_6]: {
|
|
587
823
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_6,
|
|
@@ -599,7 +835,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
599
835
|
getPriceForAudioOutput: () => 0,
|
|
600
836
|
currency: 'USD',
|
|
601
837
|
},
|
|
602
|
-
capabilities: {
|
|
838
|
+
capabilities: {
|
|
839
|
+
vision: false,
|
|
840
|
+
tools: true,
|
|
841
|
+
reasoning: true,
|
|
842
|
+
webSearch: true,
|
|
843
|
+
jsonOutput: false,
|
|
844
|
+
structuredOutputs: true,
|
|
845
|
+
},
|
|
603
846
|
},
|
|
604
847
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_HAIKU_4_5]: {
|
|
605
848
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_HAIKU_4_5,
|
|
@@ -617,7 +860,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
617
860
|
getPriceForAudioOutput: () => 0,
|
|
618
861
|
currency: 'USD',
|
|
619
862
|
},
|
|
620
|
-
capabilities: {
|
|
863
|
+
capabilities: {
|
|
864
|
+
vision: false,
|
|
865
|
+
tools: true,
|
|
866
|
+
reasoning: false,
|
|
867
|
+
webSearch: true,
|
|
868
|
+
jsonOutput: false,
|
|
869
|
+
structuredOutputs: true,
|
|
870
|
+
},
|
|
621
871
|
},
|
|
622
872
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_HAIKU_4_5_20251001]: {
|
|
623
873
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_HAIKU_4_5_20251001,
|
|
@@ -635,7 +885,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
635
885
|
getPriceForAudioOutput: () => 0,
|
|
636
886
|
currency: 'USD',
|
|
637
887
|
},
|
|
638
|
-
capabilities: {
|
|
888
|
+
capabilities: {
|
|
889
|
+
vision: false,
|
|
890
|
+
tools: true,
|
|
891
|
+
reasoning: false,
|
|
892
|
+
webSearch: true,
|
|
893
|
+
jsonOutput: false,
|
|
894
|
+
structuredOutputs: true,
|
|
895
|
+
},
|
|
639
896
|
},
|
|
640
897
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_20250514]: {
|
|
641
898
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_20250514,
|
|
@@ -653,7 +910,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
653
910
|
getPriceForAudioOutput: () => 0,
|
|
654
911
|
currency: 'USD',
|
|
655
912
|
},
|
|
656
|
-
capabilities: {
|
|
913
|
+
capabilities: {
|
|
914
|
+
vision: false,
|
|
915
|
+
tools: true,
|
|
916
|
+
reasoning: true,
|
|
917
|
+
webSearch: true,
|
|
918
|
+
jsonOutput: false,
|
|
919
|
+
structuredOutputs: false,
|
|
920
|
+
},
|
|
657
921
|
},
|
|
658
922
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_1_20250805]: {
|
|
659
923
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_1_20250805,
|
|
@@ -671,7 +935,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
671
935
|
getPriceForAudioOutput: () => 0,
|
|
672
936
|
currency: 'USD',
|
|
673
937
|
},
|
|
674
|
-
capabilities: {
|
|
938
|
+
capabilities: {
|
|
939
|
+
vision: true,
|
|
940
|
+
tools: true,
|
|
941
|
+
reasoning: true,
|
|
942
|
+
webSearch: true,
|
|
943
|
+
jsonOutput: false,
|
|
944
|
+
structuredOutputs: true,
|
|
945
|
+
},
|
|
675
946
|
},
|
|
676
947
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_5_20251101]: {
|
|
677
948
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_5_20251101,
|
|
@@ -689,7 +960,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
689
960
|
getPriceForAudioOutput: () => 0,
|
|
690
961
|
currency: 'USD',
|
|
691
962
|
},
|
|
692
|
-
capabilities: {
|
|
963
|
+
capabilities: {
|
|
964
|
+
vision: true,
|
|
965
|
+
tools: true,
|
|
966
|
+
reasoning: true,
|
|
967
|
+
webSearch: true,
|
|
968
|
+
jsonOutput: false,
|
|
969
|
+
structuredOutputs: true,
|
|
970
|
+
},
|
|
693
971
|
},
|
|
694
972
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_6]: {
|
|
695
973
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_6,
|
|
@@ -707,7 +985,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
707
985
|
getPriceForAudioOutput: () => 0,
|
|
708
986
|
currency: 'USD',
|
|
709
987
|
},
|
|
710
|
-
capabilities: {
|
|
988
|
+
capabilities: {
|
|
989
|
+
vision: true,
|
|
990
|
+
tools: true,
|
|
991
|
+
reasoning: true,
|
|
992
|
+
webSearch: true,
|
|
993
|
+
jsonOutput: true,
|
|
994
|
+
structuredOutputs: true,
|
|
995
|
+
},
|
|
711
996
|
},
|
|
712
997
|
// ─── Google Gemini ─────────────────────────────────────────────
|
|
713
998
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_PRO]: {
|
|
@@ -726,7 +1011,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
726
1011
|
getPriceForAudioOutput: () => 0,
|
|
727
1012
|
currency: 'USD',
|
|
728
1013
|
},
|
|
729
|
-
capabilities: {
|
|
1014
|
+
capabilities: {
|
|
1015
|
+
vision: true,
|
|
1016
|
+
tools: true,
|
|
1017
|
+
reasoning: true,
|
|
1018
|
+
webSearch: true,
|
|
1019
|
+
jsonOutput: true,
|
|
1020
|
+
structuredOutputs: true,
|
|
1021
|
+
},
|
|
730
1022
|
},
|
|
731
1023
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH]: {
|
|
732
1024
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH,
|
|
@@ -744,7 +1036,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
744
1036
|
getPriceForAudioOutput: () => 0,
|
|
745
1037
|
currency: 'USD',
|
|
746
1038
|
},
|
|
747
|
-
capabilities: {
|
|
1039
|
+
capabilities: {
|
|
1040
|
+
vision: true,
|
|
1041
|
+
tools: true,
|
|
1042
|
+
reasoning: true,
|
|
1043
|
+
webSearch: true,
|
|
1044
|
+
jsonOutput: true,
|
|
1045
|
+
structuredOutputs: true,
|
|
1046
|
+
},
|
|
748
1047
|
},
|
|
749
1048
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE]: {
|
|
750
1049
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE,
|
|
@@ -762,7 +1061,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
762
1061
|
getPriceForAudioOutput: () => 0,
|
|
763
1062
|
currency: 'USD',
|
|
764
1063
|
},
|
|
765
|
-
capabilities: {
|
|
1064
|
+
capabilities: {
|
|
1065
|
+
vision: true,
|
|
1066
|
+
tools: true,
|
|
1067
|
+
reasoning: false,
|
|
1068
|
+
webSearch: false,
|
|
1069
|
+
jsonOutput: true,
|
|
1070
|
+
structuredOutputs: true,
|
|
1071
|
+
},
|
|
766
1072
|
},
|
|
767
1073
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_PREVIEW_09_2025]: {
|
|
768
1074
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_PREVIEW_09_2025,
|
|
@@ -780,7 +1086,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
780
1086
|
getPriceForAudioOutput: () => 0,
|
|
781
1087
|
currency: 'USD',
|
|
782
1088
|
},
|
|
783
|
-
capabilities: {
|
|
1089
|
+
capabilities: {
|
|
1090
|
+
vision: true,
|
|
1091
|
+
tools: true,
|
|
1092
|
+
reasoning: false,
|
|
1093
|
+
webSearch: false,
|
|
1094
|
+
jsonOutput: true,
|
|
1095
|
+
structuredOutputs: true,
|
|
1096
|
+
},
|
|
784
1097
|
},
|
|
785
1098
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW]: {
|
|
786
1099
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW,
|
|
@@ -798,7 +1111,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
798
1111
|
getPriceForAudioOutput: () => 0,
|
|
799
1112
|
currency: 'USD',
|
|
800
1113
|
},
|
|
801
|
-
capabilities: {
|
|
1114
|
+
capabilities: {
|
|
1115
|
+
vision: true,
|
|
1116
|
+
tools: true,
|
|
1117
|
+
reasoning: true,
|
|
1118
|
+
webSearch: true,
|
|
1119
|
+
jsonOutput: true,
|
|
1120
|
+
structuredOutputs: true,
|
|
1121
|
+
},
|
|
802
1122
|
},
|
|
803
1123
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW]: {
|
|
804
1124
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW,
|
|
@@ -816,7 +1136,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
816
1136
|
getPriceForAudioOutput: () => 0,
|
|
817
1137
|
currency: 'USD',
|
|
818
1138
|
},
|
|
819
|
-
capabilities: {
|
|
1139
|
+
capabilities: {
|
|
1140
|
+
vision: true,
|
|
1141
|
+
tools: true,
|
|
1142
|
+
reasoning: true,
|
|
1143
|
+
webSearch: true,
|
|
1144
|
+
jsonOutput: true,
|
|
1145
|
+
structuredOutputs: true,
|
|
1146
|
+
},
|
|
820
1147
|
},
|
|
821
1148
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE]: {
|
|
822
1149
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE,
|
|
@@ -834,7 +1161,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
834
1161
|
getPriceForAudioOutput: () => 0,
|
|
835
1162
|
currency: 'USD',
|
|
836
1163
|
},
|
|
837
|
-
capabilities: {
|
|
1164
|
+
capabilities: {
|
|
1165
|
+
vision: true,
|
|
1166
|
+
tools: false,
|
|
1167
|
+
reasoning: false,
|
|
1168
|
+
webSearch: false,
|
|
1169
|
+
jsonOutput: true,
|
|
1170
|
+
structuredOutputs: true,
|
|
1171
|
+
},
|
|
838
1172
|
},
|
|
839
1173
|
// ─── Google Gemma ──────────────────────────────────────────────
|
|
840
1174
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3N_E2B_IT]: {
|
|
@@ -853,7 +1187,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
853
1187
|
getPriceForAudioOutput: () => 0,
|
|
854
1188
|
currency: 'USD',
|
|
855
1189
|
},
|
|
856
|
-
capabilities: {
|
|
1190
|
+
capabilities: {
|
|
1191
|
+
vision: false,
|
|
1192
|
+
tools: false,
|
|
1193
|
+
reasoning: false,
|
|
1194
|
+
webSearch: false,
|
|
1195
|
+
jsonOutput: false,
|
|
1196
|
+
structuredOutputs: false,
|
|
1197
|
+
},
|
|
857
1198
|
},
|
|
858
1199
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3N_E4B_IT]: {
|
|
859
1200
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3N_E4B_IT,
|
|
@@ -871,7 +1212,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
871
1212
|
getPriceForAudioOutput: () => 0,
|
|
872
1213
|
currency: 'USD',
|
|
873
1214
|
},
|
|
874
|
-
capabilities: {
|
|
1215
|
+
capabilities: {
|
|
1216
|
+
vision: false,
|
|
1217
|
+
tools: false,
|
|
1218
|
+
reasoning: false,
|
|
1219
|
+
webSearch: false,
|
|
1220
|
+
jsonOutput: false,
|
|
1221
|
+
structuredOutputs: false,
|
|
1222
|
+
},
|
|
875
1223
|
},
|
|
876
1224
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3_1B_IT]: {
|
|
877
1225
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3_1B_IT,
|
|
@@ -889,7 +1237,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
889
1237
|
getPriceForAudioOutput: () => 0,
|
|
890
1238
|
currency: 'USD',
|
|
891
1239
|
},
|
|
892
|
-
capabilities: {
|
|
1240
|
+
capabilities: {
|
|
1241
|
+
vision: false,
|
|
1242
|
+
tools: false,
|
|
1243
|
+
reasoning: false,
|
|
1244
|
+
webSearch: false,
|
|
1245
|
+
jsonOutput: false,
|
|
1246
|
+
structuredOutputs: false,
|
|
1247
|
+
},
|
|
893
1248
|
},
|
|
894
1249
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3_4B_IT]: {
|
|
895
1250
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3_4B_IT,
|
|
@@ -907,7 +1262,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
907
1262
|
getPriceForAudioOutput: () => 0,
|
|
908
1263
|
currency: 'USD',
|
|
909
1264
|
},
|
|
910
|
-
capabilities: {
|
|
1265
|
+
capabilities: {
|
|
1266
|
+
vision: false,
|
|
1267
|
+
tools: false,
|
|
1268
|
+
reasoning: false,
|
|
1269
|
+
webSearch: false,
|
|
1270
|
+
jsonOutput: false,
|
|
1271
|
+
structuredOutputs: false,
|
|
1272
|
+
},
|
|
911
1273
|
},
|
|
912
1274
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3_12B_IT]: {
|
|
913
1275
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3_12B_IT,
|
|
@@ -925,7 +1287,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
925
1287
|
getPriceForAudioOutput: () => 0,
|
|
926
1288
|
currency: 'USD',
|
|
927
1289
|
},
|
|
928
|
-
capabilities: {
|
|
1290
|
+
capabilities: {
|
|
1291
|
+
vision: false,
|
|
1292
|
+
tools: false,
|
|
1293
|
+
reasoning: false,
|
|
1294
|
+
webSearch: false,
|
|
1295
|
+
jsonOutput: false,
|
|
1296
|
+
structuredOutputs: false,
|
|
1297
|
+
},
|
|
929
1298
|
},
|
|
930
1299
|
// ─── xAI Grok ──────────────────────────────────────────────────
|
|
931
1300
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GROK_3]: {
|
|
@@ -944,7 +1313,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
944
1313
|
getPriceForAudioOutput: () => 0,
|
|
945
1314
|
currency: 'USD',
|
|
946
1315
|
},
|
|
947
|
-
capabilities: {
|
|
1316
|
+
capabilities: {
|
|
1317
|
+
vision: false,
|
|
1318
|
+
tools: true,
|
|
1319
|
+
reasoning: false,
|
|
1320
|
+
webSearch: false,
|
|
1321
|
+
jsonOutput: true,
|
|
1322
|
+
structuredOutputs: false,
|
|
1323
|
+
},
|
|
948
1324
|
},
|
|
949
1325
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_0709]: {
|
|
950
1326
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_0709,
|
|
@@ -962,7 +1338,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
962
1338
|
getPriceForAudioOutput: () => 0,
|
|
963
1339
|
currency: 'USD',
|
|
964
1340
|
},
|
|
965
|
-
capabilities: {
|
|
1341
|
+
capabilities: {
|
|
1342
|
+
vision: false,
|
|
1343
|
+
tools: true,
|
|
1344
|
+
reasoning: false,
|
|
1345
|
+
webSearch: false,
|
|
1346
|
+
jsonOutput: true,
|
|
1347
|
+
structuredOutputs: false,
|
|
1348
|
+
},
|
|
966
1349
|
},
|
|
967
1350
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4]: {
|
|
968
1351
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4,
|
|
@@ -980,7 +1363,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
980
1363
|
getPriceForAudioOutput: () => 0,
|
|
981
1364
|
currency: 'USD',
|
|
982
1365
|
},
|
|
983
|
-
capabilities: {
|
|
1366
|
+
capabilities: {
|
|
1367
|
+
vision: true,
|
|
1368
|
+
tools: true,
|
|
1369
|
+
reasoning: false,
|
|
1370
|
+
webSearch: false,
|
|
1371
|
+
jsonOutput: true,
|
|
1372
|
+
structuredOutputs: false,
|
|
1373
|
+
},
|
|
984
1374
|
},
|
|
985
1375
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_FAST_REASONING]: {
|
|
986
1376
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_FAST_REASONING,
|
|
@@ -998,7 +1388,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
998
1388
|
getPriceForAudioOutput: () => 0,
|
|
999
1389
|
currency: 'USD',
|
|
1000
1390
|
},
|
|
1001
|
-
capabilities: {
|
|
1391
|
+
capabilities: {
|
|
1392
|
+
vision: true,
|
|
1393
|
+
tools: true,
|
|
1394
|
+
reasoning: false,
|
|
1395
|
+
webSearch: false,
|
|
1396
|
+
jsonOutput: true,
|
|
1397
|
+
structuredOutputs: false,
|
|
1398
|
+
},
|
|
1002
1399
|
},
|
|
1003
1400
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_FAST_NON_REASONING]: {
|
|
1004
1401
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_FAST_NON_REASONING,
|
|
@@ -1016,7 +1413,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1016
1413
|
getPriceForAudioOutput: () => 0,
|
|
1017
1414
|
currency: 'USD',
|
|
1018
1415
|
},
|
|
1019
|
-
capabilities: {
|
|
1416
|
+
capabilities: {
|
|
1417
|
+
vision: true,
|
|
1418
|
+
tools: true,
|
|
1419
|
+
reasoning: false,
|
|
1420
|
+
webSearch: false,
|
|
1421
|
+
jsonOutput: true,
|
|
1422
|
+
structuredOutputs: false,
|
|
1423
|
+
},
|
|
1020
1424
|
},
|
|
1021
1425
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GROK_CODE_FAST_1]: {
|
|
1022
1426
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_CODE_FAST_1,
|
|
@@ -1034,7 +1438,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1034
1438
|
getPriceForAudioOutput: () => 0,
|
|
1035
1439
|
currency: 'USD',
|
|
1036
1440
|
},
|
|
1037
|
-
capabilities: {
|
|
1441
|
+
capabilities: {
|
|
1442
|
+
vision: false,
|
|
1443
|
+
tools: true,
|
|
1444
|
+
reasoning: false,
|
|
1445
|
+
webSearch: false,
|
|
1446
|
+
jsonOutput: true,
|
|
1447
|
+
structuredOutputs: false,
|
|
1448
|
+
},
|
|
1038
1449
|
},
|
|
1039
1450
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_1_FAST_REASONING]: {
|
|
1040
1451
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_1_FAST_REASONING,
|
|
@@ -1052,7 +1463,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1052
1463
|
getPriceForAudioOutput: () => 0,
|
|
1053
1464
|
currency: 'USD',
|
|
1054
1465
|
},
|
|
1055
|
-
capabilities: {
|
|
1466
|
+
capabilities: {
|
|
1467
|
+
vision: true,
|
|
1468
|
+
tools: true,
|
|
1469
|
+
reasoning: false,
|
|
1470
|
+
webSearch: false,
|
|
1471
|
+
jsonOutput: true,
|
|
1472
|
+
structuredOutputs: false,
|
|
1473
|
+
},
|
|
1056
1474
|
},
|
|
1057
1475
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_1_FAST_NON_REASONING]: {
|
|
1058
1476
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_1_FAST_NON_REASONING,
|
|
@@ -1070,7 +1488,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1070
1488
|
getPriceForAudioOutput: () => 0,
|
|
1071
1489
|
currency: 'USD',
|
|
1072
1490
|
},
|
|
1073
|
-
capabilities: {
|
|
1491
|
+
capabilities: {
|
|
1492
|
+
vision: true,
|
|
1493
|
+
tools: true,
|
|
1494
|
+
reasoning: false,
|
|
1495
|
+
webSearch: false,
|
|
1496
|
+
jsonOutput: true,
|
|
1497
|
+
structuredOutputs: false,
|
|
1498
|
+
},
|
|
1074
1499
|
},
|
|
1075
1500
|
// ─── Meta Llama ────────────────────────────────────────────────
|
|
1076
1501
|
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_8B_INSTRUCT]: {
|
|
@@ -1089,7 +1514,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1089
1514
|
getPriceForAudioOutput: () => 0,
|
|
1090
1515
|
currency: 'USD',
|
|
1091
1516
|
},
|
|
1092
|
-
capabilities: {
|
|
1517
|
+
capabilities: {
|
|
1518
|
+
vision: false,
|
|
1519
|
+
tools: false,
|
|
1520
|
+
reasoning: false,
|
|
1521
|
+
webSearch: false,
|
|
1522
|
+
jsonOutput: true,
|
|
1523
|
+
structuredOutputs: false,
|
|
1524
|
+
},
|
|
1093
1525
|
},
|
|
1094
1526
|
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_70B_INSTRUCT]: {
|
|
1095
1527
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_70B_INSTRUCT,
|
|
@@ -1107,7 +1539,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1107
1539
|
getPriceForAudioOutput: () => 0,
|
|
1108
1540
|
currency: 'USD',
|
|
1109
1541
|
},
|
|
1110
|
-
capabilities: {
|
|
1542
|
+
capabilities: {
|
|
1543
|
+
vision: false,
|
|
1544
|
+
tools: false,
|
|
1545
|
+
reasoning: false,
|
|
1546
|
+
webSearch: false,
|
|
1547
|
+
jsonOutput: true,
|
|
1548
|
+
structuredOutputs: false,
|
|
1549
|
+
},
|
|
1111
1550
|
},
|
|
1112
1551
|
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_8B_INSTRUCT]: {
|
|
1113
1552
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_8B_INSTRUCT,
|
|
@@ -1125,7 +1564,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1125
1564
|
getPriceForAudioOutput: () => 0,
|
|
1126
1565
|
currency: 'USD',
|
|
1127
1566
|
},
|
|
1128
|
-
capabilities: {
|
|
1567
|
+
capabilities: {
|
|
1568
|
+
vision: false,
|
|
1569
|
+
tools: false,
|
|
1570
|
+
reasoning: false,
|
|
1571
|
+
webSearch: false,
|
|
1572
|
+
jsonOutput: true,
|
|
1573
|
+
structuredOutputs: false,
|
|
1574
|
+
},
|
|
1129
1575
|
},
|
|
1130
1576
|
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_70B_INSTRUCT]: {
|
|
1131
1577
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_70B_INSTRUCT,
|
|
@@ -1143,7 +1589,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1143
1589
|
getPriceForAudioOutput: () => 0,
|
|
1144
1590
|
currency: 'USD',
|
|
1145
1591
|
},
|
|
1146
|
-
capabilities: {
|
|
1592
|
+
capabilities: {
|
|
1593
|
+
vision: false,
|
|
1594
|
+
tools: false,
|
|
1595
|
+
reasoning: false,
|
|
1596
|
+
webSearch: false,
|
|
1597
|
+
jsonOutput: false,
|
|
1598
|
+
structuredOutputs: false,
|
|
1599
|
+
},
|
|
1147
1600
|
},
|
|
1148
1601
|
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_NEMOTRON_ULTRA_253B]: {
|
|
1149
1602
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_NEMOTRON_ULTRA_253B,
|
|
@@ -1161,7 +1614,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1161
1614
|
getPriceForAudioOutput: () => 0,
|
|
1162
1615
|
currency: 'USD',
|
|
1163
1616
|
},
|
|
1164
|
-
capabilities: {
|
|
1617
|
+
capabilities: {
|
|
1618
|
+
vision: false,
|
|
1619
|
+
tools: false,
|
|
1620
|
+
reasoning: false,
|
|
1621
|
+
webSearch: false,
|
|
1622
|
+
jsonOutput: true,
|
|
1623
|
+
structuredOutputs: false,
|
|
1624
|
+
},
|
|
1165
1625
|
},
|
|
1166
1626
|
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_2_3B_INSTRUCT]: {
|
|
1167
1627
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_2_3B_INSTRUCT,
|
|
@@ -1179,7 +1639,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1179
1639
|
getPriceForAudioOutput: () => 0,
|
|
1180
1640
|
currency: 'USD',
|
|
1181
1641
|
},
|
|
1182
|
-
capabilities: {
|
|
1642
|
+
capabilities: {
|
|
1643
|
+
vision: false,
|
|
1644
|
+
tools: false,
|
|
1645
|
+
reasoning: false,
|
|
1646
|
+
webSearch: false,
|
|
1647
|
+
jsonOutput: true,
|
|
1648
|
+
structuredOutputs: false,
|
|
1649
|
+
},
|
|
1183
1650
|
},
|
|
1184
1651
|
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_3_70B_INSTRUCT]: {
|
|
1185
1652
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_3_70B_INSTRUCT,
|
|
@@ -1197,7 +1664,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1197
1664
|
getPriceForAudioOutput: () => 0,
|
|
1198
1665
|
currency: 'USD',
|
|
1199
1666
|
},
|
|
1200
|
-
capabilities: {
|
|
1667
|
+
capabilities: {
|
|
1668
|
+
vision: false,
|
|
1669
|
+
tools: true,
|
|
1670
|
+
reasoning: false,
|
|
1671
|
+
webSearch: false,
|
|
1672
|
+
jsonOutput: true,
|
|
1673
|
+
structuredOutputs: false,
|
|
1674
|
+
},
|
|
1201
1675
|
},
|
|
1202
1676
|
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_4_SCOUT_17B_INSTRUCT]: {
|
|
1203
1677
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_4_SCOUT_17B_INSTRUCT,
|
|
@@ -1215,7 +1689,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1215
1689
|
getPriceForAudioOutput: () => 0,
|
|
1216
1690
|
currency: 'USD',
|
|
1217
1691
|
},
|
|
1218
|
-
capabilities: {
|
|
1692
|
+
capabilities: {
|
|
1693
|
+
vision: true,
|
|
1694
|
+
tools: false,
|
|
1695
|
+
reasoning: false,
|
|
1696
|
+
webSearch: false,
|
|
1697
|
+
jsonOutput: true,
|
|
1698
|
+
structuredOutputs: false,
|
|
1699
|
+
},
|
|
1219
1700
|
},
|
|
1220
1701
|
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_4_MAVERICK_17B_INSTRUCT]: {
|
|
1221
1702
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_4_MAVERICK_17B_INSTRUCT,
|
|
@@ -1233,7 +1714,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1233
1714
|
getPriceForAudioOutput: () => 0,
|
|
1234
1715
|
currency: 'USD',
|
|
1235
1716
|
},
|
|
1236
|
-
capabilities: {
|
|
1717
|
+
capabilities: {
|
|
1718
|
+
vision: true,
|
|
1719
|
+
tools: false,
|
|
1720
|
+
reasoning: false,
|
|
1721
|
+
webSearch: false,
|
|
1722
|
+
jsonOutput: true,
|
|
1723
|
+
structuredOutputs: false,
|
|
1724
|
+
},
|
|
1237
1725
|
},
|
|
1238
1726
|
// ─── DeepSeek ──────────────────────────────────────────────────
|
|
1239
1727
|
[LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_R1_0528]: {
|
|
@@ -1252,7 +1740,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1252
1740
|
getPriceForAudioOutput: () => 0,
|
|
1253
1741
|
currency: 'USD',
|
|
1254
1742
|
},
|
|
1255
|
-
capabilities: {
|
|
1743
|
+
capabilities: {
|
|
1744
|
+
vision: false,
|
|
1745
|
+
tools: false,
|
|
1746
|
+
reasoning: false,
|
|
1747
|
+
webSearch: false,
|
|
1748
|
+
jsonOutput: false,
|
|
1749
|
+
structuredOutputs: false,
|
|
1750
|
+
},
|
|
1256
1751
|
},
|
|
1257
1752
|
[LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_V3_2]: {
|
|
1258
1753
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_V3_2,
|
|
@@ -1270,7 +1765,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1270
1765
|
getPriceForAudioOutput: () => 0,
|
|
1271
1766
|
currency: 'USD',
|
|
1272
1767
|
},
|
|
1273
|
-
capabilities: {
|
|
1768
|
+
capabilities: {
|
|
1769
|
+
vision: true,
|
|
1770
|
+
tools: true,
|
|
1771
|
+
reasoning: false,
|
|
1772
|
+
webSearch: false,
|
|
1773
|
+
jsonOutput: true,
|
|
1774
|
+
structuredOutputs: false,
|
|
1775
|
+
},
|
|
1274
1776
|
},
|
|
1275
1777
|
// ─── Mistral ───────────────────────────────────────────────────
|
|
1276
1778
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MISTRAL_LARGE_LATEST]: {
|
|
@@ -1289,7 +1791,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1289
1791
|
getPriceForAudioOutput: () => 0,
|
|
1290
1792
|
currency: 'USD',
|
|
1291
1793
|
},
|
|
1292
|
-
capabilities: {
|
|
1794
|
+
capabilities: {
|
|
1795
|
+
vision: false,
|
|
1796
|
+
tools: true,
|
|
1797
|
+
reasoning: false,
|
|
1798
|
+
webSearch: false,
|
|
1799
|
+
jsonOutput: false,
|
|
1800
|
+
structuredOutputs: false,
|
|
1801
|
+
},
|
|
1293
1802
|
},
|
|
1294
1803
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MISTRAL_LARGE_2512]: {
|
|
1295
1804
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MISTRAL_LARGE_2512,
|
|
@@ -1307,7 +1816,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1307
1816
|
getPriceForAudioOutput: () => 0,
|
|
1308
1817
|
currency: 'USD',
|
|
1309
1818
|
},
|
|
1310
|
-
capabilities: {
|
|
1819
|
+
capabilities: {
|
|
1820
|
+
vision: true,
|
|
1821
|
+
tools: true,
|
|
1822
|
+
reasoning: false,
|
|
1823
|
+
webSearch: true,
|
|
1824
|
+
jsonOutput: true,
|
|
1825
|
+
structuredOutputs: false,
|
|
1826
|
+
},
|
|
1311
1827
|
},
|
|
1312
1828
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MISTRAL_SMALL_2506]: {
|
|
1313
1829
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MISTRAL_SMALL_2506,
|
|
@@ -1325,7 +1841,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1325
1841
|
getPriceForAudioOutput: () => 0,
|
|
1326
1842
|
currency: 'USD',
|
|
1327
1843
|
},
|
|
1328
|
-
capabilities: {
|
|
1844
|
+
capabilities: {
|
|
1845
|
+
vision: true,
|
|
1846
|
+
tools: true,
|
|
1847
|
+
reasoning: false,
|
|
1848
|
+
webSearch: true,
|
|
1849
|
+
jsonOutput: true,
|
|
1850
|
+
structuredOutputs: false,
|
|
1851
|
+
},
|
|
1329
1852
|
},
|
|
1330
1853
|
[LLMAPI_typedefs_1.LLMAPIModelNames.PIXTRAL_LARGE_LATEST]: {
|
|
1331
1854
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.PIXTRAL_LARGE_LATEST,
|
|
@@ -1343,7 +1866,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1343
1866
|
getPriceForAudioOutput: () => 0,
|
|
1344
1867
|
currency: 'USD',
|
|
1345
1868
|
},
|
|
1346
|
-
capabilities: {
|
|
1869
|
+
capabilities: {
|
|
1870
|
+
vision: true,
|
|
1871
|
+
tools: true,
|
|
1872
|
+
reasoning: false,
|
|
1873
|
+
webSearch: false,
|
|
1874
|
+
jsonOutput: false,
|
|
1875
|
+
structuredOutputs: false,
|
|
1876
|
+
},
|
|
1347
1877
|
},
|
|
1348
1878
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINISTRAL_14B_2512]: {
|
|
1349
1879
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINISTRAL_14B_2512,
|
|
@@ -1361,7 +1891,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1361
1891
|
getPriceForAudioOutput: () => 0,
|
|
1362
1892
|
currency: 'USD',
|
|
1363
1893
|
},
|
|
1364
|
-
capabilities: {
|
|
1894
|
+
capabilities: {
|
|
1895
|
+
vision: true,
|
|
1896
|
+
tools: true,
|
|
1897
|
+
reasoning: false,
|
|
1898
|
+
webSearch: true,
|
|
1899
|
+
jsonOutput: true,
|
|
1900
|
+
structuredOutputs: false,
|
|
1901
|
+
},
|
|
1365
1902
|
},
|
|
1366
1903
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINISTRAL_8B_2512]: {
|
|
1367
1904
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINISTRAL_8B_2512,
|
|
@@ -1379,7 +1916,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1379
1916
|
getPriceForAudioOutput: () => 0,
|
|
1380
1917
|
currency: 'USD',
|
|
1381
1918
|
},
|
|
1382
|
-
capabilities: {
|
|
1919
|
+
capabilities: {
|
|
1920
|
+
vision: true,
|
|
1921
|
+
tools: true,
|
|
1922
|
+
reasoning: false,
|
|
1923
|
+
webSearch: true,
|
|
1924
|
+
jsonOutput: true,
|
|
1925
|
+
structuredOutputs: false,
|
|
1926
|
+
},
|
|
1383
1927
|
},
|
|
1384
1928
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINISTRAL_3B_2512]: {
|
|
1385
1929
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINISTRAL_3B_2512,
|
|
@@ -1397,7 +1941,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1397
1941
|
getPriceForAudioOutput: () => 0,
|
|
1398
1942
|
currency: 'USD',
|
|
1399
1943
|
},
|
|
1400
|
-
capabilities: {
|
|
1944
|
+
capabilities: {
|
|
1945
|
+
vision: true,
|
|
1946
|
+
tools: true,
|
|
1947
|
+
reasoning: false,
|
|
1948
|
+
webSearch: true,
|
|
1949
|
+
jsonOutput: true,
|
|
1950
|
+
structuredOutputs: false,
|
|
1951
|
+
},
|
|
1401
1952
|
},
|
|
1402
1953
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CODESTRAL_2508]: {
|
|
1403
1954
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CODESTRAL_2508,
|
|
@@ -1415,7 +1966,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1415
1966
|
getPriceForAudioOutput: () => 0,
|
|
1416
1967
|
currency: 'USD',
|
|
1417
1968
|
},
|
|
1418
|
-
capabilities: {
|
|
1969
|
+
capabilities: {
|
|
1970
|
+
vision: false,
|
|
1971
|
+
tools: true,
|
|
1972
|
+
reasoning: false,
|
|
1973
|
+
webSearch: true,
|
|
1974
|
+
jsonOutput: true,
|
|
1975
|
+
structuredOutputs: false,
|
|
1976
|
+
},
|
|
1419
1977
|
},
|
|
1420
1978
|
[LLMAPI_typedefs_1.LLMAPIModelNames.DEVSTRAL_2512]: {
|
|
1421
1979
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.DEVSTRAL_2512,
|
|
@@ -1433,7 +1991,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1433
1991
|
getPriceForAudioOutput: () => 0,
|
|
1434
1992
|
currency: 'USD',
|
|
1435
1993
|
},
|
|
1436
|
-
capabilities: {
|
|
1994
|
+
capabilities: {
|
|
1995
|
+
vision: false,
|
|
1996
|
+
tools: true,
|
|
1997
|
+
reasoning: false,
|
|
1998
|
+
webSearch: true,
|
|
1999
|
+
jsonOutput: true,
|
|
2000
|
+
structuredOutputs: false,
|
|
2001
|
+
},
|
|
1437
2002
|
},
|
|
1438
2003
|
[LLMAPI_typedefs_1.LLMAPIModelNames.DEVSTRAL_SMALL_2507]: {
|
|
1439
2004
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.DEVSTRAL_SMALL_2507,
|
|
@@ -1451,7 +2016,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1451
2016
|
getPriceForAudioOutput: () => 0,
|
|
1452
2017
|
currency: 'USD',
|
|
1453
2018
|
},
|
|
1454
|
-
capabilities: {
|
|
2019
|
+
capabilities: {
|
|
2020
|
+
vision: false,
|
|
2021
|
+
tools: true,
|
|
2022
|
+
reasoning: false,
|
|
2023
|
+
webSearch: true,
|
|
2024
|
+
jsonOutput: true,
|
|
2025
|
+
structuredOutputs: false,
|
|
2026
|
+
},
|
|
1455
2027
|
},
|
|
1456
2028
|
// ─── MiniMax ───────────────────────────────────────────────────
|
|
1457
2029
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5]: {
|
|
@@ -1470,7 +2042,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1470
2042
|
getPriceForAudioOutput: () => 0,
|
|
1471
2043
|
currency: 'USD',
|
|
1472
2044
|
},
|
|
1473
|
-
capabilities: {
|
|
2045
|
+
capabilities: {
|
|
2046
|
+
vision: false,
|
|
2047
|
+
tools: true,
|
|
2048
|
+
reasoning: true,
|
|
2049
|
+
webSearch: false,
|
|
2050
|
+
jsonOutput: true,
|
|
2051
|
+
structuredOutputs: false,
|
|
2052
|
+
},
|
|
1474
2053
|
},
|
|
1475
2054
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_NATIVE]: {
|
|
1476
2055
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_NATIVE,
|
|
@@ -1488,7 +2067,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1488
2067
|
getPriceForAudioOutput: () => 0,
|
|
1489
2068
|
currency: 'USD',
|
|
1490
2069
|
},
|
|
1491
|
-
capabilities: {
|
|
2070
|
+
capabilities: {
|
|
2071
|
+
vision: false,
|
|
2072
|
+
tools: true,
|
|
2073
|
+
reasoning: true,
|
|
2074
|
+
webSearch: false,
|
|
2075
|
+
jsonOutput: true,
|
|
2076
|
+
structuredOutputs: false,
|
|
2077
|
+
},
|
|
1492
2078
|
},
|
|
1493
2079
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_NOVITA]: {
|
|
1494
2080
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_NOVITA,
|
|
@@ -1506,7 +2092,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1506
2092
|
getPriceForAudioOutput: () => 0,
|
|
1507
2093
|
currency: 'USD',
|
|
1508
2094
|
},
|
|
1509
|
-
capabilities: {
|
|
2095
|
+
capabilities: {
|
|
2096
|
+
vision: false,
|
|
2097
|
+
tools: true,
|
|
2098
|
+
reasoning: true,
|
|
2099
|
+
webSearch: false,
|
|
2100
|
+
jsonOutput: true,
|
|
2101
|
+
structuredOutputs: false,
|
|
2102
|
+
},
|
|
1510
2103
|
},
|
|
1511
2104
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2]: {
|
|
1512
2105
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2,
|
|
@@ -1524,7 +2117,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1524
2117
|
getPriceForAudioOutput: () => 0,
|
|
1525
2118
|
currency: 'USD',
|
|
1526
2119
|
},
|
|
1527
|
-
capabilities: {
|
|
2120
|
+
capabilities: {
|
|
2121
|
+
vision: false,
|
|
2122
|
+
tools: false,
|
|
2123
|
+
reasoning: true,
|
|
2124
|
+
webSearch: false,
|
|
2125
|
+
jsonOutput: false,
|
|
2126
|
+
structuredOutputs: false,
|
|
2127
|
+
},
|
|
1528
2128
|
},
|
|
1529
2129
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1]: {
|
|
1530
2130
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1,
|
|
@@ -1542,7 +2142,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1542
2142
|
getPriceForAudioOutput: () => 0,
|
|
1543
2143
|
currency: 'USD',
|
|
1544
2144
|
},
|
|
1545
|
-
capabilities: {
|
|
2145
|
+
capabilities: {
|
|
2146
|
+
vision: false,
|
|
2147
|
+
tools: false,
|
|
2148
|
+
reasoning: true,
|
|
2149
|
+
webSearch: false,
|
|
2150
|
+
jsonOutput: true,
|
|
2151
|
+
structuredOutputs: false,
|
|
2152
|
+
},
|
|
1546
2153
|
},
|
|
1547
2154
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1_LIGHTNING]: {
|
|
1548
2155
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1_LIGHTNING,
|
|
@@ -1560,7 +2167,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1560
2167
|
getPriceForAudioOutput: () => 0,
|
|
1561
2168
|
currency: 'USD',
|
|
1562
2169
|
},
|
|
1563
|
-
capabilities: {
|
|
2170
|
+
capabilities: {
|
|
2171
|
+
vision: false,
|
|
2172
|
+
tools: false,
|
|
2173
|
+
reasoning: true,
|
|
2174
|
+
webSearch: false,
|
|
2175
|
+
jsonOutput: false,
|
|
2176
|
+
structuredOutputs: false,
|
|
2177
|
+
},
|
|
1564
2178
|
},
|
|
1565
2179
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_TEXT_01]: {
|
|
1566
2180
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_TEXT_01,
|
|
@@ -1578,7 +2192,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1578
2192
|
getPriceForAudioOutput: () => 0,
|
|
1579
2193
|
currency: 'USD',
|
|
1580
2194
|
},
|
|
1581
|
-
capabilities: {
|
|
2195
|
+
capabilities: {
|
|
2196
|
+
vision: false,
|
|
2197
|
+
tools: false,
|
|
2198
|
+
reasoning: false,
|
|
2199
|
+
webSearch: false,
|
|
2200
|
+
jsonOutput: false,
|
|
2201
|
+
structuredOutputs: false,
|
|
2202
|
+
},
|
|
1582
2203
|
},
|
|
1583
2204
|
// ─── Moonshot Kimi ─────────────────────────────────────────────
|
|
1584
2205
|
[LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2]: {
|
|
@@ -1597,7 +2218,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1597
2218
|
getPriceForAudioOutput: () => 0,
|
|
1598
2219
|
currency: 'USD',
|
|
1599
2220
|
},
|
|
1600
|
-
capabilities: {
|
|
2221
|
+
capabilities: {
|
|
2222
|
+
vision: false,
|
|
2223
|
+
tools: true,
|
|
2224
|
+
reasoning: false,
|
|
2225
|
+
webSearch: false,
|
|
2226
|
+
jsonOutput: true,
|
|
2227
|
+
structuredOutputs: false,
|
|
2228
|
+
},
|
|
1601
2229
|
},
|
|
1602
2230
|
[LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_THINKING_TURBO]: {
|
|
1603
2231
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_THINKING_TURBO,
|
|
@@ -1615,7 +2243,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1615
2243
|
getPriceForAudioOutput: () => 0,
|
|
1616
2244
|
currency: 'USD',
|
|
1617
2245
|
},
|
|
1618
|
-
capabilities: {
|
|
2246
|
+
capabilities: {
|
|
2247
|
+
vision: false,
|
|
2248
|
+
tools: true,
|
|
2249
|
+
reasoning: true,
|
|
2250
|
+
webSearch: false,
|
|
2251
|
+
jsonOutput: true,
|
|
2252
|
+
structuredOutputs: false,
|
|
2253
|
+
},
|
|
1619
2254
|
},
|
|
1620
2255
|
[LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_5]: {
|
|
1621
2256
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_5,
|
|
@@ -1633,7 +2268,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1633
2268
|
getPriceForAudioOutput: () => 0,
|
|
1634
2269
|
currency: 'USD',
|
|
1635
2270
|
},
|
|
1636
|
-
capabilities: {
|
|
2271
|
+
capabilities: {
|
|
2272
|
+
vision: true,
|
|
2273
|
+
tools: true,
|
|
2274
|
+
reasoning: false,
|
|
2275
|
+
webSearch: false,
|
|
2276
|
+
jsonOutput: true,
|
|
2277
|
+
structuredOutputs: false,
|
|
2278
|
+
},
|
|
1637
2279
|
},
|
|
1638
2280
|
// ─── Alibaba Qwen ──────────────────────────────────────────────
|
|
1639
2281
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_MAX]: {
|
|
@@ -1652,7 +2294,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1652
2294
|
getPriceForAudioOutput: () => 0,
|
|
1653
2295
|
currency: 'USD',
|
|
1654
2296
|
},
|
|
1655
|
-
capabilities: {
|
|
2297
|
+
capabilities: {
|
|
2298
|
+
vision: true,
|
|
2299
|
+
tools: true,
|
|
2300
|
+
reasoning: false,
|
|
2301
|
+
webSearch: false,
|
|
2302
|
+
jsonOutput: true,
|
|
2303
|
+
structuredOutputs: false,
|
|
2304
|
+
},
|
|
1656
2305
|
},
|
|
1657
2306
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_MAX_LATEST]: {
|
|
1658
2307
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_MAX_LATEST,
|
|
@@ -1670,7 +2319,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1670
2319
|
getPriceForAudioOutput: () => 0,
|
|
1671
2320
|
currency: 'USD',
|
|
1672
2321
|
},
|
|
1673
|
-
capabilities: {
|
|
2322
|
+
capabilities: {
|
|
2323
|
+
vision: true,
|
|
2324
|
+
tools: true,
|
|
2325
|
+
reasoning: false,
|
|
2326
|
+
webSearch: false,
|
|
2327
|
+
jsonOutput: true,
|
|
2328
|
+
structuredOutputs: false,
|
|
2329
|
+
},
|
|
1674
2330
|
},
|
|
1675
2331
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_PLUS]: {
|
|
1676
2332
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_PLUS,
|
|
@@ -1688,7 +2344,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1688
2344
|
getPriceForAudioOutput: () => 0,
|
|
1689
2345
|
currency: 'USD',
|
|
1690
2346
|
},
|
|
1691
|
-
capabilities: {
|
|
2347
|
+
capabilities: {
|
|
2348
|
+
vision: false,
|
|
2349
|
+
tools: true,
|
|
2350
|
+
reasoning: false,
|
|
2351
|
+
webSearch: false,
|
|
2352
|
+
jsonOutput: true,
|
|
2353
|
+
structuredOutputs: false,
|
|
2354
|
+
},
|
|
1692
2355
|
},
|
|
1693
2356
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_PLUS_LATEST]: {
|
|
1694
2357
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_PLUS_LATEST,
|
|
@@ -1706,7 +2369,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1706
2369
|
getPriceForAudioOutput: () => 0,
|
|
1707
2370
|
currency: 'USD',
|
|
1708
2371
|
},
|
|
1709
|
-
capabilities: {
|
|
2372
|
+
capabilities: {
|
|
2373
|
+
vision: false,
|
|
2374
|
+
tools: true,
|
|
2375
|
+
reasoning: false,
|
|
2376
|
+
webSearch: false,
|
|
2377
|
+
jsonOutput: true,
|
|
2378
|
+
structuredOutputs: false,
|
|
2379
|
+
},
|
|
1710
2380
|
},
|
|
1711
2381
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_FLASH]: {
|
|
1712
2382
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_FLASH,
|
|
@@ -1724,7 +2394,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1724
2394
|
getPriceForAudioOutput: () => 0,
|
|
1725
2395
|
currency: 'USD',
|
|
1726
2396
|
},
|
|
1727
|
-
capabilities: {
|
|
2397
|
+
capabilities: {
|
|
2398
|
+
vision: false,
|
|
2399
|
+
tools: true,
|
|
2400
|
+
reasoning: false,
|
|
2401
|
+
webSearch: false,
|
|
2402
|
+
jsonOutput: true,
|
|
2403
|
+
structuredOutputs: false,
|
|
2404
|
+
},
|
|
1728
2405
|
},
|
|
1729
2406
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_TURBO]: {
|
|
1730
2407
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_TURBO,
|
|
@@ -1742,7 +2419,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1742
2419
|
getPriceForAudioOutput: () => 0,
|
|
1743
2420
|
currency: 'USD',
|
|
1744
2421
|
},
|
|
1745
|
-
capabilities: {
|
|
2422
|
+
capabilities: {
|
|
2423
|
+
vision: false,
|
|
2424
|
+
tools: false,
|
|
2425
|
+
reasoning: false,
|
|
2426
|
+
webSearch: false,
|
|
2427
|
+
jsonOutput: true,
|
|
2428
|
+
structuredOutputs: false,
|
|
2429
|
+
},
|
|
1746
2430
|
},
|
|
1747
2431
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_OMNI_TURBO]: {
|
|
1748
2432
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_OMNI_TURBO,
|
|
@@ -1760,7 +2444,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1760
2444
|
getPriceForAudioOutput: () => 0,
|
|
1761
2445
|
currency: 'USD',
|
|
1762
2446
|
},
|
|
1763
|
-
capabilities: {
|
|
2447
|
+
capabilities: {
|
|
2448
|
+
vision: true,
|
|
2449
|
+
tools: false,
|
|
2450
|
+
reasoning: false,
|
|
2451
|
+
webSearch: false,
|
|
2452
|
+
jsonOutput: true,
|
|
2453
|
+
structuredOutputs: false,
|
|
2454
|
+
},
|
|
1764
2455
|
},
|
|
1765
2456
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_VL_MAX]: {
|
|
1766
2457
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_VL_MAX,
|
|
@@ -1778,7 +2469,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1778
2469
|
getPriceForAudioOutput: () => 0,
|
|
1779
2470
|
currency: 'USD',
|
|
1780
2471
|
},
|
|
1781
|
-
capabilities: {
|
|
2472
|
+
capabilities: {
|
|
2473
|
+
vision: true,
|
|
2474
|
+
tools: false,
|
|
2475
|
+
reasoning: false,
|
|
2476
|
+
webSearch: false,
|
|
2477
|
+
jsonOutput: true,
|
|
2478
|
+
structuredOutputs: false,
|
|
2479
|
+
},
|
|
1782
2480
|
},
|
|
1783
2481
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_VL_PLUS]: {
|
|
1784
2482
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_VL_PLUS,
|
|
@@ -1796,7 +2494,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1796
2494
|
getPriceForAudioOutput: () => 0,
|
|
1797
2495
|
currency: 'USD',
|
|
1798
2496
|
},
|
|
1799
|
-
capabilities: {
|
|
2497
|
+
capabilities: {
|
|
2498
|
+
vision: true,
|
|
2499
|
+
tools: false,
|
|
2500
|
+
reasoning: false,
|
|
2501
|
+
webSearch: false,
|
|
2502
|
+
jsonOutput: true,
|
|
2503
|
+
structuredOutputs: false,
|
|
2504
|
+
},
|
|
1800
2505
|
},
|
|
1801
2506
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_CODER_PLUS]: {
|
|
1802
2507
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_CODER_PLUS,
|
|
@@ -1814,7 +2519,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1814
2519
|
getPriceForAudioOutput: () => 0,
|
|
1815
2520
|
currency: 'USD',
|
|
1816
2521
|
},
|
|
1817
|
-
capabilities: {
|
|
2522
|
+
capabilities: {
|
|
2523
|
+
vision: false,
|
|
2524
|
+
tools: true,
|
|
2525
|
+
reasoning: false,
|
|
2526
|
+
webSearch: false,
|
|
2527
|
+
jsonOutput: true,
|
|
2528
|
+
structuredOutputs: false,
|
|
2529
|
+
},
|
|
1818
2530
|
},
|
|
1819
2531
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWQ_PLUS]: {
|
|
1820
2532
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWQ_PLUS,
|
|
@@ -1832,7 +2544,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1832
2544
|
getPriceForAudioOutput: () => 0,
|
|
1833
2545
|
currency: 'USD',
|
|
1834
2546
|
},
|
|
1835
|
-
capabilities: {
|
|
2547
|
+
capabilities: {
|
|
2548
|
+
vision: false,
|
|
2549
|
+
tools: false,
|
|
2550
|
+
reasoning: true,
|
|
2551
|
+
webSearch: false,
|
|
2552
|
+
jsonOutput: false,
|
|
2553
|
+
structuredOutputs: false,
|
|
2554
|
+
},
|
|
1836
2555
|
},
|
|
1837
2556
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_MAX]: {
|
|
1838
2557
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_MAX,
|
|
@@ -1850,7 +2569,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1850
2569
|
getPriceForAudioOutput: () => 0,
|
|
1851
2570
|
currency: 'USD',
|
|
1852
2571
|
},
|
|
1853
|
-
capabilities: {
|
|
2572
|
+
capabilities: {
|
|
2573
|
+
vision: true,
|
|
2574
|
+
tools: true,
|
|
2575
|
+
reasoning: true,
|
|
2576
|
+
webSearch: false,
|
|
2577
|
+
jsonOutput: true,
|
|
2578
|
+
structuredOutputs: false,
|
|
2579
|
+
},
|
|
1854
2580
|
},
|
|
1855
2581
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_MAX_2026_01_23]: {
|
|
1856
2582
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_MAX_2026_01_23,
|
|
@@ -1868,7 +2594,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1868
2594
|
getPriceForAudioOutput: () => 0,
|
|
1869
2595
|
currency: 'USD',
|
|
1870
2596
|
},
|
|
1871
|
-
capabilities: {
|
|
2597
|
+
capabilities: {
|
|
2598
|
+
vision: true,
|
|
2599
|
+
tools: true,
|
|
2600
|
+
reasoning: true,
|
|
2601
|
+
webSearch: false,
|
|
2602
|
+
jsonOutput: true,
|
|
2603
|
+
structuredOutputs: false,
|
|
2604
|
+
},
|
|
1872
2605
|
},
|
|
1873
2606
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_32B]: {
|
|
1874
2607
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_32B,
|
|
@@ -1886,7 +2619,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1886
2619
|
getPriceForAudioOutput: () => 0,
|
|
1887
2620
|
currency: 'USD',
|
|
1888
2621
|
},
|
|
1889
|
-
capabilities: {
|
|
2622
|
+
capabilities: {
|
|
2623
|
+
vision: false,
|
|
2624
|
+
tools: true,
|
|
2625
|
+
reasoning: false,
|
|
2626
|
+
webSearch: false,
|
|
2627
|
+
jsonOutput: true,
|
|
2628
|
+
structuredOutputs: false,
|
|
2629
|
+
},
|
|
1890
2630
|
},
|
|
1891
2631
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_32B_FP8]: {
|
|
1892
2632
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_32B_FP8,
|
|
@@ -1904,7 +2644,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1904
2644
|
getPriceForAudioOutput: () => 0,
|
|
1905
2645
|
currency: 'USD',
|
|
1906
2646
|
},
|
|
1907
|
-
capabilities: {
|
|
2647
|
+
capabilities: {
|
|
2648
|
+
vision: false,
|
|
2649
|
+
tools: false,
|
|
2650
|
+
reasoning: false,
|
|
2651
|
+
webSearch: false,
|
|
2652
|
+
jsonOutput: false,
|
|
2653
|
+
structuredOutputs: false,
|
|
2654
|
+
},
|
|
1908
2655
|
},
|
|
1909
2656
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_INSTRUCT_2507]: {
|
|
1910
2657
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_INSTRUCT_2507,
|
|
@@ -1922,7 +2669,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1922
2669
|
getPriceForAudioOutput: () => 0,
|
|
1923
2670
|
currency: 'USD',
|
|
1924
2671
|
},
|
|
1925
|
-
capabilities: {
|
|
2672
|
+
capabilities: {
|
|
2673
|
+
vision: false,
|
|
2674
|
+
tools: true,
|
|
2675
|
+
reasoning: false,
|
|
2676
|
+
webSearch: false,
|
|
2677
|
+
jsonOutput: true,
|
|
2678
|
+
structuredOutputs: false,
|
|
2679
|
+
},
|
|
1926
2680
|
},
|
|
1927
2681
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_THINKING_2507]: {
|
|
1928
2682
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_THINKING_2507,
|
|
@@ -1940,7 +2694,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1940
2694
|
getPriceForAudioOutput: () => 0,
|
|
1941
2695
|
currency: 'USD',
|
|
1942
2696
|
},
|
|
1943
|
-
capabilities: {
|
|
2697
|
+
capabilities: {
|
|
2698
|
+
vision: false,
|
|
2699
|
+
tools: true,
|
|
2700
|
+
reasoning: true,
|
|
2701
|
+
webSearch: false,
|
|
2702
|
+
jsonOutput: true,
|
|
2703
|
+
structuredOutputs: false,
|
|
2704
|
+
},
|
|
1944
2705
|
},
|
|
1945
2706
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_FP8]: {
|
|
1946
2707
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_FP8,
|
|
@@ -1958,7 +2719,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1958
2719
|
getPriceForAudioOutput: () => 0,
|
|
1959
2720
|
currency: 'USD',
|
|
1960
2721
|
},
|
|
1961
|
-
capabilities: {
|
|
2722
|
+
capabilities: {
|
|
2723
|
+
vision: false,
|
|
2724
|
+
tools: false,
|
|
2725
|
+
reasoning: false,
|
|
2726
|
+
webSearch: false,
|
|
2727
|
+
jsonOutput: true,
|
|
2728
|
+
structuredOutputs: false,
|
|
2729
|
+
},
|
|
1962
2730
|
},
|
|
1963
2731
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_30B_A3B_INSTRUCT_2507]: {
|
|
1964
2732
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_30B_A3B_INSTRUCT_2507,
|
|
@@ -1976,7 +2744,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1976
2744
|
getPriceForAudioOutput: () => 0,
|
|
1977
2745
|
currency: 'USD',
|
|
1978
2746
|
},
|
|
1979
|
-
capabilities: {
|
|
2747
|
+
capabilities: {
|
|
2748
|
+
vision: false,
|
|
2749
|
+
tools: true,
|
|
2750
|
+
reasoning: false,
|
|
2751
|
+
webSearch: false,
|
|
2752
|
+
jsonOutput: true,
|
|
2753
|
+
structuredOutputs: false,
|
|
2754
|
+
},
|
|
1980
2755
|
},
|
|
1981
2756
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_30B_A3B_THINKING_2507]: {
|
|
1982
2757
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_30B_A3B_THINKING_2507,
|
|
@@ -1994,7 +2769,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1994
2769
|
getPriceForAudioOutput: () => 0,
|
|
1995
2770
|
currency: 'USD',
|
|
1996
2771
|
},
|
|
1997
|
-
capabilities: {
|
|
2772
|
+
capabilities: {
|
|
2773
|
+
vision: false,
|
|
2774
|
+
tools: true,
|
|
2775
|
+
reasoning: true,
|
|
2776
|
+
webSearch: false,
|
|
2777
|
+
jsonOutput: true,
|
|
2778
|
+
structuredOutputs: false,
|
|
2779
|
+
},
|
|
1998
2780
|
},
|
|
1999
2781
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_30B_A3B_FP8]: {
|
|
2000
2782
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_30B_A3B_FP8,
|
|
@@ -2012,7 +2794,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2012
2794
|
getPriceForAudioOutput: () => 0,
|
|
2013
2795
|
currency: 'USD',
|
|
2014
2796
|
},
|
|
2015
|
-
capabilities: {
|
|
2797
|
+
capabilities: {
|
|
2798
|
+
vision: false,
|
|
2799
|
+
tools: false,
|
|
2800
|
+
reasoning: false,
|
|
2801
|
+
webSearch: false,
|
|
2802
|
+
jsonOutput: false,
|
|
2803
|
+
structuredOutputs: false,
|
|
2804
|
+
},
|
|
2016
2805
|
},
|
|
2017
2806
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_4B_FP8]: {
|
|
2018
2807
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_4B_FP8,
|
|
@@ -2030,7 +2819,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2030
2819
|
getPriceForAudioOutput: () => 0,
|
|
2031
2820
|
currency: 'USD',
|
|
2032
2821
|
},
|
|
2033
|
-
capabilities: {
|
|
2822
|
+
capabilities: {
|
|
2823
|
+
vision: false,
|
|
2824
|
+
tools: false,
|
|
2825
|
+
reasoning: false,
|
|
2826
|
+
webSearch: false,
|
|
2827
|
+
jsonOutput: false,
|
|
2828
|
+
structuredOutputs: false,
|
|
2829
|
+
},
|
|
2034
2830
|
},
|
|
2035
2831
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_5_397B]: {
|
|
2036
2832
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_5_397B,
|
|
@@ -2048,7 +2844,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2048
2844
|
getPriceForAudioOutput: () => 0,
|
|
2049
2845
|
currency: 'USD',
|
|
2050
2846
|
},
|
|
2051
|
-
capabilities: {
|
|
2847
|
+
capabilities: {
|
|
2848
|
+
vision: true,
|
|
2849
|
+
tools: true,
|
|
2850
|
+
reasoning: true,
|
|
2851
|
+
webSearch: true,
|
|
2852
|
+
jsonOutput: true,
|
|
2853
|
+
structuredOutputs: false,
|
|
2854
|
+
},
|
|
2052
2855
|
},
|
|
2053
2856
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_THINKING]: {
|
|
2054
2857
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_THINKING,
|
|
@@ -2066,7 +2869,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2066
2869
|
getPriceForAudioOutput: () => 0,
|
|
2067
2870
|
currency: 'USD',
|
|
2068
2871
|
},
|
|
2069
|
-
capabilities: {
|
|
2872
|
+
capabilities: {
|
|
2873
|
+
vision: false,
|
|
2874
|
+
tools: true,
|
|
2875
|
+
reasoning: true,
|
|
2876
|
+
webSearch: false,
|
|
2877
|
+
jsonOutput: false,
|
|
2878
|
+
structuredOutputs: false,
|
|
2879
|
+
},
|
|
2070
2880
|
},
|
|
2071
2881
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_INSTRUCT]: {
|
|
2072
2882
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_INSTRUCT,
|
|
@@ -2084,7 +2894,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2084
2894
|
getPriceForAudioOutput: () => 0,
|
|
2085
2895
|
currency: 'USD',
|
|
2086
2896
|
},
|
|
2087
|
-
capabilities: {
|
|
2897
|
+
capabilities: {
|
|
2898
|
+
vision: false,
|
|
2899
|
+
tools: true,
|
|
2900
|
+
reasoning: false,
|
|
2901
|
+
webSearch: false,
|
|
2902
|
+
jsonOutput: true,
|
|
2903
|
+
structuredOutputs: false,
|
|
2904
|
+
},
|
|
2088
2905
|
},
|
|
2089
2906
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_PLUS]: {
|
|
2090
2907
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_PLUS,
|
|
@@ -2102,7 +2919,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2102
2919
|
getPriceForAudioOutput: () => 0,
|
|
2103
2920
|
currency: 'USD',
|
|
2104
2921
|
},
|
|
2105
|
-
capabilities: {
|
|
2922
|
+
capabilities: {
|
|
2923
|
+
vision: false,
|
|
2924
|
+
tools: true,
|
|
2925
|
+
reasoning: false,
|
|
2926
|
+
webSearch: false,
|
|
2927
|
+
jsonOutput: true,
|
|
2928
|
+
structuredOutputs: false,
|
|
2929
|
+
},
|
|
2106
2930
|
},
|
|
2107
2931
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_FLASH]: {
|
|
2108
2932
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_FLASH,
|
|
@@ -2120,7 +2944,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2120
2944
|
getPriceForAudioOutput: () => 0,
|
|
2121
2945
|
currency: 'USD',
|
|
2122
2946
|
},
|
|
2123
|
-
capabilities: {
|
|
2947
|
+
capabilities: {
|
|
2948
|
+
vision: false,
|
|
2949
|
+
tools: true,
|
|
2950
|
+
reasoning: false,
|
|
2951
|
+
webSearch: false,
|
|
2952
|
+
jsonOutput: true,
|
|
2953
|
+
structuredOutputs: false,
|
|
2954
|
+
},
|
|
2124
2955
|
},
|
|
2125
2956
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_30B_A3B_INSTRUCT]: {
|
|
2126
2957
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_30B_A3B_INSTRUCT,
|
|
@@ -2138,7 +2969,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2138
2969
|
getPriceForAudioOutput: () => 0,
|
|
2139
2970
|
currency: 'USD',
|
|
2140
2971
|
},
|
|
2141
|
-
capabilities: {
|
|
2972
|
+
capabilities: {
|
|
2973
|
+
vision: false,
|
|
2974
|
+
tools: true,
|
|
2975
|
+
reasoning: false,
|
|
2976
|
+
webSearch: false,
|
|
2977
|
+
jsonOutput: true,
|
|
2978
|
+
structuredOutputs: false,
|
|
2979
|
+
},
|
|
2142
2980
|
},
|
|
2143
2981
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_8B_INSTRUCT]: {
|
|
2144
2982
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_8B_INSTRUCT,
|
|
@@ -2156,7 +2994,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2156
2994
|
getPriceForAudioOutput: () => 0,
|
|
2157
2995
|
currency: 'USD',
|
|
2158
2996
|
},
|
|
2159
|
-
capabilities: {
|
|
2997
|
+
capabilities: {
|
|
2998
|
+
vision: true,
|
|
2999
|
+
tools: false,
|
|
3000
|
+
reasoning: false,
|
|
3001
|
+
webSearch: false,
|
|
3002
|
+
jsonOutput: true,
|
|
3003
|
+
structuredOutputs: false,
|
|
3004
|
+
},
|
|
2160
3005
|
},
|
|
2161
3006
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_PLUS]: {
|
|
2162
3007
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_PLUS,
|
|
@@ -2174,7 +3019,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2174
3019
|
getPriceForAudioOutput: () => 0,
|
|
2175
3020
|
currency: 'USD',
|
|
2176
3021
|
},
|
|
2177
|
-
capabilities: {
|
|
3022
|
+
capabilities: {
|
|
3023
|
+
vision: true,
|
|
3024
|
+
tools: false,
|
|
3025
|
+
reasoning: false,
|
|
3026
|
+
webSearch: false,
|
|
3027
|
+
jsonOutput: true,
|
|
3028
|
+
structuredOutputs: false,
|
|
3029
|
+
},
|
|
2178
3030
|
},
|
|
2179
3031
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_FLASH]: {
|
|
2180
3032
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_FLASH,
|
|
@@ -2192,7 +3044,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2192
3044
|
getPriceForAudioOutput: () => 0,
|
|
2193
3045
|
currency: 'USD',
|
|
2194
3046
|
},
|
|
2195
|
-
capabilities: {
|
|
3047
|
+
capabilities: {
|
|
3048
|
+
vision: true,
|
|
3049
|
+
tools: true,
|
|
3050
|
+
reasoning: false,
|
|
3051
|
+
webSearch: false,
|
|
3052
|
+
jsonOutput: true,
|
|
3053
|
+
structuredOutputs: false,
|
|
3054
|
+
},
|
|
2196
3055
|
},
|
|
2197
3056
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_30B_A3B_INSTRUCT]: {
|
|
2198
3057
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_30B_A3B_INSTRUCT,
|
|
@@ -2210,7 +3069,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2210
3069
|
getPriceForAudioOutput: () => 0,
|
|
2211
3070
|
currency: 'USD',
|
|
2212
3071
|
},
|
|
2213
|
-
capabilities: {
|
|
3072
|
+
capabilities: {
|
|
3073
|
+
vision: true,
|
|
3074
|
+
tools: true,
|
|
3075
|
+
reasoning: false,
|
|
3076
|
+
webSearch: false,
|
|
3077
|
+
jsonOutput: false,
|
|
3078
|
+
structuredOutputs: false,
|
|
3079
|
+
},
|
|
2214
3080
|
},
|
|
2215
3081
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_30B_A3B_THINKING]: {
|
|
2216
3082
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_30B_A3B_THINKING,
|
|
@@ -2228,7 +3094,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2228
3094
|
getPriceForAudioOutput: () => 0,
|
|
2229
3095
|
currency: 'USD',
|
|
2230
3096
|
},
|
|
2231
|
-
capabilities: {
|
|
3097
|
+
capabilities: {
|
|
3098
|
+
vision: true,
|
|
3099
|
+
tools: true,
|
|
3100
|
+
reasoning: true,
|
|
3101
|
+
webSearch: false,
|
|
3102
|
+
jsonOutput: true,
|
|
3103
|
+
structuredOutputs: false,
|
|
3104
|
+
},
|
|
2232
3105
|
},
|
|
2233
3106
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_INSTRUCT]: {
|
|
2234
3107
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_INSTRUCT,
|
|
@@ -2246,7 +3119,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2246
3119
|
getPriceForAudioOutput: () => 0,
|
|
2247
3120
|
currency: 'USD',
|
|
2248
3121
|
},
|
|
2249
|
-
capabilities: {
|
|
3122
|
+
capabilities: {
|
|
3123
|
+
vision: true,
|
|
3124
|
+
tools: true,
|
|
3125
|
+
reasoning: false,
|
|
3126
|
+
webSearch: false,
|
|
3127
|
+
jsonOutput: true,
|
|
3128
|
+
structuredOutputs: false,
|
|
3129
|
+
},
|
|
2250
3130
|
},
|
|
2251
3131
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_THINKING]: {
|
|
2252
3132
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_THINKING,
|
|
@@ -2264,7 +3144,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2264
3144
|
getPriceForAudioOutput: () => 0,
|
|
2265
3145
|
currency: 'USD',
|
|
2266
3146
|
},
|
|
2267
|
-
capabilities: {
|
|
3147
|
+
capabilities: {
|
|
3148
|
+
vision: true,
|
|
3149
|
+
tools: false,
|
|
3150
|
+
reasoning: true,
|
|
3151
|
+
webSearch: false,
|
|
3152
|
+
jsonOutput: false,
|
|
3153
|
+
structuredOutputs: false,
|
|
3154
|
+
},
|
|
2268
3155
|
},
|
|
2269
3156
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN2_5_VL_32B_INSTRUCT]: {
|
|
2270
3157
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN2_5_VL_32B_INSTRUCT,
|
|
@@ -2282,7 +3169,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2282
3169
|
getPriceForAudioOutput: () => 0,
|
|
2283
3170
|
currency: 'USD',
|
|
2284
3171
|
},
|
|
2285
|
-
capabilities: {
|
|
3172
|
+
capabilities: {
|
|
3173
|
+
vision: true,
|
|
3174
|
+
tools: false,
|
|
3175
|
+
reasoning: false,
|
|
3176
|
+
webSearch: false,
|
|
3177
|
+
jsonOutput: true,
|
|
3178
|
+
structuredOutputs: false,
|
|
3179
|
+
},
|
|
2286
3180
|
},
|
|
2287
3181
|
// ─── Zhipu GLM ─────────────────────────────────────────────────
|
|
2288
3182
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5]: {
|
|
@@ -2301,7 +3195,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2301
3195
|
getPriceForAudioOutput: () => 0,
|
|
2302
3196
|
currency: 'USD',
|
|
2303
3197
|
},
|
|
2304
|
-
capabilities: {
|
|
3198
|
+
capabilities: {
|
|
3199
|
+
vision: false,
|
|
3200
|
+
tools: true,
|
|
3201
|
+
reasoning: true,
|
|
3202
|
+
webSearch: true,
|
|
3203
|
+
jsonOutput: true,
|
|
3204
|
+
structuredOutputs: false,
|
|
3205
|
+
},
|
|
2305
3206
|
},
|
|
2306
3207
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5]: {
|
|
2307
3208
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5,
|
|
@@ -2319,7 +3220,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2319
3220
|
getPriceForAudioOutput: () => 0,
|
|
2320
3221
|
currency: 'USD',
|
|
2321
3222
|
},
|
|
2322
|
-
capabilities: {
|
|
3223
|
+
capabilities: {
|
|
3224
|
+
vision: false,
|
|
3225
|
+
tools: true,
|
|
3226
|
+
reasoning: true,
|
|
3227
|
+
webSearch: true,
|
|
3228
|
+
jsonOutput: true,
|
|
3229
|
+
structuredOutputs: false,
|
|
3230
|
+
},
|
|
2323
3231
|
},
|
|
2324
3232
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5V]: {
|
|
2325
3233
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5V,
|
|
@@ -2337,7 +3245,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2337
3245
|
getPriceForAudioOutput: () => 0,
|
|
2338
3246
|
currency: 'USD',
|
|
2339
3247
|
},
|
|
2340
|
-
capabilities: {
|
|
3248
|
+
capabilities: {
|
|
3249
|
+
vision: true,
|
|
3250
|
+
tools: true,
|
|
3251
|
+
reasoning: true,
|
|
3252
|
+
webSearch: false,
|
|
3253
|
+
jsonOutput: true,
|
|
3254
|
+
structuredOutputs: false,
|
|
3255
|
+
},
|
|
2341
3256
|
},
|
|
2342
3257
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIR]: {
|
|
2343
3258
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIR,
|
|
@@ -2355,7 +3270,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2355
3270
|
getPriceForAudioOutput: () => 0,
|
|
2356
3271
|
currency: 'USD',
|
|
2357
3272
|
},
|
|
2358
|
-
capabilities: {
|
|
3273
|
+
capabilities: {
|
|
3274
|
+
vision: false,
|
|
3275
|
+
tools: true,
|
|
3276
|
+
reasoning: false,
|
|
3277
|
+
webSearch: false,
|
|
3278
|
+
jsonOutput: true,
|
|
3279
|
+
structuredOutputs: false,
|
|
3280
|
+
},
|
|
2359
3281
|
},
|
|
2360
3282
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_X]: {
|
|
2361
3283
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_X,
|
|
@@ -2373,7 +3295,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2373
3295
|
getPriceForAudioOutput: () => 0,
|
|
2374
3296
|
currency: 'USD',
|
|
2375
3297
|
},
|
|
2376
|
-
capabilities: {
|
|
3298
|
+
capabilities: {
|
|
3299
|
+
vision: false,
|
|
3300
|
+
tools: true,
|
|
3301
|
+
reasoning: true,
|
|
3302
|
+
webSearch: false,
|
|
3303
|
+
jsonOutput: true,
|
|
3304
|
+
structuredOutputs: false,
|
|
3305
|
+
},
|
|
2377
3306
|
},
|
|
2378
3307
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIRX]: {
|
|
2379
3308
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIRX,
|
|
@@ -2391,7 +3320,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2391
3320
|
getPriceForAudioOutput: () => 0,
|
|
2392
3321
|
currency: 'USD',
|
|
2393
3322
|
},
|
|
2394
|
-
capabilities: {
|
|
3323
|
+
capabilities: {
|
|
3324
|
+
vision: false,
|
|
3325
|
+
tools: true,
|
|
3326
|
+
reasoning: false,
|
|
3327
|
+
webSearch: false,
|
|
3328
|
+
jsonOutput: true,
|
|
3329
|
+
structuredOutputs: false,
|
|
3330
|
+
},
|
|
2395
3331
|
},
|
|
2396
3332
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_FLASH]: {
|
|
2397
3333
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_FLASH,
|
|
@@ -2409,7 +3345,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2409
3345
|
getPriceForAudioOutput: () => 0,
|
|
2410
3346
|
currency: 'USD',
|
|
2411
3347
|
},
|
|
2412
|
-
capabilities: {
|
|
3348
|
+
capabilities: {
|
|
3349
|
+
vision: false,
|
|
3350
|
+
tools: true,
|
|
3351
|
+
reasoning: false,
|
|
3352
|
+
webSearch: false,
|
|
3353
|
+
jsonOutput: true,
|
|
3354
|
+
structuredOutputs: false,
|
|
3355
|
+
},
|
|
2413
3356
|
},
|
|
2414
3357
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6]: {
|
|
2415
3358
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6,
|
|
@@ -2427,7 +3370,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2427
3370
|
getPriceForAudioOutput: () => 0,
|
|
2428
3371
|
currency: 'USD',
|
|
2429
3372
|
},
|
|
2430
|
-
capabilities: {
|
|
3373
|
+
capabilities: {
|
|
3374
|
+
vision: false,
|
|
3375
|
+
tools: true,
|
|
3376
|
+
reasoning: true,
|
|
3377
|
+
webSearch: true,
|
|
3378
|
+
jsonOutput: true,
|
|
3379
|
+
structuredOutputs: false,
|
|
3380
|
+
},
|
|
2431
3381
|
},
|
|
2432
3382
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V]: {
|
|
2433
3383
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V,
|
|
@@ -2445,7 +3395,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2445
3395
|
getPriceForAudioOutput: () => 0,
|
|
2446
3396
|
currency: 'USD',
|
|
2447
3397
|
},
|
|
2448
|
-
capabilities: {
|
|
3398
|
+
capabilities: {
|
|
3399
|
+
vision: true,
|
|
3400
|
+
tools: true,
|
|
3401
|
+
reasoning: true,
|
|
3402
|
+
webSearch: false,
|
|
3403
|
+
jsonOutput: true,
|
|
3404
|
+
structuredOutputs: false,
|
|
3405
|
+
},
|
|
2449
3406
|
},
|
|
2450
3407
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_FLASHX]: {
|
|
2451
3408
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_FLASHX,
|
|
@@ -2463,7 +3420,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2463
3420
|
getPriceForAudioOutput: () => 0,
|
|
2464
3421
|
currency: 'USD',
|
|
2465
3422
|
},
|
|
2466
|
-
capabilities: {
|
|
3423
|
+
capabilities: {
|
|
3424
|
+
vision: true,
|
|
3425
|
+
tools: true,
|
|
3426
|
+
reasoning: true,
|
|
3427
|
+
webSearch: false,
|
|
3428
|
+
jsonOutput: true,
|
|
3429
|
+
structuredOutputs: false,
|
|
3430
|
+
},
|
|
2467
3431
|
},
|
|
2468
3432
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_FLASH]: {
|
|
2469
3433
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_FLASH,
|
|
@@ -2481,7 +3445,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2481
3445
|
getPriceForAudioOutput: () => 0,
|
|
2482
3446
|
currency: 'USD',
|
|
2483
3447
|
},
|
|
2484
|
-
capabilities: {
|
|
3448
|
+
capabilities: {
|
|
3449
|
+
vision: true,
|
|
3450
|
+
tools: true,
|
|
3451
|
+
reasoning: true,
|
|
3452
|
+
webSearch: false,
|
|
3453
|
+
jsonOutput: true,
|
|
3454
|
+
structuredOutputs: false,
|
|
3455
|
+
},
|
|
2485
3456
|
},
|
|
2486
3457
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7]: {
|
|
2487
3458
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7,
|
|
@@ -2499,7 +3470,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2499
3470
|
getPriceForAudioOutput: () => 0,
|
|
2500
3471
|
currency: 'USD',
|
|
2501
3472
|
},
|
|
2502
|
-
capabilities: {
|
|
3473
|
+
capabilities: {
|
|
3474
|
+
vision: false,
|
|
3475
|
+
tools: true,
|
|
3476
|
+
reasoning: true,
|
|
3477
|
+
webSearch: true,
|
|
3478
|
+
jsonOutput: true,
|
|
3479
|
+
structuredOutputs: false,
|
|
3480
|
+
},
|
|
2503
3481
|
},
|
|
2504
3482
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASHX]: {
|
|
2505
3483
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASHX,
|
|
@@ -2517,7 +3495,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2517
3495
|
getPriceForAudioOutput: () => 0,
|
|
2518
3496
|
currency: 'USD',
|
|
2519
3497
|
},
|
|
2520
|
-
capabilities: {
|
|
3498
|
+
capabilities: {
|
|
3499
|
+
vision: false,
|
|
3500
|
+
tools: true,
|
|
3501
|
+
reasoning: true,
|
|
3502
|
+
webSearch: false,
|
|
3503
|
+
jsonOutput: true,
|
|
3504
|
+
structuredOutputs: false,
|
|
3505
|
+
},
|
|
2521
3506
|
},
|
|
2522
3507
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASH]: {
|
|
2523
3508
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASH,
|
|
@@ -2535,7 +3520,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2535
3520
|
getPriceForAudioOutput: () => 0,
|
|
2536
3521
|
currency: 'USD',
|
|
2537
3522
|
},
|
|
2538
|
-
capabilities: {
|
|
3523
|
+
capabilities: {
|
|
3524
|
+
vision: false,
|
|
3525
|
+
tools: true,
|
|
3526
|
+
reasoning: true,
|
|
3527
|
+
webSearch: false,
|
|
3528
|
+
jsonOutput: true,
|
|
3529
|
+
structuredOutputs: false,
|
|
3530
|
+
},
|
|
2539
3531
|
},
|
|
2540
3532
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_32B_0414_128K]: {
|
|
2541
3533
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_32B_0414_128K,
|
|
@@ -2553,176 +3545,2084 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2553
3545
|
getPriceForAudioOutput: () => 0,
|
|
2554
3546
|
currency: 'USD',
|
|
2555
3547
|
},
|
|
2556
|
-
capabilities: {
|
|
2557
|
-
|
|
2558
|
-
|
|
2559
|
-
|
|
2560
|
-
|
|
2561
|
-
|
|
2562
|
-
|
|
2563
|
-
|
|
2564
|
-
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2565
|
-
},
|
|
2566
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_AZURE]: {
|
|
2567
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_AZURE,
|
|
2568
|
-
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2569
|
-
config: { temperature: 1 },
|
|
2570
|
-
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2571
|
-
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
3548
|
+
capabilities: {
|
|
3549
|
+
vision: false,
|
|
3550
|
+
tools: true,
|
|
3551
|
+
reasoning: false,
|
|
3552
|
+
webSearch: false,
|
|
3553
|
+
jsonOutput: true,
|
|
3554
|
+
structuredOutputs: false,
|
|
3555
|
+
},
|
|
2572
3556
|
},
|
|
2573
|
-
|
|
2574
|
-
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
|
|
3557
|
+
// ─── OpenAI (new models & routes) ──────────────────────
|
|
3558
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CHAT]: {
|
|
3559
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CHAT,
|
|
3560
|
+
limits: {
|
|
3561
|
+
maxInputTokens: 128_000,
|
|
3562
|
+
maxOutputTokens: 16_384,
|
|
3563
|
+
},
|
|
3564
|
+
config: {
|
|
3565
|
+
temperature: 1,
|
|
3566
|
+
},
|
|
3567
|
+
pricing: {
|
|
3568
|
+
getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000,
|
|
3569
|
+
getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000,
|
|
3570
|
+
getPriceForAudioInput: () => 0,
|
|
3571
|
+
getPriceForAudioOutput: () => 0,
|
|
3572
|
+
currency: 'USD',
|
|
3573
|
+
},
|
|
3574
|
+
capabilities: {
|
|
3575
|
+
vision: true,
|
|
3576
|
+
tools: true,
|
|
3577
|
+
reasoning: true,
|
|
3578
|
+
webSearch: true,
|
|
3579
|
+
jsonOutput: false,
|
|
3580
|
+
structuredOutputs: true,
|
|
3581
|
+
},
|
|
2579
3582
|
},
|
|
2580
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
2581
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
2582
|
-
limits: {
|
|
2583
|
-
|
|
2584
|
-
|
|
2585
|
-
|
|
3583
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CHAT]: {
|
|
3584
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CHAT,
|
|
3585
|
+
limits: {
|
|
3586
|
+
maxInputTokens: 128_000,
|
|
3587
|
+
maxOutputTokens: 16_384,
|
|
3588
|
+
},
|
|
3589
|
+
config: {
|
|
3590
|
+
temperature: 0.2,
|
|
3591
|
+
},
|
|
3592
|
+
pricing: {
|
|
3593
|
+
getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000,
|
|
3594
|
+
getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000,
|
|
3595
|
+
getPriceForAudioInput: () => 0,
|
|
3596
|
+
getPriceForAudioOutput: () => 0,
|
|
3597
|
+
currency: 'USD',
|
|
3598
|
+
},
|
|
3599
|
+
capabilities: {
|
|
3600
|
+
vision: true,
|
|
3601
|
+
tools: true,
|
|
3602
|
+
reasoning: false,
|
|
3603
|
+
webSearch: false,
|
|
3604
|
+
jsonOutput: true,
|
|
3605
|
+
structuredOutputs: true,
|
|
3606
|
+
},
|
|
2586
3607
|
},
|
|
2587
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
2588
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
2589
|
-
limits: {
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
3608
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_MINI]: {
|
|
3609
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_MINI,
|
|
3610
|
+
limits: {
|
|
3611
|
+
maxInputTokens: 400_000,
|
|
3612
|
+
maxOutputTokens: 128_000,
|
|
3613
|
+
},
|
|
3614
|
+
config: {
|
|
3615
|
+
temperature: 1,
|
|
3616
|
+
},
|
|
3617
|
+
pricing: {
|
|
3618
|
+
getPriceForTextInput: (tokens) => 0.75 * tokens / 1_000_000,
|
|
3619
|
+
getPriceForTextOutput: (tokens) => 4.5 * tokens / 1_000_000,
|
|
3620
|
+
getPriceForAudioInput: () => 0,
|
|
3621
|
+
getPriceForAudioOutput: () => 0,
|
|
3622
|
+
currency: 'USD',
|
|
3623
|
+
},
|
|
3624
|
+
capabilities: {
|
|
3625
|
+
vision: true,
|
|
3626
|
+
tools: true,
|
|
3627
|
+
reasoning: true,
|
|
3628
|
+
webSearch: true,
|
|
3629
|
+
jsonOutput: true,
|
|
3630
|
+
structuredOutputs: true,
|
|
3631
|
+
},
|
|
2593
3632
|
},
|
|
2594
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
2595
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
2596
|
-
limits: {
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
3633
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_NANO]: {
|
|
3634
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_NANO,
|
|
3635
|
+
limits: {
|
|
3636
|
+
maxInputTokens: 400_000,
|
|
3637
|
+
maxOutputTokens: 128_000,
|
|
3638
|
+
},
|
|
3639
|
+
config: {
|
|
3640
|
+
temperature: 1,
|
|
3641
|
+
},
|
|
3642
|
+
pricing: {
|
|
3643
|
+
getPriceForTextInput: (tokens) => 0.2 * tokens / 1_000_000,
|
|
3644
|
+
getPriceForTextOutput: (tokens) => 1.25 * tokens / 1_000_000,
|
|
3645
|
+
getPriceForAudioInput: () => 0,
|
|
3646
|
+
getPriceForAudioOutput: () => 0,
|
|
3647
|
+
currency: 'USD',
|
|
3648
|
+
},
|
|
3649
|
+
capabilities: {
|
|
3650
|
+
vision: true,
|
|
3651
|
+
tools: true,
|
|
3652
|
+
reasoning: true,
|
|
3653
|
+
webSearch: true,
|
|
3654
|
+
jsonOutput: true,
|
|
3655
|
+
structuredOutputs: true,
|
|
3656
|
+
},
|
|
2600
3657
|
},
|
|
2601
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
2602
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
2603
|
-
limits: {
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
|
|
3658
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_CHAT]: {
|
|
3659
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_CHAT,
|
|
3660
|
+
limits: {
|
|
3661
|
+
maxInputTokens: 400_000,
|
|
3662
|
+
maxOutputTokens: 128_000,
|
|
3663
|
+
},
|
|
3664
|
+
config: {
|
|
3665
|
+
temperature: 0.2,
|
|
3666
|
+
},
|
|
3667
|
+
pricing: {
|
|
3668
|
+
getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000,
|
|
3669
|
+
getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000,
|
|
3670
|
+
getPriceForAudioInput: () => 0,
|
|
3671
|
+
getPriceForAudioOutput: () => 0,
|
|
3672
|
+
currency: 'USD',
|
|
3673
|
+
},
|
|
3674
|
+
capabilities: {
|
|
3675
|
+
vision: true,
|
|
3676
|
+
tools: false,
|
|
3677
|
+
reasoning: false,
|
|
3678
|
+
webSearch: false,
|
|
3679
|
+
jsonOutput: true,
|
|
3680
|
+
structuredOutputs: true,
|
|
3681
|
+
},
|
|
2607
3682
|
},
|
|
2608
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
2609
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
2610
|
-
limits: {
|
|
2611
|
-
|
|
3683
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.O1_MINI]: {
|
|
3684
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.O1_MINI,
|
|
3685
|
+
limits: {
|
|
3686
|
+
maxInputTokens: 128_000,
|
|
3687
|
+
maxOutputTokens: 16_384,
|
|
3688
|
+
},
|
|
3689
|
+
config: {
|
|
3690
|
+
temperature: 0.2,
|
|
3691
|
+
},
|
|
3692
|
+
pricing: {
|
|
3693
|
+
getPriceForTextInput: (tokens) => 1.1 * tokens / 1_000_000,
|
|
3694
|
+
getPriceForTextOutput: (tokens) => 4.4 * tokens / 1_000_000,
|
|
3695
|
+
getPriceForAudioInput: () => 0,
|
|
3696
|
+
getPriceForAudioOutput: () => 0,
|
|
3697
|
+
currency: 'USD',
|
|
3698
|
+
},
|
|
3699
|
+
capabilities: {
|
|
3700
|
+
vision: false,
|
|
3701
|
+
tools: false,
|
|
3702
|
+
reasoning: false,
|
|
3703
|
+
webSearch: false,
|
|
3704
|
+
jsonOutput: false,
|
|
3705
|
+
structuredOutputs: false,
|
|
3706
|
+
},
|
|
3707
|
+
},
|
|
3708
|
+
// ─── Google (new models & routes) ──────────────────────
|
|
3709
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_PRO_PREVIEW]: {
|
|
3710
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_PRO_PREVIEW,
|
|
3711
|
+
limits: {
|
|
3712
|
+
maxInputTokens: 1_048_576,
|
|
3713
|
+
maxOutputTokens: 128_000,
|
|
3714
|
+
},
|
|
3715
|
+
config: {
|
|
3716
|
+
temperature: 1,
|
|
3717
|
+
},
|
|
3718
|
+
pricing: {
|
|
3719
|
+
getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000,
|
|
3720
|
+
getPriceForTextOutput: (tokens) => 12 * tokens / 1_000_000,
|
|
3721
|
+
getPriceForAudioInput: () => 0,
|
|
3722
|
+
getPriceForAudioOutput: () => 0,
|
|
3723
|
+
currency: 'USD',
|
|
3724
|
+
},
|
|
3725
|
+
capabilities: {
|
|
3726
|
+
vision: true,
|
|
3727
|
+
tools: true,
|
|
3728
|
+
reasoning: true,
|
|
3729
|
+
webSearch: false,
|
|
3730
|
+
jsonOutput: true,
|
|
3731
|
+
structuredOutputs: true,
|
|
3732
|
+
},
|
|
3733
|
+
},
|
|
3734
|
+
// ─── DeepSeek (provider routes) ───────────────────────
|
|
3735
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_R1_0528_CLOUDRIFT]: {
|
|
3736
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_R1_0528_CLOUDRIFT,
|
|
3737
|
+
limits: {
|
|
3738
|
+
maxInputTokens: 64_000,
|
|
3739
|
+
maxOutputTokens: 16_384,
|
|
3740
|
+
},
|
|
3741
|
+
config: {
|
|
3742
|
+
temperature: 0.2,
|
|
3743
|
+
},
|
|
3744
|
+
pricing: {
|
|
3745
|
+
getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000,
|
|
3746
|
+
getPriceForTextOutput: (tokens) => 1 * tokens / 1_000_000,
|
|
3747
|
+
getPriceForAudioInput: () => 0,
|
|
3748
|
+
getPriceForAudioOutput: () => 0,
|
|
3749
|
+
currency: 'USD',
|
|
3750
|
+
},
|
|
3751
|
+
capabilities: {
|
|
3752
|
+
vision: false,
|
|
3753
|
+
tools: false,
|
|
3754
|
+
reasoning: false,
|
|
3755
|
+
webSearch: false,
|
|
3756
|
+
jsonOutput: false,
|
|
3757
|
+
structuredOutputs: false,
|
|
3758
|
+
},
|
|
3759
|
+
},
|
|
3760
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_R1_0528_NEBIUS]: {
|
|
3761
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_R1_0528_NEBIUS,
|
|
3762
|
+
limits: {
|
|
3763
|
+
maxInputTokens: 64_000,
|
|
3764
|
+
maxOutputTokens: 16_384,
|
|
3765
|
+
},
|
|
3766
|
+
config: {
|
|
3767
|
+
temperature: 0.2,
|
|
3768
|
+
},
|
|
3769
|
+
pricing: {
|
|
3770
|
+
getPriceForTextInput: (tokens) => 0.8 * tokens / 1_000_000,
|
|
3771
|
+
getPriceForTextOutput: (tokens) => 2.4 * tokens / 1_000_000,
|
|
3772
|
+
getPriceForAudioInput: () => 0,
|
|
3773
|
+
getPriceForAudioOutput: () => 0,
|
|
3774
|
+
currency: 'USD',
|
|
3775
|
+
},
|
|
3776
|
+
capabilities: {
|
|
3777
|
+
vision: false,
|
|
3778
|
+
tools: false,
|
|
3779
|
+
reasoning: false,
|
|
3780
|
+
webSearch: false,
|
|
3781
|
+
jsonOutput: false,
|
|
3782
|
+
structuredOutputs: false,
|
|
3783
|
+
},
|
|
3784
|
+
},
|
|
3785
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_V3_2_CANOPYWAVE]: {
|
|
3786
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_V3_2_CANOPYWAVE,
|
|
3787
|
+
limits: {
|
|
3788
|
+
maxInputTokens: 163_840,
|
|
3789
|
+
maxOutputTokens: 128_000,
|
|
3790
|
+
},
|
|
3791
|
+
config: {
|
|
3792
|
+
temperature: 0.2,
|
|
3793
|
+
},
|
|
3794
|
+
pricing: {
|
|
3795
|
+
getPriceForTextInput: (tokens) => 0.28 * tokens / 1_000_000,
|
|
3796
|
+
getPriceForTextOutput: (tokens) => 0.42 * tokens / 1_000_000,
|
|
3797
|
+
getPriceForAudioInput: () => 0,
|
|
3798
|
+
getPriceForAudioOutput: () => 0,
|
|
3799
|
+
currency: 'USD',
|
|
3800
|
+
},
|
|
3801
|
+
capabilities: {
|
|
3802
|
+
vision: true,
|
|
3803
|
+
tools: true,
|
|
3804
|
+
reasoning: false,
|
|
3805
|
+
webSearch: false,
|
|
3806
|
+
jsonOutput: true,
|
|
3807
|
+
structuredOutputs: false,
|
|
3808
|
+
},
|
|
3809
|
+
},
|
|
3810
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_V3_2_DEEPSEEK]: {
|
|
3811
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_V3_2_DEEPSEEK,
|
|
3812
|
+
limits: {
|
|
3813
|
+
maxInputTokens: 163_840,
|
|
3814
|
+
maxOutputTokens: 128_000,
|
|
3815
|
+
},
|
|
3816
|
+
config: {
|
|
3817
|
+
temperature: 0.2,
|
|
3818
|
+
},
|
|
3819
|
+
pricing: {
|
|
3820
|
+
getPriceForTextInput: (tokens) => 0.28 * tokens / 1_000_000,
|
|
3821
|
+
getPriceForTextOutput: (tokens) => 0.42 * tokens / 1_000_000,
|
|
3822
|
+
getPriceForAudioInput: () => 0,
|
|
3823
|
+
getPriceForAudioOutput: () => 0,
|
|
3824
|
+
currency: 'USD',
|
|
3825
|
+
},
|
|
3826
|
+
capabilities: {
|
|
3827
|
+
vision: true,
|
|
3828
|
+
tools: true,
|
|
3829
|
+
reasoning: false,
|
|
3830
|
+
webSearch: false,
|
|
3831
|
+
jsonOutput: true,
|
|
3832
|
+
structuredOutputs: false,
|
|
3833
|
+
},
|
|
3834
|
+
},
|
|
3835
|
+
// ─── Meta Llama (provider routes) ──────────────────────
|
|
3836
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_8B_INSTRUCT_NEBIUS]: {
|
|
3837
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_8B_INSTRUCT_NEBIUS,
|
|
3838
|
+
limits: {
|
|
3839
|
+
maxInputTokens: 128_000,
|
|
3840
|
+
maxOutputTokens: 16_384,
|
|
3841
|
+
},
|
|
3842
|
+
config: {
|
|
3843
|
+
temperature: 0.2,
|
|
3844
|
+
},
|
|
3845
|
+
pricing: {
|
|
3846
|
+
getPriceForTextInput: (tokens) => 0.02 * tokens / 1_000_000,
|
|
3847
|
+
getPriceForTextOutput: (tokens) => 0.06 * tokens / 1_000_000,
|
|
3848
|
+
getPriceForAudioInput: () => 0,
|
|
3849
|
+
getPriceForAudioOutput: () => 0,
|
|
3850
|
+
currency: 'USD',
|
|
3851
|
+
},
|
|
3852
|
+
capabilities: {
|
|
3853
|
+
vision: false,
|
|
3854
|
+
tools: false,
|
|
3855
|
+
reasoning: false,
|
|
3856
|
+
webSearch: false,
|
|
3857
|
+
jsonOutput: true,
|
|
3858
|
+
structuredOutputs: false,
|
|
3859
|
+
},
|
|
3860
|
+
},
|
|
3861
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_8B_INSTRUCT_NOVITA]: {
|
|
3862
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_8B_INSTRUCT_NOVITA,
|
|
3863
|
+
limits: {
|
|
3864
|
+
maxInputTokens: 128_000,
|
|
3865
|
+
maxOutputTokens: 16_384,
|
|
3866
|
+
},
|
|
3867
|
+
config: {
|
|
3868
|
+
temperature: 0.2,
|
|
3869
|
+
},
|
|
3870
|
+
pricing: {
|
|
3871
|
+
getPriceForTextInput: (tokens) => 0.02 * tokens / 1_000_000,
|
|
3872
|
+
getPriceForTextOutput: (tokens) => 0.05 * tokens / 1_000_000,
|
|
3873
|
+
getPriceForAudioInput: () => 0,
|
|
3874
|
+
getPriceForAudioOutput: () => 0,
|
|
3875
|
+
currency: 'USD',
|
|
3876
|
+
},
|
|
3877
|
+
capabilities: {
|
|
3878
|
+
vision: false,
|
|
3879
|
+
tools: false,
|
|
3880
|
+
reasoning: false,
|
|
3881
|
+
webSearch: false,
|
|
3882
|
+
jsonOutput: true,
|
|
3883
|
+
structuredOutputs: false,
|
|
3884
|
+
},
|
|
3885
|
+
},
|
|
3886
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_3_70B_INSTRUCT_NEBIUS]: {
|
|
3887
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_3_70B_INSTRUCT_NEBIUS,
|
|
3888
|
+
limits: {
|
|
3889
|
+
maxInputTokens: 131_072,
|
|
3890
|
+
maxOutputTokens: 16_384,
|
|
3891
|
+
},
|
|
3892
|
+
config: {
|
|
3893
|
+
temperature: 0.2,
|
|
3894
|
+
},
|
|
3895
|
+
pricing: {
|
|
3896
|
+
getPriceForTextInput: (tokens) => 0.13 * tokens / 1_000_000,
|
|
3897
|
+
getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000,
|
|
3898
|
+
getPriceForAudioInput: () => 0,
|
|
3899
|
+
getPriceForAudioOutput: () => 0,
|
|
3900
|
+
currency: 'USD',
|
|
3901
|
+
},
|
|
3902
|
+
capabilities: {
|
|
3903
|
+
vision: false,
|
|
3904
|
+
tools: true,
|
|
3905
|
+
reasoning: false,
|
|
3906
|
+
webSearch: false,
|
|
3907
|
+
jsonOutput: true,
|
|
3908
|
+
structuredOutputs: false,
|
|
3909
|
+
},
|
|
3910
|
+
},
|
|
3911
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_3_70B_INSTRUCT_NOVITA]: {
|
|
3912
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_3_70B_INSTRUCT_NOVITA,
|
|
3913
|
+
limits: {
|
|
3914
|
+
maxInputTokens: 131_072,
|
|
3915
|
+
maxOutputTokens: 16_384,
|
|
3916
|
+
},
|
|
3917
|
+
config: {
|
|
3918
|
+
temperature: 0.2,
|
|
3919
|
+
},
|
|
3920
|
+
pricing: {
|
|
3921
|
+
getPriceForTextInput: (tokens) => 0.135 * tokens / 1_000_000,
|
|
3922
|
+
getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000,
|
|
3923
|
+
getPriceForAudioInput: () => 0,
|
|
3924
|
+
getPriceForAudioOutput: () => 0,
|
|
3925
|
+
currency: 'USD',
|
|
3926
|
+
},
|
|
3927
|
+
capabilities: {
|
|
3928
|
+
vision: false,
|
|
3929
|
+
tools: true,
|
|
3930
|
+
reasoning: false,
|
|
3931
|
+
webSearch: false,
|
|
3932
|
+
jsonOutput: true,
|
|
3933
|
+
structuredOutputs: false,
|
|
3934
|
+
},
|
|
3935
|
+
},
|
|
3936
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_4_MAVERICK_17B_INSTRUCT_NOVITA]: {
|
|
3937
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_4_MAVERICK_17B_INSTRUCT_NOVITA,
|
|
3938
|
+
limits: {
|
|
3939
|
+
maxInputTokens: 1_048_576,
|
|
3940
|
+
maxOutputTokens: 128_000,
|
|
3941
|
+
},
|
|
3942
|
+
config: {
|
|
3943
|
+
temperature: 0.2,
|
|
3944
|
+
},
|
|
3945
|
+
pricing: {
|
|
3946
|
+
getPriceForTextInput: (tokens) => 0.27 * tokens / 1_000_000,
|
|
3947
|
+
getPriceForTextOutput: (tokens) => 0.85 * tokens / 1_000_000,
|
|
3948
|
+
getPriceForAudioInput: () => 0,
|
|
3949
|
+
getPriceForAudioOutput: () => 0,
|
|
3950
|
+
currency: 'USD',
|
|
3951
|
+
},
|
|
3952
|
+
capabilities: {
|
|
3953
|
+
vision: true,
|
|
3954
|
+
tools: false,
|
|
3955
|
+
reasoning: false,
|
|
3956
|
+
webSearch: false,
|
|
3957
|
+
jsonOutput: true,
|
|
3958
|
+
structuredOutputs: false,
|
|
3959
|
+
},
|
|
3960
|
+
},
|
|
3961
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_4_SCOUT_17B_INSTRUCT_NOVITA]: {
|
|
3962
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_4_SCOUT_17B_INSTRUCT_NOVITA,
|
|
3963
|
+
limits: {
|
|
3964
|
+
maxInputTokens: 131_072,
|
|
3965
|
+
maxOutputTokens: 16_384,
|
|
3966
|
+
},
|
|
3967
|
+
config: {
|
|
3968
|
+
temperature: 0.2,
|
|
3969
|
+
},
|
|
3970
|
+
pricing: {
|
|
3971
|
+
getPriceForTextInput: (tokens) => 0.18 * tokens / 1_000_000,
|
|
3972
|
+
getPriceForTextOutput: (tokens) => 0.59 * tokens / 1_000_000,
|
|
3973
|
+
getPriceForAudioInput: () => 0,
|
|
3974
|
+
getPriceForAudioOutput: () => 0,
|
|
3975
|
+
currency: 'USD',
|
|
3976
|
+
},
|
|
3977
|
+
capabilities: {
|
|
3978
|
+
vision: true,
|
|
3979
|
+
tools: false,
|
|
3980
|
+
reasoning: false,
|
|
3981
|
+
webSearch: false,
|
|
3982
|
+
jsonOutput: true,
|
|
3983
|
+
structuredOutputs: false,
|
|
3984
|
+
},
|
|
3985
|
+
},
|
|
3986
|
+
// ─── MiniMax (provider routes) ────────────────────────
|
|
3987
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1_CANOPYWAVE]: {
|
|
3988
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1_CANOPYWAVE,
|
|
3989
|
+
limits: {
|
|
3990
|
+
maxInputTokens: 204_800,
|
|
3991
|
+
maxOutputTokens: 128_000,
|
|
3992
|
+
},
|
|
3993
|
+
config: {
|
|
3994
|
+
temperature: 1,
|
|
3995
|
+
},
|
|
3996
|
+
pricing: {
|
|
3997
|
+
getPriceForTextInput: (tokens) => 0.27 * tokens / 1_000_000,
|
|
3998
|
+
getPriceForTextOutput: (tokens) => 1.08 * tokens / 1_000_000,
|
|
3999
|
+
getPriceForAudioInput: () => 0,
|
|
4000
|
+
getPriceForAudioOutput: () => 0,
|
|
4001
|
+
currency: 'USD',
|
|
4002
|
+
},
|
|
4003
|
+
capabilities: {
|
|
4004
|
+
vision: false,
|
|
4005
|
+
tools: true,
|
|
4006
|
+
reasoning: true,
|
|
4007
|
+
webSearch: false,
|
|
4008
|
+
jsonOutput: true,
|
|
4009
|
+
structuredOutputs: false,
|
|
4010
|
+
},
|
|
4011
|
+
},
|
|
4012
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1_MINIMAX]: {
|
|
4013
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1_MINIMAX,
|
|
4014
|
+
limits: {
|
|
4015
|
+
maxInputTokens: 204_800,
|
|
4016
|
+
maxOutputTokens: 128_000,
|
|
4017
|
+
},
|
|
4018
|
+
config: {
|
|
4019
|
+
temperature: 1,
|
|
4020
|
+
},
|
|
4021
|
+
pricing: {
|
|
4022
|
+
getPriceForTextInput: (tokens) => 0.27 * tokens / 1_000_000,
|
|
4023
|
+
getPriceForTextOutput: (tokens) => 1.1 * tokens / 1_000_000,
|
|
4024
|
+
getPriceForAudioInput: () => 0,
|
|
4025
|
+
getPriceForAudioOutput: () => 0,
|
|
4026
|
+
currency: 'USD',
|
|
4027
|
+
},
|
|
4028
|
+
capabilities: {
|
|
4029
|
+
vision: false,
|
|
4030
|
+
tools: false,
|
|
4031
|
+
reasoning: true,
|
|
4032
|
+
webSearch: false,
|
|
4033
|
+
jsonOutput: true,
|
|
4034
|
+
structuredOutputs: false,
|
|
4035
|
+
},
|
|
4036
|
+
},
|
|
4037
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1_NOVITA]: {
|
|
4038
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1_NOVITA,
|
|
4039
|
+
limits: {
|
|
4040
|
+
maxInputTokens: 204_800,
|
|
4041
|
+
maxOutputTokens: 128_000,
|
|
4042
|
+
},
|
|
4043
|
+
config: {
|
|
4044
|
+
temperature: 1,
|
|
4045
|
+
},
|
|
4046
|
+
pricing: {
|
|
4047
|
+
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
4048
|
+
getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000,
|
|
4049
|
+
getPriceForAudioInput: () => 0,
|
|
4050
|
+
getPriceForAudioOutput: () => 0,
|
|
4051
|
+
currency: 'USD',
|
|
4052
|
+
},
|
|
4053
|
+
capabilities: {
|
|
4054
|
+
vision: false,
|
|
4055
|
+
tools: true,
|
|
4056
|
+
reasoning: true,
|
|
4057
|
+
webSearch: false,
|
|
4058
|
+
jsonOutput: true,
|
|
4059
|
+
structuredOutputs: false,
|
|
4060
|
+
},
|
|
4061
|
+
},
|
|
4062
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_CANOPYWAVE]: {
|
|
4063
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_CANOPYWAVE,
|
|
4064
|
+
limits: {
|
|
4065
|
+
maxInputTokens: 204_800,
|
|
4066
|
+
maxOutputTokens: 128_000,
|
|
4067
|
+
},
|
|
4068
|
+
config: {
|
|
4069
|
+
temperature: 1,
|
|
4070
|
+
},
|
|
4071
|
+
pricing: {
|
|
4072
|
+
getPriceForTextInput: (tokens) => 0.27 * tokens / 1_000_000,
|
|
4073
|
+
getPriceForTextOutput: (tokens) => 1.08 * tokens / 1_000_000,
|
|
4074
|
+
getPriceForAudioInput: () => 0,
|
|
4075
|
+
getPriceForAudioOutput: () => 0,
|
|
4076
|
+
currency: 'USD',
|
|
4077
|
+
},
|
|
4078
|
+
capabilities: {
|
|
4079
|
+
vision: false,
|
|
4080
|
+
tools: true,
|
|
4081
|
+
reasoning: true,
|
|
4082
|
+
webSearch: false,
|
|
4083
|
+
jsonOutput: true,
|
|
4084
|
+
structuredOutputs: false,
|
|
4085
|
+
},
|
|
4086
|
+
},
|
|
4087
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_EMBERCLOUD]: {
|
|
4088
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_EMBERCLOUD,
|
|
4089
|
+
limits: {
|
|
4090
|
+
maxInputTokens: 204_800,
|
|
4091
|
+
maxOutputTokens: 128_000,
|
|
4092
|
+
},
|
|
4093
|
+
config: {
|
|
4094
|
+
temperature: 1,
|
|
4095
|
+
},
|
|
4096
|
+
pricing: {
|
|
4097
|
+
getPriceForTextInput: (tokens) => 0.2 * tokens / 1_000_000,
|
|
4098
|
+
getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000,
|
|
4099
|
+
getPriceForAudioInput: () => 0,
|
|
4100
|
+
getPriceForAudioOutput: () => 0,
|
|
4101
|
+
currency: 'USD',
|
|
4102
|
+
},
|
|
4103
|
+
capabilities: {
|
|
4104
|
+
vision: false,
|
|
4105
|
+
tools: true,
|
|
4106
|
+
reasoning: true,
|
|
4107
|
+
webSearch: false,
|
|
4108
|
+
jsonOutput: true,
|
|
4109
|
+
structuredOutputs: false,
|
|
4110
|
+
},
|
|
4111
|
+
},
|
|
4112
|
+
// ─── Moonshot Kimi (new models & routes) ───────────────
|
|
4113
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_5_AUTO]: {
|
|
4114
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_5_AUTO,
|
|
4115
|
+
limits: {
|
|
4116
|
+
maxInputTokens: 262_144,
|
|
4117
|
+
maxOutputTokens: 128_000,
|
|
4118
|
+
},
|
|
4119
|
+
config: {
|
|
4120
|
+
temperature: 0.2,
|
|
4121
|
+
},
|
|
4122
|
+
pricing: {
|
|
4123
|
+
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
4124
|
+
getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000,
|
|
4125
|
+
getPriceForAudioInput: () => 0,
|
|
4126
|
+
getPriceForAudioOutput: () => 0,
|
|
4127
|
+
currency: 'USD',
|
|
4128
|
+
},
|
|
4129
|
+
capabilities: {
|
|
4130
|
+
vision: true,
|
|
4131
|
+
tools: true,
|
|
4132
|
+
reasoning: false,
|
|
4133
|
+
webSearch: false,
|
|
4134
|
+
jsonOutput: true,
|
|
4135
|
+
structuredOutputs: false,
|
|
4136
|
+
},
|
|
4137
|
+
},
|
|
4138
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_5_CANOPYWAVE]: {
|
|
4139
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_5_CANOPYWAVE,
|
|
4140
|
+
limits: {
|
|
4141
|
+
maxInputTokens: 262_144,
|
|
4142
|
+
maxOutputTokens: 128_000,
|
|
4143
|
+
},
|
|
4144
|
+
config: {
|
|
4145
|
+
temperature: 0.2,
|
|
4146
|
+
},
|
|
4147
|
+
pricing: {
|
|
4148
|
+
getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000,
|
|
4149
|
+
getPriceForTextOutput: (tokens) => 2.8 * tokens / 1_000_000,
|
|
4150
|
+
getPriceForAudioInput: () => 0,
|
|
4151
|
+
getPriceForAudioOutput: () => 0,
|
|
4152
|
+
currency: 'USD',
|
|
4153
|
+
},
|
|
4154
|
+
capabilities: {
|
|
4155
|
+
vision: true,
|
|
4156
|
+
tools: true,
|
|
4157
|
+
reasoning: false,
|
|
4158
|
+
webSearch: false,
|
|
4159
|
+
jsonOutput: true,
|
|
4160
|
+
structuredOutputs: false,
|
|
4161
|
+
},
|
|
4162
|
+
},
|
|
4163
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_5_EMBERCLOUD]: {
|
|
4164
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_5_EMBERCLOUD,
|
|
4165
|
+
limits: {
|
|
4166
|
+
maxInputTokens: 262_144,
|
|
4167
|
+
maxOutputTokens: 128_000,
|
|
4168
|
+
},
|
|
4169
|
+
config: {
|
|
4170
|
+
temperature: 0.2,
|
|
4171
|
+
},
|
|
4172
|
+
pricing: {
|
|
4173
|
+
getPriceForTextInput: (tokens) => 0.405 * tokens / 1_000_000,
|
|
4174
|
+
getPriceForTextOutput: (tokens) => 1.98 * tokens / 1_000_000,
|
|
4175
|
+
getPriceForAudioInput: () => 0,
|
|
4176
|
+
getPriceForAudioOutput: () => 0,
|
|
4177
|
+
currency: 'USD',
|
|
4178
|
+
},
|
|
4179
|
+
capabilities: {
|
|
4180
|
+
vision: true,
|
|
4181
|
+
tools: true,
|
|
4182
|
+
reasoning: false,
|
|
4183
|
+
webSearch: false,
|
|
4184
|
+
jsonOutput: true,
|
|
4185
|
+
structuredOutputs: false,
|
|
4186
|
+
},
|
|
4187
|
+
},
|
|
4188
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_CLOUDRIFT]: {
|
|
4189
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_CLOUDRIFT,
|
|
4190
|
+
limits: {
|
|
4191
|
+
maxInputTokens: 131_072,
|
|
4192
|
+
maxOutputTokens: 16_384,
|
|
4193
|
+
},
|
|
4194
|
+
config: {
|
|
4195
|
+
temperature: 0.2,
|
|
4196
|
+
},
|
|
4197
|
+
pricing: {
|
|
4198
|
+
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
4199
|
+
getPriceForTextOutput: (tokens) => 1.75 * tokens / 1_000_000,
|
|
4200
|
+
getPriceForAudioInput: () => 0,
|
|
4201
|
+
getPriceForAudioOutput: () => 0,
|
|
4202
|
+
currency: 'USD',
|
|
4203
|
+
},
|
|
4204
|
+
capabilities: {
|
|
4205
|
+
vision: false,
|
|
4206
|
+
tools: true,
|
|
4207
|
+
reasoning: false,
|
|
4208
|
+
webSearch: false,
|
|
4209
|
+
jsonOutput: true,
|
|
4210
|
+
structuredOutputs: false,
|
|
4211
|
+
},
|
|
4212
|
+
},
|
|
4213
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_GROQ]: {
|
|
4214
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_GROQ,
|
|
4215
|
+
limits: {
|
|
4216
|
+
maxInputTokens: 131_072,
|
|
4217
|
+
maxOutputTokens: 16_384,
|
|
4218
|
+
},
|
|
4219
|
+
config: {
|
|
4220
|
+
temperature: 0.2,
|
|
4221
|
+
},
|
|
4222
|
+
pricing: {
|
|
4223
|
+
getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000,
|
|
4224
|
+
getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000,
|
|
4225
|
+
getPriceForAudioInput: () => 0,
|
|
4226
|
+
getPriceForAudioOutput: () => 0,
|
|
4227
|
+
currency: 'USD',
|
|
4228
|
+
},
|
|
4229
|
+
capabilities: {
|
|
4230
|
+
vision: false,
|
|
4231
|
+
tools: true,
|
|
4232
|
+
reasoning: false,
|
|
4233
|
+
webSearch: false,
|
|
4234
|
+
jsonOutput: true,
|
|
4235
|
+
structuredOutputs: false,
|
|
4236
|
+
},
|
|
4237
|
+
},
|
|
4238
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_MOONSHOT]: {
|
|
4239
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_MOONSHOT,
|
|
4240
|
+
limits: {
|
|
4241
|
+
maxInputTokens: 131_072,
|
|
4242
|
+
maxOutputTokens: 16_384,
|
|
4243
|
+
},
|
|
4244
|
+
config: {
|
|
4245
|
+
temperature: 0.2,
|
|
4246
|
+
},
|
|
4247
|
+
pricing: {
|
|
4248
|
+
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
4249
|
+
getPriceForTextOutput: (tokens) => 2.5 * tokens / 1_000_000,
|
|
4250
|
+
getPriceForAudioInput: () => 0,
|
|
4251
|
+
getPriceForAudioOutput: () => 0,
|
|
4252
|
+
currency: 'USD',
|
|
4253
|
+
},
|
|
4254
|
+
capabilities: {
|
|
4255
|
+
vision: false,
|
|
4256
|
+
tools: true,
|
|
4257
|
+
reasoning: false,
|
|
4258
|
+
webSearch: false,
|
|
4259
|
+
jsonOutput: true,
|
|
4260
|
+
structuredOutputs: false,
|
|
4261
|
+
},
|
|
4262
|
+
},
|
|
4263
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_NEBIUS]: {
|
|
4264
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_NEBIUS,
|
|
4265
|
+
limits: {
|
|
4266
|
+
maxInputTokens: 131_072,
|
|
4267
|
+
maxOutputTokens: 16_384,
|
|
4268
|
+
},
|
|
4269
|
+
config: {
|
|
4270
|
+
temperature: 0.2,
|
|
4271
|
+
},
|
|
4272
|
+
pricing: {
|
|
4273
|
+
getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000,
|
|
4274
|
+
getPriceForTextOutput: (tokens) => 2.4 * tokens / 1_000_000,
|
|
4275
|
+
getPriceForAudioInput: () => 0,
|
|
4276
|
+
getPriceForAudioOutput: () => 0,
|
|
4277
|
+
currency: 'USD',
|
|
4278
|
+
},
|
|
4279
|
+
capabilities: {
|
|
4280
|
+
vision: false,
|
|
4281
|
+
tools: true,
|
|
4282
|
+
reasoning: false,
|
|
4283
|
+
webSearch: false,
|
|
4284
|
+
jsonOutput: true,
|
|
4285
|
+
structuredOutputs: false,
|
|
4286
|
+
},
|
|
4287
|
+
},
|
|
4288
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_NOVITA]: {
|
|
4289
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_NOVITA,
|
|
4290
|
+
limits: {
|
|
4291
|
+
maxInputTokens: 131_072,
|
|
4292
|
+
maxOutputTokens: 16_384,
|
|
4293
|
+
},
|
|
4294
|
+
config: {
|
|
4295
|
+
temperature: 0.2,
|
|
4296
|
+
},
|
|
4297
|
+
pricing: {
|
|
4298
|
+
getPriceForTextInput: (tokens) => 0.57 * tokens / 1_000_000,
|
|
4299
|
+
getPriceForTextOutput: (tokens) => 2.3 * tokens / 1_000_000,
|
|
4300
|
+
getPriceForAudioInput: () => 0,
|
|
4301
|
+
getPriceForAudioOutput: () => 0,
|
|
4302
|
+
currency: 'USD',
|
|
4303
|
+
},
|
|
4304
|
+
capabilities: {
|
|
4305
|
+
vision: false,
|
|
4306
|
+
tools: true,
|
|
4307
|
+
reasoning: false,
|
|
4308
|
+
webSearch: false,
|
|
4309
|
+
jsonOutput: true,
|
|
4310
|
+
structuredOutputs: false,
|
|
4311
|
+
},
|
|
4312
|
+
},
|
|
4313
|
+
// ─── Alibaba Qwen (new models & routes) ─────────────────
|
|
4314
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_INSTRUCT_2507_NEBIUS]: {
|
|
4315
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_INSTRUCT_2507_NEBIUS,
|
|
4316
|
+
limits: {
|
|
4317
|
+
maxInputTokens: 262_000,
|
|
4318
|
+
maxOutputTokens: 128_000,
|
|
4319
|
+
},
|
|
4320
|
+
config: {
|
|
4321
|
+
temperature: 0.2,
|
|
4322
|
+
},
|
|
4323
|
+
pricing: {
|
|
4324
|
+
getPriceForTextInput: (tokens) => 0.2 * tokens / 1_000_000,
|
|
4325
|
+
getPriceForTextOutput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
4326
|
+
getPriceForAudioInput: () => 0,
|
|
4327
|
+
getPriceForAudioOutput: () => 0,
|
|
4328
|
+
currency: 'USD',
|
|
4329
|
+
},
|
|
4330
|
+
capabilities: {
|
|
4331
|
+
vision: false,
|
|
4332
|
+
tools: true,
|
|
4333
|
+
reasoning: false,
|
|
4334
|
+
webSearch: false,
|
|
4335
|
+
jsonOutput: true,
|
|
4336
|
+
structuredOutputs: false,
|
|
4337
|
+
},
|
|
4338
|
+
},
|
|
4339
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_INSTRUCT_2507_NOVITA]: {
|
|
4340
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_INSTRUCT_2507_NOVITA,
|
|
4341
|
+
limits: {
|
|
4342
|
+
maxInputTokens: 262_000,
|
|
4343
|
+
maxOutputTokens: 128_000,
|
|
4344
|
+
},
|
|
4345
|
+
config: {
|
|
4346
|
+
temperature: 0.2,
|
|
4347
|
+
},
|
|
4348
|
+
pricing: {
|
|
4349
|
+
getPriceForTextInput: (tokens) => 0.09 * tokens / 1_000_000,
|
|
4350
|
+
getPriceForTextOutput: (tokens) => 0.58 * tokens / 1_000_000,
|
|
4351
|
+
getPriceForAudioInput: () => 0,
|
|
4352
|
+
getPriceForAudioOutput: () => 0,
|
|
4353
|
+
currency: 'USD',
|
|
4354
|
+
},
|
|
4355
|
+
capabilities: {
|
|
4356
|
+
vision: false,
|
|
4357
|
+
tools: true,
|
|
4358
|
+
reasoning: false,
|
|
4359
|
+
webSearch: false,
|
|
4360
|
+
jsonOutput: true,
|
|
4361
|
+
structuredOutputs: false,
|
|
4362
|
+
},
|
|
4363
|
+
},
|
|
4364
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_THINKING_2507_NEBIUS]: {
|
|
4365
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_THINKING_2507_NEBIUS,
|
|
4366
|
+
limits: {
|
|
4367
|
+
maxInputTokens: 262_000,
|
|
4368
|
+
maxOutputTokens: 128_000,
|
|
4369
|
+
},
|
|
4370
|
+
config: {
|
|
4371
|
+
temperature: 1,
|
|
4372
|
+
},
|
|
4373
|
+
pricing: {
|
|
4374
|
+
getPriceForTextInput: (tokens) => 0.2 * tokens / 1_000_000,
|
|
4375
|
+
getPriceForTextOutput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
4376
|
+
getPriceForAudioInput: () => 0,
|
|
4377
|
+
getPriceForAudioOutput: () => 0,
|
|
4378
|
+
currency: 'USD',
|
|
4379
|
+
},
|
|
4380
|
+
capabilities: {
|
|
4381
|
+
vision: false,
|
|
4382
|
+
tools: true,
|
|
4383
|
+
reasoning: true,
|
|
4384
|
+
webSearch: false,
|
|
4385
|
+
jsonOutput: true,
|
|
4386
|
+
structuredOutputs: false,
|
|
4387
|
+
},
|
|
4388
|
+
},
|
|
4389
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_THINKING_2507_NOVITA]: {
|
|
4390
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_THINKING_2507_NOVITA,
|
|
4391
|
+
limits: {
|
|
4392
|
+
maxInputTokens: 262_000,
|
|
4393
|
+
maxOutputTokens: 128_000,
|
|
4394
|
+
},
|
|
4395
|
+
config: {
|
|
4396
|
+
temperature: 0.2,
|
|
4397
|
+
},
|
|
4398
|
+
pricing: {
|
|
4399
|
+
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
4400
|
+
getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000,
|
|
4401
|
+
getPriceForAudioInput: () => 0,
|
|
4402
|
+
getPriceForAudioOutput: () => 0,
|
|
4403
|
+
currency: 'USD',
|
|
4404
|
+
},
|
|
4405
|
+
capabilities: {
|
|
4406
|
+
vision: false,
|
|
4407
|
+
tools: true,
|
|
4408
|
+
reasoning: false,
|
|
4409
|
+
webSearch: false,
|
|
4410
|
+
jsonOutput: true,
|
|
4411
|
+
structuredOutputs: false,
|
|
4412
|
+
},
|
|
4413
|
+
},
|
|
4414
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_5_397B_ALIBABA]: {
|
|
4415
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_5_397B_ALIBABA,
|
|
4416
|
+
limits: {
|
|
4417
|
+
maxInputTokens: 262_144,
|
|
4418
|
+
maxOutputTokens: 128_000,
|
|
4419
|
+
},
|
|
4420
|
+
config: {
|
|
4421
|
+
temperature: 1,
|
|
4422
|
+
},
|
|
4423
|
+
pricing: {
|
|
4424
|
+
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
4425
|
+
getPriceForTextOutput: (tokens) => 3.6 * tokens / 1_000_000,
|
|
4426
|
+
getPriceForAudioInput: () => 0,
|
|
4427
|
+
getPriceForAudioOutput: () => 0,
|
|
4428
|
+
currency: 'USD',
|
|
4429
|
+
},
|
|
4430
|
+
capabilities: {
|
|
4431
|
+
vision: true,
|
|
4432
|
+
tools: true,
|
|
4433
|
+
reasoning: true,
|
|
4434
|
+
webSearch: false,
|
|
4435
|
+
jsonOutput: true,
|
|
4436
|
+
structuredOutputs: false,
|
|
4437
|
+
},
|
|
4438
|
+
},
|
|
4439
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_5_397B_NOVITA]: {
|
|
4440
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_5_397B_NOVITA,
|
|
4441
|
+
limits: {
|
|
4442
|
+
maxInputTokens: 262_144,
|
|
4443
|
+
maxOutputTokens: 128_000,
|
|
4444
|
+
},
|
|
4445
|
+
config: {
|
|
4446
|
+
temperature: 1,
|
|
4447
|
+
},
|
|
4448
|
+
pricing: {
|
|
4449
|
+
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
4450
|
+
getPriceForTextOutput: (tokens) => 3.6 * tokens / 1_000_000,
|
|
4451
|
+
getPriceForAudioInput: () => 0,
|
|
4452
|
+
getPriceForAudioOutput: () => 0,
|
|
4453
|
+
currency: 'USD',
|
|
4454
|
+
},
|
|
4455
|
+
capabilities: {
|
|
4456
|
+
vision: true,
|
|
4457
|
+
tools: true,
|
|
4458
|
+
reasoning: true,
|
|
4459
|
+
webSearch: false,
|
|
4460
|
+
jsonOutput: true,
|
|
4461
|
+
structuredOutputs: false,
|
|
4462
|
+
},
|
|
4463
|
+
},
|
|
4464
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_30B_A3B_INSTRUCT_NEBIUS]: {
|
|
4465
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_30B_A3B_INSTRUCT_NEBIUS,
|
|
4466
|
+
limits: {
|
|
4467
|
+
maxInputTokens: 262_000,
|
|
4468
|
+
maxOutputTokens: 128_000,
|
|
4469
|
+
},
|
|
4470
|
+
config: {
|
|
4471
|
+
temperature: 0.2,
|
|
4472
|
+
},
|
|
4473
|
+
pricing: {
|
|
4474
|
+
getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000,
|
|
4475
|
+
getPriceForTextOutput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
4476
|
+
getPriceForAudioInput: () => 0,
|
|
4477
|
+
getPriceForAudioOutput: () => 0,
|
|
4478
|
+
currency: 'USD',
|
|
4479
|
+
},
|
|
4480
|
+
capabilities: {
|
|
4481
|
+
vision: false,
|
|
4482
|
+
tools: true,
|
|
4483
|
+
reasoning: false,
|
|
4484
|
+
webSearch: false,
|
|
4485
|
+
jsonOutput: true,
|
|
4486
|
+
structuredOutputs: false,
|
|
4487
|
+
},
|
|
4488
|
+
},
|
|
4489
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_30B_A3B_INSTRUCT_NOVITA]: {
|
|
4490
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_30B_A3B_INSTRUCT_NOVITA,
|
|
4491
|
+
limits: {
|
|
4492
|
+
maxInputTokens: 262_000,
|
|
4493
|
+
maxOutputTokens: 128_000,
|
|
4494
|
+
},
|
|
4495
|
+
config: {
|
|
4496
|
+
temperature: 0.2,
|
|
4497
|
+
},
|
|
4498
|
+
pricing: {
|
|
4499
|
+
getPriceForTextInput: (tokens) => 0.07 * tokens / 1_000_000,
|
|
4500
|
+
getPriceForTextOutput: (tokens) => 0.27 * tokens / 1_000_000,
|
|
4501
|
+
getPriceForAudioInput: () => 0,
|
|
4502
|
+
getPriceForAudioOutput: () => 0,
|
|
4503
|
+
currency: 'USD',
|
|
4504
|
+
},
|
|
4505
|
+
capabilities: {
|
|
4506
|
+
vision: false,
|
|
4507
|
+
tools: true,
|
|
4508
|
+
reasoning: false,
|
|
4509
|
+
webSearch: false,
|
|
4510
|
+
jsonOutput: true,
|
|
4511
|
+
structuredOutputs: false,
|
|
4512
|
+
},
|
|
4513
|
+
},
|
|
4514
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_NEXT]: {
|
|
4515
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_NEXT,
|
|
4516
|
+
limits: {
|
|
4517
|
+
maxInputTokens: 262_144,
|
|
4518
|
+
maxOutputTokens: 128_000,
|
|
4519
|
+
},
|
|
4520
|
+
config: {
|
|
4521
|
+
temperature: 1,
|
|
4522
|
+
},
|
|
4523
|
+
pricing: {
|
|
4524
|
+
getPriceForTextInput: (tokens) => 0.108 * tokens / 1_000_000,
|
|
4525
|
+
getPriceForTextOutput: (tokens) => 0.675 * tokens / 1_000_000,
|
|
4526
|
+
getPriceForAudioInput: () => 0,
|
|
4527
|
+
getPriceForAudioOutput: () => 0,
|
|
4528
|
+
currency: 'USD',
|
|
4529
|
+
},
|
|
4530
|
+
capabilities: {
|
|
4531
|
+
vision: false,
|
|
4532
|
+
tools: true,
|
|
4533
|
+
reasoning: true,
|
|
4534
|
+
webSearch: false,
|
|
4535
|
+
jsonOutput: true,
|
|
4536
|
+
structuredOutputs: true,
|
|
4537
|
+
},
|
|
4538
|
+
},
|
|
4539
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_MAX_ALIBABA]: {
|
|
4540
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_MAX_ALIBABA,
|
|
4541
|
+
limits: {
|
|
4542
|
+
maxInputTokens: 262_144,
|
|
4543
|
+
maxOutputTokens: 128_000,
|
|
4544
|
+
},
|
|
4545
|
+
config: {
|
|
4546
|
+
temperature: 1,
|
|
4547
|
+
},
|
|
4548
|
+
pricing: {
|
|
4549
|
+
getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000,
|
|
4550
|
+
getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
|
|
4551
|
+
getPriceForAudioInput: () => 0,
|
|
4552
|
+
getPriceForAudioOutput: () => 0,
|
|
4553
|
+
currency: 'USD',
|
|
4554
|
+
},
|
|
4555
|
+
capabilities: {
|
|
4556
|
+
vision: true,
|
|
4557
|
+
tools: true,
|
|
4558
|
+
reasoning: true,
|
|
4559
|
+
webSearch: false,
|
|
4560
|
+
jsonOutput: true,
|
|
4561
|
+
structuredOutputs: false,
|
|
4562
|
+
},
|
|
4563
|
+
},
|
|
4564
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_MAX_NOVITA]: {
|
|
4565
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_MAX_NOVITA,
|
|
4566
|
+
limits: {
|
|
4567
|
+
maxInputTokens: 262_144,
|
|
4568
|
+
maxOutputTokens: 128_000,
|
|
4569
|
+
},
|
|
4570
|
+
config: {
|
|
4571
|
+
temperature: 0.2,
|
|
4572
|
+
},
|
|
4573
|
+
pricing: {
|
|
4574
|
+
getPriceForTextInput: (tokens) => 0.845 * tokens / 1_000_000,
|
|
4575
|
+
getPriceForTextOutput: (tokens) => 3.38 * tokens / 1_000_000,
|
|
4576
|
+
getPriceForAudioInput: () => 0,
|
|
4577
|
+
getPriceForAudioOutput: () => 0,
|
|
4578
|
+
currency: 'USD',
|
|
4579
|
+
},
|
|
4580
|
+
capabilities: {
|
|
4581
|
+
vision: false,
|
|
4582
|
+
tools: true,
|
|
4583
|
+
reasoning: false,
|
|
4584
|
+
webSearch: false,
|
|
4585
|
+
jsonOutput: true,
|
|
4586
|
+
structuredOutputs: false,
|
|
4587
|
+
},
|
|
4588
|
+
},
|
|
4589
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_INSTRUCT_ALIBABA]: {
|
|
4590
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_INSTRUCT_ALIBABA,
|
|
4591
|
+
limits: {
|
|
4592
|
+
maxInputTokens: 131_072,
|
|
4593
|
+
maxOutputTokens: 16_384,
|
|
4594
|
+
},
|
|
4595
|
+
config: {
|
|
4596
|
+
temperature: 0.2,
|
|
4597
|
+
},
|
|
4598
|
+
pricing: {
|
|
4599
|
+
getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000,
|
|
4600
|
+
getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000,
|
|
4601
|
+
getPriceForAudioInput: () => 0,
|
|
4602
|
+
getPriceForAudioOutput: () => 0,
|
|
4603
|
+
currency: 'USD',
|
|
4604
|
+
},
|
|
4605
|
+
capabilities: {
|
|
4606
|
+
vision: false,
|
|
4607
|
+
tools: true,
|
|
4608
|
+
reasoning: false,
|
|
4609
|
+
webSearch: false,
|
|
4610
|
+
jsonOutput: true,
|
|
4611
|
+
structuredOutputs: false,
|
|
4612
|
+
},
|
|
4613
|
+
},
|
|
4614
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_INSTRUCT_NOVITA]: {
|
|
4615
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_INSTRUCT_NOVITA,
|
|
4616
|
+
limits: {
|
|
4617
|
+
maxInputTokens: 131_072,
|
|
4618
|
+
maxOutputTokens: 16_384,
|
|
4619
|
+
},
|
|
4620
|
+
config: {
|
|
4621
|
+
temperature: 0.2,
|
|
4622
|
+
},
|
|
4623
|
+
pricing: {
|
|
4624
|
+
getPriceForTextInput: (tokens) => 0.15 * tokens / 1_000_000,
|
|
4625
|
+
getPriceForTextOutput: (tokens) => 1.5 * tokens / 1_000_000,
|
|
4626
|
+
getPriceForAudioInput: () => 0,
|
|
4627
|
+
getPriceForAudioOutput: () => 0,
|
|
4628
|
+
currency: 'USD',
|
|
4629
|
+
},
|
|
4630
|
+
capabilities: {
|
|
4631
|
+
vision: false,
|
|
4632
|
+
tools: true,
|
|
4633
|
+
reasoning: false,
|
|
4634
|
+
webSearch: false,
|
|
4635
|
+
jsonOutput: true,
|
|
4636
|
+
structuredOutputs: false,
|
|
4637
|
+
},
|
|
4638
|
+
},
|
|
4639
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_THINKING_ALIBABA]: {
|
|
4640
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_THINKING_ALIBABA,
|
|
4641
|
+
limits: {
|
|
4642
|
+
maxInputTokens: 131_072,
|
|
4643
|
+
maxOutputTokens: 16_384,
|
|
4644
|
+
},
|
|
4645
|
+
config: {
|
|
4646
|
+
temperature: 1,
|
|
4647
|
+
},
|
|
4648
|
+
pricing: {
|
|
4649
|
+
getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000,
|
|
4650
|
+
getPriceForTextOutput: (tokens) => 6 * tokens / 1_000_000,
|
|
4651
|
+
getPriceForAudioInput: () => 0,
|
|
4652
|
+
getPriceForAudioOutput: () => 0,
|
|
4653
|
+
currency: 'USD',
|
|
4654
|
+
},
|
|
4655
|
+
capabilities: {
|
|
4656
|
+
vision: false,
|
|
4657
|
+
tools: true,
|
|
4658
|
+
reasoning: true,
|
|
4659
|
+
webSearch: false,
|
|
4660
|
+
jsonOutput: false,
|
|
4661
|
+
structuredOutputs: false,
|
|
4662
|
+
},
|
|
4663
|
+
},
|
|
4664
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_THINKING_NOVITA]: {
|
|
4665
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_THINKING_NOVITA,
|
|
4666
|
+
limits: {
|
|
4667
|
+
maxInputTokens: 131_072,
|
|
4668
|
+
maxOutputTokens: 16_384,
|
|
4669
|
+
},
|
|
4670
|
+
config: {
|
|
4671
|
+
temperature: 1,
|
|
4672
|
+
},
|
|
4673
|
+
pricing: {
|
|
4674
|
+
getPriceForTextInput: (tokens) => 0.15 * tokens / 1_000_000,
|
|
4675
|
+
getPriceForTextOutput: (tokens) => 1.5 * tokens / 1_000_000,
|
|
4676
|
+
getPriceForAudioInput: () => 0,
|
|
4677
|
+
getPriceForAudioOutput: () => 0,
|
|
4678
|
+
currency: 'USD',
|
|
4679
|
+
},
|
|
4680
|
+
capabilities: {
|
|
4681
|
+
vision: false,
|
|
4682
|
+
tools: true,
|
|
4683
|
+
reasoning: true,
|
|
4684
|
+
webSearch: false,
|
|
4685
|
+
jsonOutput: false,
|
|
4686
|
+
structuredOutputs: false,
|
|
4687
|
+
},
|
|
4688
|
+
},
|
|
4689
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_INSTRUCT_ALIBABA]: {
|
|
4690
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_INSTRUCT_ALIBABA,
|
|
4691
|
+
limits: {
|
|
4692
|
+
maxInputTokens: 131_072,
|
|
4693
|
+
maxOutputTokens: 16_384,
|
|
4694
|
+
},
|
|
4695
|
+
config: {
|
|
4696
|
+
temperature: 0.2,
|
|
4697
|
+
},
|
|
4698
|
+
pricing: {
|
|
4699
|
+
getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000,
|
|
4700
|
+
getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000,
|
|
4701
|
+
getPriceForAudioInput: () => 0,
|
|
4702
|
+
getPriceForAudioOutput: () => 0,
|
|
4703
|
+
currency: 'USD',
|
|
4704
|
+
},
|
|
4705
|
+
capabilities: {
|
|
4706
|
+
vision: true,
|
|
4707
|
+
tools: true,
|
|
4708
|
+
reasoning: false,
|
|
4709
|
+
webSearch: false,
|
|
4710
|
+
jsonOutput: true,
|
|
4711
|
+
structuredOutputs: false,
|
|
4712
|
+
},
|
|
4713
|
+
},
|
|
4714
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_INSTRUCT_NOVITA]: {
|
|
4715
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_INSTRUCT_NOVITA,
|
|
4716
|
+
limits: {
|
|
4717
|
+
maxInputTokens: 131_072,
|
|
4718
|
+
maxOutputTokens: 16_384,
|
|
4719
|
+
},
|
|
4720
|
+
config: {
|
|
4721
|
+
temperature: 0.2,
|
|
4722
|
+
},
|
|
4723
|
+
pricing: {
|
|
4724
|
+
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
4725
|
+
getPriceForTextOutput: (tokens) => 1.5 * tokens / 1_000_000,
|
|
4726
|
+
getPriceForAudioInput: () => 0,
|
|
4727
|
+
getPriceForAudioOutput: () => 0,
|
|
4728
|
+
currency: 'USD',
|
|
4729
|
+
},
|
|
4730
|
+
capabilities: {
|
|
4731
|
+
vision: true,
|
|
4732
|
+
tools: true,
|
|
4733
|
+
reasoning: false,
|
|
4734
|
+
webSearch: false,
|
|
4735
|
+
jsonOutput: true,
|
|
4736
|
+
structuredOutputs: false,
|
|
4737
|
+
},
|
|
4738
|
+
},
|
|
4739
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_THINKING_ALIBABA]: {
|
|
4740
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_THINKING_ALIBABA,
|
|
4741
|
+
limits: {
|
|
4742
|
+
maxInputTokens: 131_072,
|
|
4743
|
+
maxOutputTokens: 16_384,
|
|
4744
|
+
},
|
|
4745
|
+
config: {
|
|
4746
|
+
temperature: 1,
|
|
4747
|
+
},
|
|
4748
|
+
pricing: {
|
|
4749
|
+
getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000,
|
|
4750
|
+
getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000,
|
|
4751
|
+
getPriceForAudioInput: () => 0,
|
|
4752
|
+
getPriceForAudioOutput: () => 0,
|
|
4753
|
+
currency: 'USD',
|
|
4754
|
+
},
|
|
4755
|
+
capabilities: {
|
|
4756
|
+
vision: true,
|
|
4757
|
+
tools: false,
|
|
4758
|
+
reasoning: true,
|
|
4759
|
+
webSearch: false,
|
|
4760
|
+
jsonOutput: false,
|
|
4761
|
+
structuredOutputs: false,
|
|
4762
|
+
},
|
|
4763
|
+
},
|
|
4764
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_THINKING_NOVITA]: {
|
|
4765
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_THINKING_NOVITA,
|
|
4766
|
+
limits: {
|
|
4767
|
+
maxInputTokens: 131_072,
|
|
4768
|
+
maxOutputTokens: 16_384,
|
|
4769
|
+
},
|
|
4770
|
+
config: {
|
|
4771
|
+
temperature: 1,
|
|
4772
|
+
},
|
|
4773
|
+
pricing: {
|
|
4774
|
+
getPriceForTextInput: (tokens) => 0.98 * tokens / 1_000_000,
|
|
4775
|
+
getPriceForTextOutput: (tokens) => 3.95 * tokens / 1_000_000,
|
|
4776
|
+
getPriceForAudioInput: () => 0,
|
|
4777
|
+
getPriceForAudioOutput: () => 0,
|
|
4778
|
+
currency: 'USD',
|
|
4779
|
+
},
|
|
4780
|
+
capabilities: {
|
|
4781
|
+
vision: true,
|
|
4782
|
+
tools: false,
|
|
4783
|
+
reasoning: true,
|
|
4784
|
+
webSearch: false,
|
|
4785
|
+
jsonOutput: false,
|
|
4786
|
+
structuredOutputs: false,
|
|
4787
|
+
},
|
|
4788
|
+
},
|
|
4789
|
+
// ─── Zhipu GLM (provider routes) ─────────────────────
|
|
4790
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5V_NOVITA]: {
|
|
4791
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5V_NOVITA,
|
|
4792
|
+
limits: {
|
|
4793
|
+
maxInputTokens: 128_000,
|
|
4794
|
+
maxOutputTokens: 16_384,
|
|
4795
|
+
},
|
|
4796
|
+
config: {
|
|
4797
|
+
temperature: 1,
|
|
4798
|
+
},
|
|
4799
|
+
pricing: {
|
|
4800
|
+
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
4801
|
+
getPriceForTextOutput: (tokens) => 1.8 * tokens / 1_000_000,
|
|
4802
|
+
getPriceForAudioInput: () => 0,
|
|
4803
|
+
getPriceForAudioOutput: () => 0,
|
|
4804
|
+
currency: 'USD',
|
|
4805
|
+
},
|
|
4806
|
+
capabilities: {
|
|
4807
|
+
vision: true,
|
|
4808
|
+
tools: true,
|
|
4809
|
+
reasoning: true,
|
|
4810
|
+
webSearch: false,
|
|
4811
|
+
jsonOutput: true,
|
|
4812
|
+
structuredOutputs: false,
|
|
4813
|
+
},
|
|
4814
|
+
},
|
|
4815
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5V_ZAI]: {
|
|
4816
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5V_ZAI,
|
|
4817
|
+
limits: {
|
|
4818
|
+
maxInputTokens: 128_000,
|
|
4819
|
+
maxOutputTokens: 16_384,
|
|
4820
|
+
},
|
|
4821
|
+
config: {
|
|
4822
|
+
temperature: 1,
|
|
4823
|
+
},
|
|
4824
|
+
pricing: {
|
|
4825
|
+
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
4826
|
+
getPriceForTextOutput: (tokens) => 1.8 * tokens / 1_000_000,
|
|
4827
|
+
getPriceForAudioInput: () => 0,
|
|
4828
|
+
getPriceForAudioOutput: () => 0,
|
|
4829
|
+
currency: 'USD',
|
|
4830
|
+
},
|
|
4831
|
+
capabilities: {
|
|
4832
|
+
vision: true,
|
|
4833
|
+
tools: true,
|
|
4834
|
+
reasoning: true,
|
|
4835
|
+
webSearch: false,
|
|
4836
|
+
jsonOutput: true,
|
|
4837
|
+
structuredOutputs: false,
|
|
4838
|
+
},
|
|
4839
|
+
},
|
|
4840
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIR_EMBERCLOUD]: {
|
|
4841
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIR_EMBERCLOUD,
|
|
4842
|
+
limits: {
|
|
4843
|
+
maxInputTokens: 128_000,
|
|
4844
|
+
maxOutputTokens: 16_384,
|
|
4845
|
+
},
|
|
4846
|
+
config: {
|
|
4847
|
+
temperature: 0.2,
|
|
4848
|
+
},
|
|
4849
|
+
pricing: {
|
|
4850
|
+
getPriceForTextInput: (tokens) => 0.13 * tokens / 1_000_000,
|
|
4851
|
+
getPriceForTextOutput: (tokens) => 0.85 * tokens / 1_000_000,
|
|
4852
|
+
getPriceForAudioInput: () => 0,
|
|
4853
|
+
getPriceForAudioOutput: () => 0,
|
|
4854
|
+
currency: 'USD',
|
|
4855
|
+
},
|
|
4856
|
+
capabilities: {
|
|
4857
|
+
vision: false,
|
|
4858
|
+
tools: true,
|
|
4859
|
+
reasoning: false,
|
|
4860
|
+
webSearch: false,
|
|
4861
|
+
jsonOutput: true,
|
|
4862
|
+
structuredOutputs: false,
|
|
4863
|
+
},
|
|
4864
|
+
},
|
|
4865
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIR_ZAI]: {
|
|
4866
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIR_ZAI,
|
|
4867
|
+
limits: {
|
|
4868
|
+
maxInputTokens: 128_000,
|
|
4869
|
+
maxOutputTokens: 16_384,
|
|
4870
|
+
},
|
|
4871
|
+
config: {
|
|
4872
|
+
temperature: 0.2,
|
|
4873
|
+
},
|
|
4874
|
+
pricing: {
|
|
4875
|
+
getPriceForTextInput: (tokens) => 0.2 * tokens / 1_000_000,
|
|
4876
|
+
getPriceForTextOutput: (tokens) => 1.1 * tokens / 1_000_000,
|
|
4877
|
+
getPriceForAudioInput: () => 0,
|
|
4878
|
+
getPriceForAudioOutput: () => 0,
|
|
4879
|
+
currency: 'USD',
|
|
4880
|
+
},
|
|
4881
|
+
capabilities: {
|
|
4882
|
+
vision: false,
|
|
4883
|
+
tools: true,
|
|
4884
|
+
reasoning: false,
|
|
4885
|
+
webSearch: false,
|
|
4886
|
+
jsonOutput: true,
|
|
4887
|
+
structuredOutputs: false,
|
|
4888
|
+
},
|
|
4889
|
+
},
|
|
4890
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_EMBERCLOUD]: {
|
|
4891
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_EMBERCLOUD,
|
|
4892
|
+
limits: {
|
|
4893
|
+
maxInputTokens: 128_000,
|
|
4894
|
+
maxOutputTokens: 16_384,
|
|
4895
|
+
},
|
|
4896
|
+
config: {
|
|
4897
|
+
temperature: 1,
|
|
4898
|
+
},
|
|
4899
|
+
pricing: {
|
|
4900
|
+
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
4901
|
+
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
4902
|
+
getPriceForAudioInput: () => 0,
|
|
4903
|
+
getPriceForAudioOutput: () => 0,
|
|
4904
|
+
currency: 'USD',
|
|
4905
|
+
},
|
|
4906
|
+
capabilities: {
|
|
4907
|
+
vision: false,
|
|
4908
|
+
tools: true,
|
|
4909
|
+
reasoning: true,
|
|
4910
|
+
webSearch: false,
|
|
4911
|
+
jsonOutput: true,
|
|
4912
|
+
structuredOutputs: false,
|
|
4913
|
+
},
|
|
4914
|
+
},
|
|
4915
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_ZAI]: {
|
|
4916
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_ZAI,
|
|
4917
|
+
limits: {
|
|
4918
|
+
maxInputTokens: 128_000,
|
|
4919
|
+
maxOutputTokens: 16_384,
|
|
4920
|
+
},
|
|
4921
|
+
config: {
|
|
4922
|
+
temperature: 1,
|
|
4923
|
+
},
|
|
4924
|
+
pricing: {
|
|
4925
|
+
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
4926
|
+
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
4927
|
+
getPriceForAudioInput: () => 0,
|
|
4928
|
+
getPriceForAudioOutput: () => 0,
|
|
4929
|
+
currency: 'USD',
|
|
4930
|
+
},
|
|
4931
|
+
capabilities: {
|
|
4932
|
+
vision: false,
|
|
4933
|
+
tools: true,
|
|
4934
|
+
reasoning: true,
|
|
4935
|
+
webSearch: false,
|
|
4936
|
+
jsonOutput: true,
|
|
4937
|
+
structuredOutputs: false,
|
|
4938
|
+
},
|
|
4939
|
+
},
|
|
4940
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_NOVITA]: {
|
|
4941
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_NOVITA,
|
|
4942
|
+
limits: {
|
|
4943
|
+
maxInputTokens: 131_072,
|
|
4944
|
+
maxOutputTokens: 16_384,
|
|
4945
|
+
},
|
|
4946
|
+
config: {
|
|
4947
|
+
temperature: 1,
|
|
4948
|
+
},
|
|
4949
|
+
pricing: {
|
|
4950
|
+
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
4951
|
+
getPriceForTextOutput: (tokens) => 0.9 * tokens / 1_000_000,
|
|
4952
|
+
getPriceForAudioInput: () => 0,
|
|
4953
|
+
getPriceForAudioOutput: () => 0,
|
|
4954
|
+
currency: 'USD',
|
|
4955
|
+
},
|
|
4956
|
+
capabilities: {
|
|
4957
|
+
vision: true,
|
|
4958
|
+
tools: true,
|
|
4959
|
+
reasoning: true,
|
|
4960
|
+
webSearch: false,
|
|
4961
|
+
jsonOutput: true,
|
|
4962
|
+
structuredOutputs: false,
|
|
4963
|
+
},
|
|
4964
|
+
},
|
|
4965
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_ZAI]: {
|
|
4966
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_ZAI,
|
|
4967
|
+
limits: {
|
|
4968
|
+
maxInputTokens: 131_072,
|
|
4969
|
+
maxOutputTokens: 16_384,
|
|
4970
|
+
},
|
|
4971
|
+
config: {
|
|
4972
|
+
temperature: 1,
|
|
4973
|
+
},
|
|
4974
|
+
pricing: {
|
|
4975
|
+
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
4976
|
+
getPriceForTextOutput: (tokens) => 0.9 * tokens / 1_000_000,
|
|
4977
|
+
getPriceForAudioInput: () => 0,
|
|
4978
|
+
getPriceForAudioOutput: () => 0,
|
|
4979
|
+
currency: 'USD',
|
|
4980
|
+
},
|
|
4981
|
+
capabilities: {
|
|
4982
|
+
vision: true,
|
|
4983
|
+
tools: true,
|
|
4984
|
+
reasoning: true,
|
|
4985
|
+
webSearch: false,
|
|
4986
|
+
jsonOutput: true,
|
|
4987
|
+
structuredOutputs: false,
|
|
4988
|
+
},
|
|
4989
|
+
},
|
|
4990
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6_NOVITA]: {
|
|
4991
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6_NOVITA,
|
|
4992
|
+
limits: {
|
|
4993
|
+
maxInputTokens: 204_800,
|
|
4994
|
+
maxOutputTokens: 128_000,
|
|
4995
|
+
},
|
|
4996
|
+
config: {
|
|
4997
|
+
temperature: 1,
|
|
4998
|
+
},
|
|
4999
|
+
pricing: {
|
|
5000
|
+
getPriceForTextInput: (tokens) => 0.55 * tokens / 1_000_000,
|
|
5001
|
+
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
5002
|
+
getPriceForAudioInput: () => 0,
|
|
5003
|
+
getPriceForAudioOutput: () => 0,
|
|
5004
|
+
currency: 'USD',
|
|
5005
|
+
},
|
|
5006
|
+
capabilities: {
|
|
5007
|
+
vision: false,
|
|
5008
|
+
tools: true,
|
|
5009
|
+
reasoning: true,
|
|
5010
|
+
webSearch: false,
|
|
5011
|
+
jsonOutput: true,
|
|
5012
|
+
structuredOutputs: false,
|
|
5013
|
+
},
|
|
5014
|
+
},
|
|
5015
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6_ZAI]: {
|
|
5016
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6_ZAI,
|
|
5017
|
+
limits: {
|
|
5018
|
+
maxInputTokens: 204_800,
|
|
5019
|
+
maxOutputTokens: 128_000,
|
|
5020
|
+
},
|
|
5021
|
+
config: {
|
|
5022
|
+
temperature: 1,
|
|
5023
|
+
},
|
|
5024
|
+
pricing: {
|
|
5025
|
+
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
5026
|
+
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
5027
|
+
getPriceForAudioInput: () => 0,
|
|
5028
|
+
getPriceForAudioOutput: () => 0,
|
|
5029
|
+
currency: 'USD',
|
|
5030
|
+
},
|
|
5031
|
+
capabilities: {
|
|
5032
|
+
vision: false,
|
|
5033
|
+
tools: true,
|
|
5034
|
+
reasoning: true,
|
|
5035
|
+
webSearch: false,
|
|
5036
|
+
jsonOutput: true,
|
|
5037
|
+
structuredOutputs: false,
|
|
5038
|
+
},
|
|
5039
|
+
},
|
|
5040
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_CANOPYWAVE]: {
|
|
5041
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_CANOPYWAVE,
|
|
5042
|
+
limits: {
|
|
5043
|
+
maxInputTokens: 204_800,
|
|
5044
|
+
maxOutputTokens: 128_000,
|
|
5045
|
+
},
|
|
5046
|
+
config: {
|
|
5047
|
+
temperature: 1,
|
|
5048
|
+
},
|
|
5049
|
+
pricing: {
|
|
5050
|
+
getPriceForTextInput: (tokens) => 0.43 * tokens / 1_000_000,
|
|
5051
|
+
getPriceForTextOutput: (tokens) => 1.75 * tokens / 1_000_000,
|
|
5052
|
+
getPriceForAudioInput: () => 0,
|
|
5053
|
+
getPriceForAudioOutput: () => 0,
|
|
5054
|
+
currency: 'USD',
|
|
5055
|
+
},
|
|
5056
|
+
capabilities: {
|
|
5057
|
+
vision: false,
|
|
5058
|
+
tools: true,
|
|
5059
|
+
reasoning: true,
|
|
5060
|
+
webSearch: false,
|
|
5061
|
+
jsonOutput: true,
|
|
5062
|
+
structuredOutputs: false,
|
|
5063
|
+
},
|
|
5064
|
+
},
|
|
5065
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_EMBERCLOUD]: {
|
|
5066
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_EMBERCLOUD,
|
|
5067
|
+
limits: {
|
|
5068
|
+
maxInputTokens: 204_800,
|
|
5069
|
+
maxOutputTokens: 128_000,
|
|
5070
|
+
},
|
|
5071
|
+
config: {
|
|
5072
|
+
temperature: 1,
|
|
5073
|
+
},
|
|
5074
|
+
pricing: {
|
|
5075
|
+
getPriceForTextInput: (tokens) => 0.38 * tokens / 1_000_000,
|
|
5076
|
+
getPriceForTextOutput: (tokens) => 1.98 * tokens / 1_000_000,
|
|
5077
|
+
getPriceForAudioInput: () => 0,
|
|
5078
|
+
getPriceForAudioOutput: () => 0,
|
|
5079
|
+
currency: 'USD',
|
|
5080
|
+
},
|
|
5081
|
+
capabilities: {
|
|
5082
|
+
vision: false,
|
|
5083
|
+
tools: true,
|
|
5084
|
+
reasoning: true,
|
|
5085
|
+
webSearch: false,
|
|
5086
|
+
jsonOutput: true,
|
|
5087
|
+
structuredOutputs: false,
|
|
5088
|
+
},
|
|
5089
|
+
},
|
|
5090
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASH_EMBERCLOUD]: {
|
|
5091
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASH_EMBERCLOUD,
|
|
5092
|
+
limits: {
|
|
5093
|
+
maxInputTokens: 200_000,
|
|
5094
|
+
maxOutputTokens: 128_000,
|
|
5095
|
+
},
|
|
5096
|
+
config: {
|
|
5097
|
+
temperature: 1,
|
|
5098
|
+
},
|
|
5099
|
+
pricing: {
|
|
5100
|
+
getPriceForTextInput: (tokens) => 0.06 * tokens / 1_000_000,
|
|
5101
|
+
getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000,
|
|
5102
|
+
getPriceForAudioInput: () => 0,
|
|
5103
|
+
getPriceForAudioOutput: () => 0,
|
|
5104
|
+
currency: 'USD',
|
|
5105
|
+
},
|
|
5106
|
+
capabilities: {
|
|
5107
|
+
vision: false,
|
|
5108
|
+
tools: true,
|
|
5109
|
+
reasoning: true,
|
|
5110
|
+
webSearch: false,
|
|
5111
|
+
jsonOutput: true,
|
|
5112
|
+
structuredOutputs: false,
|
|
5113
|
+
},
|
|
5114
|
+
},
|
|
5115
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASH_ZAI]: {
|
|
5116
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASH_ZAI,
|
|
5117
|
+
limits: {
|
|
5118
|
+
maxInputTokens: 200_000,
|
|
5119
|
+
maxOutputTokens: 128_000,
|
|
5120
|
+
},
|
|
5121
|
+
config: {
|
|
5122
|
+
temperature: 1,
|
|
5123
|
+
},
|
|
5124
|
+
pricing: {
|
|
5125
|
+
getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000,
|
|
5126
|
+
getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000,
|
|
5127
|
+
getPriceForAudioInput: () => 0,
|
|
5128
|
+
getPriceForAudioOutput: () => 0,
|
|
5129
|
+
currency: 'USD',
|
|
5130
|
+
},
|
|
5131
|
+
capabilities: {
|
|
5132
|
+
vision: false,
|
|
5133
|
+
tools: true,
|
|
5134
|
+
reasoning: true,
|
|
5135
|
+
webSearch: false,
|
|
5136
|
+
jsonOutput: true,
|
|
5137
|
+
structuredOutputs: false,
|
|
5138
|
+
},
|
|
5139
|
+
},
|
|
5140
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_NOVITA]: {
|
|
5141
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_NOVITA,
|
|
5142
|
+
limits: {
|
|
5143
|
+
maxInputTokens: 204_800,
|
|
5144
|
+
maxOutputTokens: 128_000,
|
|
5145
|
+
},
|
|
5146
|
+
config: {
|
|
5147
|
+
temperature: 1,
|
|
5148
|
+
},
|
|
5149
|
+
pricing: {
|
|
5150
|
+
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
5151
|
+
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
5152
|
+
getPriceForAudioInput: () => 0,
|
|
5153
|
+
getPriceForAudioOutput: () => 0,
|
|
5154
|
+
currency: 'USD',
|
|
5155
|
+
},
|
|
5156
|
+
capabilities: {
|
|
5157
|
+
vision: false,
|
|
5158
|
+
tools: true,
|
|
5159
|
+
reasoning: true,
|
|
5160
|
+
webSearch: false,
|
|
5161
|
+
jsonOutput: true,
|
|
5162
|
+
structuredOutputs: false,
|
|
5163
|
+
},
|
|
5164
|
+
},
|
|
5165
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_ZAI]: {
|
|
5166
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_ZAI,
|
|
5167
|
+
limits: {
|
|
5168
|
+
maxInputTokens: 204_800,
|
|
5169
|
+
maxOutputTokens: 128_000,
|
|
5170
|
+
},
|
|
5171
|
+
config: {
|
|
5172
|
+
temperature: 1,
|
|
5173
|
+
},
|
|
5174
|
+
pricing: {
|
|
5175
|
+
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
5176
|
+
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
5177
|
+
getPriceForAudioInput: () => 0,
|
|
5178
|
+
getPriceForAudioOutput: () => 0,
|
|
5179
|
+
currency: 'USD',
|
|
5180
|
+
},
|
|
5181
|
+
capabilities: {
|
|
5182
|
+
vision: false,
|
|
5183
|
+
tools: true,
|
|
5184
|
+
reasoning: true,
|
|
5185
|
+
webSearch: false,
|
|
5186
|
+
jsonOutput: true,
|
|
5187
|
+
structuredOutputs: false,
|
|
5188
|
+
},
|
|
5189
|
+
},
|
|
5190
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_CANOPYWAVE]: {
|
|
5191
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_CANOPYWAVE,
|
|
5192
|
+
limits: {
|
|
5193
|
+
maxInputTokens: 202_800,
|
|
5194
|
+
maxOutputTokens: 128_000,
|
|
5195
|
+
},
|
|
5196
|
+
config: {
|
|
5197
|
+
temperature: 1,
|
|
5198
|
+
},
|
|
5199
|
+
pricing: {
|
|
5200
|
+
getPriceForTextInput: (tokens) => 0.9 * tokens / 1_000_000,
|
|
5201
|
+
getPriceForTextOutput: (tokens) => 3.1 * tokens / 1_000_000,
|
|
5202
|
+
getPriceForAudioInput: () => 0,
|
|
5203
|
+
getPriceForAudioOutput: () => 0,
|
|
5204
|
+
currency: 'USD',
|
|
5205
|
+
},
|
|
5206
|
+
capabilities: {
|
|
5207
|
+
vision: false,
|
|
5208
|
+
tools: true,
|
|
5209
|
+
reasoning: true,
|
|
5210
|
+
webSearch: false,
|
|
5211
|
+
jsonOutput: true,
|
|
5212
|
+
structuredOutputs: false,
|
|
5213
|
+
},
|
|
5214
|
+
},
|
|
5215
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_EMBERCLOUD]: {
|
|
5216
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_EMBERCLOUD,
|
|
5217
|
+
limits: {
|
|
5218
|
+
maxInputTokens: 202_800,
|
|
5219
|
+
maxOutputTokens: 128_000,
|
|
5220
|
+
},
|
|
5221
|
+
config: {
|
|
5222
|
+
temperature: 1,
|
|
5223
|
+
},
|
|
5224
|
+
pricing: {
|
|
5225
|
+
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
5226
|
+
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
5227
|
+
getPriceForAudioInput: () => 0,
|
|
5228
|
+
getPriceForAudioOutput: () => 0,
|
|
5229
|
+
currency: 'USD',
|
|
5230
|
+
},
|
|
5231
|
+
capabilities: {
|
|
5232
|
+
vision: false,
|
|
5233
|
+
tools: true,
|
|
5234
|
+
reasoning: true,
|
|
5235
|
+
webSearch: false,
|
|
5236
|
+
jsonOutput: true,
|
|
5237
|
+
structuredOutputs: false,
|
|
5238
|
+
},
|
|
5239
|
+
},
|
|
5240
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_NOVITA]: {
|
|
5241
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_NOVITA,
|
|
5242
|
+
limits: {
|
|
5243
|
+
maxInputTokens: 202_800,
|
|
5244
|
+
maxOutputTokens: 128_000,
|
|
5245
|
+
},
|
|
5246
|
+
config: {
|
|
5247
|
+
temperature: 1,
|
|
5248
|
+
},
|
|
5249
|
+
pricing: {
|
|
5250
|
+
getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000,
|
|
5251
|
+
getPriceForTextOutput: (tokens) => 3.2 * tokens / 1_000_000,
|
|
5252
|
+
getPriceForAudioInput: () => 0,
|
|
5253
|
+
getPriceForAudioOutput: () => 0,
|
|
5254
|
+
currency: 'USD',
|
|
5255
|
+
},
|
|
5256
|
+
capabilities: {
|
|
5257
|
+
vision: false,
|
|
5258
|
+
tools: true,
|
|
5259
|
+
reasoning: true,
|
|
5260
|
+
webSearch: false,
|
|
5261
|
+
jsonOutput: true,
|
|
5262
|
+
structuredOutputs: false,
|
|
5263
|
+
},
|
|
5264
|
+
},
|
|
5265
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_ZAI]: {
|
|
5266
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_ZAI,
|
|
5267
|
+
limits: {
|
|
5268
|
+
maxInputTokens: 202_800,
|
|
5269
|
+
maxOutputTokens: 128_000,
|
|
5270
|
+
},
|
|
5271
|
+
config: {
|
|
5272
|
+
temperature: 1,
|
|
5273
|
+
},
|
|
5274
|
+
pricing: {
|
|
5275
|
+
getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000,
|
|
5276
|
+
getPriceForTextOutput: (tokens) => 3.2 * tokens / 1_000_000,
|
|
5277
|
+
getPriceForAudioInput: () => 0,
|
|
5278
|
+
getPriceForAudioOutput: () => 0,
|
|
5279
|
+
currency: 'USD',
|
|
5280
|
+
},
|
|
5281
|
+
capabilities: {
|
|
5282
|
+
vision: false,
|
|
5283
|
+
tools: true,
|
|
5284
|
+
reasoning: true,
|
|
5285
|
+
webSearch: false,
|
|
5286
|
+
jsonOutput: true,
|
|
5287
|
+
structuredOutputs: false,
|
|
5288
|
+
},
|
|
5289
|
+
},
|
|
5290
|
+
// ─── OpenAI explicit provider variants ────────────────────────
|
|
5291
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_OPENAI]: {
|
|
5292
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_OPENAI,
|
|
5293
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
5294
|
+
config: { temperature: 1, reasoning_effort: 'minimal', verbosity: 'medium' },
|
|
5295
|
+
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5296
|
+
capabilities: {
|
|
5297
|
+
vision: true,
|
|
5298
|
+
tools: true,
|
|
5299
|
+
reasoning: true,
|
|
5300
|
+
webSearch: true,
|
|
5301
|
+
jsonOutput: true,
|
|
5302
|
+
structuredOutputs: true,
|
|
5303
|
+
},
|
|
5304
|
+
},
|
|
5305
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_AZURE]: {
|
|
5306
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_AZURE,
|
|
5307
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
5308
|
+
config: { temperature: 1, reasoning_effort: 'minimal', verbosity: 'medium' },
|
|
5309
|
+
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5310
|
+
capabilities: {
|
|
5311
|
+
vision: true,
|
|
5312
|
+
tools: true,
|
|
5313
|
+
reasoning: true,
|
|
5314
|
+
webSearch: true,
|
|
5315
|
+
jsonOutput: true,
|
|
5316
|
+
structuredOutputs: true,
|
|
5317
|
+
},
|
|
5318
|
+
},
|
|
5319
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI_OPENAI]: {
|
|
5320
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI_OPENAI,
|
|
5321
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
5322
|
+
config: { temperature: 1, reasoning_effort: 'minimal', verbosity: 'medium' },
|
|
5323
|
+
pricing: { getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5324
|
+
capabilities: {
|
|
5325
|
+
vision: true,
|
|
5326
|
+
tools: true,
|
|
5327
|
+
reasoning: true,
|
|
5328
|
+
webSearch: true,
|
|
5329
|
+
jsonOutput: true,
|
|
5330
|
+
structuredOutputs: true,
|
|
5331
|
+
},
|
|
5332
|
+
},
|
|
5333
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI_AZURE]: {
|
|
5334
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI_AZURE,
|
|
5335
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
5336
|
+
config: { temperature: 1, reasoning_effort: 'minimal', verbosity: 'medium' },
|
|
5337
|
+
pricing: { getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5338
|
+
capabilities: {
|
|
5339
|
+
vision: true,
|
|
5340
|
+
tools: true,
|
|
5341
|
+
reasoning: true,
|
|
5342
|
+
webSearch: true,
|
|
5343
|
+
jsonOutput: true,
|
|
5344
|
+
structuredOutputs: true,
|
|
5345
|
+
},
|
|
5346
|
+
},
|
|
5347
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO_OPENAI]: {
|
|
5348
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO_OPENAI,
|
|
5349
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
5350
|
+
config: { temperature: 1, reasoning_effort: 'minimal', verbosity: 'medium' },
|
|
5351
|
+
pricing: { getPriceForTextInput: (tokens) => 0.05 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5352
|
+
capabilities: {
|
|
5353
|
+
vision: false,
|
|
5354
|
+
tools: true,
|
|
5355
|
+
reasoning: true,
|
|
5356
|
+
webSearch: true,
|
|
5357
|
+
jsonOutput: true,
|
|
5358
|
+
structuredOutputs: true,
|
|
5359
|
+
},
|
|
5360
|
+
},
|
|
5361
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO_AZURE]: {
|
|
5362
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO_AZURE,
|
|
5363
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
5364
|
+
config: { temperature: 1, reasoning_effort: 'minimal', verbosity: 'medium' },
|
|
5365
|
+
pricing: { getPriceForTextInput: (tokens) => 0.05 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5366
|
+
capabilities: {
|
|
5367
|
+
vision: false,
|
|
5368
|
+
tools: true,
|
|
5369
|
+
reasoning: true,
|
|
5370
|
+
webSearch: true,
|
|
5371
|
+
jsonOutput: true,
|
|
5372
|
+
structuredOutputs: true,
|
|
5373
|
+
},
|
|
5374
|
+
},
|
|
5375
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO_OPENAI]: {
|
|
5376
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO_OPENAI,
|
|
5377
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
5378
|
+
config: { temperature: 1 },
|
|
5379
|
+
pricing: { getPriceForTextInput: (tokens) => 15 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 120 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5380
|
+
capabilities: {
|
|
5381
|
+
vision: true,
|
|
5382
|
+
tools: true,
|
|
5383
|
+
reasoning: true,
|
|
5384
|
+
webSearch: true,
|
|
5385
|
+
jsonOutput: true,
|
|
5386
|
+
structuredOutputs: true,
|
|
5387
|
+
},
|
|
5388
|
+
},
|
|
5389
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO_AZURE]: {
|
|
5390
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO_AZURE,
|
|
5391
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
5392
|
+
config: { temperature: 1 },
|
|
2612
5393
|
pricing: { getPriceForTextInput: (tokens) => 15 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 120 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2613
|
-
capabilities: {
|
|
5394
|
+
capabilities: {
|
|
5395
|
+
vision: true,
|
|
5396
|
+
tools: true,
|
|
5397
|
+
reasoning: true,
|
|
5398
|
+
webSearch: true,
|
|
5399
|
+
jsonOutput: true,
|
|
5400
|
+
structuredOutputs: true,
|
|
5401
|
+
},
|
|
2614
5402
|
},
|
|
2615
5403
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_OPENAI]: {
|
|
2616
5404
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_OPENAI,
|
|
2617
5405
|
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2618
|
-
config: { temperature: 1 },
|
|
5406
|
+
config: { temperature: 1, reasoning_effort: 'none', verbosity: 'medium' },
|
|
2619
5407
|
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2620
|
-
capabilities: {
|
|
5408
|
+
capabilities: {
|
|
5409
|
+
vision: true,
|
|
5410
|
+
tools: true,
|
|
5411
|
+
reasoning: true,
|
|
5412
|
+
webSearch: true,
|
|
5413
|
+
jsonOutput: true,
|
|
5414
|
+
structuredOutputs: true,
|
|
5415
|
+
},
|
|
2621
5416
|
},
|
|
2622
5417
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_AZURE]: {
|
|
2623
5418
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_AZURE,
|
|
2624
5419
|
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2625
|
-
config: { temperature: 1 },
|
|
5420
|
+
config: { temperature: 1, reasoning_effort: 'none', verbosity: 'medium' },
|
|
2626
5421
|
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2627
|
-
capabilities: {
|
|
5422
|
+
capabilities: {
|
|
5423
|
+
vision: true,
|
|
5424
|
+
tools: true,
|
|
5425
|
+
reasoning: true,
|
|
5426
|
+
webSearch: true,
|
|
5427
|
+
jsonOutput: true,
|
|
5428
|
+
structuredOutputs: true,
|
|
5429
|
+
},
|
|
2628
5430
|
},
|
|
2629
5431
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_OPENAI]: {
|
|
2630
5432
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_OPENAI,
|
|
2631
5433
|
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2632
5434
|
config: { temperature: 1 },
|
|
2633
5435
|
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2634
|
-
capabilities: {
|
|
5436
|
+
capabilities: {
|
|
5437
|
+
vision: true,
|
|
5438
|
+
tools: true,
|
|
5439
|
+
reasoning: true,
|
|
5440
|
+
webSearch: true,
|
|
5441
|
+
jsonOutput: true,
|
|
5442
|
+
structuredOutputs: true,
|
|
5443
|
+
},
|
|
2635
5444
|
},
|
|
2636
5445
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_AZURE]: {
|
|
2637
5446
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_AZURE,
|
|
2638
5447
|
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2639
5448
|
config: { temperature: 1 },
|
|
2640
5449
|
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2641
|
-
capabilities: {
|
|
5450
|
+
capabilities: {
|
|
5451
|
+
vision: true,
|
|
5452
|
+
tools: true,
|
|
5453
|
+
reasoning: true,
|
|
5454
|
+
webSearch: true,
|
|
5455
|
+
jsonOutput: true,
|
|
5456
|
+
structuredOutputs: true,
|
|
5457
|
+
},
|
|
2642
5458
|
},
|
|
2643
5459
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI_OPENAI]: {
|
|
2644
5460
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI_OPENAI,
|
|
2645
5461
|
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2646
5462
|
config: { temperature: 1 },
|
|
2647
5463
|
pricing: { getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2648
|
-
capabilities: {
|
|
5464
|
+
capabilities: {
|
|
5465
|
+
vision: true,
|
|
5466
|
+
tools: true,
|
|
5467
|
+
reasoning: true,
|
|
5468
|
+
webSearch: true,
|
|
5469
|
+
jsonOutput: true,
|
|
5470
|
+
structuredOutputs: true,
|
|
5471
|
+
},
|
|
2649
5472
|
},
|
|
2650
5473
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI_AZURE]: {
|
|
2651
5474
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI_AZURE,
|
|
2652
5475
|
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2653
5476
|
config: { temperature: 1 },
|
|
2654
5477
|
pricing: { getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2655
|
-
capabilities: {
|
|
5478
|
+
capabilities: {
|
|
5479
|
+
vision: true,
|
|
5480
|
+
tools: true,
|
|
5481
|
+
reasoning: true,
|
|
5482
|
+
webSearch: true,
|
|
5483
|
+
jsonOutput: true,
|
|
5484
|
+
structuredOutputs: true,
|
|
5485
|
+
},
|
|
2656
5486
|
},
|
|
2657
5487
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_OPENAI]: {
|
|
2658
5488
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_OPENAI,
|
|
2659
5489
|
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2660
|
-
config: { temperature: 1 },
|
|
5490
|
+
config: { temperature: 1, reasoning_effort: 'none', verbosity: 'medium' },
|
|
2661
5491
|
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2662
|
-
capabilities: {
|
|
5492
|
+
capabilities: {
|
|
5493
|
+
vision: true,
|
|
5494
|
+
tools: true,
|
|
5495
|
+
reasoning: true,
|
|
5496
|
+
webSearch: true,
|
|
5497
|
+
jsonOutput: true,
|
|
5498
|
+
structuredOutputs: true,
|
|
5499
|
+
},
|
|
2663
5500
|
},
|
|
2664
5501
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_AZURE]: {
|
|
2665
5502
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_AZURE,
|
|
2666
5503
|
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2667
|
-
config: { temperature: 1 },
|
|
5504
|
+
config: { temperature: 1, reasoning_effort: 'none', verbosity: 'medium' },
|
|
2668
5505
|
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2669
|
-
capabilities: {
|
|
5506
|
+
capabilities: {
|
|
5507
|
+
vision: true,
|
|
5508
|
+
tools: true,
|
|
5509
|
+
reasoning: true,
|
|
5510
|
+
webSearch: true,
|
|
5511
|
+
jsonOutput: true,
|
|
5512
|
+
structuredOutputs: true,
|
|
5513
|
+
},
|
|
2670
5514
|
},
|
|
2671
5515
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX_OPENAI]: {
|
|
2672
5516
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX_OPENAI,
|
|
2673
5517
|
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2674
5518
|
config: { temperature: 1 },
|
|
2675
5519
|
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2676
|
-
capabilities: {
|
|
5520
|
+
capabilities: {
|
|
5521
|
+
vision: true,
|
|
5522
|
+
tools: true,
|
|
5523
|
+
reasoning: true,
|
|
5524
|
+
webSearch: true,
|
|
5525
|
+
jsonOutput: true,
|
|
5526
|
+
structuredOutputs: true,
|
|
5527
|
+
},
|
|
2677
5528
|
},
|
|
2678
5529
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX_AZURE]: {
|
|
2679
5530
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX_AZURE,
|
|
2680
5531
|
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2681
5532
|
config: { temperature: 1 },
|
|
2682
5533
|
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2683
|
-
capabilities: {
|
|
5534
|
+
capabilities: {
|
|
5535
|
+
vision: true,
|
|
5536
|
+
tools: true,
|
|
5537
|
+
reasoning: true,
|
|
5538
|
+
webSearch: true,
|
|
5539
|
+
jsonOutput: true,
|
|
5540
|
+
structuredOutputs: true,
|
|
5541
|
+
},
|
|
2684
5542
|
},
|
|
2685
5543
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX_OPENAI]: {
|
|
2686
5544
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX_OPENAI,
|
|
2687
5545
|
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2688
5546
|
config: { temperature: 1 },
|
|
2689
5547
|
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2690
|
-
capabilities: {
|
|
5548
|
+
capabilities: {
|
|
5549
|
+
vision: true,
|
|
5550
|
+
tools: true,
|
|
5551
|
+
reasoning: true,
|
|
5552
|
+
webSearch: true,
|
|
5553
|
+
jsonOutput: true,
|
|
5554
|
+
structuredOutputs: true,
|
|
5555
|
+
},
|
|
2691
5556
|
},
|
|
2692
5557
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX_AZURE]: {
|
|
2693
5558
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX_AZURE,
|
|
2694
5559
|
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2695
5560
|
config: { temperature: 1 },
|
|
2696
5561
|
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2697
|
-
capabilities: {
|
|
5562
|
+
capabilities: {
|
|
5563
|
+
vision: true,
|
|
5564
|
+
tools: true,
|
|
5565
|
+
reasoning: true,
|
|
5566
|
+
webSearch: true,
|
|
5567
|
+
jsonOutput: true,
|
|
5568
|
+
structuredOutputs: true,
|
|
5569
|
+
},
|
|
2698
5570
|
},
|
|
2699
5571
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_OPENAI]: {
|
|
2700
5572
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_OPENAI,
|
|
2701
5573
|
limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
|
|
2702
|
-
config: { temperature: 1 },
|
|
5574
|
+
config: { temperature: 1, reasoning_effort: 'none', verbosity: 'medium' },
|
|
2703
5575
|
pricing: { getPriceForTextInput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2704
|
-
capabilities: {
|
|
5576
|
+
capabilities: {
|
|
5577
|
+
vision: true,
|
|
5578
|
+
tools: true,
|
|
5579
|
+
reasoning: true,
|
|
5580
|
+
webSearch: true,
|
|
5581
|
+
jsonOutput: true,
|
|
5582
|
+
structuredOutputs: true,
|
|
5583
|
+
},
|
|
2705
5584
|
},
|
|
2706
5585
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_AZURE]: {
|
|
2707
5586
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_AZURE,
|
|
2708
5587
|
limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
|
|
2709
|
-
config: { temperature: 1 },
|
|
5588
|
+
config: { temperature: 1, reasoning_effort: 'none', verbosity: 'medium' },
|
|
2710
5589
|
pricing: { getPriceForTextInput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2711
|
-
capabilities: {
|
|
5590
|
+
capabilities: {
|
|
5591
|
+
vision: true,
|
|
5592
|
+
tools: true,
|
|
5593
|
+
reasoning: true,
|
|
5594
|
+
webSearch: true,
|
|
5595
|
+
jsonOutput: true,
|
|
5596
|
+
structuredOutputs: true,
|
|
5597
|
+
},
|
|
2712
5598
|
},
|
|
2713
5599
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO_OPENAI]: {
|
|
2714
5600
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO_OPENAI,
|
|
2715
5601
|
limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
|
|
2716
5602
|
config: { temperature: 1 },
|
|
2717
5603
|
pricing: { getPriceForTextInput: (tokens) => 30 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 180 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2718
|
-
capabilities: {
|
|
5604
|
+
capabilities: {
|
|
5605
|
+
vision: true,
|
|
5606
|
+
tools: true,
|
|
5607
|
+
reasoning: true,
|
|
5608
|
+
webSearch: true,
|
|
5609
|
+
jsonOutput: true,
|
|
5610
|
+
structuredOutputs: true,
|
|
5611
|
+
},
|
|
2719
5612
|
},
|
|
2720
5613
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO_AZURE]: {
|
|
2721
5614
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO_AZURE,
|
|
2722
5615
|
limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
|
|
2723
5616
|
config: { temperature: 1 },
|
|
2724
5617
|
pricing: { getPriceForTextInput: (tokens) => 30 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 180 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2725
|
-
capabilities: {
|
|
5618
|
+
capabilities: {
|
|
5619
|
+
vision: true,
|
|
5620
|
+
tools: true,
|
|
5621
|
+
reasoning: true,
|
|
5622
|
+
webSearch: true,
|
|
5623
|
+
jsonOutput: true,
|
|
5624
|
+
structuredOutputs: true,
|
|
5625
|
+
},
|
|
2726
5626
|
},
|
|
2727
5627
|
// ─── Gemini explicit provider variants ────────────────────────
|
|
2728
5628
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_PRO_GOOGLE_AI_STUDIO]: {
|
|
@@ -2730,84 +5630,168 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2730
5630
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
2731
5631
|
config: { temperature: 0.2 },
|
|
2732
5632
|
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2733
|
-
capabilities: {
|
|
5633
|
+
capabilities: {
|
|
5634
|
+
vision: true,
|
|
5635
|
+
tools: true,
|
|
5636
|
+
reasoning: true,
|
|
5637
|
+
webSearch: true,
|
|
5638
|
+
jsonOutput: true,
|
|
5639
|
+
structuredOutputs: true,
|
|
5640
|
+
},
|
|
2734
5641
|
},
|
|
2735
5642
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_PRO_GOOGLE_VERTEX]: {
|
|
2736
5643
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_PRO_GOOGLE_VERTEX,
|
|
2737
5644
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
2738
5645
|
config: { temperature: 0.2 },
|
|
2739
5646
|
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2740
|
-
capabilities: {
|
|
5647
|
+
capabilities: {
|
|
5648
|
+
vision: true,
|
|
5649
|
+
tools: true,
|
|
5650
|
+
reasoning: true,
|
|
5651
|
+
webSearch: true,
|
|
5652
|
+
jsonOutput: true,
|
|
5653
|
+
structuredOutputs: true,
|
|
5654
|
+
},
|
|
2741
5655
|
},
|
|
2742
5656
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_GOOGLE_AI_STUDIO]: {
|
|
2743
5657
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_GOOGLE_AI_STUDIO,
|
|
2744
5658
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
2745
5659
|
config: { temperature: 0.2 },
|
|
2746
5660
|
pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2747
|
-
capabilities: {
|
|
5661
|
+
capabilities: {
|
|
5662
|
+
vision: true,
|
|
5663
|
+
tools: true,
|
|
5664
|
+
reasoning: true,
|
|
5665
|
+
webSearch: true,
|
|
5666
|
+
jsonOutput: true,
|
|
5667
|
+
structuredOutputs: true,
|
|
5668
|
+
},
|
|
2748
5669
|
},
|
|
2749
5670
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_GOOGLE_VERTEX]: {
|
|
2750
5671
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_GOOGLE_VERTEX,
|
|
2751
5672
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
2752
5673
|
config: { temperature: 0.2 },
|
|
2753
5674
|
pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2754
|
-
capabilities: {
|
|
5675
|
+
capabilities: {
|
|
5676
|
+
vision: true,
|
|
5677
|
+
tools: true,
|
|
5678
|
+
reasoning: true,
|
|
5679
|
+
webSearch: true,
|
|
5680
|
+
jsonOutput: true,
|
|
5681
|
+
structuredOutputs: true,
|
|
5682
|
+
},
|
|
2755
5683
|
},
|
|
2756
5684
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_GOOGLE_AI_STUDIO]: {
|
|
2757
5685
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_GOOGLE_AI_STUDIO,
|
|
2758
5686
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
2759
5687
|
config: { temperature: 0.2 },
|
|
2760
5688
|
pricing: { getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2761
|
-
capabilities: {
|
|
5689
|
+
capabilities: {
|
|
5690
|
+
vision: true,
|
|
5691
|
+
tools: true,
|
|
5692
|
+
reasoning: false,
|
|
5693
|
+
webSearch: false,
|
|
5694
|
+
jsonOutput: true,
|
|
5695
|
+
structuredOutputs: true,
|
|
5696
|
+
},
|
|
2762
5697
|
},
|
|
2763
5698
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_GOOGLE_VERTEX]: {
|
|
2764
5699
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_GOOGLE_VERTEX,
|
|
2765
5700
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
2766
5701
|
config: { temperature: 0.2 },
|
|
2767
5702
|
pricing: { getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2768
|
-
capabilities: {
|
|
5703
|
+
capabilities: {
|
|
5704
|
+
vision: true,
|
|
5705
|
+
tools: true,
|
|
5706
|
+
reasoning: false,
|
|
5707
|
+
webSearch: false,
|
|
5708
|
+
jsonOutput: true,
|
|
5709
|
+
structuredOutputs: true,
|
|
5710
|
+
},
|
|
2769
5711
|
},
|
|
2770
5712
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW_GOOGLE_AI_STUDIO]: {
|
|
2771
5713
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW_GOOGLE_AI_STUDIO,
|
|
2772
5714
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
2773
5715
|
config: { temperature: 0.2 },
|
|
2774
5716
|
pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 12 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2775
|
-
capabilities: {
|
|
5717
|
+
capabilities: {
|
|
5718
|
+
vision: true,
|
|
5719
|
+
tools: true,
|
|
5720
|
+
reasoning: true,
|
|
5721
|
+
webSearch: true,
|
|
5722
|
+
jsonOutput: true,
|
|
5723
|
+
structuredOutputs: true,
|
|
5724
|
+
},
|
|
2776
5725
|
},
|
|
2777
5726
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW_GOOGLE_VERTEX]: {
|
|
2778
5727
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW_GOOGLE_VERTEX,
|
|
2779
5728
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
2780
5729
|
config: { temperature: 0.2 },
|
|
2781
5730
|
pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 12 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2782
|
-
capabilities: {
|
|
5731
|
+
capabilities: {
|
|
5732
|
+
vision: true,
|
|
5733
|
+
tools: true,
|
|
5734
|
+
reasoning: true,
|
|
5735
|
+
webSearch: true,
|
|
5736
|
+
jsonOutput: true,
|
|
5737
|
+
structuredOutputs: true,
|
|
5738
|
+
},
|
|
2783
5739
|
},
|
|
2784
5740
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW_GOOGLE_AI_STUDIO]: {
|
|
2785
5741
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW_GOOGLE_AI_STUDIO,
|
|
2786
5742
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
2787
5743
|
config: { temperature: 0.2 },
|
|
2788
5744
|
pricing: { getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2789
|
-
capabilities: {
|
|
5745
|
+
capabilities: {
|
|
5746
|
+
vision: true,
|
|
5747
|
+
tools: true,
|
|
5748
|
+
reasoning: true,
|
|
5749
|
+
webSearch: true,
|
|
5750
|
+
jsonOutput: true,
|
|
5751
|
+
structuredOutputs: true,
|
|
5752
|
+
},
|
|
2790
5753
|
},
|
|
2791
5754
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW_GOOGLE_VERTEX]: {
|
|
2792
5755
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW_GOOGLE_VERTEX,
|
|
2793
5756
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
2794
5757
|
config: { temperature: 0.2 },
|
|
2795
5758
|
pricing: { getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2796
|
-
capabilities: {
|
|
5759
|
+
capabilities: {
|
|
5760
|
+
vision: true,
|
|
5761
|
+
tools: true,
|
|
5762
|
+
reasoning: true,
|
|
5763
|
+
webSearch: true,
|
|
5764
|
+
jsonOutput: true,
|
|
5765
|
+
structuredOutputs: true,
|
|
5766
|
+
},
|
|
2797
5767
|
},
|
|
2798
5768
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE_GOOGLE_AI_STUDIO]: {
|
|
2799
5769
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE_GOOGLE_AI_STUDIO,
|
|
2800
5770
|
limits: { maxInputTokens: 32_768, maxOutputTokens: 65_536 },
|
|
2801
5771
|
config: { temperature: 0.2 },
|
|
2802
5772
|
pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 30 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2803
|
-
capabilities: {
|
|
5773
|
+
capabilities: {
|
|
5774
|
+
vision: true,
|
|
5775
|
+
tools: false,
|
|
5776
|
+
reasoning: false,
|
|
5777
|
+
webSearch: false,
|
|
5778
|
+
jsonOutput: true,
|
|
5779
|
+
structuredOutputs: true,
|
|
5780
|
+
},
|
|
2804
5781
|
},
|
|
2805
5782
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE_GOOGLE_VERTEX]: {
|
|
2806
5783
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE_GOOGLE_VERTEX,
|
|
2807
5784
|
limits: { maxInputTokens: 32_768, maxOutputTokens: 65_536 },
|
|
2808
5785
|
config: { temperature: 0.2 },
|
|
2809
5786
|
pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 30 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2810
|
-
capabilities: {
|
|
5787
|
+
capabilities: {
|
|
5788
|
+
vision: true,
|
|
5789
|
+
tools: false,
|
|
5790
|
+
reasoning: false,
|
|
5791
|
+
webSearch: false,
|
|
5792
|
+
jsonOutput: true,
|
|
5793
|
+
structuredOutputs: true,
|
|
5794
|
+
},
|
|
2811
5795
|
},
|
|
2812
5796
|
};
|
|
2813
5797
|
const LLMAPI_COMPLETION_MODELS = exports.LLMAPI_AVAILABLE_MODELS;
|