@mate-academy/llm-gateway 7.1.5 → 7.2.0

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.
@@ -22,7 +22,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
22
22
  getPriceForAudioOutput: () => 0,
23
23
  currency: 'USD',
24
24
  },
25
- capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: true },
25
+ capabilities: {
26
+ vision: false,
27
+ tools: true,
28
+ reasoning: false,
29
+ webSearch: false,
30
+ jsonOutput: true,
31
+ structuredOutputs: false,
32
+ },
26
33
  },
27
34
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4]: {
28
35
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4,
@@ -40,7 +47,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
40
47
  getPriceForAudioOutput: () => 0,
41
48
  currency: 'USD',
42
49
  },
43
- capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: true },
50
+ capabilities: {
51
+ vision: false,
52
+ tools: true,
53
+ reasoning: false,
54
+ webSearch: false,
55
+ jsonOutput: false,
56
+ structuredOutputs: false,
57
+ },
44
58
  },
45
59
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_TURBO]: {
46
60
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_TURBO,
@@ -58,7 +72,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
58
72
  getPriceForAudioOutput: () => 0,
59
73
  currency: 'USD',
60
74
  },
61
- capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: true },
75
+ capabilities: {
76
+ vision: true,
77
+ tools: true,
78
+ reasoning: false,
79
+ webSearch: false,
80
+ jsonOutput: true,
81
+ structuredOutputs: false,
82
+ },
62
83
  },
63
84
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O]: {
64
85
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O,
@@ -76,7 +97,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
76
97
  getPriceForAudioOutput: () => 0,
77
98
  currency: 'USD',
78
99
  },
79
- capabilities: { vision: true, tools: true, reasoning: false, webSearch: true, jsonResponseWithTools: true },
100
+ capabilities: {
101
+ vision: true,
102
+ tools: true,
103
+ reasoning: false,
104
+ webSearch: true,
105
+ jsonOutput: true,
106
+ structuredOutputs: true,
107
+ },
80
108
  },
81
109
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O_MINI]: {
82
110
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O_MINI,
@@ -94,7 +122,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
94
122
  getPriceForAudioOutput: () => 0,
95
123
  currency: 'USD',
96
124
  },
97
- capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: true },
125
+ capabilities: {
126
+ vision: false,
127
+ tools: true,
128
+ reasoning: false,
129
+ webSearch: false,
130
+ jsonOutput: true,
131
+ structuredOutputs: true,
132
+ },
98
133
  },
99
134
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O_SEARCH_PREVIEW]: {
100
135
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O_SEARCH_PREVIEW,
@@ -112,7 +147,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
112
147
  getPriceForAudioOutput: () => 0,
113
148
  currency: 'USD',
114
149
  },
115
- capabilities: { vision: true, tools: false, reasoning: false, webSearch: true, jsonResponseWithTools: true },
150
+ capabilities: {
151
+ vision: true,
152
+ tools: false,
153
+ reasoning: false,
154
+ webSearch: true,
155
+ jsonOutput: false,
156
+ structuredOutputs: false,
157
+ },
116
158
  },
117
159
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O_MINI_SEARCH_PREVIEW]: {
118
160
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4O_MINI_SEARCH_PREVIEW,
@@ -130,7 +172,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
130
172
  getPriceForAudioOutput: () => 0,
131
173
  currency: 'USD',
132
174
  },
133
- capabilities: { vision: true, tools: false, reasoning: false, webSearch: true, jsonResponseWithTools: true },
175
+ capabilities: {
176
+ vision: true,
177
+ tools: false,
178
+ reasoning: false,
179
+ webSearch: true,
180
+ jsonOutput: false,
181
+ structuredOutputs: false,
182
+ },
134
183
  },
135
184
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_1]: {
136
185
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_1,
@@ -148,7 +197,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
148
197
  getPriceForAudioOutput: () => 0,
149
198
  currency: 'USD',
150
199
  },
151
- capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: true },
200
+ capabilities: {
201
+ vision: true,
202
+ tools: true,
203
+ reasoning: false,
204
+ webSearch: false,
205
+ jsonOutput: true,
206
+ structuredOutputs: true,
207
+ },
152
208
  },
153
209
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_1_MINI]: {
154
210
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_1_MINI,
@@ -166,7 +222,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
166
222
  getPriceForAudioOutput: () => 0,
167
223
  currency: 'USD',
168
224
  },
169
- capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: true },
225
+ capabilities: {
226
+ vision: true,
227
+ tools: true,
228
+ reasoning: false,
229
+ webSearch: false,
230
+ jsonOutput: true,
231
+ structuredOutputs: true,
232
+ },
170
233
  },
171
234
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_1_NANO]: {
172
235
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_4_1_NANO,
@@ -184,7 +247,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
184
247
  getPriceForAudioOutput: () => 0,
185
248
  currency: 'USD',
186
249
  },
187
- capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: true },
250
+ capabilities: {
251
+ vision: true,
252
+ tools: true,
253
+ reasoning: false,
254
+ webSearch: false,
255
+ jsonOutput: true,
256
+ structuredOutputs: true,
257
+ },
188
258
  },
189
259
  [LLMAPI_typedefs_1.LLMAPIModelNames.O1]: {
190
260
  name: LLMAPI_typedefs_1.LLMAPIModelNames.O1,
@@ -202,7 +272,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
202
272
  getPriceForAudioOutput: () => 0,
203
273
  currency: 'USD',
204
274
  },
205
- capabilities: { vision: true, tools: false, reasoning: true, webSearch: false, jsonResponseWithTools: false },
275
+ capabilities: {
276
+ vision: true,
277
+ tools: false,
278
+ reasoning: true,
279
+ webSearch: false,
280
+ jsonOutput: true,
281
+ structuredOutputs: true,
282
+ },
206
283
  },
207
284
  [LLMAPI_typedefs_1.LLMAPIModelNames.O3]: {
208
285
  name: LLMAPI_typedefs_1.LLMAPIModelNames.O3,
@@ -220,7 +297,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
220
297
  getPriceForAudioOutput: () => 0,
221
298
  currency: 'USD',
222
299
  },
223
- capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
300
+ capabilities: {
301
+ vision: true,
302
+ tools: false,
303
+ reasoning: false,
304
+ webSearch: false,
305
+ jsonOutput: true,
306
+ structuredOutputs: true,
307
+ },
224
308
  },
225
309
  [LLMAPI_typedefs_1.LLMAPIModelNames.O3_MINI]: {
226
310
  name: LLMAPI_typedefs_1.LLMAPIModelNames.O3_MINI,
@@ -238,7 +322,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
238
322
  getPriceForAudioOutput: () => 0,
239
323
  currency: 'USD',
240
324
  },
241
- capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
325
+ capabilities: {
326
+ vision: false,
327
+ tools: false,
328
+ reasoning: false,
329
+ webSearch: false,
330
+ jsonOutput: true,
331
+ structuredOutputs: true,
332
+ },
242
333
  },
243
334
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_OSS_20B]: {
244
335
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_OSS_20B,
@@ -256,7 +347,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
256
347
  getPriceForAudioOutput: () => 0,
257
348
  currency: 'USD',
258
349
  },
259
- capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: true },
350
+ capabilities: {
351
+ vision: false,
352
+ tools: true,
353
+ reasoning: true,
354
+ webSearch: false,
355
+ jsonOutput: true,
356
+ structuredOutputs: false,
357
+ },
260
358
  },
261
359
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5]: {
262
360
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5,
@@ -274,7 +372,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
274
372
  getPriceForAudioOutput: () => 0,
275
373
  currency: 'USD',
276
374
  },
277
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
375
+ capabilities: {
376
+ vision: true,
377
+ tools: true,
378
+ reasoning: true,
379
+ webSearch: true,
380
+ jsonOutput: true,
381
+ structuredOutputs: true,
382
+ },
278
383
  },
279
384
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI]: {
280
385
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI,
@@ -292,7 +397,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
292
397
  getPriceForAudioOutput: () => 0,
293
398
  currency: 'USD',
294
399
  },
295
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
400
+ capabilities: {
401
+ vision: true,
402
+ tools: true,
403
+ reasoning: true,
404
+ webSearch: true,
405
+ jsonOutput: true,
406
+ structuredOutputs: true,
407
+ },
296
408
  },
297
409
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO]: {
298
410
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO,
@@ -310,7 +422,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
310
422
  getPriceForAudioOutput: () => 0,
311
423
  currency: 'USD',
312
424
  },
313
- capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
425
+ capabilities: {
426
+ vision: false,
427
+ tools: true,
428
+ reasoning: true,
429
+ webSearch: true,
430
+ jsonOutput: true,
431
+ structuredOutputs: true,
432
+ },
314
433
  },
315
434
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_CODEX]: {
316
435
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_CODEX,
@@ -328,7 +447,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
328
447
  getPriceForAudioOutput: () => 0,
329
448
  currency: 'USD',
330
449
  },
331
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: true },
450
+ capabilities: {
451
+ vision: true,
452
+ tools: true,
453
+ reasoning: true,
454
+ webSearch: false,
455
+ jsonOutput: true,
456
+ structuredOutputs: true,
457
+ },
332
458
  },
333
459
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO]: {
334
460
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO,
@@ -346,7 +472,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
346
472
  getPriceForAudioOutput: () => 0,
347
473
  currency: 'USD',
348
474
  },
349
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
475
+ capabilities: {
476
+ vision: true,
477
+ tools: true,
478
+ reasoning: true,
479
+ webSearch: true,
480
+ jsonOutput: true,
481
+ structuredOutputs: true,
482
+ },
350
483
  },
351
484
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1]: {
352
485
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1,
@@ -364,7 +497,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
364
497
  getPriceForAudioOutput: () => 0,
365
498
  currency: 'USD',
366
499
  },
367
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
500
+ capabilities: {
501
+ vision: true,
502
+ tools: true,
503
+ reasoning: true,
504
+ webSearch: true,
505
+ jsonOutput: true,
506
+ structuredOutputs: true,
507
+ },
368
508
  },
369
509
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CHAT]: {
370
510
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CHAT,
@@ -382,7 +522,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
382
522
  getPriceForAudioOutput: () => 0,
383
523
  currency: 'USD',
384
524
  },
385
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: true },
525
+ capabilities: {
526
+ vision: true,
527
+ tools: true,
528
+ reasoning: true,
529
+ webSearch: false,
530
+ jsonOutput: true,
531
+ structuredOutputs: true,
532
+ },
386
533
  },
387
534
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX]: {
388
535
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX,
@@ -400,7 +547,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
400
547
  getPriceForAudioOutput: () => 0,
401
548
  currency: 'USD',
402
549
  },
403
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
550
+ capabilities: {
551
+ vision: true,
552
+ tools: true,
553
+ reasoning: true,
554
+ webSearch: true,
555
+ jsonOutput: true,
556
+ structuredOutputs: true,
557
+ },
404
558
  },
405
559
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI]: {
406
560
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI,
@@ -418,7 +572,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
418
572
  getPriceForAudioOutput: () => 0,
419
573
  currency: 'USD',
420
574
  },
421
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
575
+ capabilities: {
576
+ vision: true,
577
+ tools: true,
578
+ reasoning: true,
579
+ webSearch: true,
580
+ jsonOutput: true,
581
+ structuredOutputs: true,
582
+ },
422
583
  },
423
584
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2]: {
424
585
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2,
@@ -436,7 +597,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
436
597
  getPriceForAudioOutput: () => 0,
437
598
  currency: 'USD',
438
599
  },
439
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
600
+ capabilities: {
601
+ vision: true,
602
+ tools: true,
603
+ reasoning: true,
604
+ webSearch: true,
605
+ jsonOutput: true,
606
+ structuredOutputs: true,
607
+ },
440
608
  },
