@mate-academy/llm-gateway 7.1.3 → 7.1.4
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 +1581 -3585
- package/dist/LLMService.typedefs.d.ts +1 -2
- package/dist/LLMService.typedefs.js.map +1 -1
- package/dist/providers/LLMAPI/LLMAPI.constants.d.ts +2873 -5879
- package/dist/providers/LLMAPI/LLMAPI.constants.js +395 -2861
- package/dist/providers/LLMAPI/LLMAPI.constants.js.map +1 -1
- package/dist/providers/LLMAPI/LLMAPI.typedefs.d.ts +36 -69
- package/dist/providers/LLMAPI/LLMAPI.typedefs.js +36 -69
- package/dist/providers/LLMAPI/LLMAPI.typedefs.js.map +1 -1
- package/dist/providers/LLMAPI/services/LLMAPIAssistance.service.d.ts +0 -1
- package/dist/providers/LLMAPI/services/LLMAPIAssistance.service.js +8 -24
- package/dist/providers/LLMAPI/services/LLMAPIAssistance.service.js.map +1 -1
- package/dist/providers/LLMAPI/services/LLMAPICompletion.service.js +6 -21
- package/dist/providers/LLMAPI/services/LLMAPICompletion.service.js.map +1 -1
- package/package.json +1 -1
|
@@ -22,14 +22,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
22
22
|
getPriceForAudioOutput: () => 0,
|
|
23
23
|
currency: 'USD',
|
|
24
24
|
},
|
|
25
|
-
capabilities: {
|
|
26
|
-
vision: false,
|
|
27
|
-
tools: true,
|
|
28
|
-
reasoning: false,
|
|
29
|
-
webSearch: false,
|
|
30
|
-
jsonOutput: true,
|
|
31
|
-
structuredOutputs: false,
|
|
32
|
-
},
|
|
25
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: true },
|
|
33
26
|
},
|
|
34
27
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4]: {
|
|
35
28
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4,
|
|
@@ -47,14 +40,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
47
40
|
getPriceForAudioOutput: () => 0,
|
|
48
41
|
currency: 'USD',
|
|
49
42
|
},
|
|
50
|
-
capabilities: {
|
|
51
|
-
vision: false,
|
|
52
|
-
tools: true,
|
|
53
|
-
reasoning: false,
|
|
54
|
-
webSearch: false,
|
|
55
|
-
jsonOutput: false,
|
|
56
|
-
structuredOutputs: false,
|
|
57
|
-
},
|
|
43
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: true },
|
|
58
44
|
},
|
|
59
45
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_TURBO]: {
|
|
60
46
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_TURBO,
|
|
@@ -72,14 +58,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
72
58
|
getPriceForAudioOutput: () => 0,
|
|
73
59
|
currency: 'USD',
|
|
74
60
|
},
|
|
75
|
-
capabilities: {
|
|
76
|
-
vision: true,
|
|
77
|
-
tools: true,
|
|
78
|
-
reasoning: false,
|
|
79
|
-
webSearch: false,
|
|
80
|
-
jsonOutput: true,
|
|
81
|
-
structuredOutputs: false,
|
|
82
|
-
},
|
|
61
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: true },
|
|
83
62
|
},
|
|
84
63
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O]: {
|
|
85
64
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O,
|
|
@@ -97,14 +76,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
97
76
|
getPriceForAudioOutput: () => 0,
|
|
98
77
|
currency: 'USD',
|
|
99
78
|
},
|
|
100
|
-
capabilities: {
|
|
101
|
-
vision: true,
|
|
102
|
-
tools: true,
|
|
103
|
-
reasoning: false,
|
|
104
|
-
webSearch: true,
|
|
105
|
-
jsonOutput: true,
|
|
106
|
-
structuredOutputs: true,
|
|
107
|
-
},
|
|
79
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: true, jsonResponseWithTools: true },
|
|
108
80
|
},
|
|
109
81
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O_MINI]: {
|
|
110
82
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O_MINI,
|
|
@@ -122,14 +94,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
122
94
|
getPriceForAudioOutput: () => 0,
|
|
123
95
|
currency: 'USD',
|
|
124
96
|
},
|
|
125
|
-
capabilities: {
|
|
126
|
-
vision: false,
|
|
127
|
-
tools: true,
|
|
128
|
-
reasoning: false,
|
|
129
|
-
webSearch: false,
|
|
130
|
-
jsonOutput: true,
|
|
131
|
-
structuredOutputs: true,
|
|
132
|
-
},
|
|
97
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: true },
|
|
133
98
|
},
|
|
134
99
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O_SEARCH_PREVIEW]: {
|
|
135
100
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O_SEARCH_PREVIEW,
|
|
@@ -147,14 +112,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
147
112
|
getPriceForAudioOutput: () => 0,
|
|
148
113
|
currency: 'USD',
|
|
149
114
|
},
|
|
150
|
-
capabilities: {
|
|
151
|
-
vision: true,
|
|
152
|
-
tools: false,
|
|
153
|
-
reasoning: false,
|
|
154
|
-
webSearch: true,
|
|
155
|
-
jsonOutput: false,
|
|
156
|
-
structuredOutputs: false,
|
|
157
|
-
},
|
|
115
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: true, jsonResponseWithTools: true },
|
|
158
116
|
},
|
|
159
117
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O_MINI_SEARCH_PREVIEW]: {
|
|
160
118
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O_MINI_SEARCH_PREVIEW,
|
|
@@ -172,14 +130,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
172
130
|
getPriceForAudioOutput: () => 0,
|
|
173
131
|
currency: 'USD',
|
|
174
132
|
},
|
|
175
|
-
capabilities: {
|
|
176
|
-
vision: true,
|
|
177
|
-
tools: false,
|
|
178
|
-
reasoning: false,
|
|
179
|
-
webSearch: true,
|
|
180
|
-
jsonOutput: false,
|
|
181
|
-
structuredOutputs: false,
|
|
182
|
-
},
|
|
133
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: true, jsonResponseWithTools: true },
|
|
183
134
|
},
|
|
184
135
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_1]: {
|
|
185
136
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_1,
|
|
@@ -197,14 +148,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
197
148
|
getPriceForAudioOutput: () => 0,
|
|
198
149
|
currency: 'USD',
|
|
199
150
|
},
|
|
200
|
-
capabilities: {
|
|
201
|
-
vision: true,
|
|
202
|
-
tools: true,
|
|
203
|
-
reasoning: false,
|
|
204
|
-
webSearch: false,
|
|
205
|
-
jsonOutput: true,
|
|
206
|
-
structuredOutputs: true,
|
|
207
|
-
},
|
|
151
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: true },
|
|
208
152
|
},
|
|
209
153
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_1_MINI]: {
|
|
210
154
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_1_MINI,
|
|
@@ -222,14 +166,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
222
166
|
getPriceForAudioOutput: () => 0,
|
|
223
167
|
currency: 'USD',
|
|
224
168
|
},
|
|
225
|
-
capabilities: {
|
|
226
|
-
vision: true,
|
|
227
|
-
tools: true,
|
|
228
|
-
reasoning: false,
|
|
229
|
-
webSearch: false,
|
|
230
|
-
jsonOutput: true,
|
|
231
|
-
structuredOutputs: true,
|
|
232
|
-
},
|
|
169
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: true },
|
|
233
170
|
},
|
|
234
171
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_1_NANO]: {
|
|
235
172
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_1_NANO,
|
|
@@ -247,14 +184,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
247
184
|
getPriceForAudioOutput: () => 0,
|
|
248
185
|
currency: 'USD',
|
|
249
186
|
},
|
|
250
|
-
capabilities: {
|
|
251
|
-
vision: true,
|
|
252
|
-
tools: true,
|
|
253
|
-
reasoning: false,
|
|
254
|
-
webSearch: false,
|
|
255
|
-
jsonOutput: true,
|
|
256
|
-
structuredOutputs: true,
|
|
257
|
-
},
|
|
187
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: true },
|
|
258
188
|
},
|
|
259
189
|
[LLMAPI_typedefs_1.LLMAPIModelNames.O1]: {
|
|
260
190
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.O1,
|
|
@@ -272,14 +202,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
272
202
|
getPriceForAudioOutput: () => 0,
|
|
273
203
|
currency: 'USD',
|
|
274
204
|
},
|
|
275
|
-
capabilities: {
|
|
276
|
-
vision: true,
|
|
277
|
-
tools: false,
|
|
278
|
-
reasoning: true,
|
|
279
|
-
webSearch: false,
|
|
280
|
-
jsonOutput: true,
|
|
281
|
-
structuredOutputs: true,
|
|
282
|
-
},
|
|
205
|
+
capabilities: { vision: true, tools: false, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
283
206
|
},
|
|
284
207
|
[LLMAPI_typedefs_1.LLMAPIModelNames.O3]: {
|
|
285
208
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.O3,
|
|
@@ -297,14 +220,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
297
220
|
getPriceForAudioOutput: () => 0,
|
|
298
221
|
currency: 'USD',
|
|
299
222
|
},
|
|
300
|
-
capabilities: {
|
|
301
|
-
vision: true,
|
|
302
|
-
tools: false,
|
|
303
|
-
reasoning: false,
|
|
304
|
-
webSearch: false,
|
|
305
|
-
jsonOutput: true,
|
|
306
|
-
structuredOutputs: true,
|
|
307
|
-
},
|
|
223
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
308
224
|
},
|
|
309
225
|
[LLMAPI_typedefs_1.LLMAPIModelNames.O3_MINI]: {
|
|
310
226
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.O3_MINI,
|
|
@@ -322,14 +238,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
322
238
|
getPriceForAudioOutput: () => 0,
|
|
323
239
|
currency: 'USD',
|
|
324
240
|
},
|
|
325
|
-
capabilities: {
|
|
326
|
-
vision: false,
|
|
327
|
-
tools: false,
|
|
328
|
-
reasoning: false,
|
|
329
|
-
webSearch: false,
|
|
330
|
-
jsonOutput: true,
|
|
331
|
-
structuredOutputs: true,
|
|
332
|
-
},
|
|
241
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
333
242
|
},
|
|
334
243
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_OSS_20B]: {
|
|
335
244
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_OSS_20B,
|
|
@@ -347,14 +256,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
347
256
|
getPriceForAudioOutput: () => 0,
|
|
348
257
|
currency: 'USD',
|
|
349
258
|
},
|
|
350
|
-
capabilities: {
|
|
351
|
-
vision: false,
|
|
352
|
-
tools: true,
|
|
353
|
-
reasoning: true,
|
|
354
|
-
webSearch: false,
|
|
355
|
-
jsonOutput: true,
|
|
356
|
-
structuredOutputs: false,
|
|
357
|
-
},
|
|
259
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: true },
|
|
358
260
|
},
|
|
359
261
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5]: {
|
|
360
262
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5,
|
|
@@ -372,14 +274,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
372
274
|
getPriceForAudioOutput: () => 0,
|
|
373
275
|
currency: 'USD',
|
|
374
276
|
},
|
|
375
|
-
capabilities: {
|
|
376
|
-
vision: true,
|
|
377
|
-
tools: true,
|
|
378
|
-
reasoning: true,
|
|
379
|
-
webSearch: true,
|
|
380
|
-
jsonOutput: true,
|
|
381
|
-
structuredOutputs: true,
|
|
382
|
-
},
|
|
277
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
383
278
|
},
|
|
384
279
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI]: {
|
|
385
280
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI,
|
|
@@ -397,14 +292,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
397
292
|
getPriceForAudioOutput: () => 0,
|
|
398
293
|
currency: 'USD',
|
|
399
294
|
},
|
|
400
|
-
capabilities: {
|
|
401
|
-
vision: true,
|
|
402
|
-
tools: true,
|
|
403
|
-
reasoning: true,
|
|
404
|
-
webSearch: true,
|
|
405
|
-
jsonOutput: true,
|
|
406
|
-
structuredOutputs: true,
|
|
407
|
-
},
|
|
295
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
408
296
|
},
|
|
409
297
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO]: {
|
|
410
298
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO,
|
|
@@ -422,14 +310,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
422
310
|
getPriceForAudioOutput: () => 0,
|
|
423
311
|
currency: 'USD',
|
|
424
312
|
},
|
|
425
|
-
capabilities: {
|
|
426
|
-
vision: false,
|
|
427
|
-
tools: true,
|
|
428
|
-
reasoning: true,
|
|
429
|
-
webSearch: true,
|
|
430
|
-
jsonOutput: true,
|
|
431
|
-
structuredOutputs: true,
|
|
432
|
-
},
|
|
313
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
433
314
|
},
|
|
434
315
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_CODEX]: {
|
|
435
316
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_CODEX,
|
|
@@ -447,14 +328,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
447
328
|
getPriceForAudioOutput: () => 0,
|
|
448
329
|
currency: 'USD',
|
|
449
330
|
},
|
|
450
|
-
capabilities: {
|
|
451
|
-
vision: true,
|
|
452
|
-
tools: true,
|
|
453
|
-
reasoning: true,
|
|
454
|
-
webSearch: false,
|
|
455
|
-
jsonOutput: true,
|
|
456
|
-
structuredOutputs: true,
|
|
457
|
-
},
|
|
331
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: true },
|
|
458
332
|
},
|
|
459
333
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO]: {
|
|
460
334
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO,
|
|
@@ -472,14 +346,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
472
346
|
getPriceForAudioOutput: () => 0,
|
|
473
347
|
currency: 'USD',
|
|
474
348
|
},
|
|
475
|
-
capabilities: {
|
|
476
|
-
vision: true,
|
|
477
|
-
tools: true,
|
|
478
|
-
reasoning: true,
|
|
479
|
-
webSearch: true,
|
|
480
|
-
jsonOutput: true,
|
|
481
|
-
structuredOutputs: true,
|
|
482
|
-
},
|
|
349
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
483
350
|
},
|
|
484
351
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1]: {
|
|
485
352
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1,
|
|
@@ -497,14 +364,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
497
364
|
getPriceForAudioOutput: () => 0,
|
|
498
365
|
currency: 'USD',
|
|
499
366
|
},
|
|
500
|
-
capabilities: {
|
|
501
|
-
vision: true,
|
|
502
|
-
tools: true,
|
|
503
|
-
reasoning: true,
|
|
504
|
-
webSearch: true,
|
|
505
|
-
jsonOutput: true,
|
|
506
|
-
structuredOutputs: true,
|
|
507
|
-
},
|
|
367
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
508
368
|
},
|
|
509
369
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CHAT]: {
|
|
510
370
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CHAT,
|
|
@@ -522,14 +382,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
522
382
|
getPriceForAudioOutput: () => 0,
|
|
523
383
|
currency: 'USD',
|
|
524
384
|
},
|
|
525
|
-
capabilities: {
|
|
526
|
-
vision: true,
|
|
527
|
-
tools: true,
|
|
528
|
-
reasoning: true,
|
|
529
|
-
webSearch: false,
|
|
530
|
-
jsonOutput: true,
|
|
531
|
-
structuredOutputs: true,
|
|
532
|
-
},
|
|
385
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: true },
|
|
533
386
|
},
|
|
534
387
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX]: {
|
|
535
388
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX,
|
|
@@ -547,14 +400,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
547
400
|
getPriceForAudioOutput: () => 0,
|
|
548
401
|
currency: 'USD',
|
|
549
402
|
},
|
|
550
|
-
capabilities: {
|
|
551
|
-
vision: true,
|
|
552
|
-
tools: true,
|
|
553
|
-
reasoning: true,
|
|
554
|
-
webSearch: true,
|
|
555
|
-
jsonOutput: true,
|
|
556
|
-
structuredOutputs: true,
|
|
557
|
-
},
|
|
403
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
558
404
|
},
|
|
559
405
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI]: {
|
|
560
406
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI,
|
|
@@ -572,14 +418,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
572
418
|
getPriceForAudioOutput: () => 0,
|
|
573
419
|
currency: 'USD',
|
|
574
420
|
},
|
|
575
|
-
capabilities: {
|
|
576
|
-
vision: true,
|
|
577
|
-
tools: true,
|
|
578
|
-
reasoning: true,
|
|
579
|
-
webSearch: true,
|
|
580
|
-
jsonOutput: true,
|
|
581
|
-
structuredOutputs: true,
|
|
582
|
-
},
|
|
421
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
583
422
|
},
|
|
584
423
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2]: {
|
|
585
424
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2,
|
|
@@ -597,14 +436,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
597
436
|
getPriceForAudioOutput: () => 0,
|
|
598
437
|
currency: 'USD',
|
|
599
438
|
},
|
|
600
|
-
capabilities: {
|
|
601
|
-
vision: true,
|
|
602
|
-
tools: true,
|
|
603
|
-
reasoning: true,
|
|
604
|
-
webSearch: true,
|
|
605
|
-
jsonOutput: true,
|
|
606
|
-
structuredOutputs: true,
|
|
607
|
-
},
|
|
439
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
608
440
|
},
|
|
609
441
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_PRO]: {
|
|
610
442
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_PRO,
|
|
@@ -622,14 +454,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
622
454
|
getPriceForAudioOutput: () => 0,
|
|
623
455
|
currency: 'USD',
|
|
624
456
|
},
|
|
625
|
-
capabilities: {
|
|
626
|
-
vision: true,
|
|
627
|
-
tools: true,
|
|
628
|
-
reasoning: true,
|
|
629
|
-
webSearch: true,
|
|
630
|
-
jsonOutput: false,
|
|
631
|
-
structuredOutputs: true,
|
|
632
|
-
},
|
|
457
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
633
458
|
},
|
|
634
459
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX]: {
|
|
635
460
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX,
|
|
@@ -647,14 +472,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
647
472
|
getPriceForAudioOutput: () => 0,
|
|
648
473
|
currency: 'USD',
|
|
649
474
|
},
|
|
650
|
-
capabilities: {
|
|
651
|
-
vision: true,
|
|
652
|
-
tools: true,
|
|
653
|
-
reasoning: true,
|
|
654
|
-
webSearch: true,
|
|
655
|
-
jsonOutput: true,
|
|
656
|
-
structuredOutputs: true,
|
|
657
|
-
},
|
|
475
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
658
476
|
},
|
|
659
477
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX]: {
|
|
660
478
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX,
|
|
@@ -672,14 +490,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
672
490
|
getPriceForAudioOutput: () => 0,
|
|
673
491
|
currency: 'USD',
|
|
674
492
|
},
|
|
675
|
-
capabilities: {
|
|
676
|
-
vision: true,
|
|
677
|
-
tools: true,
|
|
678
|
-
reasoning: true,
|
|
679
|
-
webSearch: true,
|
|
680
|
-
jsonOutput: true,
|
|
681
|
-
structuredOutputs: true,
|
|
682
|
-
},
|
|
493
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
683
494
|
},
|
|
684
495
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4]: {
|
|
685
496
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4,
|
|
@@ -697,14 +508,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
697
508
|
getPriceForAudioOutput: () => 0,
|
|
698
509
|
currency: 'USD',
|
|
699
510
|
},
|
|
700
|
-
capabilities: {
|
|
701
|
-
vision: true,
|
|
702
|
-
tools: true,
|
|
703
|
-
reasoning: true,
|
|
704
|
-
webSearch: true,
|
|
705
|
-
jsonOutput: true,
|
|
706
|
-
structuredOutputs: true,
|
|
707
|
-
},
|
|
511
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
708
512
|
},
|
|
709
513
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO]: {
|
|
710
514
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO,
|
|
@@ -722,14 +526,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
722
526
|
getPriceForAudioOutput: () => 0,
|
|
723
527
|
currency: 'USD',
|
|
724
528
|
},
|
|
725
|
-
capabilities: {
|
|
726
|
-
vision: true,
|
|
727
|
-
tools: true,
|
|
728
|
-
reasoning: true,
|
|
729
|
-
webSearch: true,
|
|
730
|
-
jsonOutput: true,
|
|
731
|
-
structuredOutputs: true,
|
|
732
|
-
},
|
|
529
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
733
530
|
},
|
|
734
531
|
// ─── Anthropic ─────────────────────────────────────────────────
|
|
735
532
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_20250514]: {
|
|
@@ -748,14 +545,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
748
545
|
getPriceForAudioOutput: () => 0,
|
|
749
546
|
currency: 'USD',
|
|
750
547
|
},
|
|
751
|
-
capabilities: {
|
|
752
|
-
vision: false,
|
|
753
|
-
tools: true,
|
|
754
|
-
reasoning: true,
|
|
755
|
-
webSearch: true,
|
|
756
|
-
jsonOutput: false,
|
|
757
|
-
structuredOutputs: false,
|
|
758
|
-
},
|
|
548
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
|
|
759
549
|
},
|
|
760
550
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_5]: {
|
|
761
551
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_5,
|
|
@@ -773,14 +563,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
773
563
|
getPriceForAudioOutput: () => 0,
|
|
774
564
|
currency: 'USD',
|
|
775
565
|
},
|
|
776
|
-
capabilities: {
|
|
777
|
-
vision: false,
|
|
778
|
-
tools: true,
|
|
779
|
-
reasoning: true,
|
|
780
|
-
webSearch: true,
|
|
781
|
-
jsonOutput: false,
|
|
782
|
-
structuredOutputs: true,
|
|
783
|
-
},
|
|
566
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
|
|
784
567
|
},
|
|
785
568
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_5_20250929]: {
|
|
786
569
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_5_20250929,
|
|
@@ -798,14 +581,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
798
581
|
getPriceForAudioOutput: () => 0,
|
|
799
582
|
currency: 'USD',
|
|
800
583
|
},
|
|
801
|
-
capabilities: {
|
|
802
|
-
vision: false,
|
|
803
|
-
tools: true,
|
|
804
|
-
reasoning: true,
|
|
805
|
-
webSearch: true,
|
|
806
|
-
jsonOutput: false,
|
|
807
|
-
structuredOutputs: true,
|
|
808
|
-
},
|
|
584
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
|
|
809
585
|
},
|
|
810
586
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_6]: {
|
|
811
587
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_6,
|
|
@@ -823,14 +599,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
823
599
|
getPriceForAudioOutput: () => 0,
|
|
824
600
|
currency: 'USD',
|
|
825
601
|
},
|
|
826
|
-
capabilities: {
|
|
827
|
-
vision: false,
|
|
828
|
-
tools: true,
|
|
829
|
-
reasoning: true,
|
|
830
|
-
webSearch: true,
|
|
831
|
-
jsonOutput: false,
|
|
832
|
-
structuredOutputs: true,
|
|
833
|
-
},
|
|
602
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
|
|
834
603
|
},
|
|
835
604
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_HAIKU_4_5]: {
|
|
836
605
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_HAIKU_4_5,
|
|
@@ -848,14 +617,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
848
617
|
getPriceForAudioOutput: () => 0,
|
|
849
618
|
currency: 'USD',
|
|
850
619
|
},
|
|
851
|
-
capabilities: {
|
|
852
|
-
vision: false,
|
|
853
|
-
tools: true,
|
|
854
|
-
reasoning: false,
|
|
855
|
-
webSearch: true,
|
|
856
|
-
jsonOutput: false,
|
|
857
|
-
structuredOutputs: true,
|
|
858
|
-
},
|
|
620
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: true, jsonResponseWithTools: false },
|
|
859
621
|
},
|
|
860
622
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_HAIKU_4_5_20251001]: {
|
|
861
623
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_HAIKU_4_5_20251001,
|
|
@@ -873,14 +635,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
873
635
|
getPriceForAudioOutput: () => 0,
|
|
874
636
|
currency: 'USD',
|
|
875
637
|
},
|
|
876
|
-
capabilities: {
|
|
877
|
-
vision: false,
|
|
878
|
-
tools: true,
|
|
879
|
-
reasoning: false,
|
|
880
|
-
webSearch: true,
|
|
881
|
-
jsonOutput: false,
|
|
882
|
-
structuredOutputs: true,
|
|
883
|
-
},
|
|
638
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: true, jsonResponseWithTools: false },
|
|
884
639
|
},
|
|
885
640
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_20250514]: {
|
|
886
641
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_20250514,
|
|
@@ -898,14 +653,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
898
653
|
getPriceForAudioOutput: () => 0,
|
|
899
654
|
currency: 'USD',
|
|
900
655
|
},
|
|
901
|
-
capabilities: {
|
|
902
|
-
vision: false,
|
|
903
|
-
tools: true,
|
|
904
|
-
reasoning: true,
|
|
905
|
-
webSearch: true,
|
|
906
|
-
jsonOutput: false,
|
|
907
|
-
structuredOutputs: false,
|
|
908
|
-
},
|
|
656
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
|
|
909
657
|
},
|
|
910
658
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_1_20250805]: {
|
|
911
659
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_1_20250805,
|
|
@@ -923,14 +671,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
923
671
|
getPriceForAudioOutput: () => 0,
|
|
924
672
|
currency: 'USD',
|
|
925
673
|
},
|
|
926
|
-
capabilities: {
|
|
927
|
-
vision: true,
|
|
928
|
-
tools: true,
|
|
929
|
-
reasoning: true,
|
|
930
|
-
webSearch: true,
|
|
931
|
-
jsonOutput: false,
|
|
932
|
-
structuredOutputs: true,
|
|
933
|
-
},
|
|
674
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
|
|
934
675
|
},
|
|
935
676
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_5_20251101]: {
|
|
936
677
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_5_20251101,
|
|
@@ -948,14 +689,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
948
689
|
getPriceForAudioOutput: () => 0,
|
|
949
690
|
currency: 'USD',
|
|
950
691
|
},
|
|
951
|
-
capabilities: {
|
|
952
|
-
vision: true,
|
|
953
|
-
tools: true,
|
|
954
|
-
reasoning: true,
|
|
955
|
-
webSearch: true,
|
|
956
|
-
jsonOutput: false,
|
|
957
|
-
structuredOutputs: true,
|
|
958
|
-
},
|
|
692
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
|
|
959
693
|
},
|
|
960
694
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_6]: {
|
|
961
695
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_6,
|
|
@@ -973,14 +707,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
973
707
|
getPriceForAudioOutput: () => 0,
|
|
974
708
|
currency: 'USD',
|
|
975
709
|
},
|
|
976
|
-
capabilities: {
|
|
977
|
-
vision: true,
|
|
978
|
-
tools: true,
|
|
979
|
-
reasoning: true,
|
|
980
|
-
webSearch: true,
|
|
981
|
-
jsonOutput: true,
|
|
982
|
-
structuredOutputs: true,
|
|
983
|
-
},
|
|
710
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
|
|
984
711
|
},
|
|
985
712
|
// ─── Google Gemini ─────────────────────────────────────────────
|
|
986
713
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_PRO]: {
|
|
@@ -999,14 +726,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
999
726
|
getPriceForAudioOutput: () => 0,
|
|
1000
727
|
currency: 'USD',
|
|
1001
728
|
},
|
|
1002
|
-
capabilities: {
|
|
1003
|
-
vision: true,
|
|
1004
|
-
tools: true,
|
|
1005
|
-
reasoning: true,
|
|
1006
|
-
webSearch: true,
|
|
1007
|
-
jsonOutput: true,
|
|
1008
|
-
structuredOutputs: true,
|
|
1009
|
-
},
|
|
729
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
1010
730
|
},
|
|
1011
731
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH]: {
|
|
1012
732
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH,
|
|
@@ -1024,14 +744,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1024
744
|
getPriceForAudioOutput: () => 0,
|
|
1025
745
|
currency: 'USD',
|
|
1026
746
|
},
|
|
1027
|
-
capabilities: {
|
|
1028
|
-
vision: true,
|
|
1029
|
-
tools: true,
|
|
1030
|
-
reasoning: true,
|
|
1031
|
-
webSearch: true,
|
|
1032
|
-
jsonOutput: true,
|
|
1033
|
-
structuredOutputs: true,
|
|
1034
|
-
},
|
|
747
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
1035
748
|
},
|
|
1036
749
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE]: {
|
|
1037
750
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE,
|
|
@@ -1049,14 +762,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1049
762
|
getPriceForAudioOutput: () => 0,
|
|
1050
763
|
currency: 'USD',
|
|
1051
764
|
},
|
|
1052
|
-
capabilities: {
|
|
1053
|
-
vision: true,
|
|
1054
|
-
tools: true,
|
|
1055
|
-
reasoning: false,
|
|
1056
|
-
webSearch: false,
|
|
1057
|
-
jsonOutput: true,
|
|
1058
|
-
structuredOutputs: true,
|
|
1059
|
-
},
|
|
765
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: true },
|
|
1060
766
|
},
|
|
1061
767
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_PREVIEW_09_2025]: {
|
|
1062
768
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_PREVIEW_09_2025,
|
|
@@ -1074,14 +780,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1074
780
|
getPriceForAudioOutput: () => 0,
|
|
1075
781
|
currency: 'USD',
|
|
1076
782
|
},
|
|
1077
|
-
capabilities: {
|
|
1078
|
-
vision: true,
|
|
1079
|
-
tools: true,
|
|
1080
|
-
reasoning: false,
|
|
1081
|
-
webSearch: false,
|
|
1082
|
-
jsonOutput: true,
|
|
1083
|
-
structuredOutputs: true,
|
|
1084
|
-
},
|
|
783
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: true },
|
|
1085
784
|
},
|
|
1086
785
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW]: {
|
|
1087
786
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW,
|
|
@@ -1099,14 +798,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1099
798
|
getPriceForAudioOutput: () => 0,
|
|
1100
799
|
currency: 'USD',
|
|
1101
800
|
},
|
|
1102
|
-
capabilities: {
|
|
1103
|
-
vision: true,
|
|
1104
|
-
tools: true,
|
|
1105
|
-
reasoning: true,
|
|
1106
|
-
webSearch: true,
|
|
1107
|
-
jsonOutput: true,
|
|
1108
|
-
structuredOutputs: true,
|
|
1109
|
-
},
|
|
801
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
1110
802
|
},
|
|
1111
803
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW]: {
|
|
1112
804
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW,
|
|
@@ -1124,14 +816,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1124
816
|
getPriceForAudioOutput: () => 0,
|
|
1125
817
|
currency: 'USD',
|
|
1126
818
|
},
|
|
1127
|
-
capabilities: {
|
|
1128
|
-
vision: true,
|
|
1129
|
-
tools: true,
|
|
1130
|
-
reasoning: true,
|
|
1131
|
-
webSearch: true,
|
|
1132
|
-
jsonOutput: true,
|
|
1133
|
-
structuredOutputs: true,
|
|
1134
|
-
},
|
|
819
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
1135
820
|
},
|
|
1136
821
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE]: {
|
|
1137
822
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE,
|
|
@@ -1149,14 +834,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1149
834
|
getPriceForAudioOutput: () => 0,
|
|
1150
835
|
currency: 'USD',
|
|
1151
836
|
},
|
|
1152
|
-
capabilities: {
|
|
1153
|
-
vision: true,
|
|
1154
|
-
tools: false,
|
|
1155
|
-
reasoning: false,
|
|
1156
|
-
webSearch: false,
|
|
1157
|
-
jsonOutput: true,
|
|
1158
|
-
structuredOutputs: true,
|
|
1159
|
-
},
|
|
837
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: true },
|
|
1160
838
|
},
|
|
1161
839
|
// ─── Google Gemma ──────────────────────────────────────────────
|
|
1162
840
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3N_E2B_IT]: {
|
|
@@ -1175,14 +853,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1175
853
|
getPriceForAudioOutput: () => 0,
|
|
1176
854
|
currency: 'USD',
|
|
1177
855
|
},
|
|
1178
|
-
capabilities: {
|
|
1179
|
-
vision: false,
|
|
1180
|
-
tools: false,
|
|
1181
|
-
reasoning: false,
|
|
1182
|
-
webSearch: false,
|
|
1183
|
-
jsonOutput: false,
|
|
1184
|
-
structuredOutputs: false,
|
|
1185
|
-
},
|
|
856
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1186
857
|
},
|
|
1187
858
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3N_E4B_IT]: {
|
|
1188
859
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3N_E4B_IT,
|
|
@@ -1200,14 +871,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1200
871
|
getPriceForAudioOutput: () => 0,
|
|
1201
872
|
currency: 'USD',
|
|
1202
873
|
},
|
|
1203
|
-
capabilities: {
|
|
1204
|
-
vision: false,
|
|
1205
|
-
tools: false,
|
|
1206
|
-
reasoning: false,
|
|
1207
|
-
webSearch: false,
|
|
1208
|
-
jsonOutput: false,
|
|
1209
|
-
structuredOutputs: false,
|
|
1210
|
-
},
|
|
874
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1211
875
|
},
|
|
1212
876
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3_1B_IT]: {
|
|
1213
877
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3_1B_IT,
|
|
@@ -1225,14 +889,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1225
889
|
getPriceForAudioOutput: () => 0,
|
|
1226
890
|
currency: 'USD',
|
|
1227
891
|
},
|
|
1228
|
-
capabilities: {
|
|
1229
|
-
vision: false,
|
|
1230
|
-
tools: false,
|
|
1231
|
-
reasoning: false,
|
|
1232
|
-
webSearch: false,
|
|
1233
|
-
jsonOutput: false,
|
|
1234
|
-
structuredOutputs: false,
|
|
1235
|
-
},
|
|
892
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1236
893
|
},
|
|
1237
894
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3_4B_IT]: {
|
|
1238
895
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3_4B_IT,
|
|
@@ -1250,14 +907,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1250
907
|
getPriceForAudioOutput: () => 0,
|
|
1251
908
|
currency: 'USD',
|
|
1252
909
|
},
|
|
1253
|
-
capabilities: {
|
|
1254
|
-
vision: false,
|
|
1255
|
-
tools: false,
|
|
1256
|
-
reasoning: false,
|
|
1257
|
-
webSearch: false,
|
|
1258
|
-
jsonOutput: false,
|
|
1259
|
-
structuredOutputs: false,
|
|
1260
|
-
},
|
|
910
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1261
911
|
},
|
|
1262
912
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3_12B_IT]: {
|
|
1263
913
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3_12B_IT,
|
|
@@ -1275,14 +925,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1275
925
|
getPriceForAudioOutput: () => 0,
|
|
1276
926
|
currency: 'USD',
|
|
1277
927
|
},
|
|
1278
|
-
capabilities: {
|
|
1279
|
-
vision: false,
|
|
1280
|
-
tools: false,
|
|
1281
|
-
reasoning: false,
|
|
1282
|
-
webSearch: false,
|
|
1283
|
-
jsonOutput: false,
|
|
1284
|
-
structuredOutputs: false,
|
|
1285
|
-
},
|
|
928
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1286
929
|
},
|
|
1287
930
|
// ─── xAI Grok ──────────────────────────────────────────────────
|
|
1288
931
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GROK_3]: {
|
|
@@ -1301,14 +944,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1301
944
|
getPriceForAudioOutput: () => 0,
|
|
1302
945
|
currency: 'USD',
|
|
1303
946
|
},
|
|
1304
|
-
capabilities: {
|
|
1305
|
-
vision: false,
|
|
1306
|
-
tools: true,
|
|
1307
|
-
reasoning: false,
|
|
1308
|
-
webSearch: false,
|
|
1309
|
-
jsonOutput: true,
|
|
1310
|
-
structuredOutputs: false,
|
|
1311
|
-
},
|
|
947
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1312
948
|
},
|
|
1313
949
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_0709]: {
|
|
1314
950
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_0709,
|
|
@@ -1326,14 +962,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1326
962
|
getPriceForAudioOutput: () => 0,
|
|
1327
963
|
currency: 'USD',
|
|
1328
964
|
},
|
|
1329
|
-
capabilities: {
|
|
1330
|
-
vision: false,
|
|
1331
|
-
tools: true,
|
|
1332
|
-
reasoning: false,
|
|
1333
|
-
webSearch: false,
|
|
1334
|
-
jsonOutput: true,
|
|
1335
|
-
structuredOutputs: false,
|
|
1336
|
-
},
|
|
965
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1337
966
|
},
|
|
1338
967
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4]: {
|
|
1339
968
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4,
|
|
@@ -1351,14 +980,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1351
980
|
getPriceForAudioOutput: () => 0,
|
|
1352
981
|
currency: 'USD',
|
|
1353
982
|
},
|
|
1354
|
-
capabilities: {
|
|
1355
|
-
vision: true,
|
|
1356
|
-
tools: true,
|
|
1357
|
-
reasoning: false,
|
|
1358
|
-
webSearch: false,
|
|
1359
|
-
jsonOutput: true,
|
|
1360
|
-
structuredOutputs: false,
|
|
1361
|
-
},
|
|
983
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1362
984
|
},
|
|
1363
985
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_FAST_REASONING]: {
|
|
1364
986
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_FAST_REASONING,
|
|
@@ -1376,14 +998,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1376
998
|
getPriceForAudioOutput: () => 0,
|
|
1377
999
|
currency: 'USD',
|
|
1378
1000
|
},
|
|
1379
|
-
capabilities: {
|
|
1380
|
-
vision: true,
|
|
1381
|
-
tools: true,
|
|
1382
|
-
reasoning: false,
|
|
1383
|
-
webSearch: false,
|
|
1384
|
-
jsonOutput: true,
|
|
1385
|
-
structuredOutputs: false,
|
|
1386
|
-
},
|
|
1001
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1387
1002
|
},
|
|
1388
1003
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_FAST_NON_REASONING]: {
|
|
1389
1004
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_FAST_NON_REASONING,
|
|
@@ -1401,14 +1016,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1401
1016
|
getPriceForAudioOutput: () => 0,
|
|
1402
1017
|
currency: 'USD',
|
|
1403
1018
|
},
|
|
1404
|
-
capabilities: {
|
|
1405
|
-
vision: true,
|
|
1406
|
-
tools: true,
|
|
1407
|
-
reasoning: false,
|
|
1408
|
-
webSearch: false,
|
|
1409
|
-
jsonOutput: true,
|
|
1410
|
-
structuredOutputs: false,
|
|
1411
|
-
},
|
|
1019
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1412
1020
|
},
|
|
1413
1021
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GROK_CODE_FAST_1]: {
|
|
1414
1022
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_CODE_FAST_1,
|
|
@@ -1426,14 +1034,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1426
1034
|
getPriceForAudioOutput: () => 0,
|
|
1427
1035
|
currency: 'USD',
|
|
1428
1036
|
},
|
|
1429
|
-
capabilities: {
|
|
1430
|
-
vision: false,
|
|
1431
|
-
tools: true,
|
|
1432
|
-
reasoning: false,
|
|
1433
|
-
webSearch: false,
|
|
1434
|
-
jsonOutput: true,
|
|
1435
|
-
structuredOutputs: false,
|
|
1436
|
-
},
|
|
1037
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1437
1038
|
},
|
|
1438
1039
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_1_FAST_REASONING]: {
|
|
1439
1040
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_1_FAST_REASONING,
|
|
@@ -1451,14 +1052,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1451
1052
|
getPriceForAudioOutput: () => 0,
|
|
1452
1053
|
currency: 'USD',
|
|
1453
1054
|
},
|
|
1454
|
-
capabilities: {
|
|
1455
|
-
vision: true,
|
|
1456
|
-
tools: true,
|
|
1457
|
-
reasoning: false,
|
|
1458
|
-
webSearch: false,
|
|
1459
|
-
jsonOutput: true,
|
|
1460
|
-
structuredOutputs: false,
|
|
1461
|
-
},
|
|
1055
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1462
1056
|
},
|
|
1463
1057
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_1_FAST_NON_REASONING]: {
|
|
1464
1058
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_1_FAST_NON_REASONING,
|
|
@@ -1476,14 +1070,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1476
1070
|
getPriceForAudioOutput: () => 0,
|
|
1477
1071
|
currency: 'USD',
|
|
1478
1072
|
},
|
|
1479
|
-
capabilities: {
|
|
1480
|
-
vision: true,
|
|
1481
|
-
tools: true,
|
|
1482
|
-
reasoning: false,
|
|
1483
|
-
webSearch: false,
|
|
1484
|
-
jsonOutput: true,
|
|
1485
|
-
structuredOutputs: false,
|
|
1486
|
-
},
|
|
1073
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1487
1074
|
},
|
|
1488
1075
|
// ─── Meta Llama ────────────────────────────────────────────────
|
|
1489
1076
|
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_8B_INSTRUCT]: {
|
|
@@ -1502,14 +1089,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1502
1089
|
getPriceForAudioOutput: () => 0,
|
|
1503
1090
|
currency: 'USD',
|
|
1504
1091
|
},
|
|
1505
|
-
capabilities: {
|
|
1506
|
-
vision: false,
|
|
1507
|
-
tools: false,
|
|
1508
|
-
reasoning: false,
|
|
1509
|
-
webSearch: false,
|
|
1510
|
-
jsonOutput: true,
|
|
1511
|
-
structuredOutputs: false,
|
|
1512
|
-
},
|
|
1092
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1513
1093
|
},
|
|
1514
1094
|
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_70B_INSTRUCT]: {
|
|
1515
1095
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_70B_INSTRUCT,
|
|
@@ -1527,14 +1107,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1527
1107
|
getPriceForAudioOutput: () => 0,
|
|
1528
1108
|
currency: 'USD',
|
|
1529
1109
|
},
|
|
1530
|
-
capabilities: {
|
|
1531
|
-
vision: false,
|
|
1532
|
-
tools: false,
|
|
1533
|
-
reasoning: false,
|
|
1534
|
-
webSearch: false,
|
|
1535
|
-
jsonOutput: true,
|
|
1536
|
-
structuredOutputs: false,
|
|
1537
|
-
},
|
|
1110
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1538
1111
|
},
|
|
1539
1112
|
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_8B_INSTRUCT]: {
|
|
1540
1113
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_8B_INSTRUCT,
|
|
@@ -1552,14 +1125,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1552
1125
|
getPriceForAudioOutput: () => 0,
|
|
1553
1126
|
currency: 'USD',
|
|
1554
1127
|
},
|
|
1555
|
-
capabilities: {
|
|
1556
|
-
vision: false,
|
|
1557
|
-
tools: false,
|
|
1558
|
-
reasoning: false,
|
|
1559
|
-
webSearch: false,
|
|
1560
|
-
jsonOutput: true,
|
|
1561
|
-
structuredOutputs: false,
|
|
1562
|
-
},
|
|
1128
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1563
1129
|
},
|
|
1564
1130
|
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_70B_INSTRUCT]: {
|
|
1565
1131
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_70B_INSTRUCT,
|
|
@@ -1577,14 +1143,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1577
1143
|
getPriceForAudioOutput: () => 0,
|
|
1578
1144
|
currency: 'USD',
|
|
1579
1145
|
},
|
|
1580
|
-
capabilities: {
|
|
1581
|
-
vision: false,
|
|
1582
|
-
tools: false,
|
|
1583
|
-
reasoning: false,
|
|
1584
|
-
webSearch: false,
|
|
1585
|
-
jsonOutput: false,
|
|
1586
|
-
structuredOutputs: false,
|
|
1587
|
-
},
|
|
1146
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1588
1147
|
},
|
|
1589
1148
|
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_NEMOTRON_ULTRA_253B]: {
|
|
1590
1149
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_NEMOTRON_ULTRA_253B,
|
|
@@ -1602,14 +1161,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1602
1161
|
getPriceForAudioOutput: () => 0,
|
|
1603
1162
|
currency: 'USD',
|
|
1604
1163
|
},
|
|
1605
|
-
capabilities: {
|
|
1606
|
-
vision: false,
|
|
1607
|
-
tools: false,
|
|
1608
|
-
reasoning: false,
|
|
1609
|
-
webSearch: false,
|
|
1610
|
-
jsonOutput: true,
|
|
1611
|
-
structuredOutputs: false,
|
|
1612
|
-
},
|
|
1164
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1613
1165
|
},
|
|
1614
1166
|
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_2_3B_INSTRUCT]: {
|
|
1615
1167
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_2_3B_INSTRUCT,
|
|
@@ -1627,14 +1179,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1627
1179
|
getPriceForAudioOutput: () => 0,
|
|
1628
1180
|
currency: 'USD',
|
|
1629
1181
|
},
|
|
1630
|
-
capabilities: {
|
|
1631
|
-
vision: false,
|
|
1632
|
-
tools: false,
|
|
1633
|
-
reasoning: false,
|
|
1634
|
-
webSearch: false,
|
|
1635
|
-
jsonOutput: true,
|
|
1636
|
-
structuredOutputs: false,
|
|
1637
|
-
},
|
|
1182
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1638
1183
|
},
|
|
1639
1184
|
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_3_70B_INSTRUCT]: {
|
|
1640
1185
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_3_70B_INSTRUCT,
|
|
@@ -1652,14 +1197,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1652
1197
|
getPriceForAudioOutput: () => 0,
|
|
1653
1198
|
currency: 'USD',
|
|
1654
1199
|
},
|
|
1655
|
-
capabilities: {
|
|
1656
|
-
vision: false,
|
|
1657
|
-
tools: true,
|
|
1658
|
-
reasoning: false,
|
|
1659
|
-
webSearch: false,
|
|
1660
|
-
jsonOutput: true,
|
|
1661
|
-
structuredOutputs: false,
|
|
1662
|
-
},
|
|
1200
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1663
1201
|
},
|
|
1664
1202
|
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_4_SCOUT_17B_INSTRUCT]: {
|
|
1665
1203
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_4_SCOUT_17B_INSTRUCT,
|
|
@@ -1677,14 +1215,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1677
1215
|
getPriceForAudioOutput: () => 0,
|
|
1678
1216
|
currency: 'USD',
|
|
1679
1217
|
},
|
|
1680
|
-
capabilities: {
|
|
1681
|
-
vision: true,
|
|
1682
|
-
tools: false,
|
|
1683
|
-
reasoning: false,
|
|
1684
|
-
webSearch: false,
|
|
1685
|
-
jsonOutput: true,
|
|
1686
|
-
structuredOutputs: false,
|
|
1687
|
-
},
|
|
1218
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1688
1219
|
},
|
|
1689
1220
|
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_4_MAVERICK_17B_INSTRUCT]: {
|
|
1690
1221
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_4_MAVERICK_17B_INSTRUCT,
|
|
@@ -1702,14 +1233,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1702
1233
|
getPriceForAudioOutput: () => 0,
|
|
1703
1234
|
currency: 'USD',
|
|
1704
1235
|
},
|
|
1705
|
-
capabilities: {
|
|
1706
|
-
vision: true,
|
|
1707
|
-
tools: false,
|
|
1708
|
-
reasoning: false,
|
|
1709
|
-
webSearch: false,
|
|
1710
|
-
jsonOutput: true,
|
|
1711
|
-
structuredOutputs: false,
|
|
1712
|
-
},
|
|
1236
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1713
1237
|
},
|
|
1714
1238
|
// ─── DeepSeek ──────────────────────────────────────────────────
|
|
1715
1239
|
[LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_R1_0528]: {
|
|
@@ -1728,14 +1252,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1728
1252
|
getPriceForAudioOutput: () => 0,
|
|
1729
1253
|
currency: 'USD',
|
|
1730
1254
|
},
|
|
1731
|
-
capabilities: {
|
|
1732
|
-
vision: false,
|
|
1733
|
-
tools: false,
|
|
1734
|
-
reasoning: false,
|
|
1735
|
-
webSearch: false,
|
|
1736
|
-
jsonOutput: false,
|
|
1737
|
-
structuredOutputs: false,
|
|
1738
|
-
},
|
|
1255
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1739
1256
|
},
|
|
1740
1257
|
[LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_V3_2]: {
|
|
1741
1258
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_V3_2,
|
|
@@ -1753,14 +1270,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1753
1270
|
getPriceForAudioOutput: () => 0,
|
|
1754
1271
|
currency: 'USD',
|
|
1755
1272
|
},
|
|
1756
|
-
capabilities: {
|
|
1757
|
-
vision: true,
|
|
1758
|
-
tools: true,
|
|
1759
|
-
reasoning: false,
|
|
1760
|
-
webSearch: false,
|
|
1761
|
-
jsonOutput: true,
|
|
1762
|
-
structuredOutputs: false,
|
|
1763
|
-
},
|
|
1273
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1764
1274
|
},
|
|
1765
1275
|
// ─── Mistral ───────────────────────────────────────────────────
|
|
1766
1276
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MISTRAL_LARGE_LATEST]: {
|
|
@@ -1779,14 +1289,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1779
1289
|
getPriceForAudioOutput: () => 0,
|
|
1780
1290
|
currency: 'USD',
|
|
1781
1291
|
},
|
|
1782
|
-
capabilities: {
|
|
1783
|
-
vision: false,
|
|
1784
|
-
tools: true,
|
|
1785
|
-
reasoning: false,
|
|
1786
|
-
webSearch: false,
|
|
1787
|
-
jsonOutput: false,
|
|
1788
|
-
structuredOutputs: false,
|
|
1789
|
-
},
|
|
1292
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1790
1293
|
},
|
|
1791
1294
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MISTRAL_LARGE_2512]: {
|
|
1792
1295
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MISTRAL_LARGE_2512,
|
|
@@ -1804,14 +1307,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1804
1307
|
getPriceForAudioOutput: () => 0,
|
|
1805
1308
|
currency: 'USD',
|
|
1806
1309
|
},
|
|
1807
|
-
capabilities: {
|
|
1808
|
-
vision: true,
|
|
1809
|
-
tools: true,
|
|
1810
|
-
reasoning: false,
|
|
1811
|
-
webSearch: true,
|
|
1812
|
-
jsonOutput: true,
|
|
1813
|
-
structuredOutputs: false,
|
|
1814
|
-
},
|
|
1310
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1815
1311
|
},
|
|
1816
1312
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MISTRAL_SMALL_2506]: {
|
|
1817
1313
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MISTRAL_SMALL_2506,
|
|
@@ -1829,14 +1325,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1829
1325
|
getPriceForAudioOutput: () => 0,
|
|
1830
1326
|
currency: 'USD',
|
|
1831
1327
|
},
|
|
1832
|
-
capabilities: {
|
|
1833
|
-
vision: true,
|
|
1834
|
-
tools: true,
|
|
1835
|
-
reasoning: false,
|
|
1836
|
-
webSearch: true,
|
|
1837
|
-
jsonOutput: true,
|
|
1838
|
-
structuredOutputs: false,
|
|
1839
|
-
},
|
|
1328
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1840
1329
|
},
|
|
1841
1330
|
[LLMAPI_typedefs_1.LLMAPIModelNames.PIXTRAL_LARGE_LATEST]: {
|
|
1842
1331
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.PIXTRAL_LARGE_LATEST,
|
|
@@ -1854,14 +1343,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1854
1343
|
getPriceForAudioOutput: () => 0,
|
|
1855
1344
|
currency: 'USD',
|
|
1856
1345
|
},
|
|
1857
|
-
capabilities: {
|
|
1858
|
-
vision: true,
|
|
1859
|
-
tools: true,
|
|
1860
|
-
reasoning: false,
|
|
1861
|
-
webSearch: false,
|
|
1862
|
-
jsonOutput: false,
|
|
1863
|
-
structuredOutputs: false,
|
|
1864
|
-
},
|
|
1346
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1865
1347
|
},
|
|
1866
1348
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINISTRAL_14B_2512]: {
|
|
1867
1349
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINISTRAL_14B_2512,
|
|
@@ -1879,14 +1361,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1879
1361
|
getPriceForAudioOutput: () => 0,
|
|
1880
1362
|
currency: 'USD',
|
|
1881
1363
|
},
|
|
1882
|
-
capabilities: {
|
|
1883
|
-
vision: true,
|
|
1884
|
-
tools: true,
|
|
1885
|
-
reasoning: false,
|
|
1886
|
-
webSearch: true,
|
|
1887
|
-
jsonOutput: true,
|
|
1888
|
-
structuredOutputs: false,
|
|
1889
|
-
},
|
|
1364
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1890
1365
|
},
|
|
1891
1366
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINISTRAL_8B_2512]: {
|
|
1892
1367
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINISTRAL_8B_2512,
|
|
@@ -1904,14 +1379,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1904
1379
|
getPriceForAudioOutput: () => 0,
|
|
1905
1380
|
currency: 'USD',
|
|
1906
1381
|
},
|
|
1907
|
-
capabilities: {
|
|
1908
|
-
vision: true,
|
|
1909
|
-
tools: true,
|
|
1910
|
-
reasoning: false,
|
|
1911
|
-
webSearch: true,
|
|
1912
|
-
jsonOutput: true,
|
|
1913
|
-
structuredOutputs: false,
|
|
1914
|
-
},
|
|
1382
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1915
1383
|
},
|
|
1916
1384
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINISTRAL_3B_2512]: {
|
|
1917
1385
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINISTRAL_3B_2512,
|
|
@@ -1929,14 +1397,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1929
1397
|
getPriceForAudioOutput: () => 0,
|
|
1930
1398
|
currency: 'USD',
|
|
1931
1399
|
},
|
|
1932
|
-
capabilities: {
|
|
1933
|
-
vision: true,
|
|
1934
|
-
tools: true,
|
|
1935
|
-
reasoning: false,
|
|
1936
|
-
webSearch: true,
|
|
1937
|
-
jsonOutput: true,
|
|
1938
|
-
structuredOutputs: false,
|
|
1939
|
-
},
|
|
1400
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1940
1401
|
},
|
|
1941
1402
|
[LLMAPI_typedefs_1.LLMAPIModelNames.CODESTRAL_2508]: {
|
|
1942
1403
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.CODESTRAL_2508,
|
|
@@ -1954,14 +1415,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1954
1415
|
getPriceForAudioOutput: () => 0,
|
|
1955
1416
|
currency: 'USD',
|
|
1956
1417
|
},
|
|
1957
|
-
capabilities: {
|
|
1958
|
-
vision: false,
|
|
1959
|
-
tools: true,
|
|
1960
|
-
reasoning: false,
|
|
1961
|
-
webSearch: true,
|
|
1962
|
-
jsonOutput: true,
|
|
1963
|
-
structuredOutputs: false,
|
|
1964
|
-
},
|
|
1418
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1965
1419
|
},
|
|
1966
1420
|
[LLMAPI_typedefs_1.LLMAPIModelNames.DEVSTRAL_2512]: {
|
|
1967
1421
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.DEVSTRAL_2512,
|
|
@@ -1979,14 +1433,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1979
1433
|
getPriceForAudioOutput: () => 0,
|
|
1980
1434
|
currency: 'USD',
|
|
1981
1435
|
},
|
|
1982
|
-
capabilities: {
|
|
1983
|
-
vision: false,
|
|
1984
|
-
tools: true,
|
|
1985
|
-
reasoning: false,
|
|
1986
|
-
webSearch: true,
|
|
1987
|
-
jsonOutput: true,
|
|
1988
|
-
structuredOutputs: false,
|
|
1989
|
-
},
|
|
1436
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
1990
1437
|
},
|
|
1991
1438
|
[LLMAPI_typedefs_1.LLMAPIModelNames.DEVSTRAL_SMALL_2507]: {
|
|
1992
1439
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.DEVSTRAL_SMALL_2507,
|
|
@@ -2004,14 +1451,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2004
1451
|
getPriceForAudioOutput: () => 0,
|
|
2005
1452
|
currency: 'USD',
|
|
2006
1453
|
},
|
|
2007
|
-
capabilities: {
|
|
2008
|
-
vision: false,
|
|
2009
|
-
tools: true,
|
|
2010
|
-
reasoning: false,
|
|
2011
|
-
webSearch: true,
|
|
2012
|
-
jsonOutput: true,
|
|
2013
|
-
structuredOutputs: false,
|
|
2014
|
-
},
|
|
1454
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2015
1455
|
},
|
|
2016
1456
|
// ─── MiniMax ───────────────────────────────────────────────────
|
|
2017
1457
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5]: {
|
|
@@ -2030,14 +1470,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2030
1470
|
getPriceForAudioOutput: () => 0,
|
|
2031
1471
|
currency: 'USD',
|
|
2032
1472
|
},
|
|
2033
|
-
capabilities: {
|
|
2034
|
-
vision: false,
|
|
2035
|
-
tools: true,
|
|
2036
|
-
reasoning: true,
|
|
2037
|
-
webSearch: false,
|
|
2038
|
-
jsonOutput: true,
|
|
2039
|
-
structuredOutputs: false,
|
|
2040
|
-
},
|
|
1473
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
2041
1474
|
},
|
|
2042
1475
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_NATIVE]: {
|
|
2043
1476
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_NATIVE,
|
|
@@ -2055,14 +1488,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2055
1488
|
getPriceForAudioOutput: () => 0,
|
|
2056
1489
|
currency: 'USD',
|
|
2057
1490
|
},
|
|
2058
|
-
capabilities: {
|
|
2059
|
-
vision: false,
|
|
2060
|
-
tools: true,
|
|
2061
|
-
reasoning: true,
|
|
2062
|
-
webSearch: false,
|
|
2063
|
-
jsonOutput: true,
|
|
2064
|
-
structuredOutputs: false,
|
|
2065
|
-
},
|
|
1491
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
2066
1492
|
},
|
|
2067
1493
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_NOVITA]: {
|
|
2068
1494
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_NOVITA,
|
|
@@ -2080,14 +1506,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2080
1506
|
getPriceForAudioOutput: () => 0,
|
|
2081
1507
|
currency: 'USD',
|
|
2082
1508
|
},
|
|
2083
|
-
capabilities: {
|
|
2084
|
-
vision: false,
|
|
2085
|
-
tools: true,
|
|
2086
|
-
reasoning: true,
|
|
2087
|
-
webSearch: false,
|
|
2088
|
-
jsonOutput: true,
|
|
2089
|
-
structuredOutputs: false,
|
|
2090
|
-
},
|
|
1509
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
2091
1510
|
},
|
|
2092
1511
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2]: {
|
|
2093
1512
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2,
|
|
@@ -2105,14 +1524,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2105
1524
|
getPriceForAudioOutput: () => 0,
|
|
2106
1525
|
currency: 'USD',
|
|
2107
1526
|
},
|
|
2108
|
-
capabilities: {
|
|
2109
|
-
vision: false,
|
|
2110
|
-
tools: false,
|
|
2111
|
-
reasoning: true,
|
|
2112
|
-
webSearch: false,
|
|
2113
|
-
jsonOutput: false,
|
|
2114
|
-
structuredOutputs: false,
|
|
2115
|
-
},
|
|
1527
|
+
capabilities: { vision: false, tools: false, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
2116
1528
|
},
|
|
2117
1529
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1]: {
|
|
2118
1530
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1,
|
|
@@ -2130,14 +1542,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2130
1542
|
getPriceForAudioOutput: () => 0,
|
|
2131
1543
|
currency: 'USD',
|
|
2132
1544
|
},
|
|
2133
|
-
capabilities: {
|
|
2134
|
-
vision: false,
|
|
2135
|
-
tools: false,
|
|
2136
|
-
reasoning: true,
|
|
2137
|
-
webSearch: false,
|
|
2138
|
-
jsonOutput: true,
|
|
2139
|
-
structuredOutputs: false,
|
|
2140
|
-
},
|
|
1545
|
+
capabilities: { vision: false, tools: false, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
2141
1546
|
},
|
|
2142
1547
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1_LIGHTNING]: {
|
|
2143
1548
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1_LIGHTNING,
|
|
@@ -2155,14 +1560,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2155
1560
|
getPriceForAudioOutput: () => 0,
|
|
2156
1561
|
currency: 'USD',
|
|
2157
1562
|
},
|
|
2158
|
-
capabilities: {
|
|
2159
|
-
vision: false,
|
|
2160
|
-
tools: false,
|
|
2161
|
-
reasoning: true,
|
|
2162
|
-
webSearch: false,
|
|
2163
|
-
jsonOutput: false,
|
|
2164
|
-
structuredOutputs: false,
|
|
2165
|
-
},
|
|
1563
|
+
capabilities: { vision: false, tools: false, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
2166
1564
|
},
|
|
2167
1565
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_TEXT_01]: {
|
|
2168
1566
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_TEXT_01,
|
|
@@ -2180,14 +1578,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2180
1578
|
getPriceForAudioOutput: () => 0,
|
|
2181
1579
|
currency: 'USD',
|
|
2182
1580
|
},
|
|
2183
|
-
capabilities: {
|
|
2184
|
-
vision: false,
|
|
2185
|
-
tools: false,
|
|
2186
|
-
reasoning: false,
|
|
2187
|
-
webSearch: false,
|
|
2188
|
-
jsonOutput: false,
|
|
2189
|
-
structuredOutputs: false,
|
|
2190
|
-
},
|
|
1581
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2191
1582
|
},
|
|
2192
1583
|
// ─── Moonshot Kimi ─────────────────────────────────────────────
|
|
2193
1584
|
[LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2]: {
|
|
@@ -2206,14 +1597,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2206
1597
|
getPriceForAudioOutput: () => 0,
|
|
2207
1598
|
currency: 'USD',
|
|
2208
1599
|
},
|
|
2209
|
-
capabilities: {
|
|
2210
|
-
vision: false,
|
|
2211
|
-
tools: true,
|
|
2212
|
-
reasoning: false,
|
|
2213
|
-
webSearch: false,
|
|
2214
|
-
jsonOutput: true,
|
|
2215
|
-
structuredOutputs: false,
|
|
2216
|
-
},
|
|
1600
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2217
1601
|
},
|
|
2218
1602
|
[LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_THINKING_TURBO]: {
|
|
2219
1603
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_THINKING_TURBO,
|
|
@@ -2231,14 +1615,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2231
1615
|
getPriceForAudioOutput: () => 0,
|
|
2232
1616
|
currency: 'USD',
|
|
2233
1617
|
},
|
|
2234
|
-
capabilities: {
|
|
2235
|
-
vision: false,
|
|
2236
|
-
tools: true,
|
|
2237
|
-
reasoning: true,
|
|
2238
|
-
webSearch: false,
|
|
2239
|
-
jsonOutput: true,
|
|
2240
|
-
structuredOutputs: false,
|
|
2241
|
-
},
|
|
1618
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
2242
1619
|
},
|
|
2243
1620
|
[LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_5]: {
|
|
2244
1621
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_5,
|
|
@@ -2256,14 +1633,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2256
1633
|
getPriceForAudioOutput: () => 0,
|
|
2257
1634
|
currency: 'USD',
|
|
2258
1635
|
},
|
|
2259
|
-
capabilities: {
|
|
2260
|
-
vision: true,
|
|
2261
|
-
tools: true,
|
|
2262
|
-
reasoning: false,
|
|
2263
|
-
webSearch: false,
|
|
2264
|
-
jsonOutput: true,
|
|
2265
|
-
structuredOutputs: false,
|
|
2266
|
-
},
|
|
1636
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2267
1637
|
},
|
|
2268
1638
|
// ─── Alibaba Qwen ──────────────────────────────────────────────
|
|
2269
1639
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_MAX]: {
|
|
@@ -2282,14 +1652,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2282
1652
|
getPriceForAudioOutput: () => 0,
|
|
2283
1653
|
currency: 'USD',
|
|
2284
1654
|
},
|
|
2285
|
-
capabilities: {
|
|
2286
|
-
vision: true,
|
|
2287
|
-
tools: true,
|
|
2288
|
-
reasoning: false,
|
|
2289
|
-
webSearch: false,
|
|
2290
|
-
jsonOutput: true,
|
|
2291
|
-
structuredOutputs: false,
|
|
2292
|
-
},
|
|
1655
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2293
1656
|
},
|
|
2294
1657
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_MAX_LATEST]: {
|
|
2295
1658
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_MAX_LATEST,
|
|
@@ -2307,14 +1670,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2307
1670
|
getPriceForAudioOutput: () => 0,
|
|
2308
1671
|
currency: 'USD',
|
|
2309
1672
|
},
|
|
2310
|
-
capabilities: {
|
|
2311
|
-
vision: true,
|
|
2312
|
-
tools: true,
|
|
2313
|
-
reasoning: false,
|
|
2314
|
-
webSearch: false,
|
|
2315
|
-
jsonOutput: true,
|
|
2316
|
-
structuredOutputs: false,
|
|
2317
|
-
},
|
|
1673
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2318
1674
|
},
|
|
2319
1675
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_PLUS]: {
|
|
2320
1676
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_PLUS,
|
|
@@ -2332,14 +1688,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2332
1688
|
getPriceForAudioOutput: () => 0,
|
|
2333
1689
|
currency: 'USD',
|
|
2334
1690
|
},
|
|
2335
|
-
capabilities: {
|
|
2336
|
-
vision: false,
|
|
2337
|
-
tools: true,
|
|
2338
|
-
reasoning: false,
|
|
2339
|
-
webSearch: false,
|
|
2340
|
-
jsonOutput: true,
|
|
2341
|
-
structuredOutputs: false,
|
|
2342
|
-
},
|
|
1691
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2343
1692
|
},
|
|
2344
1693
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_PLUS_LATEST]: {
|
|
2345
1694
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_PLUS_LATEST,
|
|
@@ -2357,14 +1706,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2357
1706
|
getPriceForAudioOutput: () => 0,
|
|
2358
1707
|
currency: 'USD',
|
|
2359
1708
|
},
|
|
2360
|
-
capabilities: {
|
|
2361
|
-
vision: false,
|
|
2362
|
-
tools: true,
|
|
2363
|
-
reasoning: false,
|
|
2364
|
-
webSearch: false,
|
|
2365
|
-
jsonOutput: true,
|
|
2366
|
-
structuredOutputs: false,
|
|
2367
|
-
},
|
|
1709
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2368
1710
|
},
|
|
2369
1711
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_FLASH]: {
|
|
2370
1712
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_FLASH,
|
|
@@ -2382,14 +1724,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2382
1724
|
getPriceForAudioOutput: () => 0,
|
|
2383
1725
|
currency: 'USD',
|
|
2384
1726
|
},
|
|
2385
|
-
capabilities: {
|
|
2386
|
-
vision: false,
|
|
2387
|
-
tools: true,
|
|
2388
|
-
reasoning: false,
|
|
2389
|
-
webSearch: false,
|
|
2390
|
-
jsonOutput: true,
|
|
2391
|
-
structuredOutputs: false,
|
|
2392
|
-
},
|
|
1727
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2393
1728
|
},
|
|
2394
1729
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_TURBO]: {
|
|
2395
1730
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_TURBO,
|
|
@@ -2407,14 +1742,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2407
1742
|
getPriceForAudioOutput: () => 0,
|
|
2408
1743
|
currency: 'USD',
|
|
2409
1744
|
},
|
|
2410
|
-
capabilities: {
|
|
2411
|
-
vision: false,
|
|
2412
|
-
tools: false,
|
|
2413
|
-
reasoning: false,
|
|
2414
|
-
webSearch: false,
|
|
2415
|
-
jsonOutput: true,
|
|
2416
|
-
structuredOutputs: false,
|
|
2417
|
-
},
|
|
1745
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2418
1746
|
},
|
|
2419
1747
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_OMNI_TURBO]: {
|
|
2420
1748
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_OMNI_TURBO,
|
|
@@ -2432,14 +1760,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2432
1760
|
getPriceForAudioOutput: () => 0,
|
|
2433
1761
|
currency: 'USD',
|
|
2434
1762
|
},
|
|
2435
|
-
capabilities: {
|
|
2436
|
-
vision: true,
|
|
2437
|
-
tools: false,
|
|
2438
|
-
reasoning: false,
|
|
2439
|
-
webSearch: false,
|
|
2440
|
-
jsonOutput: true,
|
|
2441
|
-
structuredOutputs: false,
|
|
2442
|
-
},
|
|
1763
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2443
1764
|
},
|
|
2444
1765
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_VL_MAX]: {
|
|
2445
1766
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_VL_MAX,
|
|
@@ -2457,14 +1778,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2457
1778
|
getPriceForAudioOutput: () => 0,
|
|
2458
1779
|
currency: 'USD',
|
|
2459
1780
|
},
|
|
2460
|
-
capabilities: {
|
|
2461
|
-
vision: true,
|
|
2462
|
-
tools: false,
|
|
2463
|
-
reasoning: false,
|
|
2464
|
-
webSearch: false,
|
|
2465
|
-
jsonOutput: true,
|
|
2466
|
-
structuredOutputs: false,
|
|
2467
|
-
},
|
|
1781
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2468
1782
|
},
|
|
2469
1783
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_VL_PLUS]: {
|
|
2470
1784
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_VL_PLUS,
|
|
@@ -2482,14 +1796,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2482
1796
|
getPriceForAudioOutput: () => 0,
|
|
2483
1797
|
currency: 'USD',
|
|
2484
1798
|
},
|
|
2485
|
-
capabilities: {
|
|
2486
|
-
vision: true,
|
|
2487
|
-
tools: false,
|
|
2488
|
-
reasoning: false,
|
|
2489
|
-
webSearch: false,
|
|
2490
|
-
jsonOutput: true,
|
|
2491
|
-
structuredOutputs: false,
|
|
2492
|
-
},
|
|
1799
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2493
1800
|
},
|
|
2494
1801
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_CODER_PLUS]: {
|
|
2495
1802
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_CODER_PLUS,
|
|
@@ -2507,14 +1814,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2507
1814
|
getPriceForAudioOutput: () => 0,
|
|
2508
1815
|
currency: 'USD',
|
|
2509
1816
|
},
|
|
2510
|
-
capabilities: {
|
|
2511
|
-
vision: false,
|
|
2512
|
-
tools: true,
|
|
2513
|
-
reasoning: false,
|
|
2514
|
-
webSearch: false,
|
|
2515
|
-
jsonOutput: true,
|
|
2516
|
-
structuredOutputs: false,
|
|
2517
|
-
},
|
|
1817
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2518
1818
|
},
|
|
2519
1819
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWQ_PLUS]: {
|
|
2520
1820
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWQ_PLUS,
|
|
@@ -2532,14 +1832,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2532
1832
|
getPriceForAudioOutput: () => 0,
|
|
2533
1833
|
currency: 'USD',
|
|
2534
1834
|
},
|
|
2535
|
-
capabilities: {
|
|
2536
|
-
vision: false,
|
|
2537
|
-
tools: false,
|
|
2538
|
-
reasoning: true,
|
|
2539
|
-
webSearch: false,
|
|
2540
|
-
jsonOutput: false,
|
|
2541
|
-
structuredOutputs: false,
|
|
2542
|
-
},
|
|
1835
|
+
capabilities: { vision: false, tools: false, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
2543
1836
|
},
|
|
2544
1837
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_MAX]: {
|
|
2545
1838
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_MAX,
|
|
@@ -2557,14 +1850,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2557
1850
|
getPriceForAudioOutput: () => 0,
|
|
2558
1851
|
currency: 'USD',
|
|
2559
1852
|
},
|
|
2560
|
-
capabilities: {
|
|
2561
|
-
vision: true,
|
|
2562
|
-
tools: true,
|
|
2563
|
-
reasoning: true,
|
|
2564
|
-
webSearch: false,
|
|
2565
|
-
jsonOutput: true,
|
|
2566
|
-
structuredOutputs: false,
|
|
2567
|
-
},
|
|
1853
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
2568
1854
|
},
|
|
2569
1855
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_MAX_2026_01_23]: {
|
|
2570
1856
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_MAX_2026_01_23,
|
|
@@ -2582,14 +1868,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2582
1868
|
getPriceForAudioOutput: () => 0,
|
|
2583
1869
|
currency: 'USD',
|
|
2584
1870
|
},
|
|
2585
|
-
capabilities: {
|
|
2586
|
-
vision: true,
|
|
2587
|
-
tools: true,
|
|
2588
|
-
reasoning: true,
|
|
2589
|
-
webSearch: false,
|
|
2590
|
-
jsonOutput: true,
|
|
2591
|
-
structuredOutputs: false,
|
|
2592
|
-
},
|
|
1871
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
2593
1872
|
},
|
|
2594
1873
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_32B]: {
|
|
2595
1874
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_32B,
|
|
@@ -2607,14 +1886,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2607
1886
|
getPriceForAudioOutput: () => 0,
|
|
2608
1887
|
currency: 'USD',
|
|
2609
1888
|
},
|
|
2610
|
-
capabilities: {
|
|
2611
|
-
vision: false,
|
|
2612
|
-
tools: true,
|
|
2613
|
-
reasoning: false,
|
|
2614
|
-
webSearch: false,
|
|
2615
|
-
jsonOutput: true,
|
|
2616
|
-
structuredOutputs: false,
|
|
2617
|
-
},
|
|
1889
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2618
1890
|
},
|
|
2619
1891
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_32B_FP8]: {
|
|
2620
1892
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_32B_FP8,
|
|
@@ -2632,14 +1904,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2632
1904
|
getPriceForAudioOutput: () => 0,
|
|
2633
1905
|
currency: 'USD',
|
|
2634
1906
|
},
|
|
2635
|
-
capabilities: {
|
|
2636
|
-
vision: false,
|
|
2637
|
-
tools: false,
|
|
2638
|
-
reasoning: false,
|
|
2639
|
-
webSearch: false,
|
|
2640
|
-
jsonOutput: false,
|
|
2641
|
-
structuredOutputs: false,
|
|
2642
|
-
},
|
|
1907
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2643
1908
|
},
|
|
2644
1909
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_INSTRUCT_2507]: {
|
|
2645
1910
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_INSTRUCT_2507,
|
|
@@ -2657,14 +1922,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2657
1922
|
getPriceForAudioOutput: () => 0,
|
|
2658
1923
|
currency: 'USD',
|
|
2659
1924
|
},
|
|
2660
|
-
capabilities: {
|
|
2661
|
-
vision: false,
|
|
2662
|
-
tools: true,
|
|
2663
|
-
reasoning: false,
|
|
2664
|
-
webSearch: false,
|
|
2665
|
-
jsonOutput: true,
|
|
2666
|
-
structuredOutputs: false,
|
|
2667
|
-
},
|
|
1925
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2668
1926
|
},
|
|
2669
1927
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_THINKING_2507]: {
|
|
2670
1928
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_THINKING_2507,
|
|
@@ -2682,14 +1940,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2682
1940
|
getPriceForAudioOutput: () => 0,
|
|
2683
1941
|
currency: 'USD',
|
|
2684
1942
|
},
|
|
2685
|
-
capabilities: {
|
|
2686
|
-
vision: false,
|
|
2687
|
-
tools: true,
|
|
2688
|
-
reasoning: true,
|
|
2689
|
-
webSearch: false,
|
|
2690
|
-
jsonOutput: true,
|
|
2691
|
-
structuredOutputs: false,
|
|
2692
|
-
},
|
|
1943
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
2693
1944
|
},
|
|
2694
1945
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_FP8]: {
|
|
2695
1946
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_FP8,
|
|
@@ -2707,14 +1958,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2707
1958
|
getPriceForAudioOutput: () => 0,
|
|
2708
1959
|
currency: 'USD',
|
|
2709
1960
|
},
|
|
2710
|
-
capabilities: {
|
|
2711
|
-
vision: false,
|
|
2712
|
-
tools: false,
|
|
2713
|
-
reasoning: false,
|
|
2714
|
-
webSearch: false,
|
|
2715
|
-
jsonOutput: true,
|
|
2716
|
-
structuredOutputs: false,
|
|
2717
|
-
},
|
|
1961
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2718
1962
|
},
|
|
2719
1963
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_30B_A3B_INSTRUCT_2507]: {
|
|
2720
1964
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_30B_A3B_INSTRUCT_2507,
|
|
@@ -2732,14 +1976,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2732
1976
|
getPriceForAudioOutput: () => 0,
|
|
2733
1977
|
currency: 'USD',
|
|
2734
1978
|
},
|
|
2735
|
-
capabilities: {
|
|
2736
|
-
vision: false,
|
|
2737
|
-
tools: true,
|
|
2738
|
-
reasoning: false,
|
|
2739
|
-
webSearch: false,
|
|
2740
|
-
jsonOutput: true,
|
|
2741
|
-
structuredOutputs: false,
|
|
2742
|
-
},
|
|
1979
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2743
1980
|
},
|
|
2744
1981
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_30B_A3B_THINKING_2507]: {
|
|
2745
1982
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_30B_A3B_THINKING_2507,
|
|
@@ -2757,14 +1994,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2757
1994
|
getPriceForAudioOutput: () => 0,
|
|
2758
1995
|
currency: 'USD',
|
|
2759
1996
|
},
|
|
2760
|
-
capabilities: {
|
|
2761
|
-
vision: false,
|
|
2762
|
-
tools: true,
|
|
2763
|
-
reasoning: true,
|
|
2764
|
-
webSearch: false,
|
|
2765
|
-
jsonOutput: true,
|
|
2766
|
-
structuredOutputs: false,
|
|
2767
|
-
},
|
|
1997
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
2768
1998
|
},
|
|
2769
1999
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_30B_A3B_FP8]: {
|
|
2770
2000
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_30B_A3B_FP8,
|
|
@@ -2782,14 +2012,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2782
2012
|
getPriceForAudioOutput: () => 0,
|
|
2783
2013
|
currency: 'USD',
|
|
2784
2014
|
},
|
|
2785
|
-
capabilities: {
|
|
2786
|
-
vision: false,
|
|
2787
|
-
tools: false,
|
|
2788
|
-
reasoning: false,
|
|
2789
|
-
webSearch: false,
|
|
2790
|
-
jsonOutput: false,
|
|
2791
|
-
structuredOutputs: false,
|
|
2792
|
-
},
|
|
2015
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2793
2016
|
},
|
|
2794
2017
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_4B_FP8]: {
|
|
2795
2018
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_4B_FP8,
|
|
@@ -2807,14 +2030,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2807
2030
|
getPriceForAudioOutput: () => 0,
|
|
2808
2031
|
currency: 'USD',
|
|
2809
2032
|
},
|
|
2810
|
-
capabilities: {
|
|
2811
|
-
vision: false,
|
|
2812
|
-
tools: false,
|
|
2813
|
-
reasoning: false,
|
|
2814
|
-
webSearch: false,
|
|
2815
|
-
jsonOutput: false,
|
|
2816
|
-
structuredOutputs: false,
|
|
2817
|
-
},
|
|
2033
|
+
capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2818
2034
|
},
|
|
2819
2035
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_5_397B]: {
|
|
2820
2036
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_5_397B,
|
|
@@ -2832,14 +2048,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2832
2048
|
getPriceForAudioOutput: () => 0,
|
|
2833
2049
|
currency: 'USD',
|
|
2834
2050
|
},
|
|
2835
|
-
capabilities: {
|
|
2836
|
-
vision: true,
|
|
2837
|
-
tools: true,
|
|
2838
|
-
reasoning: true,
|
|
2839
|
-
webSearch: true,
|
|
2840
|
-
jsonOutput: true,
|
|
2841
|
-
structuredOutputs: false,
|
|
2842
|
-
},
|
|
2051
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
|
|
2843
2052
|
},
|
|
2844
2053
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_THINKING]: {
|
|
2845
2054
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_THINKING,
|
|
@@ -2857,14 +2066,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2857
2066
|
getPriceForAudioOutput: () => 0,
|
|
2858
2067
|
currency: 'USD',
|
|
2859
2068
|
},
|
|
2860
|
-
capabilities: {
|
|
2861
|
-
vision: false,
|
|
2862
|
-
tools: true,
|
|
2863
|
-
reasoning: true,
|
|
2864
|
-
webSearch: false,
|
|
2865
|
-
jsonOutput: false,
|
|
2866
|
-
structuredOutputs: false,
|
|
2867
|
-
},
|
|
2069
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
2868
2070
|
},
|
|
2869
2071
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_INSTRUCT]: {
|
|
2870
2072
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_INSTRUCT,
|
|
@@ -2882,14 +2084,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2882
2084
|
getPriceForAudioOutput: () => 0,
|
|
2883
2085
|
currency: 'USD',
|
|
2884
2086
|
},
|
|
2885
|
-
capabilities: {
|
|
2886
|
-
vision: false,
|
|
2887
|
-
tools: true,
|
|
2888
|
-
reasoning: false,
|
|
2889
|
-
webSearch: false,
|
|
2890
|
-
jsonOutput: true,
|
|
2891
|
-
structuredOutputs: false,
|
|
2892
|
-
},
|
|
2087
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2893
2088
|
},
|
|
2894
2089
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_PLUS]: {
|
|
2895
2090
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_PLUS,
|
|
@@ -2907,14 +2102,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2907
2102
|
getPriceForAudioOutput: () => 0,
|
|
2908
2103
|
currency: 'USD',
|
|
2909
2104
|
},
|
|
2910
|
-
capabilities: {
|
|
2911
|
-
vision: false,
|
|
2912
|
-
tools: true,
|
|
2913
|
-
reasoning: false,
|
|
2914
|
-
webSearch: false,
|
|
2915
|
-
jsonOutput: true,
|
|
2916
|
-
structuredOutputs: false,
|
|
2917
|
-
},
|
|
2105
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2918
2106
|
},
|
|
2919
2107
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_FLASH]: {
|
|
2920
2108
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_FLASH,
|
|
@@ -2932,14 +2120,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2932
2120
|
getPriceForAudioOutput: () => 0,
|
|
2933
2121
|
currency: 'USD',
|
|
2934
2122
|
},
|
|
2935
|
-
capabilities: {
|
|
2936
|
-
vision: false,
|
|
2937
|
-
tools: true,
|
|
2938
|
-
reasoning: false,
|
|
2939
|
-
webSearch: false,
|
|
2940
|
-
jsonOutput: true,
|
|
2941
|
-
structuredOutputs: false,
|
|
2942
|
-
},
|
|
2123
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2943
2124
|
},
|
|
2944
2125
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_30B_A3B_INSTRUCT]: {
|
|
2945
2126
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_30B_A3B_INSTRUCT,
|
|
@@ -2957,14 +2138,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2957
2138
|
getPriceForAudioOutput: () => 0,
|
|
2958
2139
|
currency: 'USD',
|
|
2959
2140
|
},
|
|
2960
|
-
capabilities: {
|
|
2961
|
-
vision: false,
|
|
2962
|
-
tools: true,
|
|
2963
|
-
reasoning: false,
|
|
2964
|
-
webSearch: false,
|
|
2965
|
-
jsonOutput: true,
|
|
2966
|
-
structuredOutputs: false,
|
|
2967
|
-
},
|
|
2141
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2968
2142
|
},
|
|
2969
2143
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_8B_INSTRUCT]: {
|
|
2970
2144
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_8B_INSTRUCT,
|
|
@@ -2982,14 +2156,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2982
2156
|
getPriceForAudioOutput: () => 0,
|
|
2983
2157
|
currency: 'USD',
|
|
2984
2158
|
},
|
|
2985
|
-
capabilities: {
|
|
2986
|
-
vision: true,
|
|
2987
|
-
tools: false,
|
|
2988
|
-
reasoning: false,
|
|
2989
|
-
webSearch: false,
|
|
2990
|
-
jsonOutput: true,
|
|
2991
|
-
structuredOutputs: false,
|
|
2992
|
-
},
|
|
2159
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2993
2160
|
},
|
|
2994
2161
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_PLUS]: {
|
|
2995
2162
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_PLUS,
|
|
@@ -3007,14 +2174,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3007
2174
|
getPriceForAudioOutput: () => 0,
|
|
3008
2175
|
currency: 'USD',
|
|
3009
2176
|
},
|
|
3010
|
-
capabilities: {
|
|
3011
|
-
vision: true,
|
|
3012
|
-
tools: false,
|
|
3013
|
-
reasoning: false,
|
|
3014
|
-
webSearch: false,
|
|
3015
|
-
jsonOutput: true,
|
|
3016
|
-
structuredOutputs: false,
|
|
3017
|
-
},
|
|
2177
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
3018
2178
|
},
|
|
3019
2179
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_FLASH]: {
|
|
3020
2180
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_FLASH,
|
|
@@ -3032,14 +2192,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3032
2192
|
getPriceForAudioOutput: () => 0,
|
|
3033
2193
|
currency: 'USD',
|
|
3034
2194
|
},
|
|
3035
|
-
capabilities: {
|
|
3036
|
-
vision: true,
|
|
3037
|
-
tools: true,
|
|
3038
|
-
reasoning: false,
|
|
3039
|
-
webSearch: false,
|
|
3040
|
-
jsonOutput: true,
|
|
3041
|
-
structuredOutputs: false,
|
|
3042
|
-
},
|
|
2195
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
3043
2196
|
},
|
|
3044
2197
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_30B_A3B_INSTRUCT]: {
|
|
3045
2198
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_30B_A3B_INSTRUCT,
|
|
@@ -3057,14 +2210,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3057
2210
|
getPriceForAudioOutput: () => 0,
|
|
3058
2211
|
currency: 'USD',
|
|
3059
2212
|
},
|
|
3060
|
-
capabilities: {
|
|
3061
|
-
vision: true,
|
|
3062
|
-
tools: true,
|
|
3063
|
-
reasoning: false,
|
|
3064
|
-
webSearch: false,
|
|
3065
|
-
jsonOutput: false,
|
|
3066
|
-
structuredOutputs: false,
|
|
3067
|
-
},
|
|
2213
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
3068
2214
|
},
|
|
3069
2215
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_30B_A3B_THINKING]: {
|
|
3070
2216
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_30B_A3B_THINKING,
|
|
@@ -3082,14 +2228,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3082
2228
|
getPriceForAudioOutput: () => 0,
|
|
3083
2229
|
currency: 'USD',
|
|
3084
2230
|
},
|
|
3085
|
-
capabilities: {
|
|
3086
|
-
vision: true,
|
|
3087
|
-
tools: true,
|
|
3088
|
-
reasoning: true,
|
|
3089
|
-
webSearch: false,
|
|
3090
|
-
jsonOutput: true,
|
|
3091
|
-
structuredOutputs: false,
|
|
3092
|
-
},
|
|
2231
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
3093
2232
|
},
|
|
3094
2233
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_INSTRUCT]: {
|
|
3095
2234
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_INSTRUCT,
|
|
@@ -3107,14 +2246,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3107
2246
|
getPriceForAudioOutput: () => 0,
|
|
3108
2247
|
currency: 'USD',
|
|
3109
2248
|
},
|
|
3110
|
-
capabilities: {
|
|
3111
|
-
vision: true,
|
|
3112
|
-
tools: true,
|
|
3113
|
-
reasoning: false,
|
|
3114
|
-
webSearch: false,
|
|
3115
|
-
jsonOutput: true,
|
|
3116
|
-
structuredOutputs: false,
|
|
3117
|
-
},
|
|
2249
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
3118
2250
|
},
|
|
3119
2251
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_THINKING]: {
|
|
3120
2252
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_THINKING,
|
|
@@ -3132,14 +2264,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3132
2264
|
getPriceForAudioOutput: () => 0,
|
|
3133
2265
|
currency: 'USD',
|
|
3134
2266
|
},
|
|
3135
|
-
capabilities: {
|
|
3136
|
-
vision: true,
|
|
3137
|
-
tools: false,
|
|
3138
|
-
reasoning: true,
|
|
3139
|
-
webSearch: false,
|
|
3140
|
-
jsonOutput: false,
|
|
3141
|
-
structuredOutputs: false,
|
|
3142
|
-
},
|
|
2267
|
+
capabilities: { vision: true, tools: false, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
3143
2268
|
},
|
|
3144
2269
|
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN2_5_VL_32B_INSTRUCT]: {
|
|
3145
2270
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN2_5_VL_32B_INSTRUCT,
|
|
@@ -3157,14 +2282,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3157
2282
|
getPriceForAudioOutput: () => 0,
|
|
3158
2283
|
currency: 'USD',
|
|
3159
2284
|
},
|
|
3160
|
-
capabilities: {
|
|
3161
|
-
vision: true,
|
|
3162
|
-
tools: false,
|
|
3163
|
-
reasoning: false,
|
|
3164
|
-
webSearch: false,
|
|
3165
|
-
jsonOutput: true,
|
|
3166
|
-
structuredOutputs: false,
|
|
3167
|
-
},
|
|
2285
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
3168
2286
|
},
|
|
3169
2287
|
// ─── Zhipu GLM ─────────────────────────────────────────────────
|
|
3170
2288
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5]: {
|
|
@@ -3183,14 +2301,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3183
2301
|
getPriceForAudioOutput: () => 0,
|
|
3184
2302
|
currency: 'USD',
|
|
3185
2303
|
},
|
|
3186
|
-
capabilities: {
|
|
3187
|
-
vision: false,
|
|
3188
|
-
tools: true,
|
|
3189
|
-
reasoning: true,
|
|
3190
|
-
webSearch: true,
|
|
3191
|
-
jsonOutput: true,
|
|
3192
|
-
structuredOutputs: false,
|
|
3193
|
-
},
|
|
2304
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
|
|
3194
2305
|
},
|
|
3195
2306
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5]: {
|
|
3196
2307
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5,
|
|
@@ -3208,14 +2319,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3208
2319
|
getPriceForAudioOutput: () => 0,
|
|
3209
2320
|
currency: 'USD',
|
|
3210
2321
|
},
|
|
3211
|
-
capabilities: {
|
|
3212
|
-
vision: false,
|
|
3213
|
-
tools: true,
|
|
3214
|
-
reasoning: true,
|
|
3215
|
-
webSearch: true,
|
|
3216
|
-
jsonOutput: true,
|
|
3217
|
-
structuredOutputs: false,
|
|
3218
|
-
},
|
|
2322
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
|
|
3219
2323
|
},
|
|
3220
2324
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5V]: {
|
|
3221
2325
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5V,
|
|
@@ -3233,14 +2337,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3233
2337
|
getPriceForAudioOutput: () => 0,
|
|
3234
2338
|
currency: 'USD',
|
|
3235
2339
|
},
|
|
3236
|
-
capabilities: {
|
|
3237
|
-
vision: true,
|
|
3238
|
-
tools: true,
|
|
3239
|
-
reasoning: true,
|
|
3240
|
-
webSearch: false,
|
|
3241
|
-
jsonOutput: true,
|
|
3242
|
-
structuredOutputs: false,
|
|
3243
|
-
},
|
|
2340
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
3244
2341
|
},
|
|
3245
2342
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIR]: {
|
|
3246
2343
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIR,
|
|
@@ -3258,14 +2355,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3258
2355
|
getPriceForAudioOutput: () => 0,
|
|
3259
2356
|
currency: 'USD',
|
|
3260
2357
|
},
|
|
3261
|
-
capabilities: {
|
|
3262
|
-
vision: false,
|
|
3263
|
-
tools: true,
|
|
3264
|
-
reasoning: false,
|
|
3265
|
-
webSearch: false,
|
|
3266
|
-
jsonOutput: true,
|
|
3267
|
-
structuredOutputs: false,
|
|
3268
|
-
},
|
|
2358
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
3269
2359
|
},
|
|
3270
2360
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_X]: {
|
|
3271
2361
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_X,
|
|
@@ -3283,14 +2373,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3283
2373
|
getPriceForAudioOutput: () => 0,
|
|
3284
2374
|
currency: 'USD',
|
|
3285
2375
|
},
|
|
3286
|
-
capabilities: {
|
|
3287
|
-
vision: false,
|
|
3288
|
-
tools: true,
|
|
3289
|
-
reasoning: true,
|
|
3290
|
-
webSearch: false,
|
|
3291
|
-
jsonOutput: true,
|
|
3292
|
-
structuredOutputs: false,
|
|
3293
|
-
},
|
|
2376
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
3294
2377
|
},
|
|
3295
2378
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIRX]: {
|
|
3296
2379
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIRX,
|
|
@@ -3308,14 +2391,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3308
2391
|
getPriceForAudioOutput: () => 0,
|
|
3309
2392
|
currency: 'USD',
|
|
3310
2393
|
},
|
|
3311
|
-
capabilities: {
|
|
3312
|
-
vision: false,
|
|
3313
|
-
tools: true,
|
|
3314
|
-
reasoning: false,
|
|
3315
|
-
webSearch: false,
|
|
3316
|
-
jsonOutput: true,
|
|
3317
|
-
structuredOutputs: false,
|
|
3318
|
-
},
|
|
2394
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
3319
2395
|
},
|
|
3320
2396
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_FLASH]: {
|
|
3321
2397
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_FLASH,
|
|
@@ -3333,14 +2409,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3333
2409
|
getPriceForAudioOutput: () => 0,
|
|
3334
2410
|
currency: 'USD',
|
|
3335
2411
|
},
|
|
3336
|
-
capabilities: {
|
|
3337
|
-
vision: false,
|
|
3338
|
-
tools: true,
|
|
3339
|
-
reasoning: false,
|
|
3340
|
-
webSearch: false,
|
|
3341
|
-
jsonOutput: true,
|
|
3342
|
-
structuredOutputs: false,
|
|
3343
|
-
},
|
|
2412
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
3344
2413
|
},
|
|
3345
2414
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6]: {
|
|
3346
2415
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6,
|
|
@@ -3358,14 +2427,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3358
2427
|
getPriceForAudioOutput: () => 0,
|
|
3359
2428
|
currency: 'USD',
|
|
3360
2429
|
},
|
|
3361
|
-
capabilities: {
|
|
3362
|
-
vision: false,
|
|
3363
|
-
tools: true,
|
|
3364
|
-
reasoning: true,
|
|
3365
|
-
webSearch: true,
|
|
3366
|
-
jsonOutput: true,
|
|
3367
|
-
structuredOutputs: false,
|
|
3368
|
-
},
|
|
2430
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
|
|
3369
2431
|
},
|
|
3370
2432
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V]: {
|
|
3371
2433
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V,
|
|
@@ -3383,14 +2445,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3383
2445
|
getPriceForAudioOutput: () => 0,
|
|
3384
2446
|
currency: 'USD',
|
|
3385
2447
|
},
|
|
3386
|
-
capabilities: {
|
|
3387
|
-
vision: true,
|
|
3388
|
-
tools: true,
|
|
3389
|
-
reasoning: true,
|
|
3390
|
-
webSearch: false,
|
|
3391
|
-
jsonOutput: true,
|
|
3392
|
-
structuredOutputs: false,
|
|
3393
|
-
},
|
|
2448
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
3394
2449
|
},
|
|
3395
2450
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_FLASHX]: {
|
|
3396
2451
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_FLASHX,
|
|
@@ -3408,14 +2463,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3408
2463
|
getPriceForAudioOutput: () => 0,
|
|
3409
2464
|
currency: 'USD',
|
|
3410
2465
|
},
|
|
3411
|
-
capabilities: {
|
|
3412
|
-
vision: true,
|
|
3413
|
-
tools: true,
|
|
3414
|
-
reasoning: true,
|
|
3415
|
-
webSearch: false,
|
|
3416
|
-
jsonOutput: true,
|
|
3417
|
-
structuredOutputs: false,
|
|
3418
|
-
},
|
|
2466
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
3419
2467
|
},
|
|
3420
2468
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_FLASH]: {
|
|
3421
2469
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_FLASH,
|
|
@@ -3433,14 +2481,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3433
2481
|
getPriceForAudioOutput: () => 0,
|
|
3434
2482
|
currency: 'USD',
|
|
3435
2483
|
},
|
|
3436
|
-
capabilities: {
|
|
3437
|
-
vision: true,
|
|
3438
|
-
tools: true,
|
|
3439
|
-
reasoning: true,
|
|
3440
|
-
webSearch: false,
|
|
3441
|
-
jsonOutput: true,
|
|
3442
|
-
structuredOutputs: false,
|
|
3443
|
-
},
|
|
2484
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
3444
2485
|
},
|
|
3445
2486
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7]: {
|
|
3446
2487
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7,
|
|
@@ -3458,14 +2499,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3458
2499
|
getPriceForAudioOutput: () => 0,
|
|
3459
2500
|
currency: 'USD',
|
|
3460
2501
|
},
|
|
3461
|
-
capabilities: {
|
|
3462
|
-
vision: false,
|
|
3463
|
-
tools: true,
|
|
3464
|
-
reasoning: true,
|
|
3465
|
-
webSearch: true,
|
|
3466
|
-
jsonOutput: true,
|
|
3467
|
-
structuredOutputs: false,
|
|
3468
|
-
},
|
|
2502
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
|
|
3469
2503
|
},
|
|
3470
2504
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASHX]: {
|
|
3471
2505
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASHX,
|
|
@@ -3483,14 +2517,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3483
2517
|
getPriceForAudioOutput: () => 0,
|
|
3484
2518
|
currency: 'USD',
|
|
3485
2519
|
},
|
|
3486
|
-
capabilities: {
|
|
3487
|
-
vision: false,
|
|
3488
|
-
tools: true,
|
|
3489
|
-
reasoning: true,
|
|
3490
|
-
webSearch: false,
|
|
3491
|
-
jsonOutput: true,
|
|
3492
|
-
structuredOutputs: false,
|
|
3493
|
-
},
|
|
2520
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
3494
2521
|
},
|
|
3495
2522
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASH]: {
|
|
3496
2523
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASH,
|
|
@@ -3508,14 +2535,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3508
2535
|
getPriceForAudioOutput: () => 0,
|
|
3509
2536
|
currency: 'USD',
|
|
3510
2537
|
},
|
|
3511
|
-
capabilities: {
|
|
3512
|
-
vision: false,
|
|
3513
|
-
tools: true,
|
|
3514
|
-
reasoning: true,
|
|
3515
|
-
webSearch: false,
|
|
3516
|
-
jsonOutput: true,
|
|
3517
|
-
structuredOutputs: false,
|
|
3518
|
-
},
|
|
2538
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
|
|
3519
2539
|
},
|
|
3520
2540
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_32B_0414_128K]: {
|
|
3521
2541
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_32B_0414_128K,
|
|
@@ -3533,1747 +2553,261 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3533
2553
|
getPriceForAudioOutput: () => 0,
|
|
3534
2554
|
currency: 'USD',
|
|
3535
2555
|
},
|
|
3536
|
-
capabilities: {
|
|
3537
|
-
|
|
3538
|
-
|
|
3539
|
-
|
|
3540
|
-
|
|
3541
|
-
|
|
3542
|
-
|
|
3543
|
-
},
|
|
3544
|
-
|
|
3545
|
-
|
|
3546
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
3547
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
3548
|
-
limits: {
|
|
3549
|
-
|
|
3550
|
-
|
|
3551
|
-
},
|
|
3552
|
-
|
|
3553
|
-
|
|
3554
|
-
|
|
3555
|
-
|
|
3556
|
-
|
|
3557
|
-
|
|
3558
|
-
|
|
3559
|
-
|
|
3560
|
-
|
|
3561
|
-
|
|
3562
|
-
|
|
3563
|
-
|
|
3564
|
-
|
|
3565
|
-
|
|
3566
|
-
|
|
3567
|
-
|
|
3568
|
-
|
|
3569
|
-
},
|
|
3570
|
-
|
|
3571
|
-
|
|
3572
|
-
|
|
3573
|
-
|
|
3574
|
-
|
|
3575
|
-
|
|
3576
|
-
},
|
|
3577
|
-
config: {
|
|
3578
|
-
|
|
3579
|
-
},
|
|
3580
|
-
|
|
3581
|
-
|
|
3582
|
-
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
|
|
3586
|
-
},
|
|
3587
|
-
|
|
3588
|
-
|
|
3589
|
-
|
|
3590
|
-
|
|
3591
|
-
|
|
3592
|
-
|
|
3593
|
-
|
|
3594
|
-
|
|
3595
|
-
|
|
3596
|
-
|
|
3597
|
-
|
|
3598
|
-
|
|
3599
|
-
|
|
3600
|
-
|
|
3601
|
-
|
|
3602
|
-
|
|
3603
|
-
|
|
3604
|
-
},
|
|
3605
|
-
|
|
3606
|
-
|
|
3607
|
-
|
|
3608
|
-
|
|
3609
|
-
|
|
3610
|
-
|
|
3611
|
-
},
|
|
3612
|
-
|
|
3613
|
-
|
|
3614
|
-
|
|
3615
|
-
|
|
3616
|
-
|
|
3617
|
-
|
|
3618
|
-
|
|
3619
|
-
},
|
|
3620
|
-
|
|
3621
|
-
|
|
3622
|
-
|
|
3623
|
-
|
|
3624
|
-
|
|
3625
|
-
|
|
3626
|
-
},
|
|
3627
|
-
|
|
3628
|
-
|
|
3629
|
-
|
|
3630
|
-
|
|
3631
|
-
|
|
3632
|
-
|
|
3633
|
-
|
|
3634
|
-
|
|
3635
|
-
|
|
3636
|
-
|
|
3637
|
-
|
|
3638
|
-
|
|
3639
|
-
|
|
3640
|
-
|
|
3641
|
-
|
|
3642
|
-
|
|
3643
|
-
|
|
3644
|
-
|
|
3645
|
-
|
|
3646
|
-
|
|
3647
|
-
|
|
3648
|
-
|
|
3649
|
-
|
|
3650
|
-
|
|
3651
|
-
|
|
3652
|
-
|
|
3653
|
-
|
|
3654
|
-
},
|
|
3655
|
-
pricing: {
|
|
3656
|
-
|
|
3657
|
-
|
|
3658
|
-
|
|
3659
|
-
|
|
3660
|
-
|
|
3661
|
-
},
|
|
3662
|
-
|
|
3663
|
-
|
|
3664
|
-
|
|
3665
|
-
|
|
3666
|
-
|
|
3667
|
-
|
|
3668
|
-
|
|
3669
|
-
},
|
|
3670
|
-
|
|
3671
|
-
|
|
3672
|
-
|
|
3673
|
-
|
|
3674
|
-
|
|
3675
|
-
|
|
3676
|
-
},
|
|
3677
|
-
|
|
3678
|
-
|
|
3679
|
-
|
|
3680
|
-
|
|
3681
|
-
|
|
3682
|
-
|
|
3683
|
-
|
|
3684
|
-
|
|
3685
|
-
|
|
3686
|
-
|
|
3687
|
-
|
|
3688
|
-
|
|
3689
|
-
|
|
3690
|
-
|
|
3691
|
-
|
|
3692
|
-
|
|
3693
|
-
|
|
3694
|
-
|
|
3695
|
-
|
|
3696
|
-
|
|
3697
|
-
|
|
3698
|
-
|
|
3699
|
-
|
|
3700
|
-
|
|
3701
|
-
|
|
3702
|
-
},
|
|
3703
|
-
config: {
|
|
3704
|
-
|
|
3705
|
-
},
|
|
3706
|
-
|
|
3707
|
-
|
|
3708
|
-
|
|
3709
|
-
|
|
3710
|
-
|
|
3711
|
-
|
|
3712
|
-
},
|
|
3713
|
-
capabilities: {
|
|
3714
|
-
|
|
3715
|
-
|
|
3716
|
-
|
|
3717
|
-
|
|
3718
|
-
|
|
3719
|
-
|
|
3720
|
-
},
|
|
3721
|
-
},
|
|
3722
|
-
|
|
3723
|
-
|
|
3724
|
-
|
|
3725
|
-
|
|
3726
|
-
|
|
3727
|
-
|
|
3728
|
-
|
|
3729
|
-
|
|
3730
|
-
|
|
3731
|
-
},
|
|
3732
|
-
|
|
3733
|
-
|
|
3734
|
-
|
|
3735
|
-
|
|
3736
|
-
|
|
3737
|
-
|
|
3738
|
-
},
|
|
3739
|
-
|
|
3740
|
-
|
|
3741
|
-
|
|
3742
|
-
|
|
3743
|
-
|
|
3744
|
-
|
|
3745
|
-
|
|
3746
|
-
},
|
|
3747
|
-
|
|
3748
|
-
|
|
3749
|
-
|
|
3750
|
-
|
|
3751
|
-
|
|
3752
|
-
|
|
3753
|
-
},
|
|
3754
|
-
|
|
3755
|
-
|
|
3756
|
-
|
|
3757
|
-
|
|
3758
|
-
|
|
3759
|
-
|
|
3760
|
-
|
|
3761
|
-
|
|
3762
|
-
|
|
3763
|
-
|
|
3764
|
-
|
|
3765
|
-
|
|
3766
|
-
|
|
3767
|
-
|
|
3768
|
-
|
|
3769
|
-
|
|
3770
|
-
|
|
3771
|
-
|
|
3772
|
-
|
|
3773
|
-
|
|
3774
|
-
|
|
3775
|
-
|
|
3776
|
-
|
|
3777
|
-
|
|
3778
|
-
|
|
3779
|
-
|
|
3780
|
-
|
|
3781
|
-
},
|
|
3782
|
-
pricing: {
|
|
3783
|
-
|
|
3784
|
-
|
|
3785
|
-
|
|
3786
|
-
|
|
3787
|
-
|
|
3788
|
-
},
|
|
3789
|
-
|
|
3790
|
-
|
|
3791
|
-
tools: true,
|
|
3792
|
-
reasoning: false,
|
|
3793
|
-
webSearch: false,
|
|
3794
|
-
jsonOutput: true,
|
|
3795
|
-
structuredOutputs: false,
|
|
3796
|
-
},
|
|
3797
|
-
},
|
|
3798
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_V3_2_DEEPSEEK]: {
|
|
3799
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_V3_2_DEEPSEEK,
|
|
3800
|
-
limits: {
|
|
3801
|
-
maxInputTokens: 163_840,
|
|
3802
|
-
maxOutputTokens: 128_000,
|
|
3803
|
-
},
|
|
3804
|
-
config: {
|
|
3805
|
-
temperature: 0.2,
|
|
3806
|
-
},
|
|
3807
|
-
pricing: {
|
|
3808
|
-
getPriceForTextInput: (tokens) => 0.28 * tokens / 1_000_000,
|
|
3809
|
-
getPriceForTextOutput: (tokens) => 0.42 * tokens / 1_000_000,
|
|
3810
|
-
getPriceForAudioInput: () => 0,
|
|
3811
|
-
getPriceForAudioOutput: () => 0,
|
|
3812
|
-
currency: 'USD',
|
|
3813
|
-
},
|
|
3814
|
-
capabilities: {
|
|
3815
|
-
vision: true,
|
|
3816
|
-
tools: true,
|
|
3817
|
-
reasoning: false,
|
|
3818
|
-
webSearch: false,
|
|
3819
|
-
jsonOutput: true,
|
|
3820
|
-
structuredOutputs: false,
|
|
3821
|
-
},
|
|
3822
|
-
},
|
|
3823
|
-
// ─── Meta Llama (provider routes) ──────────────────────
|
|
3824
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_8B_INSTRUCT_NEBIUS]: {
|
|
3825
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_8B_INSTRUCT_NEBIUS,
|
|
3826
|
-
limits: {
|
|
3827
|
-
maxInputTokens: 128_000,
|
|
3828
|
-
maxOutputTokens: 16_384,
|
|
3829
|
-
},
|
|
3830
|
-
config: {
|
|
3831
|
-
temperature: 0.2,
|
|
3832
|
-
},
|
|
3833
|
-
pricing: {
|
|
3834
|
-
getPriceForTextInput: (tokens) => 0.02 * tokens / 1_000_000,
|
|
3835
|
-
getPriceForTextOutput: (tokens) => 0.06 * tokens / 1_000_000,
|
|
3836
|
-
getPriceForAudioInput: () => 0,
|
|
3837
|
-
getPriceForAudioOutput: () => 0,
|
|
3838
|
-
currency: 'USD',
|
|
3839
|
-
},
|
|
3840
|
-
capabilities: {
|
|
3841
|
-
vision: false,
|
|
3842
|
-
tools: false,
|
|
3843
|
-
reasoning: false,
|
|
3844
|
-
webSearch: false,
|
|
3845
|
-
jsonOutput: true,
|
|
3846
|
-
structuredOutputs: false,
|
|
3847
|
-
},
|
|
3848
|
-
},
|
|
3849
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_8B_INSTRUCT_NOVITA]: {
|
|
3850
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_8B_INSTRUCT_NOVITA,
|
|
3851
|
-
limits: {
|
|
3852
|
-
maxInputTokens: 128_000,
|
|
3853
|
-
maxOutputTokens: 16_384,
|
|
3854
|
-
},
|
|
3855
|
-
config: {
|
|
3856
|
-
temperature: 0.2,
|
|
3857
|
-
},
|
|
3858
|
-
pricing: {
|
|
3859
|
-
getPriceForTextInput: (tokens) => 0.02 * tokens / 1_000_000,
|
|
3860
|
-
getPriceForTextOutput: (tokens) => 0.05 * tokens / 1_000_000,
|
|
3861
|
-
getPriceForAudioInput: () => 0,
|
|
3862
|
-
getPriceForAudioOutput: () => 0,
|
|
3863
|
-
currency: 'USD',
|
|
3864
|
-
},
|
|
3865
|
-
capabilities: {
|
|
3866
|
-
vision: false,
|
|
3867
|
-
tools: false,
|
|
3868
|
-
reasoning: false,
|
|
3869
|
-
webSearch: false,
|
|
3870
|
-
jsonOutput: true,
|
|
3871
|
-
structuredOutputs: false,
|
|
3872
|
-
},
|
|
3873
|
-
},
|
|
3874
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_3_70B_INSTRUCT_NEBIUS]: {
|
|
3875
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_3_70B_INSTRUCT_NEBIUS,
|
|
3876
|
-
limits: {
|
|
3877
|
-
maxInputTokens: 131_072,
|
|
3878
|
-
maxOutputTokens: 16_384,
|
|
3879
|
-
},
|
|
3880
|
-
config: {
|
|
3881
|
-
temperature: 0.2,
|
|
3882
|
-
},
|
|
3883
|
-
pricing: {
|
|
3884
|
-
getPriceForTextInput: (tokens) => 0.13 * tokens / 1_000_000,
|
|
3885
|
-
getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000,
|
|
3886
|
-
getPriceForAudioInput: () => 0,
|
|
3887
|
-
getPriceForAudioOutput: () => 0,
|
|
3888
|
-
currency: 'USD',
|
|
3889
|
-
},
|
|
3890
|
-
capabilities: {
|
|
3891
|
-
vision: false,
|
|
3892
|
-
tools: true,
|
|
3893
|
-
reasoning: false,
|
|
3894
|
-
webSearch: false,
|
|
3895
|
-
jsonOutput: true,
|
|
3896
|
-
structuredOutputs: false,
|
|
3897
|
-
},
|
|
3898
|
-
},
|
|
3899
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_3_70B_INSTRUCT_NOVITA]: {
|
|
3900
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_3_70B_INSTRUCT_NOVITA,
|
|
3901
|
-
limits: {
|
|
3902
|
-
maxInputTokens: 131_072,
|
|
3903
|
-
maxOutputTokens: 16_384,
|
|
3904
|
-
},
|
|
3905
|
-
config: {
|
|
3906
|
-
temperature: 0.2,
|
|
3907
|
-
},
|
|
3908
|
-
pricing: {
|
|
3909
|
-
getPriceForTextInput: (tokens) => 0.135 * tokens / 1_000_000,
|
|
3910
|
-
getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000,
|
|
3911
|
-
getPriceForAudioInput: () => 0,
|
|
3912
|
-
getPriceForAudioOutput: () => 0,
|
|
3913
|
-
currency: 'USD',
|
|
3914
|
-
},
|
|
3915
|
-
capabilities: {
|
|
3916
|
-
vision: false,
|
|
3917
|
-
tools: true,
|
|
3918
|
-
reasoning: false,
|
|
3919
|
-
webSearch: false,
|
|
3920
|
-
jsonOutput: true,
|
|
3921
|
-
structuredOutputs: false,
|
|
3922
|
-
},
|
|
3923
|
-
},
|
|
3924
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_4_MAVERICK_17B_INSTRUCT_NOVITA]: {
|
|
3925
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_4_MAVERICK_17B_INSTRUCT_NOVITA,
|
|
3926
|
-
limits: {
|
|
3927
|
-
maxInputTokens: 1_048_576,
|
|
3928
|
-
maxOutputTokens: 128_000,
|
|
3929
|
-
},
|
|
3930
|
-
config: {
|
|
3931
|
-
temperature: 0.2,
|
|
3932
|
-
},
|
|
3933
|
-
pricing: {
|
|
3934
|
-
getPriceForTextInput: (tokens) => 0.27 * tokens / 1_000_000,
|
|
3935
|
-
getPriceForTextOutput: (tokens) => 0.85 * tokens / 1_000_000,
|
|
3936
|
-
getPriceForAudioInput: () => 0,
|
|
3937
|
-
getPriceForAudioOutput: () => 0,
|
|
3938
|
-
currency: 'USD',
|
|
3939
|
-
},
|
|
3940
|
-
capabilities: {
|
|
3941
|
-
vision: true,
|
|
3942
|
-
tools: false,
|
|
3943
|
-
reasoning: false,
|
|
3944
|
-
webSearch: false,
|
|
3945
|
-
jsonOutput: true,
|
|
3946
|
-
structuredOutputs: false,
|
|
3947
|
-
},
|
|
3948
|
-
},
|
|
3949
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_4_SCOUT_17B_INSTRUCT_NOVITA]: {
|
|
3950
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_4_SCOUT_17B_INSTRUCT_NOVITA,
|
|
3951
|
-
limits: {
|
|
3952
|
-
maxInputTokens: 131_072,
|
|
3953
|
-
maxOutputTokens: 16_384,
|
|
3954
|
-
},
|
|
3955
|
-
config: {
|
|
3956
|
-
temperature: 0.2,
|
|
3957
|
-
},
|
|
3958
|
-
pricing: {
|
|
3959
|
-
getPriceForTextInput: (tokens) => 0.18 * tokens / 1_000_000,
|
|
3960
|
-
getPriceForTextOutput: (tokens) => 0.59 * tokens / 1_000_000,
|
|
3961
|
-
getPriceForAudioInput: () => 0,
|
|
3962
|
-
getPriceForAudioOutput: () => 0,
|
|
3963
|
-
currency: 'USD',
|
|
3964
|
-
},
|
|
3965
|
-
capabilities: {
|
|
3966
|
-
vision: true,
|
|
3967
|
-
tools: false,
|
|
3968
|
-
reasoning: false,
|
|
3969
|
-
webSearch: false,
|
|
3970
|
-
jsonOutput: true,
|
|
3971
|
-
structuredOutputs: false,
|
|
3972
|
-
},
|
|
3973
|
-
},
|
|
3974
|
-
// ─── MiniMax (provider routes) ────────────────────────
|
|
3975
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1_CANOPYWAVE]: {
|
|
3976
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1_CANOPYWAVE,
|
|
3977
|
-
limits: {
|
|
3978
|
-
maxInputTokens: 204_800,
|
|
3979
|
-
maxOutputTokens: 128_000,
|
|
3980
|
-
},
|
|
3981
|
-
config: {
|
|
3982
|
-
temperature: 1,
|
|
3983
|
-
},
|
|
3984
|
-
pricing: {
|
|
3985
|
-
getPriceForTextInput: (tokens) => 0.27 * tokens / 1_000_000,
|
|
3986
|
-
getPriceForTextOutput: (tokens) => 1.08 * tokens / 1_000_000,
|
|
3987
|
-
getPriceForAudioInput: () => 0,
|
|
3988
|
-
getPriceForAudioOutput: () => 0,
|
|
3989
|
-
currency: 'USD',
|
|
3990
|
-
},
|
|
3991
|
-
capabilities: {
|
|
3992
|
-
vision: false,
|
|
3993
|
-
tools: true,
|
|
3994
|
-
reasoning: true,
|
|
3995
|
-
webSearch: false,
|
|
3996
|
-
jsonOutput: true,
|
|
3997
|
-
structuredOutputs: false,
|
|
3998
|
-
},
|
|
3999
|
-
},
|
|
4000
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1_MINIMAX]: {
|
|
4001
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1_MINIMAX,
|
|
4002
|
-
limits: {
|
|
4003
|
-
maxInputTokens: 204_800,
|
|
4004
|
-
maxOutputTokens: 128_000,
|
|
4005
|
-
},
|
|
4006
|
-
config: {
|
|
4007
|
-
temperature: 1,
|
|
4008
|
-
},
|
|
4009
|
-
pricing: {
|
|
4010
|
-
getPriceForTextInput: (tokens) => 0.27 * tokens / 1_000_000,
|
|
4011
|
-
getPriceForTextOutput: (tokens) => 1.1 * tokens / 1_000_000,
|
|
4012
|
-
getPriceForAudioInput: () => 0,
|
|
4013
|
-
getPriceForAudioOutput: () => 0,
|
|
4014
|
-
currency: 'USD',
|
|
4015
|
-
},
|
|
4016
|
-
capabilities: {
|
|
4017
|
-
vision: false,
|
|
4018
|
-
tools: false,
|
|
4019
|
-
reasoning: true,
|
|
4020
|
-
webSearch: false,
|
|
4021
|
-
jsonOutput: true,
|
|
4022
|
-
structuredOutputs: false,
|
|
4023
|
-
},
|
|
4024
|
-
},
|
|
4025
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1_NOVITA]: {
|
|
4026
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1_NOVITA,
|
|
4027
|
-
limits: {
|
|
4028
|
-
maxInputTokens: 204_800,
|
|
4029
|
-
maxOutputTokens: 128_000,
|
|
4030
|
-
},
|
|
4031
|
-
config: {
|
|
4032
|
-
temperature: 1,
|
|
4033
|
-
},
|
|
4034
|
-
pricing: {
|
|
4035
|
-
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
4036
|
-
getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000,
|
|
4037
|
-
getPriceForAudioInput: () => 0,
|
|
4038
|
-
getPriceForAudioOutput: () => 0,
|
|
4039
|
-
currency: 'USD',
|
|
4040
|
-
},
|
|
4041
|
-
capabilities: {
|
|
4042
|
-
vision: false,
|
|
4043
|
-
tools: true,
|
|
4044
|
-
reasoning: true,
|
|
4045
|
-
webSearch: false,
|
|
4046
|
-
jsonOutput: true,
|
|
4047
|
-
structuredOutputs: false,
|
|
4048
|
-
},
|
|
4049
|
-
},
|
|
4050
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_CANOPYWAVE]: {
|
|
4051
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_CANOPYWAVE,
|
|
4052
|
-
limits: {
|
|
4053
|
-
maxInputTokens: 204_800,
|
|
4054
|
-
maxOutputTokens: 128_000,
|
|
4055
|
-
},
|
|
4056
|
-
config: {
|
|
4057
|
-
temperature: 1,
|
|
4058
|
-
},
|
|
4059
|
-
pricing: {
|
|
4060
|
-
getPriceForTextInput: (tokens) => 0.27 * tokens / 1_000_000,
|
|
4061
|
-
getPriceForTextOutput: (tokens) => 1.08 * tokens / 1_000_000,
|
|
4062
|
-
getPriceForAudioInput: () => 0,
|
|
4063
|
-
getPriceForAudioOutput: () => 0,
|
|
4064
|
-
currency: 'USD',
|
|
4065
|
-
},
|
|
4066
|
-
capabilities: {
|
|
4067
|
-
vision: false,
|
|
4068
|
-
tools: true,
|
|
4069
|
-
reasoning: true,
|
|
4070
|
-
webSearch: false,
|
|
4071
|
-
jsonOutput: true,
|
|
4072
|
-
structuredOutputs: false,
|
|
4073
|
-
},
|
|
4074
|
-
},
|
|
4075
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_EMBERCLOUD]: {
|
|
4076
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_EMBERCLOUD,
|
|
4077
|
-
limits: {
|
|
4078
|
-
maxInputTokens: 204_800,
|
|
4079
|
-
maxOutputTokens: 128_000,
|
|
4080
|
-
},
|
|
4081
|
-
config: {
|
|
4082
|
-
temperature: 1,
|
|
4083
|
-
},
|
|
4084
|
-
pricing: {
|
|
4085
|
-
getPriceForTextInput: (tokens) => 0.2 * tokens / 1_000_000,
|
|
4086
|
-
getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000,
|
|
4087
|
-
getPriceForAudioInput: () => 0,
|
|
4088
|
-
getPriceForAudioOutput: () => 0,
|
|
4089
|
-
currency: 'USD',
|
|
4090
|
-
},
|
|
4091
|
-
capabilities: {
|
|
4092
|
-
vision: false,
|
|
4093
|
-
tools: true,
|
|
4094
|
-
reasoning: true,
|
|
4095
|
-
webSearch: false,
|
|
4096
|
-
jsonOutput: true,
|
|
4097
|
-
structuredOutputs: false,
|
|
4098
|
-
},
|
|
4099
|
-
},
|
|
4100
|
-
// ─── Moonshot Kimi (new models & routes) ───────────────
|
|
4101
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_5_AUTO]: {
|
|
4102
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_5_AUTO,
|
|
4103
|
-
limits: {
|
|
4104
|
-
maxInputTokens: 262_144,
|
|
4105
|
-
maxOutputTokens: 128_000,
|
|
4106
|
-
},
|
|
4107
|
-
config: {
|
|
4108
|
-
temperature: 0.2,
|
|
4109
|
-
},
|
|
4110
|
-
pricing: {
|
|
4111
|
-
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
4112
|
-
getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000,
|
|
4113
|
-
getPriceForAudioInput: () => 0,
|
|
4114
|
-
getPriceForAudioOutput: () => 0,
|
|
4115
|
-
currency: 'USD',
|
|
4116
|
-
},
|
|
4117
|
-
capabilities: {
|
|
4118
|
-
vision: true,
|
|
4119
|
-
tools: true,
|
|
4120
|
-
reasoning: false,
|
|
4121
|
-
webSearch: false,
|
|
4122
|
-
jsonOutput: true,
|
|
4123
|
-
structuredOutputs: false,
|
|
4124
|
-
},
|
|
4125
|
-
},
|
|
4126
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_5_CANOPYWAVE]: {
|
|
4127
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_5_CANOPYWAVE,
|
|
4128
|
-
limits: {
|
|
4129
|
-
maxInputTokens: 262_144,
|
|
4130
|
-
maxOutputTokens: 128_000,
|
|
4131
|
-
},
|
|
4132
|
-
config: {
|
|
4133
|
-
temperature: 0.2,
|
|
4134
|
-
},
|
|
4135
|
-
pricing: {
|
|
4136
|
-
getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000,
|
|
4137
|
-
getPriceForTextOutput: (tokens) => 2.8 * tokens / 1_000_000,
|
|
4138
|
-
getPriceForAudioInput: () => 0,
|
|
4139
|
-
getPriceForAudioOutput: () => 0,
|
|
4140
|
-
currency: 'USD',
|
|
4141
|
-
},
|
|
4142
|
-
capabilities: {
|
|
4143
|
-
vision: true,
|
|
4144
|
-
tools: true,
|
|
4145
|
-
reasoning: false,
|
|
4146
|
-
webSearch: false,
|
|
4147
|
-
jsonOutput: true,
|
|
4148
|
-
structuredOutputs: false,
|
|
4149
|
-
},
|
|
4150
|
-
},
|
|
4151
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_5_EMBERCLOUD]: {
|
|
4152
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_5_EMBERCLOUD,
|
|
4153
|
-
limits: {
|
|
4154
|
-
maxInputTokens: 262_144,
|
|
4155
|
-
maxOutputTokens: 128_000,
|
|
4156
|
-
},
|
|
4157
|
-
config: {
|
|
4158
|
-
temperature: 0.2,
|
|
4159
|
-
},
|
|
4160
|
-
pricing: {
|
|
4161
|
-
getPriceForTextInput: (tokens) => 0.405 * tokens / 1_000_000,
|
|
4162
|
-
getPriceForTextOutput: (tokens) => 1.98 * tokens / 1_000_000,
|
|
4163
|
-
getPriceForAudioInput: () => 0,
|
|
4164
|
-
getPriceForAudioOutput: () => 0,
|
|
4165
|
-
currency: 'USD',
|
|
4166
|
-
},
|
|
4167
|
-
capabilities: {
|
|
4168
|
-
vision: true,
|
|
4169
|
-
tools: true,
|
|
4170
|
-
reasoning: false,
|
|
4171
|
-
webSearch: false,
|
|
4172
|
-
jsonOutput: true,
|
|
4173
|
-
structuredOutputs: false,
|
|
4174
|
-
},
|
|
4175
|
-
},
|
|
4176
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_CLOUDRIFT]: {
|
|
4177
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_CLOUDRIFT,
|
|
4178
|
-
limits: {
|
|
4179
|
-
maxInputTokens: 131_072,
|
|
4180
|
-
maxOutputTokens: 16_384,
|
|
4181
|
-
},
|
|
4182
|
-
config: {
|
|
4183
|
-
temperature: 0.2,
|
|
4184
|
-
},
|
|
4185
|
-
pricing: {
|
|
4186
|
-
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
4187
|
-
getPriceForTextOutput: (tokens) => 1.75 * tokens / 1_000_000,
|
|
4188
|
-
getPriceForAudioInput: () => 0,
|
|
4189
|
-
getPriceForAudioOutput: () => 0,
|
|
4190
|
-
currency: 'USD',
|
|
4191
|
-
},
|
|
4192
|
-
capabilities: {
|
|
4193
|
-
vision: false,
|
|
4194
|
-
tools: true,
|
|
4195
|
-
reasoning: false,
|
|
4196
|
-
webSearch: false,
|
|
4197
|
-
jsonOutput: true,
|
|
4198
|
-
structuredOutputs: false,
|
|
4199
|
-
},
|
|
4200
|
-
},
|
|
4201
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_GROQ]: {
|
|
4202
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_GROQ,
|
|
4203
|
-
limits: {
|
|
4204
|
-
maxInputTokens: 131_072,
|
|
4205
|
-
maxOutputTokens: 16_384,
|
|
4206
|
-
},
|
|
4207
|
-
config: {
|
|
4208
|
-
temperature: 0.2,
|
|
4209
|
-
},
|
|
4210
|
-
pricing: {
|
|
4211
|
-
getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000,
|
|
4212
|
-
getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000,
|
|
4213
|
-
getPriceForAudioInput: () => 0,
|
|
4214
|
-
getPriceForAudioOutput: () => 0,
|
|
4215
|
-
currency: 'USD',
|
|
4216
|
-
},
|
|
4217
|
-
capabilities: {
|
|
4218
|
-
vision: false,
|
|
4219
|
-
tools: true,
|
|
4220
|
-
reasoning: false,
|
|
4221
|
-
webSearch: false,
|
|
4222
|
-
jsonOutput: true,
|
|
4223
|
-
structuredOutputs: false,
|
|
4224
|
-
},
|
|
4225
|
-
},
|
|
4226
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_MOONSHOT]: {
|
|
4227
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_MOONSHOT,
|
|
4228
|
-
limits: {
|
|
4229
|
-
maxInputTokens: 131_072,
|
|
4230
|
-
maxOutputTokens: 16_384,
|
|
4231
|
-
},
|
|
4232
|
-
config: {
|
|
4233
|
-
temperature: 0.2,
|
|
4234
|
-
},
|
|
4235
|
-
pricing: {
|
|
4236
|
-
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
4237
|
-
getPriceForTextOutput: (tokens) => 2.5 * tokens / 1_000_000,
|
|
4238
|
-
getPriceForAudioInput: () => 0,
|
|
4239
|
-
getPriceForAudioOutput: () => 0,
|
|
4240
|
-
currency: 'USD',
|
|
4241
|
-
},
|
|
4242
|
-
capabilities: {
|
|
4243
|
-
vision: false,
|
|
4244
|
-
tools: true,
|
|
4245
|
-
reasoning: false,
|
|
4246
|
-
webSearch: false,
|
|
4247
|
-
jsonOutput: true,
|
|
4248
|
-
structuredOutputs: false,
|
|
4249
|
-
},
|
|
4250
|
-
},
|
|
4251
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_NEBIUS]: {
|
|
4252
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_NEBIUS,
|
|
4253
|
-
limits: {
|
|
4254
|
-
maxInputTokens: 131_072,
|
|
4255
|
-
maxOutputTokens: 16_384,
|
|
4256
|
-
},
|
|
4257
|
-
config: {
|
|
4258
|
-
temperature: 0.2,
|
|
4259
|
-
},
|
|
4260
|
-
pricing: {
|
|
4261
|
-
getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000,
|
|
4262
|
-
getPriceForTextOutput: (tokens) => 2.4 * tokens / 1_000_000,
|
|
4263
|
-
getPriceForAudioInput: () => 0,
|
|
4264
|
-
getPriceForAudioOutput: () => 0,
|
|
4265
|
-
currency: 'USD',
|
|
4266
|
-
},
|
|
4267
|
-
capabilities: {
|
|
4268
|
-
vision: false,
|
|
4269
|
-
tools: true,
|
|
4270
|
-
reasoning: false,
|
|
4271
|
-
webSearch: false,
|
|
4272
|
-
jsonOutput: true,
|
|
4273
|
-
structuredOutputs: false,
|
|
4274
|
-
},
|
|
4275
|
-
},
|
|
4276
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_NOVITA]: {
|
|
4277
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_NOVITA,
|
|
4278
|
-
limits: {
|
|
4279
|
-
maxInputTokens: 131_072,
|
|
4280
|
-
maxOutputTokens: 16_384,
|
|
4281
|
-
},
|
|
4282
|
-
config: {
|
|
4283
|
-
temperature: 0.2,
|
|
4284
|
-
},
|
|
4285
|
-
pricing: {
|
|
4286
|
-
getPriceForTextInput: (tokens) => 0.57 * tokens / 1_000_000,
|
|
4287
|
-
getPriceForTextOutput: (tokens) => 2.3 * tokens / 1_000_000,
|
|
4288
|
-
getPriceForAudioInput: () => 0,
|
|
4289
|
-
getPriceForAudioOutput: () => 0,
|
|
4290
|
-
currency: 'USD',
|
|
4291
|
-
},
|
|
4292
|
-
capabilities: {
|
|
4293
|
-
vision: false,
|
|
4294
|
-
tools: true,
|
|
4295
|
-
reasoning: false,
|
|
4296
|
-
webSearch: false,
|
|
4297
|
-
jsonOutput: true,
|
|
4298
|
-
structuredOutputs: false,
|
|
4299
|
-
},
|
|
4300
|
-
},
|
|
4301
|
-
// ─── Alibaba Qwen (new models & routes) ─────────────────
|
|
4302
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_INSTRUCT_2507_NEBIUS]: {
|
|
4303
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_INSTRUCT_2507_NEBIUS,
|
|
4304
|
-
limits: {
|
|
4305
|
-
maxInputTokens: 262_000,
|
|
4306
|
-
maxOutputTokens: 128_000,
|
|
4307
|
-
},
|
|
4308
|
-
config: {
|
|
4309
|
-
temperature: 0.2,
|
|
4310
|
-
},
|
|
4311
|
-
pricing: {
|
|
4312
|
-
getPriceForTextInput: (tokens) => 0.2 * tokens / 1_000_000,
|
|
4313
|
-
getPriceForTextOutput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
4314
|
-
getPriceForAudioInput: () => 0,
|
|
4315
|
-
getPriceForAudioOutput: () => 0,
|
|
4316
|
-
currency: 'USD',
|
|
4317
|
-
},
|
|
4318
|
-
capabilities: {
|
|
4319
|
-
vision: false,
|
|
4320
|
-
tools: true,
|
|
4321
|
-
reasoning: false,
|
|
4322
|
-
webSearch: false,
|
|
4323
|
-
jsonOutput: true,
|
|
4324
|
-
structuredOutputs: false,
|
|
4325
|
-
},
|
|
4326
|
-
},
|
|
4327
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_INSTRUCT_2507_NOVITA]: {
|
|
4328
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_INSTRUCT_2507_NOVITA,
|
|
4329
|
-
limits: {
|
|
4330
|
-
maxInputTokens: 262_000,
|
|
4331
|
-
maxOutputTokens: 128_000,
|
|
4332
|
-
},
|
|
4333
|
-
config: {
|
|
4334
|
-
temperature: 0.2,
|
|
4335
|
-
},
|
|
4336
|
-
pricing: {
|
|
4337
|
-
getPriceForTextInput: (tokens) => 0.09 * tokens / 1_000_000,
|
|
4338
|
-
getPriceForTextOutput: (tokens) => 0.58 * tokens / 1_000_000,
|
|
4339
|
-
getPriceForAudioInput: () => 0,
|
|
4340
|
-
getPriceForAudioOutput: () => 0,
|
|
4341
|
-
currency: 'USD',
|
|
4342
|
-
},
|
|
4343
|
-
capabilities: {
|
|
4344
|
-
vision: false,
|
|
4345
|
-
tools: true,
|
|
4346
|
-
reasoning: false,
|
|
4347
|
-
webSearch: false,
|
|
4348
|
-
jsonOutput: true,
|
|
4349
|
-
structuredOutputs: false,
|
|
4350
|
-
},
|
|
4351
|
-
},
|
|
4352
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_THINKING_2507_NEBIUS]: {
|
|
4353
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_THINKING_2507_NEBIUS,
|
|
4354
|
-
limits: {
|
|
4355
|
-
maxInputTokens: 262_000,
|
|
4356
|
-
maxOutputTokens: 128_000,
|
|
4357
|
-
},
|
|
4358
|
-
config: {
|
|
4359
|
-
temperature: 1,
|
|
4360
|
-
},
|
|
4361
|
-
pricing: {
|
|
4362
|
-
getPriceForTextInput: (tokens) => 0.2 * tokens / 1_000_000,
|
|
4363
|
-
getPriceForTextOutput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
4364
|
-
getPriceForAudioInput: () => 0,
|
|
4365
|
-
getPriceForAudioOutput: () => 0,
|
|
4366
|
-
currency: 'USD',
|
|
4367
|
-
},
|
|
4368
|
-
capabilities: {
|
|
4369
|
-
vision: false,
|
|
4370
|
-
tools: true,
|
|
4371
|
-
reasoning: true,
|
|
4372
|
-
webSearch: false,
|
|
4373
|
-
jsonOutput: true,
|
|
4374
|
-
structuredOutputs: false,
|
|
4375
|
-
},
|
|
4376
|
-
},
|
|
4377
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_THINKING_2507_NOVITA]: {
|
|
4378
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_THINKING_2507_NOVITA,
|
|
4379
|
-
limits: {
|
|
4380
|
-
maxInputTokens: 262_000,
|
|
4381
|
-
maxOutputTokens: 128_000,
|
|
4382
|
-
},
|
|
4383
|
-
config: {
|
|
4384
|
-
temperature: 0.2,
|
|
4385
|
-
},
|
|
4386
|
-
pricing: {
|
|
4387
|
-
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
4388
|
-
getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000,
|
|
4389
|
-
getPriceForAudioInput: () => 0,
|
|
4390
|
-
getPriceForAudioOutput: () => 0,
|
|
4391
|
-
currency: 'USD',
|
|
4392
|
-
},
|
|
4393
|
-
capabilities: {
|
|
4394
|
-
vision: false,
|
|
4395
|
-
tools: true,
|
|
4396
|
-
reasoning: false,
|
|
4397
|
-
webSearch: false,
|
|
4398
|
-
jsonOutput: true,
|
|
4399
|
-
structuredOutputs: false,
|
|
4400
|
-
},
|
|
4401
|
-
},
|
|
4402
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_5_397B_ALIBABA]: {
|
|
4403
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_5_397B_ALIBABA,
|
|
4404
|
-
limits: {
|
|
4405
|
-
maxInputTokens: 262_144,
|
|
4406
|
-
maxOutputTokens: 128_000,
|
|
4407
|
-
},
|
|
4408
|
-
config: {
|
|
4409
|
-
temperature: 1,
|
|
4410
|
-
},
|
|
4411
|
-
pricing: {
|
|
4412
|
-
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
4413
|
-
getPriceForTextOutput: (tokens) => 3.6 * tokens / 1_000_000,
|
|
4414
|
-
getPriceForAudioInput: () => 0,
|
|
4415
|
-
getPriceForAudioOutput: () => 0,
|
|
4416
|
-
currency: 'USD',
|
|
4417
|
-
},
|
|
4418
|
-
capabilities: {
|
|
4419
|
-
vision: true,
|
|
4420
|
-
tools: true,
|
|
4421
|
-
reasoning: true,
|
|
4422
|
-
webSearch: false,
|
|
4423
|
-
jsonOutput: true,
|
|
4424
|
-
structuredOutputs: false,
|
|
4425
|
-
},
|
|
4426
|
-
},
|
|
4427
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_5_397B_NOVITA]: {
|
|
4428
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_5_397B_NOVITA,
|
|
4429
|
-
limits: {
|
|
4430
|
-
maxInputTokens: 262_144,
|
|
4431
|
-
maxOutputTokens: 128_000,
|
|
4432
|
-
},
|
|
4433
|
-
config: {
|
|
4434
|
-
temperature: 1,
|
|
4435
|
-
},
|
|
4436
|
-
pricing: {
|
|
4437
|
-
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
4438
|
-
getPriceForTextOutput: (tokens) => 3.6 * tokens / 1_000_000,
|
|
4439
|
-
getPriceForAudioInput: () => 0,
|
|
4440
|
-
getPriceForAudioOutput: () => 0,
|
|
4441
|
-
currency: 'USD',
|
|
4442
|
-
},
|
|
4443
|
-
capabilities: {
|
|
4444
|
-
vision: true,
|
|
4445
|
-
tools: true,
|
|
4446
|
-
reasoning: true,
|
|
4447
|
-
webSearch: false,
|
|
4448
|
-
jsonOutput: true,
|
|
4449
|
-
structuredOutputs: false,
|
|
4450
|
-
},
|
|
4451
|
-
},
|
|
4452
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_30B_A3B_INSTRUCT_NEBIUS]: {
|
|
4453
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_30B_A3B_INSTRUCT_NEBIUS,
|
|
4454
|
-
limits: {
|
|
4455
|
-
maxInputTokens: 262_000,
|
|
4456
|
-
maxOutputTokens: 128_000,
|
|
4457
|
-
},
|
|
4458
|
-
config: {
|
|
4459
|
-
temperature: 0.2,
|
|
4460
|
-
},
|
|
4461
|
-
pricing: {
|
|
4462
|
-
getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000,
|
|
4463
|
-
getPriceForTextOutput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
4464
|
-
getPriceForAudioInput: () => 0,
|
|
4465
|
-
getPriceForAudioOutput: () => 0,
|
|
4466
|
-
currency: 'USD',
|
|
4467
|
-
},
|
|
4468
|
-
capabilities: {
|
|
4469
|
-
vision: false,
|
|
4470
|
-
tools: true,
|
|
4471
|
-
reasoning: false,
|
|
4472
|
-
webSearch: false,
|
|
4473
|
-
jsonOutput: true,
|
|
4474
|
-
structuredOutputs: false,
|
|
4475
|
-
},
|
|
4476
|
-
},
|
|
4477
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_30B_A3B_INSTRUCT_NOVITA]: {
|
|
4478
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_30B_A3B_INSTRUCT_NOVITA,
|
|
4479
|
-
limits: {
|
|
4480
|
-
maxInputTokens: 262_000,
|
|
4481
|
-
maxOutputTokens: 128_000,
|
|
4482
|
-
},
|
|
4483
|
-
config: {
|
|
4484
|
-
temperature: 0.2,
|
|
4485
|
-
},
|
|
4486
|
-
pricing: {
|
|
4487
|
-
getPriceForTextInput: (tokens) => 0.07 * tokens / 1_000_000,
|
|
4488
|
-
getPriceForTextOutput: (tokens) => 0.27 * tokens / 1_000_000,
|
|
4489
|
-
getPriceForAudioInput: () => 0,
|
|
4490
|
-
getPriceForAudioOutput: () => 0,
|
|
4491
|
-
currency: 'USD',
|
|
4492
|
-
},
|
|
4493
|
-
capabilities: {
|
|
4494
|
-
vision: false,
|
|
4495
|
-
tools: true,
|
|
4496
|
-
reasoning: false,
|
|
4497
|
-
webSearch: false,
|
|
4498
|
-
jsonOutput: true,
|
|
4499
|
-
structuredOutputs: false,
|
|
4500
|
-
},
|
|
4501
|
-
},
|
|
4502
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_NEXT]: {
|
|
4503
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_NEXT,
|
|
4504
|
-
limits: {
|
|
4505
|
-
maxInputTokens: 262_144,
|
|
4506
|
-
maxOutputTokens: 128_000,
|
|
4507
|
-
},
|
|
4508
|
-
config: {
|
|
4509
|
-
temperature: 1,
|
|
4510
|
-
},
|
|
4511
|
-
pricing: {
|
|
4512
|
-
getPriceForTextInput: (tokens) => 0.108 * tokens / 1_000_000,
|
|
4513
|
-
getPriceForTextOutput: (tokens) => 0.675 * tokens / 1_000_000,
|
|
4514
|
-
getPriceForAudioInput: () => 0,
|
|
4515
|
-
getPriceForAudioOutput: () => 0,
|
|
4516
|
-
currency: 'USD',
|
|
4517
|
-
},
|
|
4518
|
-
capabilities: {
|
|
4519
|
-
vision: false,
|
|
4520
|
-
tools: true,
|
|
4521
|
-
reasoning: true,
|
|
4522
|
-
webSearch: false,
|
|
4523
|
-
jsonOutput: true,
|
|
4524
|
-
structuredOutputs: true,
|
|
4525
|
-
},
|
|
4526
|
-
},
|
|
4527
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_MAX_ALIBABA]: {
|
|
4528
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_MAX_ALIBABA,
|
|
4529
|
-
limits: {
|
|
4530
|
-
maxInputTokens: 262_144,
|
|
4531
|
-
maxOutputTokens: 128_000,
|
|
4532
|
-
},
|
|
4533
|
-
config: {
|
|
4534
|
-
temperature: 1,
|
|
4535
|
-
},
|
|
4536
|
-
pricing: {
|
|
4537
|
-
getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000,
|
|
4538
|
-
getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
|
|
4539
|
-
getPriceForAudioInput: () => 0,
|
|
4540
|
-
getPriceForAudioOutput: () => 0,
|
|
4541
|
-
currency: 'USD',
|
|
4542
|
-
},
|
|
4543
|
-
capabilities: {
|
|
4544
|
-
vision: true,
|
|
4545
|
-
tools: true,
|
|
4546
|
-
reasoning: true,
|
|
4547
|
-
webSearch: false,
|
|
4548
|
-
jsonOutput: true,
|
|
4549
|
-
structuredOutputs: false,
|
|
4550
|
-
},
|
|
4551
|
-
},
|
|
4552
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_MAX_NOVITA]: {
|
|
4553
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_MAX_NOVITA,
|
|
4554
|
-
limits: {
|
|
4555
|
-
maxInputTokens: 262_144,
|
|
4556
|
-
maxOutputTokens: 128_000,
|
|
4557
|
-
},
|
|
4558
|
-
config: {
|
|
4559
|
-
temperature: 0.2,
|
|
4560
|
-
},
|
|
4561
|
-
pricing: {
|
|
4562
|
-
getPriceForTextInput: (tokens) => 0.845 * tokens / 1_000_000,
|
|
4563
|
-
getPriceForTextOutput: (tokens) => 3.38 * tokens / 1_000_000,
|
|
4564
|
-
getPriceForAudioInput: () => 0,
|
|
4565
|
-
getPriceForAudioOutput: () => 0,
|
|
4566
|
-
currency: 'USD',
|
|
4567
|
-
},
|
|
4568
|
-
capabilities: {
|
|
4569
|
-
vision: false,
|
|
4570
|
-
tools: true,
|
|
4571
|
-
reasoning: false,
|
|
4572
|
-
webSearch: false,
|
|
4573
|
-
jsonOutput: true,
|
|
4574
|
-
structuredOutputs: false,
|
|
4575
|
-
},
|
|
4576
|
-
},
|
|
4577
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_INSTRUCT_ALIBABA]: {
|
|
4578
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_INSTRUCT_ALIBABA,
|
|
4579
|
-
limits: {
|
|
4580
|
-
maxInputTokens: 131_072,
|
|
4581
|
-
maxOutputTokens: 16_384,
|
|
4582
|
-
},
|
|
4583
|
-
config: {
|
|
4584
|
-
temperature: 0.2,
|
|
4585
|
-
},
|
|
4586
|
-
pricing: {
|
|
4587
|
-
getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000,
|
|
4588
|
-
getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000,
|
|
4589
|
-
getPriceForAudioInput: () => 0,
|
|
4590
|
-
getPriceForAudioOutput: () => 0,
|
|
4591
|
-
currency: 'USD',
|
|
4592
|
-
},
|
|
4593
|
-
capabilities: {
|
|
4594
|
-
vision: false,
|
|
4595
|
-
tools: true,
|
|
4596
|
-
reasoning: false,
|
|
4597
|
-
webSearch: false,
|
|
4598
|
-
jsonOutput: true,
|
|
4599
|
-
structuredOutputs: false,
|
|
4600
|
-
},
|
|
4601
|
-
},
|
|
4602
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_INSTRUCT_NOVITA]: {
|
|
4603
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_INSTRUCT_NOVITA,
|
|
4604
|
-
limits: {
|
|
4605
|
-
maxInputTokens: 131_072,
|
|
4606
|
-
maxOutputTokens: 16_384,
|
|
4607
|
-
},
|
|
4608
|
-
config: {
|
|
4609
|
-
temperature: 0.2,
|
|
4610
|
-
},
|
|
4611
|
-
pricing: {
|
|
4612
|
-
getPriceForTextInput: (tokens) => 0.15 * tokens / 1_000_000,
|
|
4613
|
-
getPriceForTextOutput: (tokens) => 1.5 * tokens / 1_000_000,
|
|
4614
|
-
getPriceForAudioInput: () => 0,
|
|
4615
|
-
getPriceForAudioOutput: () => 0,
|
|
4616
|
-
currency: 'USD',
|
|
4617
|
-
},
|
|
4618
|
-
capabilities: {
|
|
4619
|
-
vision: false,
|
|
4620
|
-
tools: true,
|
|
4621
|
-
reasoning: false,
|
|
4622
|
-
webSearch: false,
|
|
4623
|
-
jsonOutput: true,
|
|
4624
|
-
structuredOutputs: false,
|
|
4625
|
-
},
|
|
4626
|
-
},
|
|
4627
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_THINKING_ALIBABA]: {
|
|
4628
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_THINKING_ALIBABA,
|
|
4629
|
-
limits: {
|
|
4630
|
-
maxInputTokens: 131_072,
|
|
4631
|
-
maxOutputTokens: 16_384,
|
|
4632
|
-
},
|
|
4633
|
-
config: {
|
|
4634
|
-
temperature: 1,
|
|
4635
|
-
},
|
|
4636
|
-
pricing: {
|
|
4637
|
-
getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000,
|
|
4638
|
-
getPriceForTextOutput: (tokens) => 6 * tokens / 1_000_000,
|
|
4639
|
-
getPriceForAudioInput: () => 0,
|
|
4640
|
-
getPriceForAudioOutput: () => 0,
|
|
4641
|
-
currency: 'USD',
|
|
4642
|
-
},
|
|
4643
|
-
capabilities: {
|
|
4644
|
-
vision: false,
|
|
4645
|
-
tools: true,
|
|
4646
|
-
reasoning: true,
|
|
4647
|
-
webSearch: false,
|
|
4648
|
-
jsonOutput: false,
|
|
4649
|
-
structuredOutputs: false,
|
|
4650
|
-
},
|
|
4651
|
-
},
|
|
4652
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_THINKING_NOVITA]: {
|
|
4653
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_THINKING_NOVITA,
|
|
4654
|
-
limits: {
|
|
4655
|
-
maxInputTokens: 131_072,
|
|
4656
|
-
maxOutputTokens: 16_384,
|
|
4657
|
-
},
|
|
4658
|
-
config: {
|
|
4659
|
-
temperature: 1,
|
|
4660
|
-
},
|
|
4661
|
-
pricing: {
|
|
4662
|
-
getPriceForTextInput: (tokens) => 0.15 * tokens / 1_000_000,
|
|
4663
|
-
getPriceForTextOutput: (tokens) => 1.5 * tokens / 1_000_000,
|
|
4664
|
-
getPriceForAudioInput: () => 0,
|
|
4665
|
-
getPriceForAudioOutput: () => 0,
|
|
4666
|
-
currency: 'USD',
|
|
4667
|
-
},
|
|
4668
|
-
capabilities: {
|
|
4669
|
-
vision: false,
|
|
4670
|
-
tools: true,
|
|
4671
|
-
reasoning: true,
|
|
4672
|
-
webSearch: false,
|
|
4673
|
-
jsonOutput: false,
|
|
4674
|
-
structuredOutputs: false,
|
|
4675
|
-
},
|
|
4676
|
-
},
|
|
4677
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_INSTRUCT_ALIBABA]: {
|
|
4678
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_INSTRUCT_ALIBABA,
|
|
4679
|
-
limits: {
|
|
4680
|
-
maxInputTokens: 131_072,
|
|
4681
|
-
maxOutputTokens: 16_384,
|
|
4682
|
-
},
|
|
4683
|
-
config: {
|
|
4684
|
-
temperature: 0.2,
|
|
4685
|
-
},
|
|
4686
|
-
pricing: {
|
|
4687
|
-
getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000,
|
|
4688
|
-
getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000,
|
|
4689
|
-
getPriceForAudioInput: () => 0,
|
|
4690
|
-
getPriceForAudioOutput: () => 0,
|
|
4691
|
-
currency: 'USD',
|
|
4692
|
-
},
|
|
4693
|
-
capabilities: {
|
|
4694
|
-
vision: true,
|
|
4695
|
-
tools: true,
|
|
4696
|
-
reasoning: false,
|
|
4697
|
-
webSearch: false,
|
|
4698
|
-
jsonOutput: true,
|
|
4699
|
-
structuredOutputs: false,
|
|
4700
|
-
},
|
|
4701
|
-
},
|
|
4702
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_INSTRUCT_NOVITA]: {
|
|
4703
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_INSTRUCT_NOVITA,
|
|
4704
|
-
limits: {
|
|
4705
|
-
maxInputTokens: 131_072,
|
|
4706
|
-
maxOutputTokens: 16_384,
|
|
4707
|
-
},
|
|
4708
|
-
config: {
|
|
4709
|
-
temperature: 0.2,
|
|
4710
|
-
},
|
|
4711
|
-
pricing: {
|
|
4712
|
-
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
4713
|
-
getPriceForTextOutput: (tokens) => 1.5 * tokens / 1_000_000,
|
|
4714
|
-
getPriceForAudioInput: () => 0,
|
|
4715
|
-
getPriceForAudioOutput: () => 0,
|
|
4716
|
-
currency: 'USD',
|
|
4717
|
-
},
|
|
4718
|
-
capabilities: {
|
|
4719
|
-
vision: true,
|
|
4720
|
-
tools: true,
|
|
4721
|
-
reasoning: false,
|
|
4722
|
-
webSearch: false,
|
|
4723
|
-
jsonOutput: true,
|
|
4724
|
-
structuredOutputs: false,
|
|
4725
|
-
},
|
|
4726
|
-
},
|
|
4727
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_THINKING_ALIBABA]: {
|
|
4728
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_THINKING_ALIBABA,
|
|
4729
|
-
limits: {
|
|
4730
|
-
maxInputTokens: 131_072,
|
|
4731
|
-
maxOutputTokens: 16_384,
|
|
4732
|
-
},
|
|
4733
|
-
config: {
|
|
4734
|
-
temperature: 1,
|
|
4735
|
-
},
|
|
4736
|
-
pricing: {
|
|
4737
|
-
getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000,
|
|
4738
|
-
getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000,
|
|
4739
|
-
getPriceForAudioInput: () => 0,
|
|
4740
|
-
getPriceForAudioOutput: () => 0,
|
|
4741
|
-
currency: 'USD',
|
|
4742
|
-
},
|
|
4743
|
-
capabilities: {
|
|
4744
|
-
vision: true,
|
|
4745
|
-
tools: false,
|
|
4746
|
-
reasoning: true,
|
|
4747
|
-
webSearch: false,
|
|
4748
|
-
jsonOutput: false,
|
|
4749
|
-
structuredOutputs: false,
|
|
4750
|
-
},
|
|
4751
|
-
},
|
|
4752
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_THINKING_NOVITA]: {
|
|
4753
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_THINKING_NOVITA,
|
|
4754
|
-
limits: {
|
|
4755
|
-
maxInputTokens: 131_072,
|
|
4756
|
-
maxOutputTokens: 16_384,
|
|
4757
|
-
},
|
|
4758
|
-
config: {
|
|
4759
|
-
temperature: 1,
|
|
4760
|
-
},
|
|
4761
|
-
pricing: {
|
|
4762
|
-
getPriceForTextInput: (tokens) => 0.98 * tokens / 1_000_000,
|
|
4763
|
-
getPriceForTextOutput: (tokens) => 3.95 * tokens / 1_000_000,
|
|
4764
|
-
getPriceForAudioInput: () => 0,
|
|
4765
|
-
getPriceForAudioOutput: () => 0,
|
|
4766
|
-
currency: 'USD',
|
|
4767
|
-
},
|
|
4768
|
-
capabilities: {
|
|
4769
|
-
vision: true,
|
|
4770
|
-
tools: false,
|
|
4771
|
-
reasoning: true,
|
|
4772
|
-
webSearch: false,
|
|
4773
|
-
jsonOutput: false,
|
|
4774
|
-
structuredOutputs: false,
|
|
4775
|
-
},
|
|
4776
|
-
},
|
|
4777
|
-
// ─── Zhipu GLM (provider routes) ─────────────────────
|
|
4778
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5V_NOVITA]: {
|
|
4779
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5V_NOVITA,
|
|
4780
|
-
limits: {
|
|
4781
|
-
maxInputTokens: 128_000,
|
|
4782
|
-
maxOutputTokens: 16_384,
|
|
4783
|
-
},
|
|
4784
|
-
config: {
|
|
4785
|
-
temperature: 1,
|
|
4786
|
-
},
|
|
4787
|
-
pricing: {
|
|
4788
|
-
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
4789
|
-
getPriceForTextOutput: (tokens) => 1.8 * tokens / 1_000_000,
|
|
4790
|
-
getPriceForAudioInput: () => 0,
|
|
4791
|
-
getPriceForAudioOutput: () => 0,
|
|
4792
|
-
currency: 'USD',
|
|
4793
|
-
},
|
|
4794
|
-
capabilities: {
|
|
4795
|
-
vision: true,
|
|
4796
|
-
tools: true,
|
|
4797
|
-
reasoning: true,
|
|
4798
|
-
webSearch: false,
|
|
4799
|
-
jsonOutput: true,
|
|
4800
|
-
structuredOutputs: false,
|
|
4801
|
-
},
|
|
4802
|
-
},
|
|
4803
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5V_ZAI]: {
|
|
4804
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5V_ZAI,
|
|
4805
|
-
limits: {
|
|
4806
|
-
maxInputTokens: 128_000,
|
|
4807
|
-
maxOutputTokens: 16_384,
|
|
4808
|
-
},
|
|
4809
|
-
config: {
|
|
4810
|
-
temperature: 1,
|
|
4811
|
-
},
|
|
4812
|
-
pricing: {
|
|
4813
|
-
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
4814
|
-
getPriceForTextOutput: (tokens) => 1.8 * tokens / 1_000_000,
|
|
4815
|
-
getPriceForAudioInput: () => 0,
|
|
4816
|
-
getPriceForAudioOutput: () => 0,
|
|
4817
|
-
currency: 'USD',
|
|
4818
|
-
},
|
|
4819
|
-
capabilities: {
|
|
4820
|
-
vision: true,
|
|
4821
|
-
tools: true,
|
|
4822
|
-
reasoning: true,
|
|
4823
|
-
webSearch: false,
|
|
4824
|
-
jsonOutput: true,
|
|
4825
|
-
structuredOutputs: false,
|
|
4826
|
-
},
|
|
4827
|
-
},
|
|
4828
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIR_EMBERCLOUD]: {
|
|
4829
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIR_EMBERCLOUD,
|
|
4830
|
-
limits: {
|
|
4831
|
-
maxInputTokens: 128_000,
|
|
4832
|
-
maxOutputTokens: 16_384,
|
|
4833
|
-
},
|
|
4834
|
-
config: {
|
|
4835
|
-
temperature: 0.2,
|
|
4836
|
-
},
|
|
4837
|
-
pricing: {
|
|
4838
|
-
getPriceForTextInput: (tokens) => 0.13 * tokens / 1_000_000,
|
|
4839
|
-
getPriceForTextOutput: (tokens) => 0.85 * tokens / 1_000_000,
|
|
4840
|
-
getPriceForAudioInput: () => 0,
|
|
4841
|
-
getPriceForAudioOutput: () => 0,
|
|
4842
|
-
currency: 'USD',
|
|
4843
|
-
},
|
|
4844
|
-
capabilities: {
|
|
4845
|
-
vision: false,
|
|
4846
|
-
tools: true,
|
|
4847
|
-
reasoning: false,
|
|
4848
|
-
webSearch: false,
|
|
4849
|
-
jsonOutput: true,
|
|
4850
|
-
structuredOutputs: false,
|
|
4851
|
-
},
|
|
4852
|
-
},
|
|
4853
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIR_ZAI]: {
|
|
4854
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIR_ZAI,
|
|
4855
|
-
limits: {
|
|
4856
|
-
maxInputTokens: 128_000,
|
|
4857
|
-
maxOutputTokens: 16_384,
|
|
4858
|
-
},
|
|
4859
|
-
config: {
|
|
4860
|
-
temperature: 0.2,
|
|
4861
|
-
},
|
|
4862
|
-
pricing: {
|
|
4863
|
-
getPriceForTextInput: (tokens) => 0.2 * tokens / 1_000_000,
|
|
4864
|
-
getPriceForTextOutput: (tokens) => 1.1 * tokens / 1_000_000,
|
|
4865
|
-
getPriceForAudioInput: () => 0,
|
|
4866
|
-
getPriceForAudioOutput: () => 0,
|
|
4867
|
-
currency: 'USD',
|
|
4868
|
-
},
|
|
4869
|
-
capabilities: {
|
|
4870
|
-
vision: false,
|
|
4871
|
-
tools: true,
|
|
4872
|
-
reasoning: false,
|
|
4873
|
-
webSearch: false,
|
|
4874
|
-
jsonOutput: true,
|
|
4875
|
-
structuredOutputs: false,
|
|
4876
|
-
},
|
|
4877
|
-
},
|
|
4878
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_EMBERCLOUD]: {
|
|
4879
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_EMBERCLOUD,
|
|
4880
|
-
limits: {
|
|
4881
|
-
maxInputTokens: 128_000,
|
|
4882
|
-
maxOutputTokens: 16_384,
|
|
4883
|
-
},
|
|
4884
|
-
config: {
|
|
4885
|
-
temperature: 1,
|
|
4886
|
-
},
|
|
4887
|
-
pricing: {
|
|
4888
|
-
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
4889
|
-
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
4890
|
-
getPriceForAudioInput: () => 0,
|
|
4891
|
-
getPriceForAudioOutput: () => 0,
|
|
4892
|
-
currency: 'USD',
|
|
4893
|
-
},
|
|
4894
|
-
capabilities: {
|
|
4895
|
-
vision: false,
|
|
4896
|
-
tools: true,
|
|
4897
|
-
reasoning: true,
|
|
4898
|
-
webSearch: false,
|
|
4899
|
-
jsonOutput: true,
|
|
4900
|
-
structuredOutputs: false,
|
|
4901
|
-
},
|
|
4902
|
-
},
|
|
4903
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_ZAI]: {
|
|
4904
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_ZAI,
|
|
4905
|
-
limits: {
|
|
4906
|
-
maxInputTokens: 128_000,
|
|
4907
|
-
maxOutputTokens: 16_384,
|
|
4908
|
-
},
|
|
4909
|
-
config: {
|
|
4910
|
-
temperature: 1,
|
|
4911
|
-
},
|
|
4912
|
-
pricing: {
|
|
4913
|
-
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
4914
|
-
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
4915
|
-
getPriceForAudioInput: () => 0,
|
|
4916
|
-
getPriceForAudioOutput: () => 0,
|
|
4917
|
-
currency: 'USD',
|
|
4918
|
-
},
|
|
4919
|
-
capabilities: {
|
|
4920
|
-
vision: false,
|
|
4921
|
-
tools: true,
|
|
4922
|
-
reasoning: true,
|
|
4923
|
-
webSearch: false,
|
|
4924
|
-
jsonOutput: true,
|
|
4925
|
-
structuredOutputs: false,
|
|
4926
|
-
},
|
|
4927
|
-
},
|
|
4928
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_NOVITA]: {
|
|
4929
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_NOVITA,
|
|
4930
|
-
limits: {
|
|
4931
|
-
maxInputTokens: 131_072,
|
|
4932
|
-
maxOutputTokens: 16_384,
|
|
4933
|
-
},
|
|
4934
|
-
config: {
|
|
4935
|
-
temperature: 1,
|
|
4936
|
-
},
|
|
4937
|
-
pricing: {
|
|
4938
|
-
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
4939
|
-
getPriceForTextOutput: (tokens) => 0.9 * tokens / 1_000_000,
|
|
4940
|
-
getPriceForAudioInput: () => 0,
|
|
4941
|
-
getPriceForAudioOutput: () => 0,
|
|
4942
|
-
currency: 'USD',
|
|
4943
|
-
},
|
|
4944
|
-
capabilities: {
|
|
4945
|
-
vision: true,
|
|
4946
|
-
tools: true,
|
|
4947
|
-
reasoning: true,
|
|
4948
|
-
webSearch: false,
|
|
4949
|
-
jsonOutput: true,
|
|
4950
|
-
structuredOutputs: false,
|
|
4951
|
-
},
|
|
4952
|
-
},
|
|
4953
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_ZAI]: {
|
|
4954
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_ZAI,
|
|
4955
|
-
limits: {
|
|
4956
|
-
maxInputTokens: 131_072,
|
|
4957
|
-
maxOutputTokens: 16_384,
|
|
4958
|
-
},
|
|
4959
|
-
config: {
|
|
4960
|
-
temperature: 1,
|
|
4961
|
-
},
|
|
4962
|
-
pricing: {
|
|
4963
|
-
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
4964
|
-
getPriceForTextOutput: (tokens) => 0.9 * tokens / 1_000_000,
|
|
4965
|
-
getPriceForAudioInput: () => 0,
|
|
4966
|
-
getPriceForAudioOutput: () => 0,
|
|
4967
|
-
currency: 'USD',
|
|
4968
|
-
},
|
|
4969
|
-
capabilities: {
|
|
4970
|
-
vision: true,
|
|
4971
|
-
tools: true,
|
|
4972
|
-
reasoning: true,
|
|
4973
|
-
webSearch: false,
|
|
4974
|
-
jsonOutput: true,
|
|
4975
|
-
structuredOutputs: false,
|
|
4976
|
-
},
|
|
4977
|
-
},
|
|
4978
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6_NOVITA]: {
|
|
4979
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6_NOVITA,
|
|
4980
|
-
limits: {
|
|
4981
|
-
maxInputTokens: 204_800,
|
|
4982
|
-
maxOutputTokens: 128_000,
|
|
4983
|
-
},
|
|
4984
|
-
config: {
|
|
4985
|
-
temperature: 1,
|
|
4986
|
-
},
|
|
4987
|
-
pricing: {
|
|
4988
|
-
getPriceForTextInput: (tokens) => 0.55 * tokens / 1_000_000,
|
|
4989
|
-
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
4990
|
-
getPriceForAudioInput: () => 0,
|
|
4991
|
-
getPriceForAudioOutput: () => 0,
|
|
4992
|
-
currency: 'USD',
|
|
4993
|
-
},
|
|
4994
|
-
capabilities: {
|
|
4995
|
-
vision: false,
|
|
4996
|
-
tools: true,
|
|
4997
|
-
reasoning: true,
|
|
4998
|
-
webSearch: false,
|
|
4999
|
-
jsonOutput: true,
|
|
5000
|
-
structuredOutputs: false,
|
|
5001
|
-
},
|
|
5002
|
-
},
|
|
5003
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6_ZAI]: {
|
|
5004
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6_ZAI,
|
|
5005
|
-
limits: {
|
|
5006
|
-
maxInputTokens: 204_800,
|
|
5007
|
-
maxOutputTokens: 128_000,
|
|
5008
|
-
},
|
|
5009
|
-
config: {
|
|
5010
|
-
temperature: 1,
|
|
5011
|
-
},
|
|
5012
|
-
pricing: {
|
|
5013
|
-
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
5014
|
-
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
5015
|
-
getPriceForAudioInput: () => 0,
|
|
5016
|
-
getPriceForAudioOutput: () => 0,
|
|
5017
|
-
currency: 'USD',
|
|
5018
|
-
},
|
|
5019
|
-
capabilities: {
|
|
5020
|
-
vision: false,
|
|
5021
|
-
tools: true,
|
|
5022
|
-
reasoning: true,
|
|
5023
|
-
webSearch: false,
|
|
5024
|
-
jsonOutput: true,
|
|
5025
|
-
structuredOutputs: false,
|
|
5026
|
-
},
|
|
5027
|
-
},
|
|
5028
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_CANOPYWAVE]: {
|
|
5029
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_CANOPYWAVE,
|
|
5030
|
-
limits: {
|
|
5031
|
-
maxInputTokens: 204_800,
|
|
5032
|
-
maxOutputTokens: 128_000,
|
|
5033
|
-
},
|
|
5034
|
-
config: {
|
|
5035
|
-
temperature: 1,
|
|
5036
|
-
},
|
|
5037
|
-
pricing: {
|
|
5038
|
-
getPriceForTextInput: (tokens) => 0.43 * tokens / 1_000_000,
|
|
5039
|
-
getPriceForTextOutput: (tokens) => 1.75 * tokens / 1_000_000,
|
|
5040
|
-
getPriceForAudioInput: () => 0,
|
|
5041
|
-
getPriceForAudioOutput: () => 0,
|
|
5042
|
-
currency: 'USD',
|
|
5043
|
-
},
|
|
5044
|
-
capabilities: {
|
|
5045
|
-
vision: false,
|
|
5046
|
-
tools: true,
|
|
5047
|
-
reasoning: true,
|
|
5048
|
-
webSearch: false,
|
|
5049
|
-
jsonOutput: true,
|
|
5050
|
-
structuredOutputs: false,
|
|
5051
|
-
},
|
|
5052
|
-
},
|
|
5053
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_EMBERCLOUD]: {
|
|
5054
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_EMBERCLOUD,
|
|
5055
|
-
limits: {
|
|
5056
|
-
maxInputTokens: 204_800,
|
|
5057
|
-
maxOutputTokens: 128_000,
|
|
5058
|
-
},
|
|
5059
|
-
config: {
|
|
5060
|
-
temperature: 1,
|
|
5061
|
-
},
|
|
5062
|
-
pricing: {
|
|
5063
|
-
getPriceForTextInput: (tokens) => 0.38 * tokens / 1_000_000,
|
|
5064
|
-
getPriceForTextOutput: (tokens) => 1.98 * tokens / 1_000_000,
|
|
5065
|
-
getPriceForAudioInput: () => 0,
|
|
5066
|
-
getPriceForAudioOutput: () => 0,
|
|
5067
|
-
currency: 'USD',
|
|
5068
|
-
},
|
|
5069
|
-
capabilities: {
|
|
5070
|
-
vision: false,
|
|
5071
|
-
tools: true,
|
|
5072
|
-
reasoning: true,
|
|
5073
|
-
webSearch: false,
|
|
5074
|
-
jsonOutput: true,
|
|
5075
|
-
structuredOutputs: false,
|
|
5076
|
-
},
|
|
5077
|
-
},
|
|
5078
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASH_EMBERCLOUD]: {
|
|
5079
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASH_EMBERCLOUD,
|
|
5080
|
-
limits: {
|
|
5081
|
-
maxInputTokens: 200_000,
|
|
5082
|
-
maxOutputTokens: 128_000,
|
|
5083
|
-
},
|
|
5084
|
-
config: {
|
|
5085
|
-
temperature: 1,
|
|
5086
|
-
},
|
|
5087
|
-
pricing: {
|
|
5088
|
-
getPriceForTextInput: (tokens) => 0.06 * tokens / 1_000_000,
|
|
5089
|
-
getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000,
|
|
5090
|
-
getPriceForAudioInput: () => 0,
|
|
5091
|
-
getPriceForAudioOutput: () => 0,
|
|
5092
|
-
currency: 'USD',
|
|
5093
|
-
},
|
|
5094
|
-
capabilities: {
|
|
5095
|
-
vision: false,
|
|
5096
|
-
tools: true,
|
|
5097
|
-
reasoning: true,
|
|
5098
|
-
webSearch: false,
|
|
5099
|
-
jsonOutput: true,
|
|
5100
|
-
structuredOutputs: false,
|
|
5101
|
-
},
|
|
5102
|
-
},
|
|
5103
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASH_ZAI]: {
|
|
5104
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASH_ZAI,
|
|
5105
|
-
limits: {
|
|
5106
|
-
maxInputTokens: 200_000,
|
|
5107
|
-
maxOutputTokens: 128_000,
|
|
5108
|
-
},
|
|
5109
|
-
config: {
|
|
5110
|
-
temperature: 1,
|
|
5111
|
-
},
|
|
5112
|
-
pricing: {
|
|
5113
|
-
getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000,
|
|
5114
|
-
getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000,
|
|
5115
|
-
getPriceForAudioInput: () => 0,
|
|
5116
|
-
getPriceForAudioOutput: () => 0,
|
|
5117
|
-
currency: 'USD',
|
|
5118
|
-
},
|
|
5119
|
-
capabilities: {
|
|
5120
|
-
vision: false,
|
|
5121
|
-
tools: true,
|
|
5122
|
-
reasoning: true,
|
|
5123
|
-
webSearch: false,
|
|
5124
|
-
jsonOutput: true,
|
|
5125
|
-
structuredOutputs: false,
|
|
5126
|
-
},
|
|
5127
|
-
},
|
|
5128
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_NOVITA]: {
|
|
5129
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_NOVITA,
|
|
5130
|
-
limits: {
|
|
5131
|
-
maxInputTokens: 204_800,
|
|
5132
|
-
maxOutputTokens: 128_000,
|
|
5133
|
-
},
|
|
5134
|
-
config: {
|
|
5135
|
-
temperature: 1,
|
|
5136
|
-
},
|
|
5137
|
-
pricing: {
|
|
5138
|
-
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
5139
|
-
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
5140
|
-
getPriceForAudioInput: () => 0,
|
|
5141
|
-
getPriceForAudioOutput: () => 0,
|
|
5142
|
-
currency: 'USD',
|
|
5143
|
-
},
|
|
5144
|
-
capabilities: {
|
|
5145
|
-
vision: false,
|
|
5146
|
-
tools: true,
|
|
5147
|
-
reasoning: true,
|
|
5148
|
-
webSearch: false,
|
|
5149
|
-
jsonOutput: true,
|
|
5150
|
-
structuredOutputs: false,
|
|
5151
|
-
},
|
|
5152
|
-
},
|
|
5153
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_ZAI]: {
|
|
5154
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_ZAI,
|
|
5155
|
-
limits: {
|
|
5156
|
-
maxInputTokens: 204_800,
|
|
5157
|
-
maxOutputTokens: 128_000,
|
|
5158
|
-
},
|
|
5159
|
-
config: {
|
|
5160
|
-
temperature: 1,
|
|
5161
|
-
},
|
|
5162
|
-
pricing: {
|
|
5163
|
-
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
5164
|
-
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
5165
|
-
getPriceForAudioInput: () => 0,
|
|
5166
|
-
getPriceForAudioOutput: () => 0,
|
|
5167
|
-
currency: 'USD',
|
|
5168
|
-
},
|
|
5169
|
-
capabilities: {
|
|
5170
|
-
vision: false,
|
|
5171
|
-
tools: true,
|
|
5172
|
-
reasoning: true,
|
|
5173
|
-
webSearch: false,
|
|
5174
|
-
jsonOutput: true,
|
|
5175
|
-
structuredOutputs: false,
|
|
5176
|
-
},
|
|
5177
|
-
},
|
|
5178
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_CANOPYWAVE]: {
|
|
5179
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_CANOPYWAVE,
|
|
5180
|
-
limits: {
|
|
5181
|
-
maxInputTokens: 202_800,
|
|
5182
|
-
maxOutputTokens: 128_000,
|
|
5183
|
-
},
|
|
5184
|
-
config: {
|
|
5185
|
-
temperature: 1,
|
|
5186
|
-
},
|
|
5187
|
-
pricing: {
|
|
5188
|
-
getPriceForTextInput: (tokens) => 0.9 * tokens / 1_000_000,
|
|
5189
|
-
getPriceForTextOutput: (tokens) => 3.1 * tokens / 1_000_000,
|
|
5190
|
-
getPriceForAudioInput: () => 0,
|
|
5191
|
-
getPriceForAudioOutput: () => 0,
|
|
5192
|
-
currency: 'USD',
|
|
5193
|
-
},
|
|
5194
|
-
capabilities: {
|
|
5195
|
-
vision: false,
|
|
5196
|
-
tools: true,
|
|
5197
|
-
reasoning: true,
|
|
5198
|
-
webSearch: false,
|
|
5199
|
-
jsonOutput: true,
|
|
5200
|
-
structuredOutputs: false,
|
|
5201
|
-
},
|
|
5202
|
-
},
|
|
5203
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_EMBERCLOUD]: {
|
|
5204
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_EMBERCLOUD,
|
|
5205
|
-
limits: {
|
|
5206
|
-
maxInputTokens: 202_800,
|
|
5207
|
-
maxOutputTokens: 128_000,
|
|
5208
|
-
},
|
|
5209
|
-
config: {
|
|
5210
|
-
temperature: 1,
|
|
5211
|
-
},
|
|
5212
|
-
pricing: {
|
|
5213
|
-
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
5214
|
-
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
5215
|
-
getPriceForAudioInput: () => 0,
|
|
5216
|
-
getPriceForAudioOutput: () => 0,
|
|
5217
|
-
currency: 'USD',
|
|
5218
|
-
},
|
|
5219
|
-
capabilities: {
|
|
5220
|
-
vision: false,
|
|
5221
|
-
tools: true,
|
|
5222
|
-
reasoning: true,
|
|
5223
|
-
webSearch: false,
|
|
5224
|
-
jsonOutput: true,
|
|
5225
|
-
structuredOutputs: false,
|
|
5226
|
-
},
|
|
5227
|
-
},
|
|
5228
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_NOVITA]: {
|
|
5229
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_NOVITA,
|
|
5230
|
-
limits: {
|
|
5231
|
-
maxInputTokens: 202_800,
|
|
5232
|
-
maxOutputTokens: 128_000,
|
|
5233
|
-
},
|
|
5234
|
-
config: {
|
|
5235
|
-
temperature: 1,
|
|
5236
|
-
},
|
|
5237
|
-
pricing: {
|
|
5238
|
-
getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000,
|
|
5239
|
-
getPriceForTextOutput: (tokens) => 3.2 * tokens / 1_000_000,
|
|
5240
|
-
getPriceForAudioInput: () => 0,
|
|
5241
|
-
getPriceForAudioOutput: () => 0,
|
|
5242
|
-
currency: 'USD',
|
|
5243
|
-
},
|
|
5244
|
-
capabilities: {
|
|
5245
|
-
vision: false,
|
|
5246
|
-
tools: true,
|
|
5247
|
-
reasoning: true,
|
|
5248
|
-
webSearch: false,
|
|
5249
|
-
jsonOutput: true,
|
|
5250
|
-
structuredOutputs: false,
|
|
5251
|
-
},
|
|
5252
|
-
},
|
|
5253
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_ZAI]: {
|
|
5254
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_ZAI,
|
|
5255
|
-
limits: {
|
|
5256
|
-
maxInputTokens: 202_800,
|
|
5257
|
-
maxOutputTokens: 128_000,
|
|
5258
|
-
},
|
|
5259
|
-
config: {
|
|
5260
|
-
temperature: 1,
|
|
5261
|
-
},
|
|
5262
|
-
pricing: {
|
|
5263
|
-
getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000,
|
|
5264
|
-
getPriceForTextOutput: (tokens) => 3.2 * tokens / 1_000_000,
|
|
5265
|
-
getPriceForAudioInput: () => 0,
|
|
5266
|
-
getPriceForAudioOutput: () => 0,
|
|
5267
|
-
currency: 'USD',
|
|
5268
|
-
},
|
|
5269
|
-
capabilities: {
|
|
5270
|
-
vision: false,
|
|
5271
|
-
tools: true,
|
|
5272
|
-
reasoning: true,
|
|
5273
|
-
webSearch: false,
|
|
5274
|
-
jsonOutput: true,
|
|
5275
|
-
structuredOutputs: false,
|
|
5276
|
-
},
|
|
2556
|
+
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2557
|
+
},
|
|
2558
|
+
// ─── OpenAI explicit provider variants ────────────────────────
|
|
2559
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_OPENAI]: {
|
|
2560
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_OPENAI,
|
|
2561
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2562
|
+
config: { temperature: 1 },
|
|
2563
|
+
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
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 },
|
|
2572
|
+
},
|
|
2573
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI_OPENAI]: {
|
|
2574
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI_OPENAI,
|
|
2575
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2576
|
+
config: { temperature: 1 },
|
|
2577
|
+
pricing: { getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2578
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2579
|
+
},
|
|
2580
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI_AZURE]: {
|
|
2581
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI_AZURE,
|
|
2582
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2583
|
+
config: { temperature: 1 },
|
|
2584
|
+
pricing: { getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2585
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2586
|
+
},
|
|
2587
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO_OPENAI]: {
|
|
2588
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO_OPENAI,
|
|
2589
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2590
|
+
config: { temperature: 1 },
|
|
2591
|
+
pricing: { getPriceForTextInput: (tokens) => 0.05 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2592
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2593
|
+
},
|
|
2594
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO_AZURE]: {
|
|
2595
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO_AZURE,
|
|
2596
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2597
|
+
config: { temperature: 1 },
|
|
2598
|
+
pricing: { getPriceForTextInput: (tokens) => 0.05 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2599
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2600
|
+
},
|
|
2601
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO_OPENAI]: {
|
|
2602
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO_OPENAI,
|
|
2603
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2604
|
+
config: { temperature: 1 },
|
|
2605
|
+
pricing: { getPriceForTextInput: (tokens) => 15 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 120 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2606
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2607
|
+
},
|
|
2608
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO_AZURE]: {
|
|
2609
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO_AZURE,
|
|
2610
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2611
|
+
config: { temperature: 1 },
|
|
2612
|
+
pricing: { getPriceForTextInput: (tokens) => 15 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 120 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2613
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2614
|
+
},
|
|
2615
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_OPENAI]: {
|
|
2616
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_OPENAI,
|
|
2617
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2618
|
+
config: { temperature: 1 },
|
|
2619
|
+
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2620
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2621
|
+
},
|
|
2622
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_AZURE]: {
|
|
2623
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_AZURE,
|
|
2624
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2625
|
+
config: { temperature: 1 },
|
|
2626
|
+
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2627
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2628
|
+
},
|
|
2629
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_OPENAI]: {
|
|
2630
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_OPENAI,
|
|
2631
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2632
|
+
config: { temperature: 1 },
|
|
2633
|
+
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2634
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2635
|
+
},
|
|
2636
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_AZURE]: {
|
|
2637
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_AZURE,
|
|
2638
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2639
|
+
config: { temperature: 1 },
|
|
2640
|
+
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2641
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2642
|
+
},
|
|
2643
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI_OPENAI]: {
|
|
2644
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI_OPENAI,
|
|
2645
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2646
|
+
config: { temperature: 1 },
|
|
2647
|
+
pricing: { getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2648
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2649
|
+
},
|
|
2650
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI_AZURE]: {
|
|
2651
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI_AZURE,
|
|
2652
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2653
|
+
config: { temperature: 1 },
|
|
2654
|
+
pricing: { getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2655
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2656
|
+
},
|
|
2657
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_OPENAI]: {
|
|
2658
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_OPENAI,
|
|
2659
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2660
|
+
config: { temperature: 1 },
|
|
2661
|
+
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2662
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2663
|
+
},
|
|
2664
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_AZURE]: {
|
|
2665
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_AZURE,
|
|
2666
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2667
|
+
config: { temperature: 1 },
|
|
2668
|
+
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2669
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2670
|
+
},
|
|
2671
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX_OPENAI]: {
|
|
2672
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX_OPENAI,
|
|
2673
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2674
|
+
config: { temperature: 1 },
|
|
2675
|
+
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2676
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2677
|
+
},
|
|
2678
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX_AZURE]: {
|
|
2679
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX_AZURE,
|
|
2680
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2681
|
+
config: { temperature: 1 },
|
|
2682
|
+
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2683
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2684
|
+
},
|
|
2685
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX_OPENAI]: {
|
|
2686
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX_OPENAI,
|
|
2687
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2688
|
+
config: { temperature: 1 },
|
|
2689
|
+
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2690
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2691
|
+
},
|
|
2692
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX_AZURE]: {
|
|
2693
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX_AZURE,
|
|
2694
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2695
|
+
config: { temperature: 1 },
|
|
2696
|
+
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2697
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2698
|
+
},
|
|
2699
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_OPENAI]: {
|
|
2700
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_OPENAI,
|
|
2701
|
+
limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
|
|
2702
|
+
config: { temperature: 1 },
|
|
2703
|
+
pricing: { getPriceForTextInput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2704
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2705
|
+
},
|
|
2706
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_AZURE]: {
|
|
2707
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_AZURE,
|
|
2708
|
+
limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
|
|
2709
|
+
config: { temperature: 1 },
|
|
2710
|
+
pricing: { getPriceForTextInput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2711
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2712
|
+
},
|
|
2713
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO_OPENAI]: {
|
|
2714
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO_OPENAI,
|
|
2715
|
+
limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
|
|
2716
|
+
config: { temperature: 1 },
|
|
2717
|
+
pricing: { getPriceForTextInput: (tokens) => 30 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 180 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2718
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2719
|
+
},
|
|
2720
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO_AZURE]: {
|
|
2721
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO_AZURE,
|
|
2722
|
+
limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
|
|
2723
|
+
config: { temperature: 1 },
|
|
2724
|
+
pricing: { getPriceForTextInput: (tokens) => 30 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 180 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2725
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2726
|
+
},
|
|
2727
|
+
// ─── Gemini explicit provider variants ────────────────────────
|
|
2728
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_PRO_GOOGLE_AI_STUDIO]: {
|
|
2729
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_PRO_GOOGLE_AI_STUDIO,
|
|
2730
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
2731
|
+
config: { temperature: 0.2 },
|
|
2732
|
+
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2733
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2734
|
+
},
|
|
2735
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_PRO_GOOGLE_VERTEX]: {
|
|
2736
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_PRO_GOOGLE_VERTEX,
|
|
2737
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
2738
|
+
config: { temperature: 0.2 },
|
|
2739
|
+
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2740
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2741
|
+
},
|
|
2742
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_GOOGLE_AI_STUDIO]: {
|
|
2743
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_GOOGLE_AI_STUDIO,
|
|
2744
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
2745
|
+
config: { temperature: 0.2 },
|
|
2746
|
+
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: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2748
|
+
},
|
|
2749
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_GOOGLE_VERTEX]: {
|
|
2750
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_GOOGLE_VERTEX,
|
|
2751
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
2752
|
+
config: { temperature: 0.2 },
|
|
2753
|
+
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: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2755
|
+
},
|
|
2756
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_GOOGLE_AI_STUDIO]: {
|
|
2757
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_GOOGLE_AI_STUDIO,
|
|
2758
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
2759
|
+
config: { temperature: 0.2 },
|
|
2760
|
+
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: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: true },
|
|
2762
|
+
},
|
|
2763
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_GOOGLE_VERTEX]: {
|
|
2764
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_GOOGLE_VERTEX,
|
|
2765
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
2766
|
+
config: { temperature: 0.2 },
|
|
2767
|
+
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: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: true },
|
|
2769
|
+
},
|
|
2770
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW_GOOGLE_AI_STUDIO]: {
|
|
2771
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW_GOOGLE_AI_STUDIO,
|
|
2772
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
2773
|
+
config: { temperature: 0.2 },
|
|
2774
|
+
pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 12 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2775
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2776
|
+
},
|
|
2777
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW_GOOGLE_VERTEX]: {
|
|
2778
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW_GOOGLE_VERTEX,
|
|
2779
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
2780
|
+
config: { temperature: 0.2 },
|
|
2781
|
+
pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 12 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2782
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2783
|
+
},
|
|
2784
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW_GOOGLE_AI_STUDIO]: {
|
|
2785
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW_GOOGLE_AI_STUDIO,
|
|
2786
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
2787
|
+
config: { temperature: 0.2 },
|
|
2788
|
+
pricing: { getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2789
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2790
|
+
},
|
|
2791
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW_GOOGLE_VERTEX]: {
|
|
2792
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW_GOOGLE_VERTEX,
|
|
2793
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
2794
|
+
config: { temperature: 0.2 },
|
|
2795
|
+
pricing: { getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2796
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2797
|
+
},
|
|
2798
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE_GOOGLE_AI_STUDIO]: {
|
|
2799
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE_GOOGLE_AI_STUDIO,
|
|
2800
|
+
limits: { maxInputTokens: 32_768, maxOutputTokens: 65_536 },
|
|
2801
|
+
config: { temperature: 0.2 },
|
|
2802
|
+
pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 30 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2803
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: true },
|
|
2804
|
+
},
|
|
2805
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE_GOOGLE_VERTEX]: {
|
|
2806
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE_GOOGLE_VERTEX,
|
|
2807
|
+
limits: { maxInputTokens: 32_768, maxOutputTokens: 65_536 },
|
|
2808
|
+
config: { temperature: 0.2 },
|
|
2809
|
+
pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 30 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2810
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: true },
|
|
5277
2811
|
},
|
|
5278
2812
|
};
|
|
5279
2813
|
const LLMAPI_COMPLETION_MODELS = exports.LLMAPI_AVAILABLE_MODELS;
|