@mate-academy/llm-gateway 7.2.0 → 7.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/LLMService.constants.d.ts +216 -0
- package/dist/providers/LLMAPI/LLMAPI.constants.d.ts +324 -0
- package/dist/providers/LLMAPI/LLMAPI.constants.js +312 -48
- package/dist/providers/LLMAPI/LLMAPI.constants.js.map +1 -1
- package/dist/providers/LLMAPI/LLMAPI.typedefs.d.ts +13 -1
- package/dist/providers/LLMAPI/LLMAPI.typedefs.js.map +1 -1
- package/package.json +1 -1
|
@@ -361,6 +361,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
361
361
|
};
|
|
362
362
|
readonly config: {
|
|
363
363
|
readonly temperature: 1;
|
|
364
|
+
readonly reasoning_effort: "minimal";
|
|
365
|
+
readonly verbosity: "medium";
|
|
364
366
|
};
|
|
365
367
|
readonly pricing: {
|
|
366
368
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -386,6 +388,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
386
388
|
};
|
|
387
389
|
readonly config: {
|
|
388
390
|
readonly temperature: 1;
|
|
391
|
+
readonly reasoning_effort: "minimal";
|
|
392
|
+
readonly verbosity: "medium";
|
|
389
393
|
};
|
|
390
394
|
readonly pricing: {
|
|
391
395
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -411,6 +415,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
411
415
|
};
|
|
412
416
|
readonly config: {
|
|
413
417
|
readonly temperature: 1;
|
|
418
|
+
readonly reasoning_effort: "minimal";
|
|
419
|
+
readonly verbosity: "medium";
|
|
414
420
|
};
|
|
415
421
|
readonly pricing: {
|
|
416
422
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -486,6 +492,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
486
492
|
};
|
|
487
493
|
readonly config: {
|
|
488
494
|
readonly temperature: 1;
|
|
495
|
+
readonly reasoning_effort: "none";
|
|
496
|
+
readonly verbosity: "medium";
|
|
489
497
|
};
|
|
490
498
|
readonly pricing: {
|
|
491
499
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -586,6 +594,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
586
594
|
};
|
|
587
595
|
readonly config: {
|
|
588
596
|
readonly temperature: 1;
|
|
597
|
+
readonly reasoning_effort: "none";
|
|
598
|
+
readonly verbosity: "medium";
|
|
589
599
|
};
|
|
590
600
|
readonly pricing: {
|
|
591
601
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -686,6 +696,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
686
696
|
};
|
|
687
697
|
readonly config: {
|
|
688
698
|
readonly temperature: 1;
|
|
699
|
+
readonly reasoning_effort: "none";
|
|
700
|
+
readonly verbosity: "medium";
|
|
689
701
|
};
|
|
690
702
|
readonly pricing: {
|
|
691
703
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -5261,6 +5273,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5261
5273
|
};
|
|
5262
5274
|
readonly config: {
|
|
5263
5275
|
readonly temperature: 1;
|
|
5276
|
+
readonly reasoning_effort: "minimal";
|
|
5277
|
+
readonly verbosity: "medium";
|
|
5264
5278
|
};
|
|
5265
5279
|
readonly pricing: {
|
|
5266
5280
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -5274,6 +5288,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5274
5288
|
readonly tools: true;
|
|
5275
5289
|
readonly reasoning: true;
|
|
5276
5290
|
readonly webSearch: true;
|
|
5291
|
+
readonly jsonOutput: true;
|
|
5292
|
+
readonly structuredOutputs: true;
|
|
5277
5293
|
};
|
|
5278
5294
|
};
|
|
5279
5295
|
readonly "azure/gpt-5": {
|
|
@@ -5284,6 +5300,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5284
5300
|
};
|
|
5285
5301
|
readonly config: {
|
|
5286
5302
|
readonly temperature: 1;
|
|
5303
|
+
readonly reasoning_effort: "minimal";
|
|
5304
|
+
readonly verbosity: "medium";
|
|
5287
5305
|
};
|
|
5288
5306
|
readonly pricing: {
|
|
5289
5307
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -5297,6 +5315,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5297
5315
|
readonly tools: true;
|
|
5298
5316
|
readonly reasoning: true;
|
|
5299
5317
|
readonly webSearch: true;
|
|
5318
|
+
readonly jsonOutput: true;
|
|
5319
|
+
readonly structuredOutputs: true;
|
|
5300
5320
|
};
|
|
5301
5321
|
};
|
|
5302
5322
|
readonly "openai/gpt-5-mini": {
|
|
@@ -5307,6 +5327,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5307
5327
|
};
|
|
5308
5328
|
readonly config: {
|
|
5309
5329
|
readonly temperature: 1;
|
|
5330
|
+
readonly reasoning_effort: "minimal";
|
|
5331
|
+
readonly verbosity: "medium";
|
|
5310
5332
|
};
|
|
5311
5333
|
readonly pricing: {
|
|
5312
5334
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -5320,6 +5342,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5320
5342
|
readonly tools: true;
|
|
5321
5343
|
readonly reasoning: true;
|
|
5322
5344
|
readonly webSearch: true;
|
|
5345
|
+
readonly jsonOutput: true;
|
|
5346
|
+
readonly structuredOutputs: true;
|
|
5323
5347
|
};
|
|
5324
5348
|
};
|
|
5325
5349
|
readonly "azure/gpt-5-mini": {
|
|
@@ -5330,6 +5354,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5330
5354
|
};
|
|
5331
5355
|
readonly config: {
|
|
5332
5356
|
readonly temperature: 1;
|
|
5357
|
+
readonly reasoning_effort: "minimal";
|
|
5358
|
+
readonly verbosity: "medium";
|
|
5333
5359
|
};
|
|
5334
5360
|
readonly pricing: {
|
|
5335
5361
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -5343,6 +5369,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5343
5369
|
readonly tools: true;
|
|
5344
5370
|
readonly reasoning: true;
|
|
5345
5371
|
readonly webSearch: true;
|
|
5372
|
+
readonly jsonOutput: true;
|
|
5373
|
+
readonly structuredOutputs: true;
|
|
5346
5374
|
};
|
|
5347
5375
|
};
|
|
5348
5376
|
readonly "openai/gpt-5-nano": {
|
|
@@ -5353,6 +5381,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5353
5381
|
};
|
|
5354
5382
|
readonly config: {
|
|
5355
5383
|
readonly temperature: 1;
|
|
5384
|
+
readonly reasoning_effort: "minimal";
|
|
5385
|
+
readonly verbosity: "medium";
|
|
5356
5386
|
};
|
|
5357
5387
|
readonly pricing: {
|
|
5358
5388
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -5366,6 +5396,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5366
5396
|
readonly tools: true;
|
|
5367
5397
|
readonly reasoning: true;
|
|
5368
5398
|
readonly webSearch: true;
|
|
5399
|
+
readonly jsonOutput: true;
|
|
5400
|
+
readonly structuredOutputs: true;
|
|
5369
5401
|
};
|
|
5370
5402
|
};
|
|
5371
5403
|
readonly "azure/gpt-5-nano": {
|
|
@@ -5376,6 +5408,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5376
5408
|
};
|
|
5377
5409
|
readonly config: {
|
|
5378
5410
|
readonly temperature: 1;
|
|
5411
|
+
readonly reasoning_effort: "minimal";
|
|
5412
|
+
readonly verbosity: "medium";
|
|
5379
5413
|
};
|
|
5380
5414
|
readonly pricing: {
|
|
5381
5415
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -5389,6 +5423,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5389
5423
|
readonly tools: true;
|
|
5390
5424
|
readonly reasoning: true;
|
|
5391
5425
|
readonly webSearch: true;
|
|
5426
|
+
readonly jsonOutput: true;
|
|
5427
|
+
readonly structuredOutputs: true;
|
|
5392
5428
|
};
|
|
5393
5429
|
};
|
|
5394
5430
|
readonly "openai/gpt-5-pro": {
|
|
@@ -5412,6 +5448,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5412
5448
|
readonly tools: true;
|
|
5413
5449
|
readonly reasoning: true;
|
|
5414
5450
|
readonly webSearch: true;
|
|
5451
|
+
readonly jsonOutput: true;
|
|
5452
|
+
readonly structuredOutputs: true;
|
|
5415
5453
|
};
|
|
5416
5454
|
};
|
|
5417
5455
|
readonly "azure/gpt-5-pro": {
|
|
@@ -5435,6 +5473,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5435
5473
|
readonly tools: true;
|
|
5436
5474
|
readonly reasoning: true;
|
|
5437
5475
|
readonly webSearch: true;
|
|
5476
|
+
readonly jsonOutput: true;
|
|
5477
|
+
readonly structuredOutputs: true;
|
|
5438
5478
|
};
|
|
5439
5479
|
};
|
|
5440
5480
|
readonly "openai/gpt-5.1": {
|
|
@@ -5445,6 +5485,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5445
5485
|
};
|
|
5446
5486
|
readonly config: {
|
|
5447
5487
|
readonly temperature: 1;
|
|
5488
|
+
readonly reasoning_effort: "none";
|
|
5489
|
+
readonly verbosity: "medium";
|
|
5448
5490
|
};
|
|
5449
5491
|
readonly pricing: {
|
|
5450
5492
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -5458,6 +5500,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5458
5500
|
readonly tools: true;
|
|
5459
5501
|
readonly reasoning: true;
|
|
5460
5502
|
readonly webSearch: true;
|
|
5503
|
+
readonly jsonOutput: true;
|
|
5504
|
+
readonly structuredOutputs: true;
|
|
5461
5505
|
};
|
|
5462
5506
|
};
|
|
5463
5507
|
readonly "azure/gpt-5.1": {
|
|
@@ -5468,6 +5512,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5468
5512
|
};
|
|
5469
5513
|
readonly config: {
|
|
5470
5514
|
readonly temperature: 1;
|
|
5515
|
+
readonly reasoning_effort: "none";
|
|
5516
|
+
readonly verbosity: "medium";
|
|
5471
5517
|
};
|
|
5472
5518
|
readonly pricing: {
|
|
5473
5519
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -5481,6 +5527,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5481
5527
|
readonly tools: true;
|
|
5482
5528
|
readonly reasoning: true;
|
|
5483
5529
|
readonly webSearch: true;
|
|
5530
|
+
readonly jsonOutput: true;
|
|
5531
|
+
readonly structuredOutputs: true;
|
|
5484
5532
|
};
|
|
5485
5533
|
};
|
|
5486
5534
|
readonly "openai/gpt-5.1-codex": {
|
|
@@ -5504,6 +5552,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5504
5552
|
readonly tools: true;
|
|
5505
5553
|
readonly reasoning: true;
|
|
5506
5554
|
readonly webSearch: true;
|
|
5555
|
+
readonly jsonOutput: true;
|
|
5556
|
+
readonly structuredOutputs: true;
|
|
5507
5557
|
};
|
|
5508
5558
|
};
|
|
5509
5559
|
readonly "azure/gpt-5.1-codex": {
|
|
@@ -5527,6 +5577,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5527
5577
|
readonly tools: true;
|
|
5528
5578
|
readonly reasoning: true;
|
|
5529
5579
|
readonly webSearch: true;
|
|
5580
|
+
readonly jsonOutput: true;
|
|
5581
|
+
readonly structuredOutputs: true;
|
|
5530
5582
|
};
|
|
5531
5583
|
};
|
|
5532
5584
|
readonly "openai/gpt-5.1-codex-mini": {
|
|
@@ -5550,6 +5602,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5550
5602
|
readonly tools: true;
|
|
5551
5603
|
readonly reasoning: true;
|
|
5552
5604
|
readonly webSearch: true;
|
|
5605
|
+
readonly jsonOutput: true;
|
|
5606
|
+
readonly structuredOutputs: true;
|
|
5553
5607
|
};
|
|
5554
5608
|
};
|
|
5555
5609
|
readonly "azure/gpt-5.1-codex-mini": {
|
|
@@ -5573,6 +5627,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5573
5627
|
readonly tools: true;
|
|
5574
5628
|
readonly reasoning: true;
|
|
5575
5629
|
readonly webSearch: true;
|
|
5630
|
+
readonly jsonOutput: true;
|
|
5631
|
+
readonly structuredOutputs: true;
|
|
5576
5632
|
};
|
|
5577
5633
|
};
|
|
5578
5634
|
readonly "openai/gpt-5.2": {
|
|
@@ -5583,6 +5639,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5583
5639
|
};
|
|
5584
5640
|
readonly config: {
|
|
5585
5641
|
readonly temperature: 1;
|
|
5642
|
+
readonly reasoning_effort: "none";
|
|
5643
|
+
readonly verbosity: "medium";
|
|
5586
5644
|
};
|
|
5587
5645
|
readonly pricing: {
|
|
5588
5646
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -5596,6 +5654,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5596
5654
|
readonly tools: true;
|
|
5597
5655
|
readonly reasoning: true;
|
|
5598
5656
|
readonly webSearch: true;
|
|
5657
|
+
readonly jsonOutput: true;
|
|
5658
|
+
readonly structuredOutputs: true;
|
|
5599
5659
|
};
|
|
5600
5660
|
};
|
|
5601
5661
|
readonly "azure/gpt-5.2": {
|
|
@@ -5606,6 +5666,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5606
5666
|
};
|
|
5607
5667
|
readonly config: {
|
|
5608
5668
|
readonly temperature: 1;
|
|
5669
|
+
readonly reasoning_effort: "none";
|
|
5670
|
+
readonly verbosity: "medium";
|
|
5609
5671
|
};
|
|
5610
5672
|
readonly pricing: {
|
|
5611
5673
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -5619,6 +5681,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5619
5681
|
readonly tools: true;
|
|
5620
5682
|
readonly reasoning: true;
|
|
5621
5683
|
readonly webSearch: true;
|
|
5684
|
+
readonly jsonOutput: true;
|
|
5685
|
+
readonly structuredOutputs: true;
|
|
5622
5686
|
};
|
|
5623
5687
|
};
|
|
5624
5688
|
readonly "openai/gpt-5.2-codex": {
|
|
@@ -5642,6 +5706,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5642
5706
|
readonly tools: true;
|
|
5643
5707
|
readonly reasoning: true;
|
|
5644
5708
|
readonly webSearch: true;
|
|
5709
|
+
readonly jsonOutput: true;
|
|
5710
|
+
readonly structuredOutputs: true;
|
|
5645
5711
|
};
|
|
5646
5712
|
};
|
|
5647
5713
|
readonly "azure/gpt-5.2-codex": {
|
|
@@ -5665,6 +5731,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5665
5731
|
readonly tools: true;
|
|
5666
5732
|
readonly reasoning: true;
|
|
5667
5733
|
readonly webSearch: true;
|
|
5734
|
+
readonly jsonOutput: true;
|
|
5735
|
+
readonly structuredOutputs: true;
|
|
5668
5736
|
};
|
|
5669
5737
|
};
|
|
5670
5738
|
readonly "openai/gpt-5.3-codex": {
|
|
@@ -5688,6 +5756,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5688
5756
|
readonly tools: true;
|
|
5689
5757
|
readonly reasoning: true;
|
|
5690
5758
|
readonly webSearch: true;
|
|
5759
|
+
readonly jsonOutput: true;
|
|
5760
|
+
readonly structuredOutputs: true;
|
|
5691
5761
|
};
|
|
5692
5762
|
};
|
|
5693
5763
|
readonly "azure/gpt-5.3-codex": {
|
|
@@ -5711,6 +5781,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5711
5781
|
readonly tools: true;
|
|
5712
5782
|
readonly reasoning: true;
|
|
5713
5783
|
readonly webSearch: true;
|
|
5784
|
+
readonly jsonOutput: true;
|
|
5785
|
+
readonly structuredOutputs: true;
|
|
5714
5786
|
};
|
|
5715
5787
|
};
|
|
5716
5788
|
readonly "openai/gpt-5.4": {
|
|
@@ -5721,6 +5793,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5721
5793
|
};
|
|
5722
5794
|
readonly config: {
|
|
5723
5795
|
readonly temperature: 1;
|
|
5796
|
+
readonly reasoning_effort: "none";
|
|
5797
|
+
readonly verbosity: "medium";
|
|
5724
5798
|
};
|
|
5725
5799
|
readonly pricing: {
|
|
5726
5800
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -5734,6 +5808,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5734
5808
|
readonly tools: true;
|
|
5735
5809
|
readonly reasoning: true;
|
|
5736
5810
|
readonly webSearch: true;
|
|
5811
|
+
readonly jsonOutput: true;
|
|
5812
|
+
readonly structuredOutputs: true;
|
|
5737
5813
|
};
|
|
5738
5814
|
};
|
|
5739
5815
|
readonly "azure/gpt-5.4": {
|
|
@@ -5744,6 +5820,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5744
5820
|
};
|
|
5745
5821
|
readonly config: {
|
|
5746
5822
|
readonly temperature: 1;
|
|
5823
|
+
readonly reasoning_effort: "none";
|
|
5824
|
+
readonly verbosity: "medium";
|
|
5747
5825
|
};
|
|
5748
5826
|
readonly pricing: {
|
|
5749
5827
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -5757,6 +5835,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5757
5835
|
readonly tools: true;
|
|
5758
5836
|
readonly reasoning: true;
|
|
5759
5837
|
readonly webSearch: true;
|
|
5838
|
+
readonly jsonOutput: true;
|
|
5839
|
+
readonly structuredOutputs: true;
|
|
5760
5840
|
};
|
|
5761
5841
|
};
|
|
5762
5842
|
readonly "openai/gpt-5.4-pro": {
|
|
@@ -5780,6 +5860,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5780
5860
|
readonly tools: true;
|
|
5781
5861
|
readonly reasoning: true;
|
|
5782
5862
|
readonly webSearch: true;
|
|
5863
|
+
readonly jsonOutput: true;
|
|
5864
|
+
readonly structuredOutputs: true;
|
|
5783
5865
|
};
|
|
5784
5866
|
};
|
|
5785
5867
|
readonly "azure/gpt-5.4-pro": {
|
|
@@ -5803,6 +5885,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5803
5885
|
readonly tools: true;
|
|
5804
5886
|
readonly reasoning: true;
|
|
5805
5887
|
readonly webSearch: true;
|
|
5888
|
+
readonly jsonOutput: true;
|
|
5889
|
+
readonly structuredOutputs: true;
|
|
5806
5890
|
};
|
|
5807
5891
|
};
|
|
5808
5892
|
readonly "google-ai-studio/gemini-2.5-pro": {
|
|
@@ -5826,6 +5910,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5826
5910
|
readonly tools: true;
|
|
5827
5911
|
readonly reasoning: true;
|
|
5828
5912
|
readonly webSearch: true;
|
|
5913
|
+
readonly jsonOutput: true;
|
|
5914
|
+
readonly structuredOutputs: true;
|
|
5829
5915
|
};
|
|
5830
5916
|
};
|
|
5831
5917
|
readonly "google-vertex/gemini-2.5-pro": {
|
|
@@ -5849,6 +5935,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5849
5935
|
readonly tools: true;
|
|
5850
5936
|
readonly reasoning: true;
|
|
5851
5937
|
readonly webSearch: true;
|
|
5938
|
+
readonly jsonOutput: true;
|
|
5939
|
+
readonly structuredOutputs: true;
|
|
5852
5940
|
};
|
|
5853
5941
|
};
|
|
5854
5942
|
readonly "google-ai-studio/gemini-2.5-flash": {
|
|
@@ -5872,6 +5960,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5872
5960
|
readonly tools: true;
|
|
5873
5961
|
readonly reasoning: true;
|
|
5874
5962
|
readonly webSearch: true;
|
|
5963
|
+
readonly jsonOutput: true;
|
|
5964
|
+
readonly structuredOutputs: true;
|
|
5875
5965
|
};
|
|
5876
5966
|
};
|
|
5877
5967
|
readonly "google-vertex/gemini-2.5-flash": {
|
|
@@ -5895,6 +5985,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5895
5985
|
readonly tools: true;
|
|
5896
5986
|
readonly reasoning: true;
|
|
5897
5987
|
readonly webSearch: true;
|
|
5988
|
+
readonly jsonOutput: true;
|
|
5989
|
+
readonly structuredOutputs: true;
|
|
5898
5990
|
};
|
|
5899
5991
|
};
|
|
5900
5992
|
readonly "google-ai-studio/gemini-2.5-flash-lite": {
|
|
@@ -5918,6 +6010,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5918
6010
|
readonly tools: true;
|
|
5919
6011
|
readonly reasoning: false;
|
|
5920
6012
|
readonly webSearch: false;
|
|
6013
|
+
readonly jsonOutput: true;
|
|
6014
|
+
readonly structuredOutputs: true;
|
|
5921
6015
|
};
|
|
5922
6016
|
};
|
|
5923
6017
|
readonly "google-vertex/gemini-2.5-flash-lite": {
|
|
@@ -5941,6 +6035,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5941
6035
|
readonly tools: true;
|
|
5942
6036
|
readonly reasoning: false;
|
|
5943
6037
|
readonly webSearch: false;
|
|
6038
|
+
readonly jsonOutput: true;
|
|
6039
|
+
readonly structuredOutputs: true;
|
|
5944
6040
|
};
|
|
5945
6041
|
};
|
|
5946
6042
|
readonly "google-ai-studio/gemini-3.1-pro-preview": {
|
|
@@ -5964,6 +6060,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5964
6060
|
readonly tools: true;
|
|
5965
6061
|
readonly reasoning: true;
|
|
5966
6062
|
readonly webSearch: true;
|
|
6063
|
+
readonly jsonOutput: true;
|
|
6064
|
+
readonly structuredOutputs: true;
|
|
5967
6065
|
};
|
|
5968
6066
|
};
|
|
5969
6067
|
readonly "google-vertex/gemini-3.1-pro-preview": {
|
|
@@ -5987,6 +6085,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
5987
6085
|
readonly tools: true;
|
|
5988
6086
|
readonly reasoning: true;
|
|
5989
6087
|
readonly webSearch: true;
|
|
6088
|
+
readonly jsonOutput: true;
|
|
6089
|
+
readonly structuredOutputs: true;
|
|
5990
6090
|
};
|
|
5991
6091
|
};
|
|
5992
6092
|
readonly "google-ai-studio/gemini-3-flash-preview": {
|
|
@@ -6010,6 +6110,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
6010
6110
|
readonly tools: true;
|
|
6011
6111
|
readonly reasoning: true;
|
|
6012
6112
|
readonly webSearch: true;
|
|
6113
|
+
readonly jsonOutput: true;
|
|
6114
|
+
readonly structuredOutputs: true;
|
|
6013
6115
|
};
|
|
6014
6116
|
};
|
|
6015
6117
|
readonly "google-vertex/gemini-3-flash-preview": {
|
|
@@ -6033,6 +6135,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
6033
6135
|
readonly tools: true;
|
|
6034
6136
|
readonly reasoning: true;
|
|
6035
6137
|
readonly webSearch: true;
|
|
6138
|
+
readonly jsonOutput: true;
|
|
6139
|
+
readonly structuredOutputs: true;
|
|
6036
6140
|
};
|
|
6037
6141
|
};
|
|
6038
6142
|
readonly "google-ai-studio/gemini-2.5-flash-image": {
|
|
@@ -6056,6 +6160,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
6056
6160
|
readonly tools: false;
|
|
6057
6161
|
readonly reasoning: false;
|
|
6058
6162
|
readonly webSearch: false;
|
|
6163
|
+
readonly jsonOutput: true;
|
|
6164
|
+
readonly structuredOutputs: true;
|
|
6059
6165
|
};
|
|
6060
6166
|
};
|
|
6061
6167
|
readonly "google-vertex/gemini-2.5-flash-image": {
|
|
@@ -6079,6 +6185,8 @@ export declare const LLMAPI_AVAILABLE_MODELS: {
|
|
|
6079
6185
|
readonly tools: false;
|
|
6080
6186
|
readonly reasoning: false;
|
|
6081
6187
|
readonly webSearch: false;
|
|
6188
|
+
readonly jsonOutput: true;
|
|
6189
|
+
readonly structuredOutputs: true;
|
|
6082
6190
|
};
|
|
6083
6191
|
};
|
|
6084
6192
|
};
|
|
@@ -6442,6 +6550,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
6442
6550
|
};
|
|
6443
6551
|
readonly config: {
|
|
6444
6552
|
readonly temperature: 1;
|
|
6553
|
+
readonly reasoning_effort: "minimal";
|
|
6554
|
+
readonly verbosity: "medium";
|
|
6445
6555
|
};
|
|
6446
6556
|
readonly pricing: {
|
|
6447
6557
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -6467,6 +6577,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
6467
6577
|
};
|
|
6468
6578
|
readonly config: {
|
|
6469
6579
|
readonly temperature: 1;
|
|
6580
|
+
readonly reasoning_effort: "minimal";
|
|
6581
|
+
readonly verbosity: "medium";
|
|
6470
6582
|
};
|
|
6471
6583
|
readonly pricing: {
|
|
6472
6584
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -6492,6 +6604,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
6492
6604
|
};
|
|
6493
6605
|
readonly config: {
|
|
6494
6606
|
readonly temperature: 1;
|
|
6607
|
+
readonly reasoning_effort: "minimal";
|
|
6608
|
+
readonly verbosity: "medium";
|
|
6495
6609
|
};
|
|
6496
6610
|
readonly pricing: {
|
|
6497
6611
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -6567,6 +6681,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
6567
6681
|
};
|
|
6568
6682
|
readonly config: {
|
|
6569
6683
|
readonly temperature: 1;
|
|
6684
|
+
readonly reasoning_effort: "none";
|
|
6685
|
+
readonly verbosity: "medium";
|
|
6570
6686
|
};
|
|
6571
6687
|
readonly pricing: {
|
|
6572
6688
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -6667,6 +6783,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
6667
6783
|
};
|
|
6668
6784
|
readonly config: {
|
|
6669
6785
|
readonly temperature: 1;
|
|
6786
|
+
readonly reasoning_effort: "none";
|
|
6787
|
+
readonly verbosity: "medium";
|
|
6670
6788
|
};
|
|
6671
6789
|
readonly pricing: {
|
|
6672
6790
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -6767,6 +6885,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
6767
6885
|
};
|
|
6768
6886
|
readonly config: {
|
|
6769
6887
|
readonly temperature: 1;
|
|
6888
|
+
readonly reasoning_effort: "none";
|
|
6889
|
+
readonly verbosity: "medium";
|
|
6770
6890
|
};
|
|
6771
6891
|
readonly pricing: {
|
|
6772
6892
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -11342,6 +11462,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11342
11462
|
};
|
|
11343
11463
|
readonly config: {
|
|
11344
11464
|
readonly temperature: 1;
|
|
11465
|
+
readonly reasoning_effort: "minimal";
|
|
11466
|
+
readonly verbosity: "medium";
|
|
11345
11467
|
};
|
|
11346
11468
|
readonly pricing: {
|
|
11347
11469
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -11355,6 +11477,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11355
11477
|
readonly tools: true;
|
|
11356
11478
|
readonly reasoning: true;
|
|
11357
11479
|
readonly webSearch: true;
|
|
11480
|
+
readonly jsonOutput: true;
|
|
11481
|
+
readonly structuredOutputs: true;
|
|
11358
11482
|
};
|
|
11359
11483
|
};
|
|
11360
11484
|
readonly "azure/gpt-5": {
|
|
@@ -11365,6 +11489,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11365
11489
|
};
|
|
11366
11490
|
readonly config: {
|
|
11367
11491
|
readonly temperature: 1;
|
|
11492
|
+
readonly reasoning_effort: "minimal";
|
|
11493
|
+
readonly verbosity: "medium";
|
|
11368
11494
|
};
|
|
11369
11495
|
readonly pricing: {
|
|
11370
11496
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -11378,6 +11504,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11378
11504
|
readonly tools: true;
|
|
11379
11505
|
readonly reasoning: true;
|
|
11380
11506
|
readonly webSearch: true;
|
|
11507
|
+
readonly jsonOutput: true;
|
|
11508
|
+
readonly structuredOutputs: true;
|
|
11381
11509
|
};
|
|
11382
11510
|
};
|
|
11383
11511
|
readonly "openai/gpt-5-mini": {
|
|
@@ -11388,6 +11516,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11388
11516
|
};
|
|
11389
11517
|
readonly config: {
|
|
11390
11518
|
readonly temperature: 1;
|
|
11519
|
+
readonly reasoning_effort: "minimal";
|
|
11520
|
+
readonly verbosity: "medium";
|
|
11391
11521
|
};
|
|
11392
11522
|
readonly pricing: {
|
|
11393
11523
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -11401,6 +11531,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11401
11531
|
readonly tools: true;
|
|
11402
11532
|
readonly reasoning: true;
|
|
11403
11533
|
readonly webSearch: true;
|
|
11534
|
+
readonly jsonOutput: true;
|
|
11535
|
+
readonly structuredOutputs: true;
|
|
11404
11536
|
};
|
|
11405
11537
|
};
|
|
11406
11538
|
readonly "azure/gpt-5-mini": {
|
|
@@ -11411,6 +11543,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11411
11543
|
};
|
|
11412
11544
|
readonly config: {
|
|
11413
11545
|
readonly temperature: 1;
|
|
11546
|
+
readonly reasoning_effort: "minimal";
|
|
11547
|
+
readonly verbosity: "medium";
|
|
11414
11548
|
};
|
|
11415
11549
|
readonly pricing: {
|
|
11416
11550
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -11424,6 +11558,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11424
11558
|
readonly tools: true;
|
|
11425
11559
|
readonly reasoning: true;
|
|
11426
11560
|
readonly webSearch: true;
|
|
11561
|
+
readonly jsonOutput: true;
|
|
11562
|
+
readonly structuredOutputs: true;
|
|
11427
11563
|
};
|
|
11428
11564
|
};
|
|
11429
11565
|
readonly "openai/gpt-5-nano": {
|
|
@@ -11434,6 +11570,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11434
11570
|
};
|
|
11435
11571
|
readonly config: {
|
|
11436
11572
|
readonly temperature: 1;
|
|
11573
|
+
readonly reasoning_effort: "minimal";
|
|
11574
|
+
readonly verbosity: "medium";
|
|
11437
11575
|
};
|
|
11438
11576
|
readonly pricing: {
|
|
11439
11577
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -11447,6 +11585,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11447
11585
|
readonly tools: true;
|
|
11448
11586
|
readonly reasoning: true;
|
|
11449
11587
|
readonly webSearch: true;
|
|
11588
|
+
readonly jsonOutput: true;
|
|
11589
|
+
readonly structuredOutputs: true;
|
|
11450
11590
|
};
|
|
11451
11591
|
};
|
|
11452
11592
|
readonly "azure/gpt-5-nano": {
|
|
@@ -11457,6 +11597,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11457
11597
|
};
|
|
11458
11598
|
readonly config: {
|
|
11459
11599
|
readonly temperature: 1;
|
|
11600
|
+
readonly reasoning_effort: "minimal";
|
|
11601
|
+
readonly verbosity: "medium";
|
|
11460
11602
|
};
|
|
11461
11603
|
readonly pricing: {
|
|
11462
11604
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -11470,6 +11612,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11470
11612
|
readonly tools: true;
|
|
11471
11613
|
readonly reasoning: true;
|
|
11472
11614
|
readonly webSearch: true;
|
|
11615
|
+
readonly jsonOutput: true;
|
|
11616
|
+
readonly structuredOutputs: true;
|
|
11473
11617
|
};
|
|
11474
11618
|
};
|
|
11475
11619
|
readonly "openai/gpt-5-pro": {
|
|
@@ -11493,6 +11637,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11493
11637
|
readonly tools: true;
|
|
11494
11638
|
readonly reasoning: true;
|
|
11495
11639
|
readonly webSearch: true;
|
|
11640
|
+
readonly jsonOutput: true;
|
|
11641
|
+
readonly structuredOutputs: true;
|
|
11496
11642
|
};
|
|
11497
11643
|
};
|
|
11498
11644
|
readonly "azure/gpt-5-pro": {
|
|
@@ -11516,6 +11662,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11516
11662
|
readonly tools: true;
|
|
11517
11663
|
readonly reasoning: true;
|
|
11518
11664
|
readonly webSearch: true;
|
|
11665
|
+
readonly jsonOutput: true;
|
|
11666
|
+
readonly structuredOutputs: true;
|
|
11519
11667
|
};
|
|
11520
11668
|
};
|
|
11521
11669
|
readonly "openai/gpt-5.1": {
|
|
@@ -11526,6 +11674,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11526
11674
|
};
|
|
11527
11675
|
readonly config: {
|
|
11528
11676
|
readonly temperature: 1;
|
|
11677
|
+
readonly reasoning_effort: "none";
|
|
11678
|
+
readonly verbosity: "medium";
|
|
11529
11679
|
};
|
|
11530
11680
|
readonly pricing: {
|
|
11531
11681
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -11539,6 +11689,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11539
11689
|
readonly tools: true;
|
|
11540
11690
|
readonly reasoning: true;
|
|
11541
11691
|
readonly webSearch: true;
|
|
11692
|
+
readonly jsonOutput: true;
|
|
11693
|
+
readonly structuredOutputs: true;
|
|
11542
11694
|
};
|
|
11543
11695
|
};
|
|
11544
11696
|
readonly "azure/gpt-5.1": {
|
|
@@ -11549,6 +11701,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11549
11701
|
};
|
|
11550
11702
|
readonly config: {
|
|
11551
11703
|
readonly temperature: 1;
|
|
11704
|
+
readonly reasoning_effort: "none";
|
|
11705
|
+
readonly verbosity: "medium";
|
|
11552
11706
|
};
|
|
11553
11707
|
readonly pricing: {
|
|
11554
11708
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -11562,6 +11716,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11562
11716
|
readonly tools: true;
|
|
11563
11717
|
readonly reasoning: true;
|
|
11564
11718
|
readonly webSearch: true;
|
|
11719
|
+
readonly jsonOutput: true;
|
|
11720
|
+
readonly structuredOutputs: true;
|
|
11565
11721
|
};
|
|
11566
11722
|
};
|
|
11567
11723
|
readonly "openai/gpt-5.1-codex": {
|
|
@@ -11585,6 +11741,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11585
11741
|
readonly tools: true;
|
|
11586
11742
|
readonly reasoning: true;
|
|
11587
11743
|
readonly webSearch: true;
|
|
11744
|
+
readonly jsonOutput: true;
|
|
11745
|
+
readonly structuredOutputs: true;
|
|
11588
11746
|
};
|
|
11589
11747
|
};
|
|
11590
11748
|
readonly "azure/gpt-5.1-codex": {
|
|
@@ -11608,6 +11766,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11608
11766
|
readonly tools: true;
|
|
11609
11767
|
readonly reasoning: true;
|
|
11610
11768
|
readonly webSearch: true;
|
|
11769
|
+
readonly jsonOutput: true;
|
|
11770
|
+
readonly structuredOutputs: true;
|
|
11611
11771
|
};
|
|
11612
11772
|
};
|
|
11613
11773
|
readonly "openai/gpt-5.1-codex-mini": {
|
|
@@ -11631,6 +11791,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11631
11791
|
readonly tools: true;
|
|
11632
11792
|
readonly reasoning: true;
|
|
11633
11793
|
readonly webSearch: true;
|
|
11794
|
+
readonly jsonOutput: true;
|
|
11795
|
+
readonly structuredOutputs: true;
|
|
11634
11796
|
};
|
|
11635
11797
|
};
|
|
11636
11798
|
readonly "azure/gpt-5.1-codex-mini": {
|
|
@@ -11654,6 +11816,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11654
11816
|
readonly tools: true;
|
|
11655
11817
|
readonly reasoning: true;
|
|
11656
11818
|
readonly webSearch: true;
|
|
11819
|
+
readonly jsonOutput: true;
|
|
11820
|
+
readonly structuredOutputs: true;
|
|
11657
11821
|
};
|
|
11658
11822
|
};
|
|
11659
11823
|
readonly "openai/gpt-5.2": {
|
|
@@ -11664,6 +11828,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11664
11828
|
};
|
|
11665
11829
|
readonly config: {
|
|
11666
11830
|
readonly temperature: 1;
|
|
11831
|
+
readonly reasoning_effort: "none";
|
|
11832
|
+
readonly verbosity: "medium";
|
|
11667
11833
|
};
|
|
11668
11834
|
readonly pricing: {
|
|
11669
11835
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -11677,6 +11843,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11677
11843
|
readonly tools: true;
|
|
11678
11844
|
readonly reasoning: true;
|
|
11679
11845
|
readonly webSearch: true;
|
|
11846
|
+
readonly jsonOutput: true;
|
|
11847
|
+
readonly structuredOutputs: true;
|
|
11680
11848
|
};
|
|
11681
11849
|
};
|
|
11682
11850
|
readonly "azure/gpt-5.2": {
|
|
@@ -11687,6 +11855,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11687
11855
|
};
|
|
11688
11856
|
readonly config: {
|
|
11689
11857
|
readonly temperature: 1;
|
|
11858
|
+
readonly reasoning_effort: "none";
|
|
11859
|
+
readonly verbosity: "medium";
|
|
11690
11860
|
};
|
|
11691
11861
|
readonly pricing: {
|
|
11692
11862
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -11700,6 +11870,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11700
11870
|
readonly tools: true;
|
|
11701
11871
|
readonly reasoning: true;
|
|
11702
11872
|
readonly webSearch: true;
|
|
11873
|
+
readonly jsonOutput: true;
|
|
11874
|
+
readonly structuredOutputs: true;
|
|
11703
11875
|
};
|
|
11704
11876
|
};
|
|
11705
11877
|
readonly "openai/gpt-5.2-codex": {
|
|
@@ -11723,6 +11895,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11723
11895
|
readonly tools: true;
|
|
11724
11896
|
readonly reasoning: true;
|
|
11725
11897
|
readonly webSearch: true;
|
|
11898
|
+
readonly jsonOutput: true;
|
|
11899
|
+
readonly structuredOutputs: true;
|
|
11726
11900
|
};
|
|
11727
11901
|
};
|
|
11728
11902
|
readonly "azure/gpt-5.2-codex": {
|
|
@@ -11746,6 +11920,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11746
11920
|
readonly tools: true;
|
|
11747
11921
|
readonly reasoning: true;
|
|
11748
11922
|
readonly webSearch: true;
|
|
11923
|
+
readonly jsonOutput: true;
|
|
11924
|
+
readonly structuredOutputs: true;
|
|
11749
11925
|
};
|
|
11750
11926
|
};
|
|
11751
11927
|
readonly "openai/gpt-5.3-codex": {
|
|
@@ -11769,6 +11945,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11769
11945
|
readonly tools: true;
|
|
11770
11946
|
readonly reasoning: true;
|
|
11771
11947
|
readonly webSearch: true;
|
|
11948
|
+
readonly jsonOutput: true;
|
|
11949
|
+
readonly structuredOutputs: true;
|
|
11772
11950
|
};
|
|
11773
11951
|
};
|
|
11774
11952
|
readonly "azure/gpt-5.3-codex": {
|
|
@@ -11792,6 +11970,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11792
11970
|
readonly tools: true;
|
|
11793
11971
|
readonly reasoning: true;
|
|
11794
11972
|
readonly webSearch: true;
|
|
11973
|
+
readonly jsonOutput: true;
|
|
11974
|
+
readonly structuredOutputs: true;
|
|
11795
11975
|
};
|
|
11796
11976
|
};
|
|
11797
11977
|
readonly "openai/gpt-5.4": {
|
|
@@ -11802,6 +11982,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11802
11982
|
};
|
|
11803
11983
|
readonly config: {
|
|
11804
11984
|
readonly temperature: 1;
|
|
11985
|
+
readonly reasoning_effort: "none";
|
|
11986
|
+
readonly verbosity: "medium";
|
|
11805
11987
|
};
|
|
11806
11988
|
readonly pricing: {
|
|
11807
11989
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -11815,6 +11997,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11815
11997
|
readonly tools: true;
|
|
11816
11998
|
readonly reasoning: true;
|
|
11817
11999
|
readonly webSearch: true;
|
|
12000
|
+
readonly jsonOutput: true;
|
|
12001
|
+
readonly structuredOutputs: true;
|
|
11818
12002
|
};
|
|
11819
12003
|
};
|
|
11820
12004
|
readonly "azure/gpt-5.4": {
|
|
@@ -11825,6 +12009,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11825
12009
|
};
|
|
11826
12010
|
readonly config: {
|
|
11827
12011
|
readonly temperature: 1;
|
|
12012
|
+
readonly reasoning_effort: "none";
|
|
12013
|
+
readonly verbosity: "medium";
|
|
11828
12014
|
};
|
|
11829
12015
|
readonly pricing: {
|
|
11830
12016
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -11838,6 +12024,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11838
12024
|
readonly tools: true;
|
|
11839
12025
|
readonly reasoning: true;
|
|
11840
12026
|
readonly webSearch: true;
|
|
12027
|
+
readonly jsonOutput: true;
|
|
12028
|
+
readonly structuredOutputs: true;
|
|
11841
12029
|
};
|
|
11842
12030
|
};
|
|
11843
12031
|
readonly "openai/gpt-5.4-pro": {
|
|
@@ -11861,6 +12049,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11861
12049
|
readonly tools: true;
|
|
11862
12050
|
readonly reasoning: true;
|
|
11863
12051
|
readonly webSearch: true;
|
|
12052
|
+
readonly jsonOutput: true;
|
|
12053
|
+
readonly structuredOutputs: true;
|
|
11864
12054
|
};
|
|
11865
12055
|
};
|
|
11866
12056
|
readonly "azure/gpt-5.4-pro": {
|
|
@@ -11884,6 +12074,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11884
12074
|
readonly tools: true;
|
|
11885
12075
|
readonly reasoning: true;
|
|
11886
12076
|
readonly webSearch: true;
|
|
12077
|
+
readonly jsonOutput: true;
|
|
12078
|
+
readonly structuredOutputs: true;
|
|
11887
12079
|
};
|
|
11888
12080
|
};
|
|
11889
12081
|
readonly "google-ai-studio/gemini-2.5-pro": {
|
|
@@ -11907,6 +12099,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11907
12099
|
readonly tools: true;
|
|
11908
12100
|
readonly reasoning: true;
|
|
11909
12101
|
readonly webSearch: true;
|
|
12102
|
+
readonly jsonOutput: true;
|
|
12103
|
+
readonly structuredOutputs: true;
|
|
11910
12104
|
};
|
|
11911
12105
|
};
|
|
11912
12106
|
readonly "google-vertex/gemini-2.5-pro": {
|
|
@@ -11930,6 +12124,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11930
12124
|
readonly tools: true;
|
|
11931
12125
|
readonly reasoning: true;
|
|
11932
12126
|
readonly webSearch: true;
|
|
12127
|
+
readonly jsonOutput: true;
|
|
12128
|
+
readonly structuredOutputs: true;
|
|
11933
12129
|
};
|
|
11934
12130
|
};
|
|
11935
12131
|
readonly "google-ai-studio/gemini-2.5-flash": {
|
|
@@ -11953,6 +12149,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11953
12149
|
readonly tools: true;
|
|
11954
12150
|
readonly reasoning: true;
|
|
11955
12151
|
readonly webSearch: true;
|
|
12152
|
+
readonly jsonOutput: true;
|
|
12153
|
+
readonly structuredOutputs: true;
|
|
11956
12154
|
};
|
|
11957
12155
|
};
|
|
11958
12156
|
readonly "google-vertex/gemini-2.5-flash": {
|
|
@@ -11976,6 +12174,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11976
12174
|
readonly tools: true;
|
|
11977
12175
|
readonly reasoning: true;
|
|
11978
12176
|
readonly webSearch: true;
|
|
12177
|
+
readonly jsonOutput: true;
|
|
12178
|
+
readonly structuredOutputs: true;
|
|
11979
12179
|
};
|
|
11980
12180
|
};
|
|
11981
12181
|
readonly "google-ai-studio/gemini-2.5-flash-lite": {
|
|
@@ -11999,6 +12199,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
11999
12199
|
readonly tools: true;
|
|
12000
12200
|
readonly reasoning: false;
|
|
12001
12201
|
readonly webSearch: false;
|
|
12202
|
+
readonly jsonOutput: true;
|
|
12203
|
+
readonly structuredOutputs: true;
|
|
12002
12204
|
};
|
|
12003
12205
|
};
|
|
12004
12206
|
readonly "google-vertex/gemini-2.5-flash-lite": {
|
|
@@ -12022,6 +12224,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
12022
12224
|
readonly tools: true;
|
|
12023
12225
|
readonly reasoning: false;
|
|
12024
12226
|
readonly webSearch: false;
|
|
12227
|
+
readonly jsonOutput: true;
|
|
12228
|
+
readonly structuredOutputs: true;
|
|
12025
12229
|
};
|
|
12026
12230
|
};
|
|
12027
12231
|
readonly "google-ai-studio/gemini-3.1-pro-preview": {
|
|
@@ -12045,6 +12249,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
12045
12249
|
readonly tools: true;
|
|
12046
12250
|
readonly reasoning: true;
|
|
12047
12251
|
readonly webSearch: true;
|
|
12252
|
+
readonly jsonOutput: true;
|
|
12253
|
+
readonly structuredOutputs: true;
|
|
12048
12254
|
};
|
|
12049
12255
|
};
|
|
12050
12256
|
readonly "google-vertex/gemini-3.1-pro-preview": {
|
|
@@ -12068,6 +12274,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
12068
12274
|
readonly tools: true;
|
|
12069
12275
|
readonly reasoning: true;
|
|
12070
12276
|
readonly webSearch: true;
|
|
12277
|
+
readonly jsonOutput: true;
|
|
12278
|
+
readonly structuredOutputs: true;
|
|
12071
12279
|
};
|
|
12072
12280
|
};
|
|
12073
12281
|
readonly "google-ai-studio/gemini-3-flash-preview": {
|
|
@@ -12091,6 +12299,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
12091
12299
|
readonly tools: true;
|
|
12092
12300
|
readonly reasoning: true;
|
|
12093
12301
|
readonly webSearch: true;
|
|
12302
|
+
readonly jsonOutput: true;
|
|
12303
|
+
readonly structuredOutputs: true;
|
|
12094
12304
|
};
|
|
12095
12305
|
};
|
|
12096
12306
|
readonly "google-vertex/gemini-3-flash-preview": {
|
|
@@ -12114,6 +12324,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
12114
12324
|
readonly tools: true;
|
|
12115
12325
|
readonly reasoning: true;
|
|
12116
12326
|
readonly webSearch: true;
|
|
12327
|
+
readonly jsonOutput: true;
|
|
12328
|
+
readonly structuredOutputs: true;
|
|
12117
12329
|
};
|
|
12118
12330
|
};
|
|
12119
12331
|
readonly "google-ai-studio/gemini-2.5-flash-image": {
|
|
@@ -12137,6 +12349,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
12137
12349
|
readonly tools: false;
|
|
12138
12350
|
readonly reasoning: false;
|
|
12139
12351
|
readonly webSearch: false;
|
|
12352
|
+
readonly jsonOutput: true;
|
|
12353
|
+
readonly structuredOutputs: true;
|
|
12140
12354
|
};
|
|
12141
12355
|
};
|
|
12142
12356
|
readonly "google-vertex/gemini-2.5-flash-image": {
|
|
@@ -12160,6 +12374,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
12160
12374
|
readonly tools: false;
|
|
12161
12375
|
readonly reasoning: false;
|
|
12162
12376
|
readonly webSearch: false;
|
|
12377
|
+
readonly jsonOutput: true;
|
|
12378
|
+
readonly structuredOutputs: true;
|
|
12163
12379
|
};
|
|
12164
12380
|
};
|
|
12165
12381
|
};
|
|
@@ -12522,6 +12738,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
12522
12738
|
};
|
|
12523
12739
|
readonly config: {
|
|
12524
12740
|
readonly temperature: 1;
|
|
12741
|
+
readonly reasoning_effort: "minimal";
|
|
12742
|
+
readonly verbosity: "medium";
|
|
12525
12743
|
};
|
|
12526
12744
|
readonly pricing: {
|
|
12527
12745
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -12547,6 +12765,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
12547
12765
|
};
|
|
12548
12766
|
readonly config: {
|
|
12549
12767
|
readonly temperature: 1;
|
|
12768
|
+
readonly reasoning_effort: "minimal";
|
|
12769
|
+
readonly verbosity: "medium";
|
|
12550
12770
|
};
|
|
12551
12771
|
readonly pricing: {
|
|
12552
12772
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -12572,6 +12792,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
12572
12792
|
};
|
|
12573
12793
|
readonly config: {
|
|
12574
12794
|
readonly temperature: 1;
|
|
12795
|
+
readonly reasoning_effort: "minimal";
|
|
12796
|
+
readonly verbosity: "medium";
|
|
12575
12797
|
};
|
|
12576
12798
|
readonly pricing: {
|
|
12577
12799
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -12647,6 +12869,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
12647
12869
|
};
|
|
12648
12870
|
readonly config: {
|
|
12649
12871
|
readonly temperature: 1;
|
|
12872
|
+
readonly reasoning_effort: "none";
|
|
12873
|
+
readonly verbosity: "medium";
|
|
12650
12874
|
};
|
|
12651
12875
|
readonly pricing: {
|
|
12652
12876
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -12747,6 +12971,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
12747
12971
|
};
|
|
12748
12972
|
readonly config: {
|
|
12749
12973
|
readonly temperature: 1;
|
|
12974
|
+
readonly reasoning_effort: "none";
|
|
12975
|
+
readonly verbosity: "medium";
|
|
12750
12976
|
};
|
|
12751
12977
|
readonly pricing: {
|
|
12752
12978
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -12847,6 +13073,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
12847
13073
|
};
|
|
12848
13074
|
readonly config: {
|
|
12849
13075
|
readonly temperature: 1;
|
|
13076
|
+
readonly reasoning_effort: "none";
|
|
13077
|
+
readonly verbosity: "medium";
|
|
12850
13078
|
};
|
|
12851
13079
|
readonly pricing: {
|
|
12852
13080
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -17422,6 +17650,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17422
17650
|
};
|
|
17423
17651
|
readonly config: {
|
|
17424
17652
|
readonly temperature: 1;
|
|
17653
|
+
readonly reasoning_effort: "minimal";
|
|
17654
|
+
readonly verbosity: "medium";
|
|
17425
17655
|
};
|
|
17426
17656
|
readonly pricing: {
|
|
17427
17657
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -17435,6 +17665,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17435
17665
|
readonly tools: true;
|
|
17436
17666
|
readonly reasoning: true;
|
|
17437
17667
|
readonly webSearch: true;
|
|
17668
|
+
readonly jsonOutput: true;
|
|
17669
|
+
readonly structuredOutputs: true;
|
|
17438
17670
|
};
|
|
17439
17671
|
};
|
|
17440
17672
|
readonly "azure/gpt-5": {
|
|
@@ -17445,6 +17677,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17445
17677
|
};
|
|
17446
17678
|
readonly config: {
|
|
17447
17679
|
readonly temperature: 1;
|
|
17680
|
+
readonly reasoning_effort: "minimal";
|
|
17681
|
+
readonly verbosity: "medium";
|
|
17448
17682
|
};
|
|
17449
17683
|
readonly pricing: {
|
|
17450
17684
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -17458,6 +17692,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17458
17692
|
readonly tools: true;
|
|
17459
17693
|
readonly reasoning: true;
|
|
17460
17694
|
readonly webSearch: true;
|
|
17695
|
+
readonly jsonOutput: true;
|
|
17696
|
+
readonly structuredOutputs: true;
|
|
17461
17697
|
};
|
|
17462
17698
|
};
|
|
17463
17699
|
readonly "openai/gpt-5-mini": {
|
|
@@ -17468,6 +17704,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17468
17704
|
};
|
|
17469
17705
|
readonly config: {
|
|
17470
17706
|
readonly temperature: 1;
|
|
17707
|
+
readonly reasoning_effort: "minimal";
|
|
17708
|
+
readonly verbosity: "medium";
|
|
17471
17709
|
};
|
|
17472
17710
|
readonly pricing: {
|
|
17473
17711
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -17481,6 +17719,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17481
17719
|
readonly tools: true;
|
|
17482
17720
|
readonly reasoning: true;
|
|
17483
17721
|
readonly webSearch: true;
|
|
17722
|
+
readonly jsonOutput: true;
|
|
17723
|
+
readonly structuredOutputs: true;
|
|
17484
17724
|
};
|
|
17485
17725
|
};
|
|
17486
17726
|
readonly "azure/gpt-5-mini": {
|
|
@@ -17491,6 +17731,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17491
17731
|
};
|
|
17492
17732
|
readonly config: {
|
|
17493
17733
|
readonly temperature: 1;
|
|
17734
|
+
readonly reasoning_effort: "minimal";
|
|
17735
|
+
readonly verbosity: "medium";
|
|
17494
17736
|
};
|
|
17495
17737
|
readonly pricing: {
|
|
17496
17738
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -17504,6 +17746,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17504
17746
|
readonly tools: true;
|
|
17505
17747
|
readonly reasoning: true;
|
|
17506
17748
|
readonly webSearch: true;
|
|
17749
|
+
readonly jsonOutput: true;
|
|
17750
|
+
readonly structuredOutputs: true;
|
|
17507
17751
|
};
|
|
17508
17752
|
};
|
|
17509
17753
|
readonly "openai/gpt-5-nano": {
|
|
@@ -17514,6 +17758,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17514
17758
|
};
|
|
17515
17759
|
readonly config: {
|
|
17516
17760
|
readonly temperature: 1;
|
|
17761
|
+
readonly reasoning_effort: "minimal";
|
|
17762
|
+
readonly verbosity: "medium";
|
|
17517
17763
|
};
|
|
17518
17764
|
readonly pricing: {
|
|
17519
17765
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -17527,6 +17773,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17527
17773
|
readonly tools: true;
|
|
17528
17774
|
readonly reasoning: true;
|
|
17529
17775
|
readonly webSearch: true;
|
|
17776
|
+
readonly jsonOutput: true;
|
|
17777
|
+
readonly structuredOutputs: true;
|
|
17530
17778
|
};
|
|
17531
17779
|
};
|
|
17532
17780
|
readonly "azure/gpt-5-nano": {
|
|
@@ -17537,6 +17785,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17537
17785
|
};
|
|
17538
17786
|
readonly config: {
|
|
17539
17787
|
readonly temperature: 1;
|
|
17788
|
+
readonly reasoning_effort: "minimal";
|
|
17789
|
+
readonly verbosity: "medium";
|
|
17540
17790
|
};
|
|
17541
17791
|
readonly pricing: {
|
|
17542
17792
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -17550,6 +17800,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17550
17800
|
readonly tools: true;
|
|
17551
17801
|
readonly reasoning: true;
|
|
17552
17802
|
readonly webSearch: true;
|
|
17803
|
+
readonly jsonOutput: true;
|
|
17804
|
+
readonly structuredOutputs: true;
|
|
17553
17805
|
};
|
|
17554
17806
|
};
|
|
17555
17807
|
readonly "openai/gpt-5-pro": {
|
|
@@ -17573,6 +17825,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17573
17825
|
readonly tools: true;
|
|
17574
17826
|
readonly reasoning: true;
|
|
17575
17827
|
readonly webSearch: true;
|
|
17828
|
+
readonly jsonOutput: true;
|
|
17829
|
+
readonly structuredOutputs: true;
|
|
17576
17830
|
};
|
|
17577
17831
|
};
|
|
17578
17832
|
readonly "azure/gpt-5-pro": {
|
|
@@ -17596,6 +17850,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17596
17850
|
readonly tools: true;
|
|
17597
17851
|
readonly reasoning: true;
|
|
17598
17852
|
readonly webSearch: true;
|
|
17853
|
+
readonly jsonOutput: true;
|
|
17854
|
+
readonly structuredOutputs: true;
|
|
17599
17855
|
};
|
|
17600
17856
|
};
|
|
17601
17857
|
readonly "openai/gpt-5.1": {
|
|
@@ -17606,6 +17862,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17606
17862
|
};
|
|
17607
17863
|
readonly config: {
|
|
17608
17864
|
readonly temperature: 1;
|
|
17865
|
+
readonly reasoning_effort: "none";
|
|
17866
|
+
readonly verbosity: "medium";
|
|
17609
17867
|
};
|
|
17610
17868
|
readonly pricing: {
|
|
17611
17869
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -17619,6 +17877,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17619
17877
|
readonly tools: true;
|
|
17620
17878
|
readonly reasoning: true;
|
|
17621
17879
|
readonly webSearch: true;
|
|
17880
|
+
readonly jsonOutput: true;
|
|
17881
|
+
readonly structuredOutputs: true;
|
|
17622
17882
|
};
|
|
17623
17883
|
};
|
|
17624
17884
|
readonly "azure/gpt-5.1": {
|
|
@@ -17629,6 +17889,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17629
17889
|
};
|
|
17630
17890
|
readonly config: {
|
|
17631
17891
|
readonly temperature: 1;
|
|
17892
|
+
readonly reasoning_effort: "none";
|
|
17893
|
+
readonly verbosity: "medium";
|
|
17632
17894
|
};
|
|
17633
17895
|
readonly pricing: {
|
|
17634
17896
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -17642,6 +17904,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17642
17904
|
readonly tools: true;
|
|
17643
17905
|
readonly reasoning: true;
|
|
17644
17906
|
readonly webSearch: true;
|
|
17907
|
+
readonly jsonOutput: true;
|
|
17908
|
+
readonly structuredOutputs: true;
|
|
17645
17909
|
};
|
|
17646
17910
|
};
|
|
17647
17911
|
readonly "openai/gpt-5.1-codex": {
|
|
@@ -17665,6 +17929,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17665
17929
|
readonly tools: true;
|
|
17666
17930
|
readonly reasoning: true;
|
|
17667
17931
|
readonly webSearch: true;
|
|
17932
|
+
readonly jsonOutput: true;
|
|
17933
|
+
readonly structuredOutputs: true;
|
|
17668
17934
|
};
|
|
17669
17935
|
};
|
|
17670
17936
|
readonly "azure/gpt-5.1-codex": {
|
|
@@ -17688,6 +17954,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17688
17954
|
readonly tools: true;
|
|
17689
17955
|
readonly reasoning: true;
|
|
17690
17956
|
readonly webSearch: true;
|
|
17957
|
+
readonly jsonOutput: true;
|
|
17958
|
+
readonly structuredOutputs: true;
|
|
17691
17959
|
};
|
|
17692
17960
|
};
|
|
17693
17961
|
readonly "openai/gpt-5.1-codex-mini": {
|
|
@@ -17711,6 +17979,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17711
17979
|
readonly tools: true;
|
|
17712
17980
|
readonly reasoning: true;
|
|
17713
17981
|
readonly webSearch: true;
|
|
17982
|
+
readonly jsonOutput: true;
|
|
17983
|
+
readonly structuredOutputs: true;
|
|
17714
17984
|
};
|
|
17715
17985
|
};
|
|
17716
17986
|
readonly "azure/gpt-5.1-codex-mini": {
|
|
@@ -17734,6 +18004,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17734
18004
|
readonly tools: true;
|
|
17735
18005
|
readonly reasoning: true;
|
|
17736
18006
|
readonly webSearch: true;
|
|
18007
|
+
readonly jsonOutput: true;
|
|
18008
|
+
readonly structuredOutputs: true;
|
|
17737
18009
|
};
|
|
17738
18010
|
};
|
|
17739
18011
|
readonly "openai/gpt-5.2": {
|
|
@@ -17744,6 +18016,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17744
18016
|
};
|
|
17745
18017
|
readonly config: {
|
|
17746
18018
|
readonly temperature: 1;
|
|
18019
|
+
readonly reasoning_effort: "none";
|
|
18020
|
+
readonly verbosity: "medium";
|
|
17747
18021
|
};
|
|
17748
18022
|
readonly pricing: {
|
|
17749
18023
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -17757,6 +18031,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17757
18031
|
readonly tools: true;
|
|
17758
18032
|
readonly reasoning: true;
|
|
17759
18033
|
readonly webSearch: true;
|
|
18034
|
+
readonly jsonOutput: true;
|
|
18035
|
+
readonly structuredOutputs: true;
|
|
17760
18036
|
};
|
|
17761
18037
|
};
|
|
17762
18038
|
readonly "azure/gpt-5.2": {
|
|
@@ -17767,6 +18043,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17767
18043
|
};
|
|
17768
18044
|
readonly config: {
|
|
17769
18045
|
readonly temperature: 1;
|
|
18046
|
+
readonly reasoning_effort: "none";
|
|
18047
|
+
readonly verbosity: "medium";
|
|
17770
18048
|
};
|
|
17771
18049
|
readonly pricing: {
|
|
17772
18050
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -17780,6 +18058,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17780
18058
|
readonly tools: true;
|
|
17781
18059
|
readonly reasoning: true;
|
|
17782
18060
|
readonly webSearch: true;
|
|
18061
|
+
readonly jsonOutput: true;
|
|
18062
|
+
readonly structuredOutputs: true;
|
|
17783
18063
|
};
|
|
17784
18064
|
};
|
|
17785
18065
|
readonly "openai/gpt-5.2-codex": {
|
|
@@ -17803,6 +18083,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17803
18083
|
readonly tools: true;
|
|
17804
18084
|
readonly reasoning: true;
|
|
17805
18085
|
readonly webSearch: true;
|
|
18086
|
+
readonly jsonOutput: true;
|
|
18087
|
+
readonly structuredOutputs: true;
|
|
17806
18088
|
};
|
|
17807
18089
|
};
|
|
17808
18090
|
readonly "azure/gpt-5.2-codex": {
|
|
@@ -17826,6 +18108,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17826
18108
|
readonly tools: true;
|
|
17827
18109
|
readonly reasoning: true;
|
|
17828
18110
|
readonly webSearch: true;
|
|
18111
|
+
readonly jsonOutput: true;
|
|
18112
|
+
readonly structuredOutputs: true;
|
|
17829
18113
|
};
|
|
17830
18114
|
};
|
|
17831
18115
|
readonly "openai/gpt-5.3-codex": {
|
|
@@ -17849,6 +18133,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17849
18133
|
readonly tools: true;
|
|
17850
18134
|
readonly reasoning: true;
|
|
17851
18135
|
readonly webSearch: true;
|
|
18136
|
+
readonly jsonOutput: true;
|
|
18137
|
+
readonly structuredOutputs: true;
|
|
17852
18138
|
};
|
|
17853
18139
|
};
|
|
17854
18140
|
readonly "azure/gpt-5.3-codex": {
|
|
@@ -17872,6 +18158,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17872
18158
|
readonly tools: true;
|
|
17873
18159
|
readonly reasoning: true;
|
|
17874
18160
|
readonly webSearch: true;
|
|
18161
|
+
readonly jsonOutput: true;
|
|
18162
|
+
readonly structuredOutputs: true;
|
|
17875
18163
|
};
|
|
17876
18164
|
};
|
|
17877
18165
|
readonly "openai/gpt-5.4": {
|
|
@@ -17882,6 +18170,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17882
18170
|
};
|
|
17883
18171
|
readonly config: {
|
|
17884
18172
|
readonly temperature: 1;
|
|
18173
|
+
readonly reasoning_effort: "none";
|
|
18174
|
+
readonly verbosity: "medium";
|
|
17885
18175
|
};
|
|
17886
18176
|
readonly pricing: {
|
|
17887
18177
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -17895,6 +18185,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17895
18185
|
readonly tools: true;
|
|
17896
18186
|
readonly reasoning: true;
|
|
17897
18187
|
readonly webSearch: true;
|
|
18188
|
+
readonly jsonOutput: true;
|
|
18189
|
+
readonly structuredOutputs: true;
|
|
17898
18190
|
};
|
|
17899
18191
|
};
|
|
17900
18192
|
readonly "azure/gpt-5.4": {
|
|
@@ -17905,6 +18197,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17905
18197
|
};
|
|
17906
18198
|
readonly config: {
|
|
17907
18199
|
readonly temperature: 1;
|
|
18200
|
+
readonly reasoning_effort: "none";
|
|
18201
|
+
readonly verbosity: "medium";
|
|
17908
18202
|
};
|
|
17909
18203
|
readonly pricing: {
|
|
17910
18204
|
readonly getPriceForTextInput: (tokens: number) => number;
|
|
@@ -17918,6 +18212,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17918
18212
|
readonly tools: true;
|
|
17919
18213
|
readonly reasoning: true;
|
|
17920
18214
|
readonly webSearch: true;
|
|
18215
|
+
readonly jsonOutput: true;
|
|
18216
|
+
readonly structuredOutputs: true;
|
|
17921
18217
|
};
|
|
17922
18218
|
};
|
|
17923
18219
|
readonly "openai/gpt-5.4-pro": {
|
|
@@ -17941,6 +18237,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17941
18237
|
readonly tools: true;
|
|
17942
18238
|
readonly reasoning: true;
|
|
17943
18239
|
readonly webSearch: true;
|
|
18240
|
+
readonly jsonOutput: true;
|
|
18241
|
+
readonly structuredOutputs: true;
|
|
17944
18242
|
};
|
|
17945
18243
|
};
|
|
17946
18244
|
readonly "azure/gpt-5.4-pro": {
|
|
@@ -17964,6 +18262,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17964
18262
|
readonly tools: true;
|
|
17965
18263
|
readonly reasoning: true;
|
|
17966
18264
|
readonly webSearch: true;
|
|
18265
|
+
readonly jsonOutput: true;
|
|
18266
|
+
readonly structuredOutputs: true;
|
|
17967
18267
|
};
|
|
17968
18268
|
};
|
|
17969
18269
|
readonly "google-ai-studio/gemini-2.5-pro": {
|
|
@@ -17987,6 +18287,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
17987
18287
|
readonly tools: true;
|
|
17988
18288
|
readonly reasoning: true;
|
|
17989
18289
|
readonly webSearch: true;
|
|
18290
|
+
readonly jsonOutput: true;
|
|
18291
|
+
readonly structuredOutputs: true;
|
|
17990
18292
|
};
|
|
17991
18293
|
};
|
|
17992
18294
|
readonly "google-vertex/gemini-2.5-pro": {
|
|
@@ -18010,6 +18312,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
18010
18312
|
readonly tools: true;
|
|
18011
18313
|
readonly reasoning: true;
|
|
18012
18314
|
readonly webSearch: true;
|
|
18315
|
+
readonly jsonOutput: true;
|
|
18316
|
+
readonly structuredOutputs: true;
|
|
18013
18317
|
};
|
|
18014
18318
|
};
|
|
18015
18319
|
readonly "google-ai-studio/gemini-2.5-flash": {
|
|
@@ -18033,6 +18337,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
18033
18337
|
readonly tools: true;
|
|
18034
18338
|
readonly reasoning: true;
|
|
18035
18339
|
readonly webSearch: true;
|
|
18340
|
+
readonly jsonOutput: true;
|
|
18341
|
+
readonly structuredOutputs: true;
|
|
18036
18342
|
};
|
|
18037
18343
|
};
|
|
18038
18344
|
readonly "google-vertex/gemini-2.5-flash": {
|
|
@@ -18056,6 +18362,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
18056
18362
|
readonly tools: true;
|
|
18057
18363
|
readonly reasoning: true;
|
|
18058
18364
|
readonly webSearch: true;
|
|
18365
|
+
readonly jsonOutput: true;
|
|
18366
|
+
readonly structuredOutputs: true;
|
|
18059
18367
|
};
|
|
18060
18368
|
};
|
|
18061
18369
|
readonly "google-ai-studio/gemini-2.5-flash-lite": {
|
|
@@ -18079,6 +18387,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
18079
18387
|
readonly tools: true;
|
|
18080
18388
|
readonly reasoning: false;
|
|
18081
18389
|
readonly webSearch: false;
|
|
18390
|
+
readonly jsonOutput: true;
|
|
18391
|
+
readonly structuredOutputs: true;
|
|
18082
18392
|
};
|
|
18083
18393
|
};
|
|
18084
18394
|
readonly "google-vertex/gemini-2.5-flash-lite": {
|
|
@@ -18102,6 +18412,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
18102
18412
|
readonly tools: true;
|
|
18103
18413
|
readonly reasoning: false;
|
|
18104
18414
|
readonly webSearch: false;
|
|
18415
|
+
readonly jsonOutput: true;
|
|
18416
|
+
readonly structuredOutputs: true;
|
|
18105
18417
|
};
|
|
18106
18418
|
};
|
|
18107
18419
|
readonly "google-ai-studio/gemini-3.1-pro-preview": {
|
|
@@ -18125,6 +18437,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
18125
18437
|
readonly tools: true;
|
|
18126
18438
|
readonly reasoning: true;
|
|
18127
18439
|
readonly webSearch: true;
|
|
18440
|
+
readonly jsonOutput: true;
|
|
18441
|
+
readonly structuredOutputs: true;
|
|
18128
18442
|
};
|
|
18129
18443
|
};
|
|
18130
18444
|
readonly "google-vertex/gemini-3.1-pro-preview": {
|
|
@@ -18148,6 +18462,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
18148
18462
|
readonly tools: true;
|
|
18149
18463
|
readonly reasoning: true;
|
|
18150
18464
|
readonly webSearch: true;
|
|
18465
|
+
readonly jsonOutput: true;
|
|
18466
|
+
readonly structuredOutputs: true;
|
|
18151
18467
|
};
|
|
18152
18468
|
};
|
|
18153
18469
|
readonly "google-ai-studio/gemini-3-flash-preview": {
|
|
@@ -18171,6 +18487,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
18171
18487
|
readonly tools: true;
|
|
18172
18488
|
readonly reasoning: true;
|
|
18173
18489
|
readonly webSearch: true;
|
|
18490
|
+
readonly jsonOutput: true;
|
|
18491
|
+
readonly structuredOutputs: true;
|
|
18174
18492
|
};
|
|
18175
18493
|
};
|
|
18176
18494
|
readonly "google-vertex/gemini-3-flash-preview": {
|
|
@@ -18194,6 +18512,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
18194
18512
|
readonly tools: true;
|
|
18195
18513
|
readonly reasoning: true;
|
|
18196
18514
|
readonly webSearch: true;
|
|
18515
|
+
readonly jsonOutput: true;
|
|
18516
|
+
readonly structuredOutputs: true;
|
|
18197
18517
|
};
|
|
18198
18518
|
};
|
|
18199
18519
|
readonly "google-ai-studio/gemini-2.5-flash-image": {
|
|
@@ -18217,6 +18537,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
18217
18537
|
readonly tools: false;
|
|
18218
18538
|
readonly reasoning: false;
|
|
18219
18539
|
readonly webSearch: false;
|
|
18540
|
+
readonly jsonOutput: true;
|
|
18541
|
+
readonly structuredOutputs: true;
|
|
18220
18542
|
};
|
|
18221
18543
|
};
|
|
18222
18544
|
readonly "google-vertex/gemini-2.5-flash-image": {
|
|
@@ -18240,6 +18562,8 @@ export declare const LLMAPI_MODELS: {
|
|
|
18240
18562
|
readonly tools: false;
|
|
18241
18563
|
readonly reasoning: false;
|
|
18242
18564
|
readonly webSearch: false;
|
|
18565
|
+
readonly jsonOutput: true;
|
|
18566
|
+
readonly structuredOutputs: true;
|
|
18243
18567
|
};
|
|
18244
18568
|
};
|
|
18245
18569
|
};
|