441
609
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_PRO]: {
442
610
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_PRO,
@@ -454,7 +622,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
454
622
  getPriceForAudioOutput: () => 0,
455
623
  currency: 'USD',
456
624
  },
457
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
625
+ capabilities: {
626
+ vision: true,
627
+ tools: true,
628
+ reasoning: true,
629
+ webSearch: true,
630
+ jsonOutput: false,
631
+ structuredOutputs: true,
632
+ },
458
633
  },
459
634
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX]: {
460
635
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX,
@@ -472,7 +647,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
472
647
  getPriceForAudioOutput: () => 0,
473
648
  currency: 'USD',
474
649
  },
475
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
650
+ capabilities: {
651
+ vision: true,
652
+ tools: true,
653
+ reasoning: true,
654
+ webSearch: true,
655
+ jsonOutput: true,
656
+ structuredOutputs: true,
657
+ },
476
658
  },
477
659
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX]: {
478
660
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX,
@@ -490,7 +672,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
490
672
  getPriceForAudioOutput: () => 0,
491
673
  currency: 'USD',
492
674
  },
493
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
675
+ capabilities: {
676
+ vision: true,
677
+ tools: true,
678
+ reasoning: true,
679
+ webSearch: true,
680
+ jsonOutput: true,
681
+ structuredOutputs: true,
682
+ },
494
683
  },
495
684
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4]: {
496
685
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4,
@@ -508,7 +697,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
508
697
  getPriceForAudioOutput: () => 0,
509
698
  currency: 'USD',
510
699
  },
511
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
700
+ capabilities: {
701
+ vision: true,
702
+ tools: true,
703
+ reasoning: true,
704
+ webSearch: true,
705
+ jsonOutput: true,
706
+ structuredOutputs: true,
707
+ },
512
708
  },
513
709
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO]: {
514
710
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO,
@@ -526,7 +722,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
526
722
  getPriceForAudioOutput: () => 0,
527
723
  currency: 'USD',
528
724
  },
529
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
725
+ capabilities: {
726
+ vision: true,
727
+ tools: true,
728
+ reasoning: true,
729
+ webSearch: true,
730
+ jsonOutput: true,
731
+ structuredOutputs: true,
732
+ },
530
733
  },
531
734
  // ─── Anthropic ─────────────────────────────────────────────────
532
735
  [LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_20250514]: {
@@ -545,7 +748,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
545
748
  getPriceForAudioOutput: () => 0,
546
749
  currency: 'USD',
547
750
  },
548
- capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
751
+ capabilities: {
752
+ vision: false,
753
+ tools: true,
754
+ reasoning: true,
755
+ webSearch: true,
756
+ jsonOutput: false,
757
+ structuredOutputs: false,
758
+ },
549
759
  },
550
760
  [LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_5]: {
551
761
  name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_5,
@@ -563,7 +773,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
563
773
  getPriceForAudioOutput: () => 0,
564
774
  currency: 'USD',
565
775
  },
566
- capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
776
+ capabilities: {
777
+ vision: false,
778
+ tools: true,
779
+ reasoning: true,
780
+ webSearch: true,
781
+ jsonOutput: false,
782
+ structuredOutputs: true,
783
+ },
567
784
  },
568
785
  [LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_5_20250929]: {
569
786
  name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_5_20250929,
@@ -581,7 +798,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
581
798
  getPriceForAudioOutput: () => 0,
582
799
  currency: 'USD',
583
800
  },
584
- capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
801
+ capabilities: {
802
+ vision: false,
803
+ tools: true,
804
+ reasoning: true,
805
+ webSearch: true,
806
+ jsonOutput: false,
807
+ structuredOutputs: true,
808
+ },
585
809
  },
586
810
  [LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_6]: {
587
811
  name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_6,
@@ -599,7 +823,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
599
823
  getPriceForAudioOutput: () => 0,
600
824
  currency: 'USD',
601
825
  },
602
- capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
826
+ capabilities: {
827
+ vision: false,
828
+ tools: true,
829
+ reasoning: true,
830
+ webSearch: true,
831
+ jsonOutput: false,
832
+ structuredOutputs: true,
833
+ },
603
834
  },
604
835
  [LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_HAIKU_4_5]: {
605
836
  name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_HAIKU_4_5,
@@ -617,7 +848,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
617
848
  getPriceForAudioOutput: () => 0,
618
849
  currency: 'USD',
619
850
  },
620
- capabilities: { vision: false, tools: true, reasoning: false, webSearch: true, jsonResponseWithTools: false },
851
+ capabilities: {
852
+ vision: false,
853
+ tools: true,
854
+ reasoning: false,
855
+ webSearch: true,
856
+ jsonOutput: false,
857
+ structuredOutputs: true,
858
+ },
621
859
  },
622
860
  [LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_HAIKU_4_5_20251001]: {
623
861
  name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_HAIKU_4_5_20251001,
@@ -635,7 +873,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
635
873
  getPriceForAudioOutput: () => 0,
636
874
  currency: 'USD',
637
875
  },
638
- capabilities: { vision: false, tools: true, reasoning: false, webSearch: true, jsonResponseWithTools: false },
876
+ capabilities: {
877
+ vision: false,
878
+ tools: true,
879
+ reasoning: false,
880
+ webSearch: true,
881
+ jsonOutput: false,
882
+ structuredOutputs: true,
883
+ },
639
884
  },
640
885
  [LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_20250514]: {
641
886
  name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_20250514,
@@ -653,7 +898,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
653
898
  getPriceForAudioOutput: () => 0,
654
899
  currency: 'USD',
655
900
  },
656
- capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
901
+ capabilities: {
902
+ vision: false,
903
+ tools: true,
904
+ reasoning: true,
905
+ webSearch: true,
906
+ jsonOutput: false,
907
+ structuredOutputs: false,
908
+ },
657
909
  },
658
910
  [LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_1_20250805]: {
659
911
  name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_1_20250805,
@@ -671,7 +923,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
671
923
  getPriceForAudioOutput: () => 0,
672
924
  currency: 'USD',
673
925
  },
674
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
926
+ capabilities: {
927
+ vision: true,
928
+ tools: true,
929
+ reasoning: true,
930
+ webSearch: true,
931
+ jsonOutput: false,
932
+ structuredOutputs: true,
933
+ },
675
934
  },
676
935
  [LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_5_20251101]: {
677
936
  name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_5_20251101,
@@ -689,7 +948,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
689
948
  getPriceForAudioOutput: () => 0,
690
949
  currency: 'USD',
691
950
  },
692
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
951
+ capabilities: {
952
+ vision: true,
953
+ tools: true,
954
+ reasoning: true,
955
+ webSearch: true,
956
+ jsonOutput: false,
957
+ structuredOutputs: true,
958
+ },
693
959
  },
694
960
  [LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_6]: {
695
961
  name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_6,
@@ -707,7 +973,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
707
973
  getPriceForAudioOutput: () => 0,
708
974
  currency: 'USD',
709
975
  },
710
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
976
+ capabilities: {
977
+ vision: true,
978
+ tools: true,
979
+ reasoning: true,
980
+ webSearch: true,
981
+ jsonOutput: true,
982
+ structuredOutputs: true,
983
+ },
711
984
  },
712
985
  // ─── Google Gemini ─────────────────────────────────────────────
713
986
  [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_PRO]: {
@@ -726,7 +999,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
726
999
  getPriceForAudioOutput: () => 0,
727
1000
  currency: 'USD',
728
1001
  },
729
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
1002
+ capabilities: {
1003
+ vision: true,
1004
+ tools: true,
1005
+ reasoning: true,
1006
+ webSearch: true,
1007
+ jsonOutput: true,
1008
+ structuredOutputs: true,
1009
+ },
730
1010
  },
731
1011
  [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH]: {
732
1012
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH,
@@ -744,7 +1024,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
744
1024
  getPriceForAudioOutput: () => 0,
745
1025
  currency: 'USD',
746
1026
  },
747
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
1027
+ capabilities: {
1028
+ vision: true,
1029
+ tools: true,
1030
+ reasoning: true,
1031
+ webSearch: true,
1032
+ jsonOutput: true,
1033
+ structuredOutputs: true,
1034
+ },
748
1035
  },
749
1036
  [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE]: {
750
1037
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE,
@@ -762,7 +1049,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
762
1049
  getPriceForAudioOutput: () => 0,
763
1050
  currency: 'USD',
764
1051
  },
765
- capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: true },
1052
+ capabilities: {
1053
+ vision: true,
1054
+ tools: true,
1055
+ reasoning: false,
1056
+ webSearch: false,
1057
+ jsonOutput: true,
1058
+ structuredOutputs: true,
1059
+ },
766
1060
  },
767
1061
  [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_PREVIEW_09_2025]: {
768
1062
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_PREVIEW_09_2025,
@@ -780,7 +1074,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
780
1074
  getPriceForAudioOutput: () => 0,
781
1075
  currency: 'USD',
782
1076
  },
783
- capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: true },
1077
+ capabilities: {
1078
+ vision: true,
1079
+ tools: true,
1080
+ reasoning: false,
1081
+ webSearch: false,
1082
+ jsonOutput: true,
1083
+ structuredOutputs: true,
1084
+ },
784
1085
  },
785
1086
  [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW]: {
786
1087
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW,
@@ -798,7 +1099,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
798
1099
  getPriceForAudioOutput: () => 0,
799
1100
  currency: 'USD',
800
1101
  },
801
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
1102
+ capabilities: {
1103
+ vision: true,
1104
+ tools: true,
1105
+ reasoning: true,
1106
+ webSearch: true,
1107
+ jsonOutput: true,
1108
+ structuredOutputs: true,
1109
+ },
802
1110
  },
803
1111
  [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW]: {
804
1112
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW,
@@ -816,7 +1124,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
816
1124
  getPriceForAudioOutput: () => 0,
817
1125
  currency: 'USD',
818
1126
  },
819
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
1127
+ capabilities: {
1128
+ vision: true,
1129
+ tools: true,
1130
+ reasoning: true,
1131
+ webSearch: true,
1132
+ jsonOutput: true,
1133
+ structuredOutputs: true,
1134
+ },
820
1135
  },
821
1136
  [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE]: {
822
1137
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE,
@@ -834,7 +1149,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
834
1149
  getPriceForAudioOutput: () => 0,
835
1150
  currency: 'USD',
836
1151
  },
837
- capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: true },
1152
+ capabilities: {
1153
+ vision: true,
1154
+ tools: false,
1155
+ reasoning: false,
1156
+ webSearch: false,
1157
+ jsonOutput: true,
1158
+ structuredOutputs: true,
1159
+ },
838
1160
  },
839
1161
  // ─── Google Gemma ──────────────────────────────────────────────
840
1162
  [LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3N_E2B_IT]: {
@@ -853,7 +1175,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
853
1175
  getPriceForAudioOutput: () => 0,
854
1176
  currency: 'USD',
855
1177
  },
856
- capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1178
+ capabilities: {
1179
+ vision: false,
1180
+ tools: false,
1181
+ reasoning: false,
1182
+ webSearch: false,
1183
+ jsonOutput: false,
1184
+ structuredOutputs: false,
1185
+ },
857
1186
  },
858
1187
  [LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3N_E4B_IT]: {
859
1188
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3N_E4B_IT,
@@ -871,7 +1200,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
871
1200
  getPriceForAudioOutput: () => 0,
872
1201
  currency: 'USD',
873
1202
  },
874
- capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1203
+ capabilities: {
1204
+ vision: false,
1205
+ tools: false,
1206
+ reasoning: false,
1207
+ webSearch: false,
1208
+ jsonOutput: false,
1209
+ structuredOutputs: false,
1210
+ },
875
1211
  },
876
1212
  [LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3_1B_IT]: {
877
1213
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3_1B_IT,
@@ -889,7 +1225,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
889
1225
  getPriceForAudioOutput: () => 0,
890
1226
  currency: 'USD',
891
1227
  },
892
- capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1228
+ capabilities: {
1229
+ vision: false,
1230
+ tools: false,
1231
+ reasoning: false,
1232
+ webSearch: false,
1233
+ jsonOutput: false,
1234
+ structuredOutputs: false,
1235
+ },
893
1236
  },
894
1237
  [LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3_4B_IT]: {
895
1238
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3_4B_IT,
@@ -907,7 +1250,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
907
1250
  getPriceForAudioOutput: () => 0,
908
1251
  currency: 'USD',
909
1252
  },
910
- capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1253
+ capabilities: {
1254
+ vision: false,
1255
+ tools: false,
1256
+ reasoning: false,
1257
+ webSearch: false,
1258
+ jsonOutput: false,
1259
+ structuredOutputs: false,
1260
+ },
911
1261
  },
912
1262
  [LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3_12B_IT]: {
913
1263
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMMA_3_12B_IT,
@@ -925,7 +1275,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
925
1275
  getPriceForAudioOutput: () => 0,
926
1276
  currency: 'USD',
927
1277
  },
928
- capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1278
+ capabilities: {
1279
+ vision: false,
1280
+ tools: false,
1281
+ reasoning: false,
1282
+ webSearch: false,
1283
+ jsonOutput: false,
1284
+ structuredOutputs: false,
1285
+ },
929
1286
  },
930
1287
  // ─── xAI Grok ──────────────────────────────────────────────────
931
1288
  [LLMAPI_typedefs_1.LLMAPIModelNames.GROK_3]: {
@@ -944,7 +1301,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
944
1301
  getPriceForAudioOutput: () => 0,
945
1302
  currency: 'USD',
946
1303
  },
947
- capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1304
+ capabilities: {
1305
+ vision: false,
1306
+ tools: true,
1307
+ reasoning: false,
1308
+ webSearch: false,
1309
+ jsonOutput: true,
1310
+ structuredOutputs: false,
1311
+ },
948
1312
  },
949
1313
  [LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_0709]: {
950
1314
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_0709,
@@ -962,7 +1326,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
962
1326
  getPriceForAudioOutput: () => 0,
963
1327
  currency: 'USD',
964
1328
  },
965
- capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1329
+ capabilities: {
1330
+ vision: false,
1331
+ tools: true,
1332
+ reasoning: false,
1333
+ webSearch: false,
1334
+ jsonOutput: true,
1335
+ structuredOutputs: false,
1336
+ },
966
1337
  },
967
1338
  [LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4]: {
968
1339
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4,
@@ -980,7 +1351,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
980
1351
  getPriceForAudioOutput: () => 0,
981
1352
  currency: 'USD',
982
1353
  },
983
- capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1354
+ capabilities: {
1355
+ vision: true,
1356
+ tools: true,
1357
+ reasoning: false,
1358
+ webSearch: false,
1359
+ jsonOutput: true,
1360
+ structuredOutputs: false,
1361
+ },
984
1362
  },
985
1363
  [LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_FAST_REASONING]: {
986
1364
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_FAST_REASONING,
@@ -998,7 +1376,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
998
1376
  getPriceForAudioOutput: () => 0,
999
1377
  currency: 'USD',
1000
1378
  },
1001
- capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1379
+ capabilities: {
1380
+ vision: true,
1381
+ tools: true,
1382
+ reasoning: false,
1383
+ webSearch: false,
1384
+ jsonOutput: true,
1385
+ structuredOutputs: false,
1386
+ },
1002
1387
  },
1003
1388
  [LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_FAST_NON_REASONING]: {
1004
1389
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_FAST_NON_REASONING,
@@ -1016,7 +1401,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1016
1401
  getPriceForAudioOutput: () => 0,
1017
1402
  currency: 'USD',
1018
1403
  },
1019
- capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1404
+ capabilities: {
1405
+ vision: true,
1406
+ tools: true,
1407
+ reasoning: false,
1408
+ webSearch: false,
1409
+ jsonOutput: true,
1410
+ structuredOutputs: false,
1411
+ },
1020
1412
  },
1021
1413
  [LLMAPI_typedefs_1.LLMAPIModelNames.GROK_CODE_FAST_1]: {
1022
1414
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_CODE_FAST_1,
@@ -1034,7 +1426,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1034
1426
  getPriceForAudioOutput: () => 0,
1035
1427
  currency: 'USD',
1036
1428
  },
1037
- capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1429
+ capabilities: {
1430
+ vision: false,
1431
+ tools: true,
1432
+ reasoning: false,
1433
+ webSearch: false,
1434
+ jsonOutput: true,
1435
+ structuredOutputs: false,
1436
+ },
1038
1437
  },
1039
1438
  [LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_1_FAST_REASONING]: {
1040
1439
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_1_FAST_REASONING,
@@ -1052,7 +1451,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1052
1451
  getPriceForAudioOutput: () => 0,
1053
1452
  currency: 'USD',
1054
1453
  },
1055
- capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1454
+ capabilities: {
1455
+ vision: true,
1456
+ tools: true,
1457
+ reasoning: false,
1458
+ webSearch: false,
1459
+ jsonOutput: true,
1460
+ structuredOutputs: false,
1461
+ },
1056
1462
  },
1057
1463
  [LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_1_FAST_NON_REASONING]: {
1058
1464
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GROK_4_1_FAST_NON_REASONING,
@@ -1070,7 +1476,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1070
1476
  getPriceForAudioOutput: () => 0,
1071
1477
  currency: 'USD',
1072
1478
  },
1073
- capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1479
+ capabilities: {
1480
+ vision: true,
1481
+ tools: true,
1482
+ reasoning: false,
1483
+ webSearch: false,
1484
+ jsonOutput: true,
1485
+ structuredOutputs: false,
1486
+ },
1074
1487
  },
1075
1488
  // ─── Meta Llama ────────────────────────────────────────────────
1076
1489
  [LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_8B_INSTRUCT]: {
@@ -1089,7 +1502,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1089
1502
  getPriceForAudioOutput: () => 0,
1090
1503
  currency: 'USD',
1091
1504
  },
1092
- capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1505
+ capabilities: {
1506
+ vision: false,
1507
+ tools: false,
1508
+ reasoning: false,
1509
+ webSearch: false,
1510
+ jsonOutput: true,
1511
+ structuredOutputs: false,
1512
+ },
1093
1513
  },
1094
1514
  [LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_70B_INSTRUCT]: {
1095
1515
  name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_70B_INSTRUCT,
@@ -1107,7 +1527,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1107
1527
  getPriceForAudioOutput: () => 0,
1108
1528
  currency: 'USD',
1109
1529
  },
1110
- capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1530
+ capabilities: {
1531
+ vision: false,
1532
+ tools: false,
1533
+ reasoning: false,
1534
+ webSearch: false,
1535
+ jsonOutput: true,
1536
+ structuredOutputs: false,
1537
+ },
1111
1538
  },
1112
1539
  [LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_8B_INSTRUCT]: {
1113
1540
  name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_8B_INSTRUCT,
@@ -1125,7 +1552,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1125
1552
  getPriceForAudioOutput: () => 0,
1126
1553
  currency: 'USD',
1127
1554
  },
1128
- capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1555
+ capabilities: {
1556
+ vision: false,
1557
+ tools: false,
1558
+ reasoning: false,
1559
+ webSearch: false,
1560
+ jsonOutput: true,
1561
+ structuredOutputs: false,
1562
+ },
1129
1563
  },
1130
1564
  [LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_70B_INSTRUCT]: {
1131
1565
  name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_70B_INSTRUCT,
@@ -1143,7 +1577,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1143
1577
  getPriceForAudioOutput: () => 0,
1144
1578
  currency: 'USD',
1145
1579
  },
1146
- capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1580
+ capabilities: {
1581
+ vision: false,
1582
+ tools: false,
1583
+ reasoning: false,
1584
+ webSearch: false,
1585
+ jsonOutput: false,
1586
+ structuredOutputs: false,
1587
+ },
1147
1588
  },
1148
1589
  [LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_NEMOTRON_ULTRA_253B]: {
1149
1590
  name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_NEMOTRON_ULTRA_253B,
@@ -1161,7 +1602,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1161
1602
  getPriceForAudioOutput: () => 0,
1162
1603
  currency: 'USD',
1163
1604
  },
1164
- capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1605
+ capabilities: {
1606
+ vision: false,
1607
+ tools: false,
1608
+ reasoning: false,
1609
+ webSearch: false,
1610
+ jsonOutput: true,
1611
+ structuredOutputs: false,
1612
+ },
1165
1613
  },
1166
1614
  [LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_2_3B_INSTRUCT]: {
1167
1615
  name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_2_3B_INSTRUCT,
@@ -1179,7 +1627,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1179
1627
  getPriceForAudioOutput: () => 0,
1180
1628
  currency: 'USD',
1181
1629
  },
1182
- capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1630
+ capabilities: {
1631
+ vision: false,
1632
+ tools: false,
1633
+ reasoning: false,
1634
+ webSearch: false,
1635
+ jsonOutput: true,
1636
+ structuredOutputs: false,
1637
+ },
1183
1638
  },
1184
1639
  [LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_3_70B_INSTRUCT]: {
1185
1640
  name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_3_70B_INSTRUCT,
@@ -1197,7 +1652,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1197
1652
  getPriceForAudioOutput: () => 0,
1198
1653
  currency: 'USD',
1199
1654
  },
1200
- capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1655
+ capabilities: {
1656
+ vision: false,
1657
+ tools: true,
1658
+ reasoning: false,
1659
+ webSearch: false,
1660
+ jsonOutput: true,
1661
+ structuredOutputs: false,
1662
+ },
1201
1663
  },
1202
1664
  [LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_4_SCOUT_17B_INSTRUCT]: {
1203
1665
  name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_4_SCOUT_17B_INSTRUCT,
@@ -1215,7 +1677,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1215
1677
  getPriceForAudioOutput: () => 0,
1216
1678
  currency: 'USD',
1217
1679
  },
1218
- capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1680
+ capabilities: {
1681
+ vision: true,
1682
+ tools: false,
1683
+ reasoning: false,
1684
+ webSearch: false,
1685
+ jsonOutput: true,
1686
+ structuredOutputs: false,
1687
+ },
1219
1688
  },
1220
1689
  [LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_4_MAVERICK_17B_INSTRUCT]: {
1221
1690
  name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_4_MAVERICK_17B_INSTRUCT,
@@ -1233,7 +1702,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1233
1702
  getPriceForAudioOutput: () => 0,
1234
1703
  currency: 'USD',
1235
1704
  },
1236
- capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1705
+ capabilities: {
1706
+ vision: true,
1707
+ tools: false,
1708
+ reasoning: false,
1709
+ webSearch: false,
1710
+ jsonOutput: true,
1711
+ structuredOutputs: false,
1712
+ },
1237
1713
  },
1238
1714
  // ─── DeepSeek ──────────────────────────────────────────────────
1239
1715
  [LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_R1_0528]: {
@@ -1252,7 +1728,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1252
1728
  getPriceForAudioOutput: () => 0,
1253
1729
  currency: 'USD',
1254
1730
  },
1255
- capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1731
+ capabilities: {
1732
+ vision: false,
1733
+ tools: false,
1734
+ reasoning: false,
1735
+ webSearch: false,
1736
+ jsonOutput: false,
1737
+ structuredOutputs: false,
1738
+ },
1256
1739
  },
1257
1740
  [LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_V3_2]: {
1258
1741
  name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_V3_2,
@@ -1270,7 +1753,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1270
1753
  getPriceForAudioOutput: () => 0,
1271
1754
  currency: 'USD',
1272
1755
  },
1273
- capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1756
+ capabilities: {
1757
+ vision: true,
1758
+ tools: true,
1759
+ reasoning: false,
1760
+ webSearch: false,
1761
+ jsonOutput: true,
1762
+ structuredOutputs: false,
1763
+ },
1274
1764
  },
1275
1765
  // ─── Mistral ───────────────────────────────────────────────────
1276
1766
  [LLMAPI_typedefs_1.LLMAPIModelNames.MISTRAL_LARGE_LATEST]: {
@@ -1289,7 +1779,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1289
1779
  getPriceForAudioOutput: () => 0,
1290
1780
  currency: 'USD',
1291
1781
  },
1292
- capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1782
+ capabilities: {
1783
+ vision: false,
1784
+ tools: true,
1785
+ reasoning: false,
1786
+ webSearch: false,
1787
+ jsonOutput: false,
1788
+ structuredOutputs: false,
1789
+ },
1293
1790
  },
1294
1791
  [LLMAPI_typedefs_1.LLMAPIModelNames.MISTRAL_LARGE_2512]: {
1295
1792
  name: LLMAPI_typedefs_1.LLMAPIModelNames.MISTRAL_LARGE_2512,
@@ -1307,7 +1804,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1307
1804
  getPriceForAudioOutput: () => 0,
1308
1805
  currency: 'USD',
1309
1806
  },
1310
- capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1807
+ capabilities: {
1808
+ vision: true,
1809
+ tools: true,
1810
+ reasoning: false,
1811
+ webSearch: true,
1812
+ jsonOutput: true,
1813
+ structuredOutputs: false,
1814
+ },
1311
1815
  },
1312
1816
  [LLMAPI_typedefs_1.LLMAPIModelNames.MISTRAL_SMALL_2506]: {
1313
1817
  name: LLMAPI_typedefs_1.LLMAPIModelNames.MISTRAL_SMALL_2506,
@@ -1325,7 +1829,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1325
1829
  getPriceForAudioOutput: () => 0,
1326
1830
  currency: 'USD',
1327
1831
  },
1328
- capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1832
+ capabilities: {
1833
+ vision: true,
1834
+ tools: true,
1835
+ reasoning: false,
1836
+ webSearch: true,
1837
+ jsonOutput: true,
1838
+ structuredOutputs: false,
1839
+ },
1329
1840
  },
1330
1841
  [LLMAPI_typedefs_1.LLMAPIModelNames.PIXTRAL_LARGE_LATEST]: {
1331
1842
  name: LLMAPI_typedefs_1.LLMAPIModelNames.PIXTRAL_LARGE_LATEST,
@@ -1343,7 +1854,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1343
1854
  getPriceForAudioOutput: () => 0,
1344
1855
  currency: 'USD',
1345
1856
  },
1346
- capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1857
+ capabilities: {
1858
+ vision: true,
1859
+ tools: true,
1860
+ reasoning: false,
1861
+ webSearch: false,
1862
+ jsonOutput: false,
1863
+ structuredOutputs: false,
1864
+ },
1347
1865
  },
1348
1866
  [LLMAPI_typedefs_1.LLMAPIModelNames.MINISTRAL_14B_2512]: {
1349
1867
  name: LLMAPI_typedefs_1.LLMAPIModelNames.MINISTRAL_14B_2512,
@@ -1361,7 +1879,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1361
1879
  getPriceForAudioOutput: () => 0,
1362
1880
  currency: 'USD',
1363
1881
  },
1364
- capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1882
+ capabilities: {
1883
+ vision: true,
1884
+ tools: true,
1885
+ reasoning: false,
1886
+ webSearch: true,
1887
+ jsonOutput: true,
1888
+ structuredOutputs: false,
1889
+ },
1365
1890
  },
1366
1891
  [LLMAPI_typedefs_1.LLMAPIModelNames.MINISTRAL_8B_2512]: {
1367
1892
  name: LLMAPI_typedefs_1.LLMAPIModelNames.MINISTRAL_8B_2512,
@@ -1379,7 +1904,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1379
1904
  getPriceForAudioOutput: () => 0,
1380
1905
  currency: 'USD',
1381
1906
  },
1382
- capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1907
+ capabilities: {
1908
+ vision: true,
1909
+ tools: true,
1910
+ reasoning: false,
1911
+ webSearch: true,
1912
+ jsonOutput: true,
1913
+ structuredOutputs: false,
1914
+ },
1383
1915
  },
1384
1916
  [LLMAPI_typedefs_1.LLMAPIModelNames.MINISTRAL_3B_2512]: {
1385
1917
  name: LLMAPI_typedefs_1.LLMAPIModelNames.MINISTRAL_3B_2512,
@@ -1397,7 +1929,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1397
1929
  getPriceForAudioOutput: () => 0,
1398
1930
  currency: 'USD',
1399
1931
  },
1400
- capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1932
+ capabilities: {
1933
+ vision: true,
1934
+ tools: true,
1935
+ reasoning: false,
1936
+ webSearch: true,
1937
+ jsonOutput: true,
1938
+ structuredOutputs: false,
1939
+ },
1401
1940
  },
1402
1941
  [LLMAPI_typedefs_1.LLMAPIModelNames.CODESTRAL_2508]: {
1403
1942
  name: LLMAPI_typedefs_1.LLMAPIModelNames.CODESTRAL_2508,
@@ -1415,7 +1954,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1415
1954
  getPriceForAudioOutput: () => 0,
1416
1955
  currency: 'USD',
1417
1956
  },
1418
- capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1957
+ capabilities: {
1958
+ vision: false,
1959
+ tools: true,
1960
+ reasoning: false,
1961
+ webSearch: true,
1962
+ jsonOutput: true,
1963
+ structuredOutputs: false,
1964
+ },
1419
1965
  },
1420
1966
  [LLMAPI_typedefs_1.LLMAPIModelNames.DEVSTRAL_2512]: {
1421
1967
  name: LLMAPI_typedefs_1.LLMAPIModelNames.DEVSTRAL_2512,
@@ -1433,7 +1979,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1433
1979
  getPriceForAudioOutput: () => 0,
1434
1980
  currency: 'USD',
1435
1981
  },
1436
- capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
1982
+ capabilities: {
1983
+ vision: false,
1984
+ tools: true,
1985
+ reasoning: false,
1986
+ webSearch: true,
1987
+ jsonOutput: true,
1988
+ structuredOutputs: false,
1989
+ },
1437
1990
  },
1438
1991
  [LLMAPI_typedefs_1.LLMAPIModelNames.DEVSTRAL_SMALL_2507]: {
1439
1992
  name: LLMAPI_typedefs_1.LLMAPIModelNames.DEVSTRAL_SMALL_2507,
@@ -1451,7 +2004,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1451
2004
  getPriceForAudioOutput: () => 0,
1452
2005
  currency: 'USD',
1453
2006
  },
1454
- capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
2007
+ capabilities: {
2008
+ vision: false,
2009
+ tools: true,
2010
+ reasoning: false,
2011
+ webSearch: true,
2012
+ jsonOutput: true,
2013
+ structuredOutputs: false,
2014
+ },
1455
2015
  },
1456
2016
  // ─── MiniMax ───────────────────────────────────────────────────
1457
2017
  [LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5]: {
@@ -1470,7 +2030,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1470
2030
  getPriceForAudioOutput: () => 0,
1471
2031
  currency: 'USD',
1472
2032
  },
1473
- capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
2033
+ capabilities: {
2034
+ vision: false,
2035
+ tools: true,
2036
+ reasoning: true,
2037
+ webSearch: false,
2038
+ jsonOutput: true,
2039
+ structuredOutputs: false,
2040
+ },
1474
2041
  },
1475
2042
  [LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_NATIVE]: {
1476
2043
  name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_NATIVE,
@@ -1488,7 +2055,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1488
2055
  getPriceForAudioOutput: () => 0,
1489
2056
  currency: 'USD',
1490
2057
  },
1491
- capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
2058
+ capabilities: {
2059
+ vision: false,
2060
+ tools: true,
2061
+ reasoning: true,
2062
+ webSearch: false,
2063
+ jsonOutput: true,
2064
+ structuredOutputs: false,
2065
+ },
1492
2066
  },
1493
2067
  [LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_NOVITA]: {
1494
2068
  name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_NOVITA,
@@ -1506,7 +2080,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1506
2080
  getPriceForAudioOutput: () => 0,
1507
2081
  currency: 'USD',
1508
2082
  },
1509
- capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
2083
+ capabilities: {
2084
+ vision: false,
2085
+ tools: true,
2086
+ reasoning: true,
2087
+ webSearch: false,
2088
+ jsonOutput: true,
2089
+ structuredOutputs: false,
2090
+ },
1510
2091
  },
1511
2092
  [LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2]: {
1512
2093
  name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2,
@@ -1524,7 +2105,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1524
2105
  getPriceForAudioOutput: () => 0,
1525
2106
  currency: 'USD',
1526
2107
  },
1527
- capabilities: { vision: false, tools: false, reasoning: true, webSearch: false, jsonResponseWithTools: false },
2108
+ capabilities: {
2109
+ vision: false,
2110
+ tools: false,
2111
+ reasoning: true,
2112
+ webSearch: false,
2113
+ jsonOutput: false,
2114
+ structuredOutputs: false,
2115
+ },
1528
2116
  },
1529
2117
  [LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1]: {
1530
2118
  name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1,
@@ -1542,7 +2130,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1542
2130
  getPriceForAudioOutput: () => 0,
1543
2131
  currency: 'USD',
1544
2132
  },
1545
- capabilities: { vision: false, tools: false, reasoning: true, webSearch: false, jsonResponseWithTools: false },
2133
+ capabilities: {
2134
+ vision: false,
2135
+ tools: false,
2136
+ reasoning: true,
2137
+ webSearch: false,
2138
+ jsonOutput: true,
2139
+ structuredOutputs: false,
2140
+ },
1546
2141
  },
1547
2142
  [LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1_LIGHTNING]: {
1548
2143
  name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1_LIGHTNING,
@@ -1560,7 +2155,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1560
2155
  getPriceForAudioOutput: () => 0,
1561
2156
  currency: 'USD',
1562
2157
  },
1563
- capabilities: { vision: false, tools: false, reasoning: true, webSearch: false, jsonResponseWithTools: false },
2158
+ capabilities: {
2159
+ vision: false,
2160
+ tools: false,
2161
+ reasoning: true,
2162
+ webSearch: false,
2163
+ jsonOutput: false,
2164
+ structuredOutputs: false,
2165
+ },
1564
2166
  },
1565
2167
  [LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_TEXT_01]: {
1566
2168
  name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_TEXT_01,
@@ -1578,7 +2180,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1578
2180
  getPriceForAudioOutput: () => 0,
1579
2181
  currency: 'USD',
1580
2182
  },
1581
- capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
2183
+ capabilities: {
2184
+ vision: false,
2185
+ tools: false,
2186
+ reasoning: false,
2187
+ webSearch: false,
2188
+ jsonOutput: false,
2189
+ structuredOutputs: false,
2190
+ },
1582
2191
  },
1583
2192
  // ─── Moonshot Kimi ─────────────────────────────────────────────
1584
2193
  [LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2]: {
@@ -1597,7 +2206,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1597
2206
  getPriceForAudioOutput: () => 0,
1598
2207
  currency: 'USD',
1599
2208
  },
1600
- capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
2209
+ capabilities: {
2210
+ vision: false,
2211
+ tools: true,
2212
+ reasoning: false,
2213
+ webSearch: false,
2214
+ jsonOutput: true,
2215
+ structuredOutputs: false,
2216
+ },
1601
2217
  },
1602
2218
  [LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_THINKING_TURBO]: {
1603
2219
  name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_THINKING_TURBO,
@@ -1615,7 +2231,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1615
2231
  getPriceForAudioOutput: () => 0,
1616
2232
  currency: 'USD',
1617
2233
  },
1618
- capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
2234
+ capabilities: {
2235
+ vision: false,
2236
+ tools: true,
2237
+ reasoning: true,
2238
+ webSearch: false,
2239
+ jsonOutput: true,
2240
+ structuredOutputs: false,
2241
+ },
1619
2242
  },
1620
2243
  [LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_5]: {
1621
2244
  name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_5,
@@ -1633,7 +2256,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1633
2256
  getPriceForAudioOutput: () => 0,
1634
2257
  currency: 'USD',
1635
2258
  },
1636
- capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
2259
+ capabilities: {
2260
+ vision: true,
2261
+ tools: true,
2262
+ reasoning: false,
2263
+ webSearch: false,
2264
+ jsonOutput: true,
2265
+ structuredOutputs: false,
2266
+ },
1637
2267
  },
1638
2268
  // ─── Alibaba Qwen ──────────────────────────────────────────────
1639
2269
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_MAX]: {
@@ -1652,7 +2282,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1652
2282
  getPriceForAudioOutput: () => 0,
1653
2283
  currency: 'USD',
1654
2284
  },
1655
- capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
2285
+ capabilities: {
2286
+ vision: true,
2287
+ tools: true,
2288
+ reasoning: false,
2289
+ webSearch: false,
2290
+ jsonOutput: true,
2291
+ structuredOutputs: false,
2292
+ },
1656
2293
  },
1657
2294
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_MAX_LATEST]: {
1658
2295
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_MAX_LATEST,
@@ -1670,7 +2307,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1670
2307
  getPriceForAudioOutput: () => 0,
1671
2308
  currency: 'USD',
1672
2309
  },
1673
- capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
2310
+ capabilities: {
2311
+ vision: true,
2312
+ tools: true,
2313
+ reasoning: false,
2314
+ webSearch: false,
2315
+ jsonOutput: true,
2316
+ structuredOutputs: false,
2317
+ },
1674
2318
  },
1675
2319
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_PLUS]: {
1676
2320
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_PLUS,
@@ -1688,7 +2332,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1688
2332
  getPriceForAudioOutput: () => 0,
1689
2333
  currency: 'USD',
1690
2334
  },
1691
- capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
2335
+ capabilities: {
2336
+ vision: false,
2337
+ tools: true,
2338
+ reasoning: false,
2339
+ webSearch: false,
2340
+ jsonOutput: true,
2341
+ structuredOutputs: false,
2342
+ },
1692
2343
  },
1693
2344
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_PLUS_LATEST]: {
1694
2345
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_PLUS_LATEST,
@@ -1706,7 +2357,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1706
2357
  getPriceForAudioOutput: () => 0,
1707
2358
  currency: 'USD',
1708
2359
  },
1709
- capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
2360
+ capabilities: {
2361
+ vision: false,
2362
+ tools: true,
2363
+ reasoning: false,
2364
+ webSearch: false,
2365
+ jsonOutput: true,
2366
+ structuredOutputs: false,
2367
+ },
1710
2368
  },
1711
2369
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_FLASH]: {
1712
2370
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_FLASH,
@@ -1724,7 +2382,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1724
2382
  getPriceForAudioOutput: () => 0,
1725
2383
  currency: 'USD',
1726
2384
  },
1727
- capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
2385
+ capabilities: {
2386
+ vision: false,
2387
+ tools: true,
2388
+ reasoning: false,
2389
+ webSearch: false,
2390
+ jsonOutput: true,
2391
+ structuredOutputs: false,
2392
+ },
1728
2393
  },
1729
2394
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_TURBO]: {
1730
2395
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_TURBO,
@@ -1742,7 +2407,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1742
2407
  getPriceForAudioOutput: () => 0,
1743
2408
  currency: 'USD',
1744
2409
  },
1745
- capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
2410
+ capabilities: {
2411
+ vision: false,
2412
+ tools: false,
2413
+ reasoning: false,
2414
+ webSearch: false,
2415
+ jsonOutput: true,
2416
+ structuredOutputs: false,
2417
+ },
1746
2418
  },
1747
2419
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_OMNI_TURBO]: {
1748
2420
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_OMNI_TURBO,
@@ -1760,7 +2432,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1760
2432
  getPriceForAudioOutput: () => 0,
1761
2433
  currency: 'USD',
1762
2434
  },
1763
- capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
2435
+ capabilities: {
2436
+ vision: true,
2437
+ tools: false,
2438
+ reasoning: false,
2439
+ webSearch: false,
2440
+ jsonOutput: true,
2441
+ structuredOutputs: false,
2442
+ },
1764
2443
  },
1765
2444
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_VL_MAX]: {
1766
2445
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_VL_MAX,
@@ -1778,7 +2457,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1778
2457
  getPriceForAudioOutput: () => 0,
1779
2458
  currency: 'USD',
1780
2459
  },
1781
- capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
2460
+ capabilities: {
2461
+ vision: true,
2462
+ tools: false,
2463
+ reasoning: false,
2464
+ webSearch: false,
2465
+ jsonOutput: true,
2466
+ structuredOutputs: false,
2467
+ },
1782
2468
  },
1783
2469
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_VL_PLUS]: {
1784
2470
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_VL_PLUS,
@@ -1796,7 +2482,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1796
2482
  getPriceForAudioOutput: () => 0,
1797
2483
  currency: 'USD',
1798
2484
  },
1799
- capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
2485
+ capabilities: {
2486
+ vision: true,
2487
+ tools: false,
2488
+ reasoning: false,
2489
+ webSearch: false,
2490
+ jsonOutput: true,
2491
+ structuredOutputs: false,
2492
+ },
1800
2493
  },
1801
2494
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_CODER_PLUS]: {
1802
2495
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_CODER_PLUS,
@@ -1814,7 +2507,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1814
2507
  getPriceForAudioOutput: () => 0,
1815
2508
  currency: 'USD',
1816
2509
  },
1817
- capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
2510
+ capabilities: {
2511
+ vision: false,
2512
+ tools: true,
2513
+ reasoning: false,
2514
+ webSearch: false,
2515
+ jsonOutput: true,
2516
+ structuredOutputs: false,
2517
+ },
1818
2518
  },
1819
2519
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWQ_PLUS]: {
1820
2520
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWQ_PLUS,
@@ -1832,7 +2532,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1832
2532
  getPriceForAudioOutput: () => 0,
1833
2533
  currency: 'USD',
1834
2534
  },
1835
- capabilities: { vision: false, tools: false, reasoning: true, webSearch: false, jsonResponseWithTools: false },
2535
+ capabilities: {
2536
+ vision: false,
2537
+ tools: false,
2538
+ reasoning: true,
2539
+ webSearch: false,
2540
+ jsonOutput: false,
2541
+ structuredOutputs: false,
2542
+ },
1836
2543
  },
1837
2544
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_MAX]: {
1838
2545
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_MAX,
@@ -1850,7 +2557,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1850
2557
  getPriceForAudioOutput: () => 0,
1851
2558
  currency: 'USD',
1852
2559
  },
1853
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
2560
+ capabilities: {
2561
+ vision: true,
2562
+ tools: true,
2563
+ reasoning: true,
2564
+ webSearch: false,
2565
+ jsonOutput: true,
2566
+ structuredOutputs: false,
2567
+ },
1854
2568
  },
1855
2569
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_MAX_2026_01_23]: {
1856
2570
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_MAX_2026_01_23,
@@ -1868,7 +2582,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1868
2582
  getPriceForAudioOutput: () => 0,
1869
2583
  currency: 'USD',
1870
2584
  },
1871
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
2585
+ capabilities: {
2586
+ vision: true,
2587
+ tools: true,
2588
+ reasoning: true,
2589
+ webSearch: false,
2590
+ jsonOutput: true,
2591
+ structuredOutputs: false,
2592
+ },
1872
2593
  },
1873
2594
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_32B]: {
1874
2595
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_32B,
@@ -1886,7 +2607,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1886
2607
  getPriceForAudioOutput: () => 0,
1887
2608
  currency: 'USD',
1888
2609
  },
1889
- capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
2610
+ capabilities: {
2611
+ vision: false,
2612
+ tools: true,
2613
+ reasoning: false,
2614
+ webSearch: false,
2615
+ jsonOutput: true,
2616
+ structuredOutputs: false,
2617
+ },
1890
2618
  },
1891
2619
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_32B_FP8]: {
1892
2620
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_32B_FP8,
@@ -1904,7 +2632,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1904
2632
  getPriceForAudioOutput: () => 0,
1905
2633
  currency: 'USD',
1906
2634
  },
1907
- capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
2635
+ capabilities: {
2636
+ vision: false,
2637
+ tools: false,
2638
+ reasoning: false,
2639
+ webSearch: false,
2640
+ jsonOutput: false,
2641
+ structuredOutputs: false,
2642
+ },
1908
2643
  },
1909
2644
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_INSTRUCT_2507]: {
1910
2645
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_INSTRUCT_2507,
@@ -1922,7 +2657,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1922
2657
  getPriceForAudioOutput: () => 0,
1923
2658
  currency: 'USD',
1924
2659
  },
1925
- capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
2660
+ capabilities: {
2661
+ vision: false,
2662
+ tools: true,
2663
+ reasoning: false,
2664
+ webSearch: false,
2665
+ jsonOutput: true,
2666
+ structuredOutputs: false,
2667
+ },
1926
2668
  },
1927
2669
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_THINKING_2507]: {
1928
2670
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_THINKING_2507,
@@ -1940,7 +2682,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1940
2682
  getPriceForAudioOutput: () => 0,
1941
2683
  currency: 'USD',
1942
2684
  },
1943
- capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
2685
+ capabilities: {
2686
+ vision: false,
2687
+ tools: true,
2688
+ reasoning: true,
2689
+ webSearch: false,
2690
+ jsonOutput: true,
2691
+ structuredOutputs: false,
2692
+ },
1944
2693
  },
1945
2694
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_FP8]: {
1946
2695
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_FP8,
@@ -1958,7 +2707,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1958
2707
  getPriceForAudioOutput: () => 0,
1959
2708
  currency: 'USD',
1960
2709
  },
1961
- capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
2710
+ capabilities: {
2711
+ vision: false,
2712
+ tools: false,
2713
+ reasoning: false,
2714
+ webSearch: false,
2715
+ jsonOutput: true,
2716
+ structuredOutputs: false,
2717
+ },
1962
2718
  },
1963
2719
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_30B_A3B_INSTRUCT_2507]: {
1964
2720
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_30B_A3B_INSTRUCT_2507,
@@ -1976,7 +2732,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1976
2732
  getPriceForAudioOutput: () => 0,
1977
2733
  currency: 'USD',
1978
2734
  },
1979
- capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
2735
+ capabilities: {
2736
+ vision: false,
2737
+ tools: true,
2738
+ reasoning: false,
2739
+ webSearch: false,
2740
+ jsonOutput: true,
2741
+ structuredOutputs: false,
2742
+ },
1980
2743
  },
1981
2744
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_30B_A3B_THINKING_2507]: {
1982
2745
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_30B_A3B_THINKING_2507,
@@ -1994,7 +2757,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1994
2757
  getPriceForAudioOutput: () => 0,
1995
2758
  currency: 'USD',
1996
2759
  },
1997
- capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
2760
+ capabilities: {
2761
+ vision: false,
2762
+ tools: true,
2763
+ reasoning: true,
2764
+ webSearch: false,
2765
+ jsonOutput: true,
2766
+ structuredOutputs: false,
2767
+ },
1998
2768
  },
1999
2769
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_30B_A3B_FP8]: {
2000
2770
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_30B_A3B_FP8,
@@ -2012,7 +2782,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2012
2782
  getPriceForAudioOutput: () => 0,
2013
2783
  currency: 'USD',
2014
2784
  },
2015
- capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
2785
+ capabilities: {
2786
+ vision: false,
2787
+ tools: false,
2788
+ reasoning: false,
2789
+ webSearch: false,
2790
+ jsonOutput: false,
2791
+ structuredOutputs: false,
2792
+ },
2016
2793
  },
2017
2794
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_4B_FP8]: {
2018
2795
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_4B_FP8,
@@ -2030,7 +2807,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2030
2807
  getPriceForAudioOutput: () => 0,
2031
2808
  currency: 'USD',
2032
2809
  },
2033
- capabilities: { vision: false, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
2810
+ capabilities: {
2811
+ vision: false,
2812
+ tools: false,
2813
+ reasoning: false,
2814
+ webSearch: false,
2815
+ jsonOutput: false,
2816
+ structuredOutputs: false,
2817
+ },
2034
2818
  },
2035
2819
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_5_397B]: {
2036
2820
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_5_397B,
@@ -2048,7 +2832,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2048
2832
  getPriceForAudioOutput: () => 0,
2049
2833
  currency: 'USD',
2050
2834
  },
2051
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
2835
+ capabilities: {
2836
+ vision: true,
2837
+ tools: true,
2838
+ reasoning: true,
2839
+ webSearch: true,
2840
+ jsonOutput: true,
2841
+ structuredOutputs: false,
2842
+ },
2052
2843
  },
2053
2844
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_THINKING]: {
2054
2845
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_THINKING,
@@ -2066,7 +2857,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2066
2857
  getPriceForAudioOutput: () => 0,
2067
2858
  currency: 'USD',
2068
2859
  },
2069
- capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
2860
+ capabilities: {
2861
+ vision: false,
2862
+ tools: true,
2863
+ reasoning: true,
2864
+ webSearch: false,
2865
+ jsonOutput: false,
2866
+ structuredOutputs: false,
2867
+ },
2070
2868
  },
2071
2869
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_INSTRUCT]: {
2072
2870
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_INSTRUCT,
@@ -2084,7 +2882,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2084
2882
  getPriceForAudioOutput: () => 0,
2085
2883
  currency: 'USD',
2086
2884
  },
2087
- capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
2885
+ capabilities: {
2886
+ vision: false,
2887
+ tools: true,
2888
+ reasoning: false,
2889
+ webSearch: false,
2890
+ jsonOutput: true,
2891
+ structuredOutputs: false,
2892
+ },
2088
2893
  },
2089
2894
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_PLUS]: {
2090
2895
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_PLUS,
@@ -2102,7 +2907,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2102
2907
  getPriceForAudioOutput: () => 0,
2103
2908
  currency: 'USD',
2104
2909
  },
2105
- capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
2910
+ capabilities: {
2911
+ vision: false,
2912
+ tools: true,
2913
+ reasoning: false,
2914
+ webSearch: false,
2915
+ jsonOutput: true,
2916
+ structuredOutputs: false,
2917
+ },
2106
2918
  },
2107
2919
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_FLASH]: {
2108
2920
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_FLASH,
@@ -2120,7 +2932,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2120
2932
  getPriceForAudioOutput: () => 0,
2121
2933
  currency: 'USD',
2122
2934
  },
2123
- capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
2935
+ capabilities: {
2936
+ vision: false,
2937
+ tools: true,
2938
+ reasoning: false,
2939
+ webSearch: false,
2940
+ jsonOutput: true,
2941
+ structuredOutputs: false,
2942
+ },
2124
2943
  },
2125
2944
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_30B_A3B_INSTRUCT]: {
2126
2945
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_30B_A3B_INSTRUCT,
@@ -2138,7 +2957,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2138
2957
  getPriceForAudioOutput: () => 0,
2139
2958
  currency: 'USD',
2140
2959
  },
2141
- capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
2960
+ capabilities: {
2961
+ vision: false,
2962
+ tools: true,
2963
+ reasoning: false,
2964
+ webSearch: false,
2965
+ jsonOutput: true,
2966
+ structuredOutputs: false,
2967
+ },
2142
2968
  },
2143
2969
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_8B_INSTRUCT]: {
2144
2970
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_8B_INSTRUCT,
@@ -2156,7 +2982,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2156
2982
  getPriceForAudioOutput: () => 0,
2157
2983
  currency: 'USD',
2158
2984
  },
2159
- capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
2985
+ capabilities: {
2986
+ vision: true,
2987
+ tools: false,
2988
+ reasoning: false,
2989
+ webSearch: false,
2990
+ jsonOutput: true,
2991
+ structuredOutputs: false,
2992
+ },
2160
2993
  },
2161
2994
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_PLUS]: {
2162
2995
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_PLUS,
@@ -2174,7 +3007,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2174
3007
  getPriceForAudioOutput: () => 0,
2175
3008
  currency: 'USD',
2176
3009
  },
2177
- capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
3010
+ capabilities: {
3011
+ vision: true,
3012
+ tools: false,
3013
+ reasoning: false,
3014
+ webSearch: false,
3015
+ jsonOutput: true,
3016
+ structuredOutputs: false,
3017
+ },
2178
3018
  },
2179
3019
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_FLASH]: {
2180
3020
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_FLASH,
@@ -2192,7 +3032,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2192
3032
  getPriceForAudioOutput: () => 0,
2193
3033
  currency: 'USD',
2194
3034
  },
2195
- capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
3035
+ capabilities: {
3036
+ vision: true,
3037
+ tools: true,
3038
+ reasoning: false,
3039
+ webSearch: false,
3040
+ jsonOutput: true,
3041
+ structuredOutputs: false,
3042
+ },
2196
3043
  },
2197
3044
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_30B_A3B_INSTRUCT]: {
2198
3045
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_30B_A3B_INSTRUCT,
@@ -2210,7 +3057,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2210
3057
  getPriceForAudioOutput: () => 0,
2211
3058
  currency: 'USD',
2212
3059
  },
2213
- capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
3060
+ capabilities: {
3061
+ vision: true,
3062
+ tools: true,
3063
+ reasoning: false,
3064
+ webSearch: false,
3065
+ jsonOutput: false,
3066
+ structuredOutputs: false,
3067
+ },
2214
3068
  },
2215
3069
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_30B_A3B_THINKING]: {
2216
3070
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_30B_A3B_THINKING,
@@ -2228,7 +3082,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2228
3082
  getPriceForAudioOutput: () => 0,
2229
3083
  currency: 'USD',
2230
3084
  },
2231
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
3085
+ capabilities: {
3086
+ vision: true,
3087
+ tools: true,
3088
+ reasoning: true,
3089
+ webSearch: false,
3090
+ jsonOutput: true,
3091
+ structuredOutputs: false,
3092
+ },
2232
3093
  },
2233
3094
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_INSTRUCT]: {
2234
3095
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_INSTRUCT,
@@ -2246,7 +3107,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2246
3107
  getPriceForAudioOutput: () => 0,
2247
3108
  currency: 'USD',
2248
3109
  },
2249
- capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
3110
+ capabilities: {
3111
+ vision: true,
3112
+ tools: true,
3113
+ reasoning: false,
3114
+ webSearch: false,
3115
+ jsonOutput: true,
3116
+ structuredOutputs: false,
3117
+ },
2250
3118
  },
2251
3119
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_THINKING]: {
2252
3120
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_THINKING,
@@ -2264,7 +3132,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2264
3132
  getPriceForAudioOutput: () => 0,
2265
3133
  currency: 'USD',
2266
3134
  },
2267
- capabilities: { vision: true, tools: false, reasoning: true, webSearch: false, jsonResponseWithTools: false },
3135
+ capabilities: {
3136
+ vision: true,
3137
+ tools: false,
3138
+ reasoning: true,
3139
+ webSearch: false,
3140
+ jsonOutput: false,
3141
+ structuredOutputs: false,
3142
+ },
2268
3143
  },
2269
3144
  [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN2_5_VL_32B_INSTRUCT]: {
2270
3145
  name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN2_5_VL_32B_INSTRUCT,
@@ -2282,7 +3157,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2282
3157
  getPriceForAudioOutput: () => 0,
2283
3158
  currency: 'USD',
2284
3159
  },
2285
- capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: false },
3160
+ capabilities: {
3161
+ vision: true,
3162
+ tools: false,
3163
+ reasoning: false,
3164
+ webSearch: false,
3165
+ jsonOutput: true,
3166
+ structuredOutputs: false,
3167
+ },
2286
3168
  },
2287
3169
  // ─── Zhipu GLM ─────────────────────────────────────────────────
2288
3170
  [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5]: {
@@ -2301,7 +3183,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2301
3183
  getPriceForAudioOutput: () => 0,
2302
3184
  currency: 'USD',
2303
3185
  },
2304
- capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
3186
+ capabilities: {
3187
+ vision: false,
3188
+ tools: true,
3189
+ reasoning: true,
3190
+ webSearch: true,
3191
+ jsonOutput: true,
3192
+ structuredOutputs: false,
3193
+ },
2305
3194
  },
2306
3195
  [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5]: {
2307
3196
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5,
@@ -2319,7 +3208,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2319
3208
  getPriceForAudioOutput: () => 0,
2320
3209
  currency: 'USD',
2321
3210
  },
2322
- capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
3211
+ capabilities: {
3212
+ vision: false,
3213
+ tools: true,
3214
+ reasoning: true,
3215
+ webSearch: true,
3216
+ jsonOutput: true,
3217
+ structuredOutputs: false,
3218
+ },
2323
3219
  },
2324
3220
  [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5V]: {
2325
3221
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5V,
@@ -2337,7 +3233,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2337
3233
  getPriceForAudioOutput: () => 0,
2338
3234
  currency: 'USD',
2339
3235
  },
2340
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
3236
+ capabilities: {
3237
+ vision: true,
3238
+ tools: true,
3239
+ reasoning: true,
3240
+ webSearch: false,
3241
+ jsonOutput: true,
3242
+ structuredOutputs: false,
3243
+ },
2341
3244
  },
2342
3245
  [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIR]: {
2343
3246
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIR,
@@ -2355,7 +3258,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2355
3258
  getPriceForAudioOutput: () => 0,
2356
3259
  currency: 'USD',
2357
3260
  },
2358
- capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
3261
+ capabilities: {
3262
+ vision: false,
3263
+ tools: true,
3264
+ reasoning: false,
3265
+ webSearch: false,
3266
+ jsonOutput: true,
3267
+ structuredOutputs: false,
3268
+ },
2359
3269
  },
2360
3270
  [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_X]: {
2361
3271
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_X,
@@ -2373,7 +3283,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2373
3283
  getPriceForAudioOutput: () => 0,
2374
3284
  currency: 'USD',
2375
3285
  },
2376
- capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
3286
+ capabilities: {
3287
+ vision: false,
3288
+ tools: true,
3289
+ reasoning: true,
3290
+ webSearch: false,
3291
+ jsonOutput: true,
3292
+ structuredOutputs: false,
3293
+ },
2377
3294
  },
2378
3295
  [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIRX]: {
2379
3296
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIRX,
@@ -2391,7 +3308,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2391
3308
  getPriceForAudioOutput: () => 0,
2392
3309
  currency: 'USD',
2393
3310
  },
2394
- capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
3311
+ capabilities: {
3312
+ vision: false,
3313
+ tools: true,
3314
+ reasoning: false,
3315
+ webSearch: false,
3316
+ jsonOutput: true,
3317
+ structuredOutputs: false,
3318
+ },
2395
3319
  },
2396
3320
  [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_FLASH]: {
2397
3321
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_FLASH,
@@ -2409,7 +3333,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2409
3333
  getPriceForAudioOutput: () => 0,
2410
3334
  currency: 'USD',
2411
3335
  },
2412
- capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
3336
+ capabilities: {
3337
+ vision: false,
3338
+ tools: true,
3339
+ reasoning: false,
3340
+ webSearch: false,
3341
+ jsonOutput: true,
3342
+ structuredOutputs: false,
3343
+ },
2413
3344
  },
2414
3345
  [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6]: {
2415
3346
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6,
@@ -2427,7 +3358,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2427
3358
  getPriceForAudioOutput: () => 0,
2428
3359
  currency: 'USD',
2429
3360
  },
2430
- capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
3361
+ capabilities: {
3362
+ vision: false,
3363
+ tools: true,
3364
+ reasoning: true,
3365
+ webSearch: true,
3366
+ jsonOutput: true,
3367
+ structuredOutputs: false,
3368
+ },
2431
3369
  },
2432
3370
  [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V]: {
2433
3371
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V,
@@ -2445,7 +3383,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2445
3383
  getPriceForAudioOutput: () => 0,
2446
3384
  currency: 'USD',
2447
3385
  },
2448
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
3386
+ capabilities: {
3387
+ vision: true,
3388
+ tools: true,
3389
+ reasoning: true,
3390
+ webSearch: false,
3391
+ jsonOutput: true,
3392
+ structuredOutputs: false,
3393
+ },
2449
3394
  },
2450
3395
  [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_FLASHX]: {
2451
3396
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_FLASHX,
@@ -2463,7 +3408,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2463
3408
  getPriceForAudioOutput: () => 0,
2464
3409
  currency: 'USD',
2465
3410
  },
2466
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
3411
+ capabilities: {
3412
+ vision: true,
3413
+ tools: true,
3414
+ reasoning: true,
3415
+ webSearch: false,
3416
+ jsonOutput: true,
3417
+ structuredOutputs: false,
3418
+ },
2467
3419
  },
2468
3420
  [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_FLASH]: {
2469
3421
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_FLASH,
@@ -2481,7 +3433,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2481
3433
  getPriceForAudioOutput: () => 0,
2482
3434
  currency: 'USD',
2483
3435
  },
2484
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
3436
+ capabilities: {
3437
+ vision: true,
3438
+ tools: true,
3439
+ reasoning: true,
3440
+ webSearch: false,
3441
+ jsonOutput: true,
3442
+ structuredOutputs: false,
3443
+ },
2485
3444
  },
2486
3445
  [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7]: {
2487
3446
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7,
@@ -2499,7 +3458,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2499
3458
  getPriceForAudioOutput: () => 0,
2500
3459
  currency: 'USD',
2501
3460
  },
2502
- capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: false },
3461
+ capabilities: {
3462
+ vision: false,
3463
+ tools: true,
3464
+ reasoning: true,
3465
+ webSearch: true,
3466
+ jsonOutput: true,
3467
+ structuredOutputs: false,
3468
+ },
2503
3469
  },
2504
3470
  [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASHX]: {
2505
3471
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASHX,
@@ -2517,7 +3483,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2517
3483
  getPriceForAudioOutput: () => 0,
2518
3484
  currency: 'USD',
2519
3485
  },
2520
- capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
3486
+ capabilities: {
3487
+ vision: false,
3488
+ tools: true,
3489
+ reasoning: true,
3490
+ webSearch: false,
3491
+ jsonOutput: true,
3492
+ structuredOutputs: false,
3493
+ },
2521
3494
  },
2522
3495
  [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASH]: {
2523
3496
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASH,
@@ -2535,7 +3508,14 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2535
3508
  getPriceForAudioOutput: () => 0,
2536
3509
  currency: 'USD',
2537
3510
  },
2538
- capabilities: { vision: false, tools: true, reasoning: true, webSearch: false, jsonResponseWithTools: false },
3511
+ capabilities: {
3512
+ vision: false,
3513
+ tools: true,
3514
+ reasoning: true,
3515
+ webSearch: false,
3516
+ jsonOutput: true,
3517
+ structuredOutputs: false,
3518
+ },
2539
3519
  },
2540
3520
  [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_32B_0414_128K]: {
2541
3521
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_32B_0414_128K,
@@ -2553,7 +3533,1747 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2553
3533
  getPriceForAudioOutput: () => 0,
2554
3534
  currency: 'USD',
2555
3535
  },
2556
- capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
3536
+ capabilities: {
3537
+ vision: false,
3538
+ tools: true,
3539
+ reasoning: false,
3540
+ webSearch: false,
3541
+ jsonOutput: true,
3542
+ structuredOutputs: false,
3543
+ },
3544
+ },
3545
+ // ─── OpenAI (new models & routes) ──────────────────────
3546
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CHAT]: {
3547
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CHAT,
3548
+ limits: {
3549
+ maxInputTokens: 128_000,
3550
+ maxOutputTokens: 16_384,
3551
+ },
3552
+ config: {
3553
+ temperature: 1,
3554
+ },
3555
+ pricing: {
3556
+ getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000,
3557
+ getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000,
3558
+ getPriceForAudioInput: () => 0,
3559
+ getPriceForAudioOutput: () => 0,
3560
+ currency: 'USD',
3561
+ },
3562
+ capabilities: {
3563
+ vision: true,
3564
+ tools: true,
3565
+ reasoning: true,
3566
+ webSearch: true,
3567
+ jsonOutput: false,
3568
+ structuredOutputs: true,
3569
+ },
3570
+ },
3571
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CHAT]: {
3572
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CHAT,
3573
+ limits: {
3574
+ maxInputTokens: 128_000,
3575
+ maxOutputTokens: 16_384,
3576
+ },
3577
+ config: {
3578
+ temperature: 0.2,
3579
+ },
3580
+ pricing: {
3581
+ getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000,
3582
+ getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000,
3583
+ getPriceForAudioInput: () => 0,
3584
+ getPriceForAudioOutput: () => 0,
3585
+ currency: 'USD',
3586
+ },
3587
+ capabilities: {
3588
+ vision: true,
3589
+ tools: true,
3590
+ reasoning: false,
3591
+ webSearch: false,
3592
+ jsonOutput: true,
3593
+ structuredOutputs: true,
3594
+ },
3595
+ },
3596
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_MINI]: {
3597
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_MINI,
3598
+ limits: {
3599
+ maxInputTokens: 400_000,
3600
+ maxOutputTokens: 128_000,
3601
+ },
3602
+ config: {
3603
+ temperature: 1,
3604
+ },
3605
+ pricing: {
3606
+ getPriceForTextInput: (tokens) => 0.75 * tokens / 1_000_000,
3607
+ getPriceForTextOutput: (tokens) => 4.5 * tokens / 1_000_000,
3608
+ getPriceForAudioInput: () => 0,
3609
+ getPriceForAudioOutput: () => 0,
3610
+ currency: 'USD',
3611
+ },
3612
+ capabilities: {
3613
+ vision: true,
3614
+ tools: true,
3615
+ reasoning: true,
3616
+ webSearch: true,
3617
+ jsonOutput: true,
3618
+ structuredOutputs: true,
3619
+ },
3620
+ },
3621
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_NANO]: {
3622
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_NANO,
3623
+ limits: {
3624
+ maxInputTokens: 400_000,
3625
+ maxOutputTokens: 128_000,
3626
+ },
3627
+ config: {
3628
+ temperature: 1,
3629
+ },
3630
+ pricing: {
3631
+ getPriceForTextInput: (tokens) => 0.2 * tokens / 1_000_000,
3632
+ getPriceForTextOutput: (tokens) => 1.25 * tokens / 1_000_000,
3633
+ getPriceForAudioInput: () => 0,
3634
+ getPriceForAudioOutput: () => 0,
3635
+ currency: 'USD',
3636
+ },
3637
+ capabilities: {
3638
+ vision: true,
3639
+ tools: true,
3640
+ reasoning: true,
3641
+ webSearch: true,
3642
+ jsonOutput: true,
3643
+ structuredOutputs: true,
3644
+ },
3645
+ },
3646
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_CHAT]: {
3647
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_CHAT,
3648
+ limits: {
3649
+ maxInputTokens: 400_000,
3650
+ maxOutputTokens: 128_000,
3651
+ },
3652
+ config: {
3653
+ temperature: 0.2,
3654
+ },
3655
+ pricing: {
3656
+ getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000,
3657
+ getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000,
3658
+ getPriceForAudioInput: () => 0,
3659
+ getPriceForAudioOutput: () => 0,
3660
+ currency: 'USD',
3661
+ },
3662
+ capabilities: {
3663
+ vision: true,
3664
+ tools: false,
3665
+ reasoning: false,
3666
+ webSearch: false,
3667
+ jsonOutput: true,
3668
+ structuredOutputs: true,
3669
+ },
3670
+ },
3671
+ [LLMAPI_typedefs_1.LLMAPIModelNames.O1_MINI]: {
3672
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.O1_MINI,
3673
+ limits: {
3674
+ maxInputTokens: 128_000,
3675
+ maxOutputTokens: 16_384,
3676
+ },
3677
+ config: {
3678
+ temperature: 0.2,
3679
+ },
3680
+ pricing: {
3681
+ getPriceForTextInput: (tokens) => 1.1 * tokens / 1_000_000,
3682
+ getPriceForTextOutput: (tokens) => 4.4 * tokens / 1_000_000,
3683
+ getPriceForAudioInput: () => 0,
3684
+ getPriceForAudioOutput: () => 0,
3685
+ currency: 'USD',
3686
+ },
3687
+ capabilities: {
3688
+ vision: false,
3689
+ tools: false,
3690
+ reasoning: false,
3691
+ webSearch: false,
3692
+ jsonOutput: false,
3693
+ structuredOutputs: false,
3694
+ },
3695
+ },
3696
+ // ─── Google (new models & routes) ──────────────────────
3697
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_PRO_PREVIEW]: {
3698
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_PRO_PREVIEW,
3699
+ limits: {
3700
+ maxInputTokens: 1_048_576,
3701
+ maxOutputTokens: 128_000,
3702
+ },
3703
+ config: {
3704
+ temperature: 1,
3705
+ },
3706
+ pricing: {
3707
+ getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000,
3708
+ getPriceForTextOutput: (tokens) => 12 * tokens / 1_000_000,
3709
+ getPriceForAudioInput: () => 0,
3710
+ getPriceForAudioOutput: () => 0,
3711
+ currency: 'USD',
3712
+ },
3713
+ capabilities: {
3714
+ vision: true,
3715
+ tools: true,
3716
+ reasoning: true,
3717
+ webSearch: false,
3718
+ jsonOutput: true,
3719
+ structuredOutputs: true,
3720
+ },
3721
+ },
3722
+ // ─── DeepSeek (provider routes) ───────────────────────
3723
+ [LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_R1_0528_CLOUDRIFT]: {
3724
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_R1_0528_CLOUDRIFT,
3725
+ limits: {
3726
+ maxInputTokens: 64_000,
3727
+ maxOutputTokens: 16_384,
3728
+ },
3729
+ config: {
3730
+ temperature: 0.2,
3731
+ },
3732
+ pricing: {
3733
+ getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000,
3734
+ getPriceForTextOutput: (tokens) => 1 * tokens / 1_000_000,
3735
+ getPriceForAudioInput: () => 0,
3736
+ getPriceForAudioOutput: () => 0,
3737
+ currency: 'USD',
3738
+ },
3739
+ capabilities: {
3740
+ vision: false,
3741
+ tools: false,
3742
+ reasoning: false,
3743
+ webSearch: false,
3744
+ jsonOutput: false,
3745
+ structuredOutputs: false,
3746
+ },
3747
+ },
3748
+ [LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_R1_0528_NEBIUS]: {
3749
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_R1_0528_NEBIUS,
3750
+ limits: {
3751
+ maxInputTokens: 64_000,
3752
+ maxOutputTokens: 16_384,
3753
+ },
3754
+ config: {
3755
+ temperature: 0.2,
3756
+ },
3757
+ pricing: {
3758
+ getPriceForTextInput: (tokens) => 0.8 * tokens / 1_000_000,
3759
+ getPriceForTextOutput: (tokens) => 2.4 * tokens / 1_000_000,
3760
+ getPriceForAudioInput: () => 0,
3761
+ getPriceForAudioOutput: () => 0,
3762
+ currency: 'USD',
3763
+ },
3764
+ capabilities: {
3765
+ vision: false,
3766
+ tools: false,
3767
+ reasoning: false,
3768
+ webSearch: false,
3769
+ jsonOutput: false,
3770
+ structuredOutputs: false,
3771
+ },
3772
+ },
3773
+ [LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_V3_2_CANOPYWAVE]: {
3774
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_V3_2_CANOPYWAVE,
3775
+ limits: {
3776
+ maxInputTokens: 163_840,
3777
+ maxOutputTokens: 128_000,
3778
+ },
3779
+ config: {
3780
+ temperature: 0.2,
3781
+ },
3782
+ pricing: {
3783
+ getPriceForTextInput: (tokens) => 0.28 * tokens / 1_000_000,
3784
+ getPriceForTextOutput: (tokens) => 0.42 * tokens / 1_000_000,
3785
+ getPriceForAudioInput: () => 0,
3786
+ getPriceForAudioOutput: () => 0,
3787
+ currency: 'USD',
3788
+ },
3789
+ capabilities: {
3790
+ vision: true,
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
+ },
2557
5277
  },
2558
5278
  // ─── OpenAI explicit provider variants ────────────────────────
2559
5279
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_OPENAI]: {
@@ -2561,168 +5281,168 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2561
5281
  limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
2562
5282
  config: { temperature: 1 },
2563
5283
  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 },
5284
+ capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
2565
5285
  },
2566
5286
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_AZURE]: {
2567
5287
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_AZURE,
2568
5288
  limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
2569
5289
  config: { temperature: 1 },
2570
5290
  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 },
5291
+ capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
2572
5292
  },
2573
5293
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI_OPENAI]: {
2574
5294
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI_OPENAI,
2575
5295
  limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
2576
5296
  config: { temperature: 1 },
2577
5297
  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 },
5298
+ capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
2579
5299
  },
2580
5300
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI_AZURE]: {
2581
5301
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI_AZURE,
2582
5302
  limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
2583
5303
  config: { temperature: 1 },
2584
5304
  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 },
5305
+ capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
2586
5306
  },
2587
5307
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO_OPENAI]: {
2588
5308
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO_OPENAI,
2589
5309
  limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
2590
5310
  config: { temperature: 1 },
2591
5311
  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 },
5312
+ capabilities: { vision: false, tools: true, reasoning: true, webSearch: true },
2593
5313
  },
2594
5314
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO_AZURE]: {
2595
5315
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO_AZURE,
2596
5316
  limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
2597
5317
  config: { temperature: 1 },
2598
5318
  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 },
5319
+ capabilities: { vision: false, tools: true, reasoning: true, webSearch: true },
2600
5320
  },
2601
5321
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO_OPENAI]: {
2602
5322
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO_OPENAI,
2603
5323
  limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
2604
5324
  config: { temperature: 1 },
2605
5325
  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 },
5326
+ capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
2607
5327
  },
2608
5328
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO_AZURE]: {
2609
5329
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO_AZURE,
2610
5330
  limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
2611
5331
  config: { temperature: 1 },
2612
5332
  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 },
5333
+ capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
2614
5334
  },
2615
5335
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_OPENAI]: {
2616
5336
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_OPENAI,
2617
5337
  limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
2618
5338
  config: { temperature: 1 },
2619
5339
  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 },
5340
+ capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
2621
5341
  },
2622
5342
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_AZURE]: {
2623
5343
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_AZURE,
2624
5344
  limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
2625
5345
  config: { temperature: 1 },
2626
5346
  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 },
5347
+ capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
2628
5348
  },
2629
5349
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_OPENAI]: {
2630
5350
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_OPENAI,
2631
5351
  limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
2632
5352
  config: { temperature: 1 },
2633
5353
  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 },
5354
+ capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
2635
5355
  },
2636
5356
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_AZURE]: {
2637
5357
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_AZURE,
2638
5358
  limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
2639
5359
  config: { temperature: 1 },
2640
5360
  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 },
5361
+ capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
2642
5362
  },
2643
5363
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI_OPENAI]: {
2644
5364
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI_OPENAI,
2645
5365
  limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
2646
5366
  config: { temperature: 1 },
2647
5367
  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 },
5368
+ capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
2649
5369
  },
2650
5370
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI_AZURE]: {
2651
5371
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI_AZURE,
2652
5372
  limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
2653
5373
  config: { temperature: 1 },
2654
5374
  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 },
5375
+ capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
2656
5376
  },
2657
5377
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_OPENAI]: {
2658
5378
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_OPENAI,
2659
5379
  limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
2660
5380
  config: { temperature: 1 },
2661
5381
  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 },
5382
+ capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
2663
5383
  },
2664
5384
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_AZURE]: {
2665
5385
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_AZURE,
2666
5386
  limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
2667
5387
  config: { temperature: 1 },
2668
5388
  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 },
5389
+ capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
2670
5390
  },
2671
5391
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX_OPENAI]: {
2672
5392
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX_OPENAI,
2673
5393
  limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
2674
5394
  config: { temperature: 1 },
2675
5395
  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 },
5396
+ capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
2677
5397
  },
2678
5398
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX_AZURE]: {
2679
5399
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX_AZURE,
2680
5400
  limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
2681
5401
  config: { temperature: 1 },
2682
5402
  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 },
5403
+ capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
2684
5404
  },
2685
5405
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX_OPENAI]: {
2686
5406
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX_OPENAI,
2687
5407
  limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
2688
5408
  config: { temperature: 1 },
2689
5409
  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 },
5410
+ capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
2691
5411
  },
2692
5412
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX_AZURE]: {
2693
5413
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX_AZURE,
2694
5414
  limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
2695
5415
  config: { temperature: 1 },
2696
5416
  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 },
5417
+ capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
2698
5418
  },
2699
5419
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_OPENAI]: {
2700
5420
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_OPENAI,
2701
5421
  limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
2702
5422
  config: { temperature: 1 },
2703
5423
  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 },
5424
+ capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
2705
5425
  },
2706
5426
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_AZURE]: {
2707
5427
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_AZURE,
2708
5428
  limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
2709
5429
  config: { temperature: 1 },
2710
5430
  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 },
5431
+ capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
2712
5432
  },
2713
5433
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO_OPENAI]: {
2714
5434
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO_OPENAI,
2715
5435
  limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
2716
5436
  config: { temperature: 1 },
2717
5437
  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 },
5438
+ capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
2719
5439
  },
2720
5440
  [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO_AZURE]: {
2721
5441
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO_AZURE,
2722
5442
  limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
2723
5443
  config: { temperature: 1 },
2724
5444
  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 },
5445
+ capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
2726
5446
  },
2727
5447
  // ─── Gemini explicit provider variants ────────────────────────
2728
5448
  [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_PRO_GOOGLE_AI_STUDIO]: {
@@ -2730,84 +5450,84 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2730
5450
  limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
2731
5451
  config: { temperature: 0.2 },
2732
5452
  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 },
5453
+ capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
2734
5454
  },
2735
5455
  [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_PRO_GOOGLE_VERTEX]: {
2736
5456
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_PRO_GOOGLE_VERTEX,
2737
5457
  limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
2738
5458
  config: { temperature: 0.2 },
2739
5459
  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 },
5460
+ capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
2741
5461
  },
2742
5462
  [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_GOOGLE_AI_STUDIO]: {
2743
5463
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_GOOGLE_AI_STUDIO,
2744
5464
  limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
2745
5465
  config: { temperature: 0.2 },
2746
5466
  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 },
5467
+ capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
2748
5468
  },
2749
5469
  [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_GOOGLE_VERTEX]: {
2750
5470
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_GOOGLE_VERTEX,
2751
5471
  limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
2752
5472
  config: { temperature: 0.2 },
2753
5473
  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 },
5474
+ capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
2755
5475
  },
2756
5476
  [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_GOOGLE_AI_STUDIO]: {
2757
5477
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_GOOGLE_AI_STUDIO,
2758
5478
  limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
2759
5479
  config: { temperature: 0.2 },
2760
5480
  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 },
5481
+ capabilities: { vision: true, tools: true, reasoning: false, webSearch: false },
2762
5482
  },
2763
5483
  [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_GOOGLE_VERTEX]: {
2764
5484
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_GOOGLE_VERTEX,
2765
5485
  limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
2766
5486
  config: { temperature: 0.2 },
2767
5487
  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 },
5488
+ capabilities: { vision: true, tools: true, reasoning: false, webSearch: false },
2769
5489
  },
2770
5490
  [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW_GOOGLE_AI_STUDIO]: {
2771
5491
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW_GOOGLE_AI_STUDIO,
2772
5492
  limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
2773
5493
  config: { temperature: 0.2 },
2774
5494
  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 },
5495
+ capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
2776
5496
  },
2777
5497
  [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW_GOOGLE_VERTEX]: {
2778
5498
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW_GOOGLE_VERTEX,
2779
5499
  limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
2780
5500
  config: { temperature: 0.2 },
2781
5501
  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 },
5502
+ capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
2783
5503
  },
2784
5504
  [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW_GOOGLE_AI_STUDIO]: {
2785
5505
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW_GOOGLE_AI_STUDIO,
2786
5506
  limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
2787
5507
  config: { temperature: 0.2 },
2788
5508
  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 },
5509
+ capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
2790
5510
  },
2791
5511
  [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW_GOOGLE_VERTEX]: {
2792
5512
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW_GOOGLE_VERTEX,
2793
5513
  limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
2794
5514
  config: { temperature: 0.2 },
2795
5515
  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 },
5516
+ capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
2797
5517
  },
2798
5518
  [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE_GOOGLE_AI_STUDIO]: {
2799
5519
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE_GOOGLE_AI_STUDIO,
2800
5520
  limits: { maxInputTokens: 32_768, maxOutputTokens: 65_536 },
2801
5521
  config: { temperature: 0.2 },
2802
5522
  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 },
5523
+ capabilities: { vision: true, tools: false, reasoning: false, webSearch: false },
2804
5524
  },
2805
5525
  [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE_GOOGLE_VERTEX]: {
2806
5526
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE_GOOGLE_VERTEX,
2807
5527
  limits: { maxInputTokens: 32_768, maxOutputTokens: 65_536 },
2808
5528
  config: { temperature: 0.2 },
2809
5529
  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 },
5530
+ capabilities: { vision: true, tools: false, reasoning: false, webSearch: false },
2811
5531
  },
2812
5532
  };
2813
5533
  const LLMAPI_COMPLETION_MODELS = exports.LLMAPI_AVAILABLE_MODELS;