@mate-academy/llm-gateway 7.2.0 → 7.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -364,6 +364,8 @@ exports.LLMAPI_AVAILABLE_MODELS = {
364
364
  },
365
365
  config: {
366
366
  temperature: 1,
367
+ reasoning_effort: 'minimal',
368
+ verbosity: 'medium',
367
369
  },
368
370
  pricing: {
369
371
  getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000,
@@ -389,6 +391,8 @@ exports.LLMAPI_AVAILABLE_MODELS = {
389
391
  },
390
392
  config: {
391
393
  temperature: 1,
394
+ reasoning_effort: 'minimal',
395
+ verbosity: 'medium',
392
396
  },
393
397
  pricing: {
394
398
  getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000,
@@ -414,6 +418,8 @@ exports.LLMAPI_AVAILABLE_MODELS = {
414
418
  },
415
419
  config: {
416
420
  temperature: 1,
421
+ reasoning_effort: 'minimal',
422
+ verbosity: 'medium',
417
423
  },
418
424
  pricing: {
419
425
  getPriceForTextInput: (tokens) => 0.05 * tokens / 1_000_000,
@@ -489,6 +495,8 @@ exports.LLMAPI_AVAILABLE_MODELS = {
489
495
  },
490
496
  config: {
491
497
  temperature: 1,
498
+ reasoning_effort: 'none',
499
+ verbosity: 'medium',
492
500
  },
493
501
  pricing: {
494
502
  getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000,
@@ -589,6 +597,8 @@ exports.LLMAPI_AVAILABLE_MODELS = {
589
597
  },
590
598
  config: {
591
599
  temperature: 1,
600
+ reasoning_effort: 'none',
601
+ verbosity: 'medium',
592
602
  },
593
603
  pricing: {
594
604
  getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000,
@@ -689,6 +699,8 @@ exports.LLMAPI_AVAILABLE_MODELS = {
689
699
  },
690
700
  config: {
691
701
  temperature: 1,
702
+ reasoning_effort: 'none',
703
+ verbosity: 'medium',
692
704
  },
693
705
  pricing: {
694
706
  getPriceForTextInput: (tokens) => 2.5 * tokens / 1_000_000,
@@ -1058,31 +1070,6 @@ exports.LLMAPI_AVAILABLE_MODELS = {
1058
1070
  structuredOutputs: true,
1059
1071
  },
1060
1072
  },
1061
- [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_PREVIEW_09_2025]: {
1062
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_PREVIEW_09_2025,
1063
- limits: {
1064
- maxInputTokens: 1_048_576,
1065
- maxOutputTokens: 65_536,
1066
- },
1067
- config: {
1068
- temperature: 0.2,
1069
- },
1070
- pricing: {
1071
- getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000,
1072
- getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000,
1073
- getPriceForAudioInput: () => 0,
1074
- getPriceForAudioOutput: () => 0,
1075
- currency: 'USD',
1076
- },
1077
- capabilities: {
1078
- vision: true,
1079
- tools: true,
1080
- reasoning: false,
1081
- webSearch: false,
1082
- jsonOutput: true,
1083
- structuredOutputs: true,
1084
- },
1085
- },
1086
1073
  [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW]: {
1087
1074
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW,
1088
1075
  limits: {
@@ -2039,56 +2026,6 @@ exports.LLMAPI_AVAILABLE_MODELS = {
2039
2026
  structuredOutputs: false,
2040
2027
  },
2041
2028
  },
2042
- [LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_NATIVE]: {
2043
- name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_NATIVE,
2044
- limits: {
2045
- maxInputTokens: 204_800,
2046
- maxOutputTokens: 16_384,
2047
- },
2048
- config: {
2049
- temperature: 0.2,
2050
- },
2051
- pricing: {
2052
- getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
2053
- getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000,
2054
- getPriceForAudioInput: () => 0,
2055
- getPriceForAudioOutput: () => 0,
2056
- currency: 'USD',
2057
- },
2058
- capabilities: {
2059
- vision: false,
2060
- tools: true,
2061
- reasoning: true,
2062
- webSearch: false,
2063
- jsonOutput: true,
2064
- structuredOutputs: false,
2065
- },
2066
- },
2067
- [LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_NOVITA]: {
2068
- name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_NOVITA,
2069
- limits: {
2070
- maxInputTokens: 204_800,
2071
- maxOutputTokens: 16_384,
2072
- },
2073
- config: {
2074
- temperature: 0.2,
2075
- },
2076
- pricing: {
2077
- getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
2078
- getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000,
2079
- getPriceForAudioInput: () => 0,
2080
- getPriceForAudioOutput: () => 0,
2081
- currency: 'USD',
2082
- },
2083
- capabilities: {
2084
- vision: false,
2085
- tools: true,
2086
- reasoning: true,
2087
- webSearch: false,
2088
- jsonOutput: true,
2089
- structuredOutputs: false,
2090
- },
2091
- },
2092
2029
  [LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2]: {
2093
2030
  name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2,
2094
2031
  limits: {
@@ -3317,31 +3254,6 @@ exports.LLMAPI_AVAILABLE_MODELS = {
3317
3254
  structuredOutputs: false,
3318
3255
  },
3319
3256
  },
3320
- [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_FLASH]: {
3321
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_FLASH,
3322
- limits: {
3323
- maxInputTokens: 128_000,
3324
- maxOutputTokens: 16_384,
3325
- },
3326
- config: {
3327
- temperature: 0.2,
3328
- },
3329
- pricing: {
3330
- getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000,
3331
- getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000,
3332
- getPriceForAudioInput: () => 0,
3333
- getPriceForAudioOutput: () => 0,
3334
- currency: 'USD',
3335
- },
3336
- capabilities: {
3337
- vision: false,
3338
- tools: true,
3339
- reasoning: false,
3340
- webSearch: false,
3341
- jsonOutput: true,
3342
- structuredOutputs: false,
3343
- },
3344
- },
3345
3257
  [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6]: {
3346
3258
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6,
3347
3259
  limits: {
@@ -3417,31 +3329,6 @@ exports.LLMAPI_AVAILABLE_MODELS = {
3417
3329
  structuredOutputs: false,
3418
3330
  },
3419
3331
  },
3420
- [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_FLASH]: {
3421
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_FLASH,
3422
- limits: {
3423
- maxInputTokens: 128_000,
3424
- maxOutputTokens: 16_384,
3425
- },
3426
- config: {
3427
- temperature: 0.2,
3428
- },
3429
- pricing: {
3430
- getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000,
3431
- getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000,
3432
- getPriceForAudioInput: () => 0,
3433
- getPriceForAudioOutput: () => 0,
3434
- currency: 'USD',
3435
- },
3436
- capabilities: {
3437
- vision: true,
3438
- tools: true,
3439
- reasoning: true,
3440
- webSearch: false,
3441
- jsonOutput: true,
3442
- structuredOutputs: false,
3443
- },
3444
- },
3445
3332
  [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7]: {
3446
3333
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7,
3447
3334
  limits: {
@@ -3492,31 +3379,6 @@ exports.LLMAPI_AVAILABLE_MODELS = {
3492
3379
  structuredOutputs: false,
3493
3380
  },
3494
3381
  },
3495
- [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASH]: {
3496
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASH,
3497
- limits: {
3498
- maxInputTokens: 200_000,
3499
- maxOutputTokens: 16_384,
3500
- },
3501
- config: {
3502
- temperature: 0.2,
3503
- },
3504
- pricing: {
3505
- getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000,
3506
- getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000,
3507
- getPriceForAudioInput: () => 0,
3508
- getPriceForAudioOutput: () => 0,
3509
- currency: 'USD',
3510
- },
3511
- capabilities: {
3512
- vision: false,
3513
- tools: true,
3514
- reasoning: true,
3515
- webSearch: false,
3516
- jsonOutput: true,
3517
- structuredOutputs: false,
3518
- },
3519
- },
3520
3382
  [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_32B_0414_128K]: {
3521
3383
  name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_32B_0414_128K,
3522
3384
  limits: {
@@ -3668,50 +3530,55 @@ exports.LLMAPI_AVAILABLE_MODELS = {
3668
3530
  structuredOutputs: true,
3669
3531
  },
3670
3532
  },
3671
- [LLMAPI_typedefs_1.LLMAPIModelNames.O1_MINI]: {
3672
- name: LLMAPI_typedefs_1.LLMAPIModelNames.O1_MINI,
3533
+ // ─── Google (new models & routes) ──────────────────────
3534
+ // ─── DeepSeek (provider routes) ───────────────────────
3535
+ // ─── Meta Llama (provider routes) ──────────────────────
3536
+ // ─── MiniMax (provider routes) ────────────────────────
3537
+ // ─── Moonshot Kimi (new models & routes) ───────────────
3538
+ [LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_5_AUTO]: {
3539
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_5_AUTO,
3673
3540
  limits: {
3674
- maxInputTokens: 128_000,
3675
- maxOutputTokens: 16_384,
3541
+ maxInputTokens: 262_144,
3542
+ maxOutputTokens: 128_000,
3676
3543
  },
3677
3544
  config: {
3678
3545
  temperature: 0.2,
3679
3546
  },
3680
3547
  pricing: {
3681
- getPriceForTextInput: (tokens) => 1.1 * tokens / 1_000_000,
3682
- getPriceForTextOutput: (tokens) => 4.4 * tokens / 1_000_000,
3548
+ getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
3549
+ getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000,
3683
3550
  getPriceForAudioInput: () => 0,
3684
3551
  getPriceForAudioOutput: () => 0,
3685
3552
  currency: 'USD',
3686
3553
  },
3687
3554
  capabilities: {
3688
- vision: false,
3689
- tools: false,
3555
+ vision: true,
3556
+ tools: true,
3690
3557
  reasoning: false,
3691
3558
  webSearch: false,
3692
- jsonOutput: false,
3559
+ jsonOutput: true,
3693
3560
  structuredOutputs: false,
3694
3561
  },
3695
3562
  },
3696
- // ─── Google (new models & routes) ──────────────────────
3697
- [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_PRO_PREVIEW]: {
3698
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_PRO_PREVIEW,
3563
+ // ─── Alibaba Qwen (new models & routes) ─────────────────
3564
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_NEXT]: {
3565
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_NEXT,
3699
3566
  limits: {
3700
- maxInputTokens: 1_048_576,
3567
+ maxInputTokens: 262_144,
3701
3568
  maxOutputTokens: 128_000,
3702
3569
  },
3703
3570
  config: {
3704
3571
  temperature: 1,
3705
3572
  },
3706
3573
  pricing: {
3707
- getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000,
3708
- getPriceForTextOutput: (tokens) => 12 * tokens / 1_000_000,
3574
+ getPriceForTextInput: (tokens) => 0.108 * tokens / 1_000_000,
3575
+ getPriceForTextOutput: (tokens) => 0.675 * tokens / 1_000_000,
3709
3576
  getPriceForAudioInput: () => 0,
3710
3577
  getPriceForAudioOutput: () => 0,
3711
3578
  currency: 'USD',
3712
3579
  },
3713
3580
  capabilities: {
3714
- vision: true,
3581
+ vision: false,
3715
3582
  tools: true,
3716
3583
  reasoning: true,
3717
3584
  webSearch: false,
@@ -3719,69 +3586,68 @@ exports.LLMAPI_AVAILABLE_MODELS = {
3719
3586
  structuredOutputs: true,
3720
3587
  },
3721
3588
  },
3722
- // ─── DeepSeek (provider routes) ───────────────────────
3723
- [LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_R1_0528_CLOUDRIFT]: {
3724
- name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_R1_0528_CLOUDRIFT,
3589
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_INSTRUCT_ALIBABA]: {
3590
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_INSTRUCT_ALIBABA,
3725
3591
  limits: {
3726
- maxInputTokens: 64_000,
3592
+ maxInputTokens: 131_072,
3727
3593
  maxOutputTokens: 16_384,
3728
3594
  },
3729
3595
  config: {
3730
3596
  temperature: 0.2,
3731
3597
  },
3732
3598
  pricing: {
3733
- getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000,
3734
- getPriceForTextOutput: (tokens) => 1 * tokens / 1_000_000,
3599
+ getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000,
3600
+ getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000,
3735
3601
  getPriceForAudioInput: () => 0,
3736
3602
  getPriceForAudioOutput: () => 0,
3737
3603
  currency: 'USD',
3738
3604
  },
3739
3605
  capabilities: {
3740
3606
  vision: false,
3741
- tools: false,
3607
+ tools: true,
3742
3608
  reasoning: false,
3743
3609
  webSearch: false,
3744
- jsonOutput: false,
3610
+ jsonOutput: true,
3745
3611
  structuredOutputs: false,
3746
3612
  },
3747
3613
  },
3748
- [LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_R1_0528_NEBIUS]: {
3749
- name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_R1_0528_NEBIUS,
3614
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_THINKING_ALIBABA]: {
3615
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_THINKING_ALIBABA,
3750
3616
  limits: {
3751
- maxInputTokens: 64_000,
3617
+ maxInputTokens: 131_072,
3752
3618
  maxOutputTokens: 16_384,
3753
3619
  },
3754
3620
  config: {
3755
- temperature: 0.2,
3621
+ temperature: 1,
3756
3622
  },
3757
3623
  pricing: {
3758
- getPriceForTextInput: (tokens) => 0.8 * tokens / 1_000_000,
3759
- getPriceForTextOutput: (tokens) => 2.4 * tokens / 1_000_000,
3624
+ getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000,
3625
+ getPriceForTextOutput: (tokens) => 6 * tokens / 1_000_000,
3760
3626
  getPriceForAudioInput: () => 0,
3761
3627
  getPriceForAudioOutput: () => 0,
3762
3628
  currency: 'USD',
3763
3629
  },
3764
3630
  capabilities: {
3765
3631
  vision: false,
3766
- tools: false,
3767
- reasoning: false,
3632
+ tools: true,
3633
+ reasoning: true,
3768
3634
  webSearch: false,
3769
3635
  jsonOutput: false,
3770
3636
  structuredOutputs: false,
3771
3637
  },
3772
3638
  },
3773
- [LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_V3_2_CANOPYWAVE]: {
3774
- name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_V3_2_CANOPYWAVE,
3639
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_INSTRUCT_ALIBABA]: {
3640
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_INSTRUCT_ALIBABA,
3775
3641
  limits: {
3776
- maxInputTokens: 163_840,
3777
- maxOutputTokens: 128_000,
3642
+ maxInputTokens: 131_072,
3643
+ maxOutputTokens: 16_384,
3778
3644
  },
3779
3645
  config: {
3780
3646
  temperature: 0.2,
3781
3647
  },
3782
3648
  pricing: {
3783
- getPriceForTextInput: (tokens) => 0.28 * tokens / 1_000_000,
3784
- getPriceForTextOutput: (tokens) => 0.42 * tokens / 1_000_000,
3649
+ getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000,
3650
+ getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000,
3785
3651
  getPriceForAudioInput: () => 0,
3786
3652
  getPriceForAudioOutput: () => 0,
3787
3653
  currency: 'USD',
@@ -3795,59 +3661,59 @@ exports.LLMAPI_AVAILABLE_MODELS = {
3795
3661
  structuredOutputs: false,
3796
3662
  },
3797
3663
  },
3798
- [LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_V3_2_DEEPSEEK]: {
3799
- name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_V3_2_DEEPSEEK,
3664
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_THINKING_ALIBABA]: {
3665
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_THINKING_ALIBABA,
3800
3666
  limits: {
3801
- maxInputTokens: 163_840,
3802
- maxOutputTokens: 128_000,
3667
+ maxInputTokens: 131_072,
3668
+ maxOutputTokens: 16_384,
3803
3669
  },
3804
3670
  config: {
3805
- temperature: 0.2,
3671
+ temperature: 1,
3806
3672
  },
3807
3673
  pricing: {
3808
- getPriceForTextInput: (tokens) => 0.28 * tokens / 1_000_000,
3809
- getPriceForTextOutput: (tokens) => 0.42 * tokens / 1_000_000,
3674
+ getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000,
3675
+ getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000,
3810
3676
  getPriceForAudioInput: () => 0,
3811
3677
  getPriceForAudioOutput: () => 0,
3812
3678
  currency: 'USD',
3813
3679
  },
3814
3680
  capabilities: {
3815
3681
  vision: true,
3816
- tools: true,
3817
- reasoning: false,
3682
+ tools: false,
3683
+ reasoning: true,
3818
3684
  webSearch: false,
3819
- jsonOutput: true,
3685
+ jsonOutput: false,
3820
3686
  structuredOutputs: false,
3821
3687
  },
3822
3688
  },
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,
3689
+ // ─── Zhipu GLM (provider routes) ─────────────────────
3690
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5V_ZAI]: {
3691
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5V_ZAI,
3826
3692
  limits: {
3827
3693
  maxInputTokens: 128_000,
3828
3694
  maxOutputTokens: 16_384,
3829
3695
  },
3830
3696
  config: {
3831
- temperature: 0.2,
3697
+ temperature: 1,
3832
3698
  },
3833
3699
  pricing: {
3834
- getPriceForTextInput: (tokens) => 0.02 * tokens / 1_000_000,
3835
- getPriceForTextOutput: (tokens) => 0.06 * tokens / 1_000_000,
3700
+ getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
3701
+ getPriceForTextOutput: (tokens) => 1.8 * tokens / 1_000_000,
3836
3702
  getPriceForAudioInput: () => 0,
3837
3703
  getPriceForAudioOutput: () => 0,
3838
3704
  currency: 'USD',
3839
3705
  },
3840
3706
  capabilities: {
3841
- vision: false,
3842
- tools: false,
3843
- reasoning: false,
3707
+ vision: true,
3708
+ tools: true,
3709
+ reasoning: true,
3844
3710
  webSearch: false,
3845
3711
  jsonOutput: true,
3846
3712
  structuredOutputs: false,
3847
3713
  },
3848
3714
  },
3849
- [LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_8B_INSTRUCT_NOVITA]: {
3850
- name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_1_8B_INSTRUCT_NOVITA,
3715
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIR_EMBERCLOUD]: {
3716
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIR_EMBERCLOUD,
3851
3717
  limits: {
3852
3718
  maxInputTokens: 128_000,
3853
3719
  maxOutputTokens: 16_384,
@@ -3856,33 +3722,33 @@ exports.LLMAPI_AVAILABLE_MODELS = {
3856
3722
  temperature: 0.2,
3857
3723
  },
3858
3724
  pricing: {
3859
- getPriceForTextInput: (tokens) => 0.02 * tokens / 1_000_000,
3860
- getPriceForTextOutput: (tokens) => 0.05 * tokens / 1_000_000,
3725
+ getPriceForTextInput: (tokens) => 0.13 * tokens / 1_000_000,
3726
+ getPriceForTextOutput: (tokens) => 0.85 * tokens / 1_000_000,
3861
3727
  getPriceForAudioInput: () => 0,
3862
3728
  getPriceForAudioOutput: () => 0,
3863
3729
  currency: 'USD',
3864
3730
  },
3865
3731
  capabilities: {
3866
3732
  vision: false,
3867
- tools: false,
3733
+ tools: true,
3868
3734
  reasoning: false,
3869
3735
  webSearch: false,
3870
3736
  jsonOutput: true,
3871
3737
  structuredOutputs: false,
3872
3738
  },
3873
3739
  },
3874
- [LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_3_70B_INSTRUCT_NEBIUS]: {
3875
- name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_3_70B_INSTRUCT_NEBIUS,
3740
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIR_ZAI]: {
3741
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIR_ZAI,
3876
3742
  limits: {
3877
- maxInputTokens: 131_072,
3743
+ maxInputTokens: 128_000,
3878
3744
  maxOutputTokens: 16_384,
3879
3745
  },
3880
3746
  config: {
3881
3747
  temperature: 0.2,
3882
3748
  },
3883
3749
  pricing: {
3884
- getPriceForTextInput: (tokens) => 0.13 * tokens / 1_000_000,
3885
- getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000,
3750
+ getPriceForTextInput: (tokens) => 0.2 * tokens / 1_000_000,
3751
+ getPriceForTextOutput: (tokens) => 1.1 * tokens / 1_000_000,
3886
3752
  getPriceForAudioInput: () => 0,
3887
3753
  getPriceForAudioOutput: () => 0,
3888
3754
  currency: 'USD',
@@ -3896,18 +3762,18 @@ exports.LLMAPI_AVAILABLE_MODELS = {
3896
3762
  structuredOutputs: false,
3897
3763
  },
3898
3764
  },
3899
- [LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_3_70B_INSTRUCT_NOVITA]: {
3900
- name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_3_3_70B_INSTRUCT_NOVITA,
3765
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_EMBERCLOUD]: {
3766
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_EMBERCLOUD,
3901
3767
  limits: {
3902
- maxInputTokens: 131_072,
3768
+ maxInputTokens: 128_000,
3903
3769
  maxOutputTokens: 16_384,
3904
3770
  },
3905
3771
  config: {
3906
- temperature: 0.2,
3772
+ temperature: 1,
3907
3773
  },
3908
3774
  pricing: {
3909
- getPriceForTextInput: (tokens) => 0.135 * tokens / 1_000_000,
3910
- getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000,
3775
+ getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
3776
+ getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
3911
3777
  getPriceForAudioInput: () => 0,
3912
3778
  getPriceForAudioOutput: () => 0,
3913
3779
  currency: 'USD',
@@ -3915,81 +3781,55 @@ exports.LLMAPI_AVAILABLE_MODELS = {
3915
3781
  capabilities: {
3916
3782
  vision: false,
3917
3783
  tools: true,
3918
- reasoning: false,
3784
+ reasoning: true,
3919
3785
  webSearch: false,
3920
3786
  jsonOutput: true,
3921
3787
  structuredOutputs: false,
3922
3788
  },
3923
3789
  },
3924
- [LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_4_MAVERICK_17B_INSTRUCT_NOVITA]: {
3925
- name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_4_MAVERICK_17B_INSTRUCT_NOVITA,
3790
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_ZAI]: {
3791
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_ZAI,
3926
3792
  limits: {
3927
- maxInputTokens: 1_048_576,
3928
- maxOutputTokens: 128_000,
3793
+ maxInputTokens: 128_000,
3794
+ maxOutputTokens: 16_384,
3929
3795
  },
3930
3796
  config: {
3931
- temperature: 0.2,
3797
+ temperature: 1,
3932
3798
  },
3933
3799
  pricing: {
3934
- getPriceForTextInput: (tokens) => 0.27 * tokens / 1_000_000,
3935
- getPriceForTextOutput: (tokens) => 0.85 * tokens / 1_000_000,
3800
+ getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
3801
+ getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
3936
3802
  getPriceForAudioInput: () => 0,
3937
3803
  getPriceForAudioOutput: () => 0,
3938
3804
  currency: 'USD',
3939
3805
  },
3940
3806
  capabilities: {
3941
- vision: true,
3942
- tools: false,
3943
- reasoning: false,
3807
+ vision: false,
3808
+ tools: true,
3809
+ reasoning: true,
3944
3810
  webSearch: false,
3945
3811
  jsonOutput: true,
3946
3812
  structuredOutputs: false,
3947
3813
  },
3948
3814
  },
3949
- [LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_4_SCOUT_17B_INSTRUCT_NOVITA]: {
3950
- name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_4_SCOUT_17B_INSTRUCT_NOVITA,
3815
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_ZAI]: {
3816
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_ZAI,
3951
3817
  limits: {
3952
3818
  maxInputTokens: 131_072,
3953
3819
  maxOutputTokens: 16_384,
3954
3820
  },
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
3821
  config: {
3982
3822
  temperature: 1,
3983
3823
  },
3984
3824
  pricing: {
3985
- getPriceForTextInput: (tokens) => 0.27 * tokens / 1_000_000,
3986
- getPriceForTextOutput: (tokens) => 1.08 * tokens / 1_000_000,
3825
+ getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
3826
+ getPriceForTextOutput: (tokens) => 0.9 * tokens / 1_000_000,
3987
3827
  getPriceForAudioInput: () => 0,
3988
3828
  getPriceForAudioOutput: () => 0,
3989
3829
  currency: 'USD',
3990
3830
  },
3991
3831
  capabilities: {
3992
- vision: false,
3832
+ vision: true,
3993
3833
  tools: true,
3994
3834
  reasoning: true,
3995
3835
  webSearch: false,
@@ -3997,8 +3837,8 @@ exports.LLMAPI_AVAILABLE_MODELS = {
3997
3837
  structuredOutputs: false,
3998
3838
  },
3999
3839
  },
4000
- [LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1_MINIMAX]: {
4001
- name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1_MINIMAX,
3840
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6_ZAI]: {
3841
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6_ZAI,
4002
3842
  limits: {
4003
3843
  maxInputTokens: 204_800,
4004
3844
  maxOutputTokens: 128_000,
@@ -4007,23 +3847,23 @@ exports.LLMAPI_AVAILABLE_MODELS = {
4007
3847
  temperature: 1,
4008
3848
  },
4009
3849
  pricing: {
4010
- getPriceForTextInput: (tokens) => 0.27 * tokens / 1_000_000,
4011
- getPriceForTextOutput: (tokens) => 1.1 * tokens / 1_000_000,
3850
+ getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
3851
+ getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
4012
3852
  getPriceForAudioInput: () => 0,
4013
3853
  getPriceForAudioOutput: () => 0,
4014
3854
  currency: 'USD',
4015
3855
  },
4016
3856
  capabilities: {
4017
3857
  vision: false,
4018
- tools: false,
3858
+ tools: true,
4019
3859
  reasoning: true,
4020
3860
  webSearch: false,
4021
3861
  jsonOutput: true,
4022
3862
  structuredOutputs: false,
4023
3863
  },
4024
3864
  },
4025
- [LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1_NOVITA]: {
4026
- name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1_NOVITA,
3865
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_ZAI]: {
3866
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_ZAI,
4027
3867
  limits: {
4028
3868
  maxInputTokens: 204_800,
4029
3869
  maxOutputTokens: 128_000,
@@ -4032,8 +3872,8 @@ exports.LLMAPI_AVAILABLE_MODELS = {
4032
3872
  temperature: 1,
4033
3873
  },
4034
3874
  pricing: {
4035
- getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
4036
- getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000,
3875
+ getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
3876
+ getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
4037
3877
  getPriceForAudioInput: () => 0,
4038
3878
  getPriceForAudioOutput: () => 0,
4039
3879
  currency: 'USD',
@@ -4047,18 +3887,18 @@ exports.LLMAPI_AVAILABLE_MODELS = {
4047
3887
  structuredOutputs: false,
4048
3888
  },
4049
3889
  },
4050
- [LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_CANOPYWAVE]: {
4051
- name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_CANOPYWAVE,
3890
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_ZAI]: {
3891
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_ZAI,
4052
3892
  limits: {
4053
- maxInputTokens: 204_800,
3893
+ maxInputTokens: 202_800,
4054
3894
  maxOutputTokens: 128_000,
4055
3895
  },
4056
3896
  config: {
4057
3897
  temperature: 1,
4058
3898
  },
4059
3899
  pricing: {
4060
- getPriceForTextInput: (tokens) => 0.27 * tokens / 1_000_000,
4061
- getPriceForTextOutput: (tokens) => 1.08 * tokens / 1_000_000,
3900
+ getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000,
3901
+ getPriceForTextOutput: (tokens) => 3.2 * tokens / 1_000_000,
4062
3902
  getPriceForAudioInput: () => 0,
4063
3903
  getPriceForAudioOutput: () => 0,
4064
3904
  currency: 'USD',
@@ -4072,725 +3912,532 @@ exports.LLMAPI_AVAILABLE_MODELS = {
4072
3912
  structuredOutputs: false,
4073
3913
  },
4074
3914
  },
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
- },
3915
+ // ─── OpenAI explicit provider variants ────────────────────────
3916
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_OPENAI]: {
3917
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_OPENAI,
3918
+ limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
3919
+ config: { temperature: 1, reasoning_effort: 'minimal', verbosity: 'medium' },
3920
+ pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4091
3921
  capabilities: {
4092
- vision: false,
3922
+ vision: true,
4093
3923
  tools: true,
4094
3924
  reasoning: true,
4095
- webSearch: false,
3925
+ webSearch: true,
4096
3926
  jsonOutput: true,
4097
- structuredOutputs: false,
3927
+ structuredOutputs: true,
4098
3928
  },
4099
3929
  },
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
- },
3930
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_AZURE]: {
3931
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_AZURE,
3932
+ limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
3933
+ config: { temperature: 1, reasoning_effort: 'minimal', verbosity: 'medium' },
3934
+ pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4117
3935
  capabilities: {
4118
3936
  vision: true,
4119
3937
  tools: true,
4120
- reasoning: false,
4121
- webSearch: false,
3938
+ reasoning: true,
3939
+ webSearch: true,
4122
3940
  jsonOutput: true,
4123
- structuredOutputs: false,
3941
+ structuredOutputs: true,
4124
3942
  },
4125
3943
  },
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
- },
3944
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI_OPENAI]: {
3945
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI_OPENAI,
3946
+ limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
3947
+ config: { temperature: 1, reasoning_effort: 'minimal', verbosity: 'medium' },
3948
+ pricing: { getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4142
3949
  capabilities: {
4143
3950
  vision: true,
4144
3951
  tools: true,
4145
- reasoning: false,
4146
- webSearch: false,
3952
+ reasoning: true,
3953
+ webSearch: true,
4147
3954
  jsonOutput: true,
4148
- structuredOutputs: false,
3955
+ structuredOutputs: true,
4149
3956
  },
4150
3957
  },
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
- },
3958
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI_AZURE]: {
3959
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI_AZURE,
3960
+ limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
3961
+ config: { temperature: 1, reasoning_effort: 'minimal', verbosity: 'medium' },
3962
+ pricing: { getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4167
3963
  capabilities: {
4168
3964
  vision: true,
4169
3965
  tools: true,
4170
- reasoning: false,
4171
- webSearch: false,
3966
+ reasoning: true,
3967
+ webSearch: true,
4172
3968
  jsonOutput: true,
4173
- structuredOutputs: false,
3969
+ structuredOutputs: true,
4174
3970
  },
4175
3971
  },
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
- },
3972
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO_OPENAI]: {
3973
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO_OPENAI,
3974
+ limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
3975
+ config: { temperature: 1, reasoning_effort: 'minimal', verbosity: 'medium' },
3976
+ pricing: { getPriceForTextInput: (tokens) => 0.05 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4192
3977
  capabilities: {
4193
3978
  vision: false,
4194
3979
  tools: true,
4195
- reasoning: false,
4196
- webSearch: false,
3980
+ reasoning: true,
3981
+ webSearch: true,
4197
3982
  jsonOutput: true,
4198
- structuredOutputs: false,
3983
+ structuredOutputs: true,
4199
3984
  },
4200
3985
  },
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
- },
3986
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO_AZURE]: {
3987
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO_AZURE,
3988
+ limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
3989
+ config: { temperature: 1, reasoning_effort: 'minimal', verbosity: 'medium' },
3990
+ pricing: { getPriceForTextInput: (tokens) => 0.05 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4217
3991
  capabilities: {
4218
3992
  vision: false,
4219
3993
  tools: true,
4220
- reasoning: false,
4221
- webSearch: false,
3994
+ reasoning: true,
3995
+ webSearch: true,
4222
3996
  jsonOutput: true,
4223
- structuredOutputs: false,
3997
+ structuredOutputs: true,
4224
3998
  },
4225
3999
  },
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
- },
4000
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO_OPENAI]: {
4001
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO_OPENAI,
4002
+ limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
4003
+ config: { temperature: 1 },
4004
+ pricing: { getPriceForTextInput: (tokens) => 15 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 120 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4242
4005
  capabilities: {
4243
- vision: false,
4006
+ vision: true,
4244
4007
  tools: true,
4245
- reasoning: false,
4246
- webSearch: false,
4008
+ reasoning: true,
4009
+ webSearch: true,
4247
4010
  jsonOutput: true,
4248
- structuredOutputs: false,
4011
+ structuredOutputs: true,
4249
4012
  },
4250
4013
  },
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
- },
4014
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO_AZURE]: {
4015
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO_AZURE,
4016
+ limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
4017
+ config: { temperature: 1 },
4018
+ pricing: { getPriceForTextInput: (tokens) => 15 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 120 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4267
4019
  capabilities: {
4268
- vision: false,
4020
+ vision: true,
4269
4021
  tools: true,
4270
- reasoning: false,
4271
- webSearch: false,
4022
+ reasoning: true,
4023
+ webSearch: true,
4272
4024
  jsonOutput: true,
4273
- structuredOutputs: false,
4025
+ structuredOutputs: true,
4274
4026
  },
4275
4027
  },
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
- },
4028
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_OPENAI]: {
4029
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_OPENAI,
4030
+ limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
4031
+ config: { temperature: 1, reasoning_effort: 'none', verbosity: 'medium' },
4032
+ pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4292
4033
  capabilities: {
4293
- vision: false,
4034
+ vision: true,
4294
4035
  tools: true,
4295
- reasoning: false,
4296
- webSearch: false,
4036
+ reasoning: true,
4037
+ webSearch: true,
4297
4038
  jsonOutput: true,
4298
- structuredOutputs: false,
4039
+ structuredOutputs: true,
4299
4040
  },
4300
4041
  },
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
- },
4042
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_AZURE]: {
4043
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_AZURE,
4044
+ limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
4045
+ config: { temperature: 1, reasoning_effort: 'none', verbosity: 'medium' },
4046
+ pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4318
4047
  capabilities: {
4319
- vision: false,
4048
+ vision: true,
4320
4049
  tools: true,
4321
- reasoning: false,
4322
- webSearch: false,
4050
+ reasoning: true,
4051
+ webSearch: true,
4323
4052
  jsonOutput: true,
4324
- structuredOutputs: false,
4053
+ structuredOutputs: true,
4325
4054
  },
4326
4055
  },
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
- },
4056
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_OPENAI]: {
4057
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_OPENAI,
4058
+ limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
4059
+ config: { temperature: 1 },
4060
+ pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4343
4061
  capabilities: {
4344
- vision: false,
4062
+ vision: true,
4345
4063
  tools: true,
4346
- reasoning: false,
4347
- webSearch: false,
4064
+ reasoning: true,
4065
+ webSearch: true,
4348
4066
  jsonOutput: true,
4349
- structuredOutputs: false,
4067
+ structuredOutputs: true,
4350
4068
  },
4351
4069
  },
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
- },
4070
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_AZURE]: {
4071
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_AZURE,
4072
+ limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
4073
+ config: { temperature: 1 },
4074
+ pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4368
4075
  capabilities: {
4369
- vision: false,
4076
+ vision: true,
4370
4077
  tools: true,
4371
4078
  reasoning: true,
4372
- webSearch: false,
4079
+ webSearch: true,
4373
4080
  jsonOutput: true,
4374
- structuredOutputs: false,
4081
+ structuredOutputs: true,
4375
4082
  },
4376
4083
  },
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
- },
4084
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI_OPENAI]: {
4085
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI_OPENAI,
4086
+ limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
4087
+ config: { temperature: 1 },
4088
+ pricing: { getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4393
4089
  capabilities: {
4394
- vision: false,
4090
+ vision: true,
4395
4091
  tools: true,
4396
- reasoning: false,
4397
- webSearch: false,
4092
+ reasoning: true,
4093
+ webSearch: true,
4398
4094
  jsonOutput: true,
4399
- structuredOutputs: false,
4095
+ structuredOutputs: true,
4400
4096
  },
4401
4097
  },
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
- },
4098
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI_AZURE]: {
4099
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI_AZURE,
4100
+ limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
4101
+ config: { temperature: 1 },
4102
+ pricing: { getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4418
4103
  capabilities: {
4419
4104
  vision: true,
4420
4105
  tools: true,
4421
4106
  reasoning: true,
4422
- webSearch: false,
4107
+ webSearch: true,
4423
4108
  jsonOutput: true,
4424
- structuredOutputs: false,
4109
+ structuredOutputs: true,
4425
4110
  },
4426
4111
  },
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
- },
4112
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_OPENAI]: {
4113
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_OPENAI,
4114
+ limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
4115
+ config: { temperature: 1, reasoning_effort: 'none', verbosity: 'medium' },
4116
+ pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4443
4117
  capabilities: {
4444
4118
  vision: true,
4445
4119
  tools: true,
4446
4120
  reasoning: true,
4447
- webSearch: false,
4121
+ webSearch: true,
4448
4122
  jsonOutput: true,
4449
- structuredOutputs: false,
4123
+ structuredOutputs: true,
4450
4124
  },
4451
4125
  },
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
- },
4126
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_AZURE]: {
4127
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_AZURE,
4128
+ limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
4129
+ config: { temperature: 1, reasoning_effort: 'none', verbosity: 'medium' },
4130
+ pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4468
4131
  capabilities: {
4469
- vision: false,
4132
+ vision: true,
4470
4133
  tools: true,
4471
- reasoning: false,
4472
- webSearch: false,
4134
+ reasoning: true,
4135
+ webSearch: true,
4473
4136
  jsonOutput: true,
4474
- structuredOutputs: false,
4137
+ structuredOutputs: true,
4475
4138
  },
4476
4139
  },
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',
4140
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX_OPENAI]: {
4141
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX_OPENAI,
4142
+ limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
4143
+ config: { temperature: 1 },
4144
+ pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4145
+ capabilities: {
4146
+ vision: true,
4147
+ tools: true,
4148
+ reasoning: true,
4149
+ webSearch: true,
4150
+ jsonOutput: true,
4151
+ structuredOutputs: true,
4492
4152
  },
4153
+ },
4154
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX_AZURE]: {
4155
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX_AZURE,
4156
+ limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
4157
+ config: { temperature: 1 },
4158
+ pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4493
4159
  capabilities: {
4494
- vision: false,
4160
+ vision: true,
4495
4161
  tools: true,
4496
- reasoning: false,
4497
- webSearch: false,
4162
+ reasoning: true,
4163
+ webSearch: true,
4498
4164
  jsonOutput: true,
4499
- structuredOutputs: false,
4165
+ structuredOutputs: true,
4500
4166
  },
4501
4167
  },
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
- },
4168
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX_OPENAI]: {
4169
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX_OPENAI,
4170
+ limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
4171
+ config: { temperature: 1 },
4172
+ pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4518
4173
  capabilities: {
4519
- vision: false,
4174
+ vision: true,
4520
4175
  tools: true,
4521
4176
  reasoning: true,
4522
- webSearch: false,
4177
+ webSearch: true,
4523
4178
  jsonOutput: true,
4524
4179
  structuredOutputs: true,
4525
4180
  },
4526
4181
  },
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
- },
4182
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX_AZURE]: {
4183
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX_AZURE,
4184
+ limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
4185
+ config: { temperature: 1 },
4186
+ pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4543
4187
  capabilities: {
4544
4188
  vision: true,
4545
4189
  tools: true,
4546
4190
  reasoning: true,
4547
- webSearch: false,
4191
+ webSearch: true,
4548
4192
  jsonOutput: true,
4549
- structuredOutputs: false,
4193
+ structuredOutputs: true,
4550
4194
  },
4551
4195
  },
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
- },
4196
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_OPENAI]: {
4197
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_OPENAI,
4198
+ limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
4199
+ config: { temperature: 1, reasoning_effort: 'none', verbosity: 'medium' },
4200
+ pricing: { getPriceForTextInput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4568
4201
  capabilities: {
4569
- vision: false,
4202
+ vision: true,
4570
4203
  tools: true,
4571
- reasoning: false,
4572
- webSearch: false,
4204
+ reasoning: true,
4205
+ webSearch: true,
4573
4206
  jsonOutput: true,
4574
- structuredOutputs: false,
4207
+ structuredOutputs: true,
4575
4208
  },
4576
4209
  },
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
- },
4210
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_AZURE]: {
4211
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_AZURE,
4212
+ limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
4213
+ config: { temperature: 1, reasoning_effort: 'none', verbosity: 'medium' },
4214
+ pricing: { getPriceForTextInput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4593
4215
  capabilities: {
4594
- vision: false,
4216
+ vision: true,
4595
4217
  tools: true,
4596
- reasoning: false,
4597
- webSearch: false,
4218
+ reasoning: true,
4219
+ webSearch: true,
4598
4220
  jsonOutput: true,
4599
- structuredOutputs: false,
4221
+ structuredOutputs: true,
4600
4222
  },
4601
4223
  },
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
- },
4224
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO_OPENAI]: {
4225
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO_OPENAI,
4226
+ limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
4227
+ config: { temperature: 1 },
4228
+ pricing: { getPriceForTextInput: (tokens) => 30 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 180 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4618
4229
  capabilities: {
4619
- vision: false,
4230
+ vision: true,
4620
4231
  tools: true,
4621
- reasoning: false,
4622
- webSearch: false,
4232
+ reasoning: true,
4233
+ webSearch: true,
4623
4234
  jsonOutput: true,
4624
- structuredOutputs: false,
4235
+ structuredOutputs: true,
4625
4236
  },
4626
4237
  },
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
- },
4238
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO_AZURE]: {
4239
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO_AZURE,
4240
+ limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
4241
+ config: { temperature: 1 },
4242
+ pricing: { getPriceForTextInput: (tokens) => 30 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 180 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4643
4243
  capabilities: {
4644
- vision: false,
4244
+ vision: true,
4645
4245
  tools: true,
4646
4246
  reasoning: true,
4647
- webSearch: false,
4648
- jsonOutput: false,
4649
- structuredOutputs: false,
4247
+ webSearch: true,
4248
+ jsonOutput: true,
4249
+ structuredOutputs: true,
4650
4250
  },
4651
4251
  },
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
- },
4252
+ // ─── Gemini explicit provider variants ────────────────────────
4253
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_PRO_GOOGLE_AI_STUDIO]: {
4254
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_PRO_GOOGLE_AI_STUDIO,
4255
+ limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
4256
+ config: { temperature: 0.2 },
4257
+ pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4668
4258
  capabilities: {
4669
- vision: false,
4259
+ vision: true,
4670
4260
  tools: true,
4671
4261
  reasoning: true,
4672
- webSearch: false,
4673
- jsonOutput: false,
4674
- structuredOutputs: false,
4262
+ webSearch: true,
4263
+ jsonOutput: true,
4264
+ structuredOutputs: true,
4675
4265
  },
4676
4266
  },
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
- },
4267
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_PRO_GOOGLE_VERTEX]: {
4268
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_PRO_GOOGLE_VERTEX,
4269
+ limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
4270
+ config: { temperature: 0.2 },
4271
+ pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4693
4272
  capabilities: {
4694
4273
  vision: true,
4695
4274
  tools: true,
4696
- reasoning: false,
4697
- webSearch: false,
4275
+ reasoning: true,
4276
+ webSearch: true,
4698
4277
  jsonOutput: true,
4699
- structuredOutputs: false,
4278
+ structuredOutputs: true,
4700
4279
  },
4701
4280
  },
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,
4281
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_GOOGLE_AI_STUDIO]: {
4282
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_GOOGLE_AI_STUDIO,
4283
+ limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
4284
+ config: { temperature: 0.2 },
4285
+ pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4286
+ capabilities: {
4287
+ vision: true,
4288
+ tools: true,
4289
+ reasoning: true,
4290
+ webSearch: true,
4291
+ jsonOutput: true,
4292
+ structuredOutputs: true,
4710
4293
  },
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',
4294
+ },
4295
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_GOOGLE_VERTEX]: {
4296
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_GOOGLE_VERTEX,
4297
+ limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
4298
+ config: { temperature: 0.2 },
4299
+ pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4300
+ capabilities: {
4301
+ vision: true,
4302
+ tools: true,
4303
+ reasoning: true,
4304
+ webSearch: true,
4305
+ jsonOutput: true,
4306
+ structuredOutputs: true,
4717
4307
  },
4308
+ },
4309
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_GOOGLE_AI_STUDIO]: {
4310
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_GOOGLE_AI_STUDIO,
4311
+ limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
4312
+ config: { temperature: 0.2 },
4313
+ pricing: { getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4718
4314
  capabilities: {
4719
4315
  vision: true,
4720
4316
  tools: true,
4721
4317
  reasoning: false,
4722
4318
  webSearch: false,
4723
4319
  jsonOutput: true,
4724
- structuredOutputs: false,
4320
+ structuredOutputs: true,
4725
4321
  },
4726
4322
  },
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,
4323
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_GOOGLE_VERTEX]: {
4324
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_GOOGLE_VERTEX,
4325
+ limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
4326
+ config: { temperature: 0.2 },
4327
+ pricing: { getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4328
+ capabilities: {
4329
+ vision: true,
4330
+ tools: true,
4331
+ reasoning: false,
4332
+ webSearch: false,
4333
+ jsonOutput: true,
4334
+ structuredOutputs: true,
4735
4335
  },
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',
4336
+ },
4337
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW_GOOGLE_AI_STUDIO]: {
4338
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW_GOOGLE_AI_STUDIO,
4339
+ limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
4340
+ config: { temperature: 0.2 },
4341
+ pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 12 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4342
+ capabilities: {
4343
+ vision: true,
4344
+ tools: true,
4345
+ reasoning: true,
4346
+ webSearch: true,
4347
+ jsonOutput: true,
4348
+ structuredOutputs: true,
4742
4349
  },
4350
+ },
4351
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW_GOOGLE_VERTEX]: {
4352
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW_GOOGLE_VERTEX,
4353
+ limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
4354
+ config: { temperature: 0.2 },
4355
+ pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 12 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4743
4356
  capabilities: {
4744
4357
  vision: true,
4745
- tools: false,
4358
+ tools: true,
4746
4359
  reasoning: true,
4747
- webSearch: false,
4748
- jsonOutput: false,
4749
- structuredOutputs: false,
4360
+ webSearch: true,
4361
+ jsonOutput: true,
4362
+ structuredOutputs: true,
4750
4363
  },
4751
4364
  },
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,
4365
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW_GOOGLE_AI_STUDIO]: {
4366
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW_GOOGLE_AI_STUDIO,
4367
+ limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
4368
+ config: { temperature: 0.2 },
4369
+ pricing: { getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4370
+ capabilities: {
4371
+ vision: true,
4372
+ tools: true,
4373
+ reasoning: true,
4374
+ webSearch: true,
4375
+ jsonOutput: true,
4376
+ structuredOutputs: true,
4757
4377
  },
4758
- config: {
4759
- temperature: 1,
4378
+ },
4379
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW_GOOGLE_VERTEX]: {
4380
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW_GOOGLE_VERTEX,
4381
+ limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
4382
+ config: { temperature: 0.2 },
4383
+ pricing: { getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4384
+ capabilities: {
4385
+ vision: true,
4386
+ tools: true,
4387
+ reasoning: true,
4388
+ webSearch: true,
4389
+ jsonOutput: true,
4390
+ structuredOutputs: true,
4760
4391
  },
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',
4392
+ },
4393
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE_GOOGLE_AI_STUDIO]: {
4394
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE_GOOGLE_AI_STUDIO,
4395
+ limits: { maxInputTokens: 32_768, maxOutputTokens: 65_536 },
4396
+ config: { temperature: 0.2 },
4397
+ pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 30 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4398
+ capabilities: {
4399
+ vision: true,
4400
+ tools: false,
4401
+ reasoning: false,
4402
+ webSearch: false,
4403
+ jsonOutput: true,
4404
+ structuredOutputs: true,
4767
4405
  },
4406
+ },
4407
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE_GOOGLE_VERTEX]: {
4408
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE_GOOGLE_VERTEX,
4409
+ limits: { maxInputTokens: 32_768, maxOutputTokens: 65_536 },
4410
+ config: { temperature: 0.2 },
4411
+ pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 30 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4768
4412
  capabilities: {
4769
4413
  vision: true,
4770
4414
  tools: false,
4415
+ reasoning: false,
4416
+ webSearch: false,
4417
+ jsonOutput: true,
4418
+ structuredOutputs: true,
4419
+ },
4420
+ },
4421
+ // ─── Sync additions (auto-generated) ─────────────────────
4422
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_MAX_PREVIEW_ALIBABA]: {
4423
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_MAX_PREVIEW_ALIBABA,
4424
+ limits: { maxInputTokens: 262_144, maxOutputTokens: 32_768 },
4425
+ config: { temperature: 0.2 },
4426
+ pricing: { getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4427
+ capabilities: {
4428
+ vision: true,
4429
+ tools: true,
4771
4430
  reasoning: true,
4772
4431
  webSearch: false,
4773
- jsonOutput: false,
4432
+ jsonOutput: true,
4774
4433
  structuredOutputs: false,
4775
4434
  },
4776
4435
  },
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
- },
4436
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_5_397B_A17B_ALIBABA]: {
4437
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_5_397B_A17B_ALIBABA,
4438
+ limits: { maxInputTokens: 262_144, maxOutputTokens: 65_536 },
4439
+ config: { temperature: 0.2 },
4440
+ pricing: { getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3.6 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4794
4441
  capabilities: {
4795
4442
  vision: true,
4796
4443
  tools: true,
@@ -4800,18 +4447,18 @@ exports.LLMAPI_AVAILABLE_MODELS = {
4800
4447
  structuredOutputs: false,
4801
4448
  },
4802
4449
  },
4803
- [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5V_ZAI]: {
4804
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5V_ZAI,
4450
+ [LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_1_20250805_ANTHROPIC]: {
4451
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_1_20250805_ANTHROPIC,
4805
4452
  limits: {
4806
- maxInputTokens: 128_000,
4807
- maxOutputTokens: 16_384,
4453
+ maxInputTokens: 200_000,
4454
+ maxOutputTokens: 32_768,
4808
4455
  },
4809
4456
  config: {
4810
- temperature: 1,
4457
+ temperature: 0.2,
4811
4458
  },
4812
4459
  pricing: {
4813
- getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
4814
- getPriceForTextOutput: (tokens) => 1.8 * tokens / 1_000_000,
4460
+ getPriceForTextInput: (tokens) => 15 * tokens / 1_000_000,
4461
+ getPriceForTextOutput: (tokens) => 75 * tokens / 1_000_000,
4815
4462
  getPriceForAudioInput: () => 0,
4816
4463
  getPriceForAudioOutput: () => 0,
4817
4464
  currency: 'USD',
@@ -4820,23 +4467,23 @@ exports.LLMAPI_AVAILABLE_MODELS = {
4820
4467
  vision: true,
4821
4468
  tools: true,
4822
4469
  reasoning: true,
4823
- webSearch: false,
4824
- jsonOutput: true,
4825
- structuredOutputs: false,
4470
+ webSearch: true,
4471
+ jsonOutput: false,
4472
+ structuredOutputs: true,
4826
4473
  },
4827
4474
  },
4828
- [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIR_EMBERCLOUD]: {
4829
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIR_EMBERCLOUD,
4475
+ [LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_20250514_ANTHROPIC]: {
4476
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_20250514_ANTHROPIC,
4830
4477
  limits: {
4831
- maxInputTokens: 128_000,
4832
- maxOutputTokens: 16_384,
4478
+ maxInputTokens: 200_000,
4479
+ maxOutputTokens: 32_768,
4833
4480
  },
4834
4481
  config: {
4835
4482
  temperature: 0.2,
4836
4483
  },
4837
4484
  pricing: {
4838
- getPriceForTextInput: (tokens) => 0.13 * tokens / 1_000_000,
4839
- getPriceForTextOutput: (tokens) => 0.85 * tokens / 1_000_000,
4485
+ getPriceForTextInput: (tokens) => 15 * tokens / 1_000_000,
4486
+ getPriceForTextOutput: (tokens) => 75 * tokens / 1_000_000,
4840
4487
  getPriceForAudioInput: () => 0,
4841
4488
  getPriceForAudioOutput: () => 0,
4842
4489
  currency: 'USD',
@@ -4844,74 +4491,74 @@ exports.LLMAPI_AVAILABLE_MODELS = {
4844
4491
  capabilities: {
4845
4492
  vision: false,
4846
4493
  tools: true,
4847
- reasoning: false,
4848
- webSearch: false,
4849
- jsonOutput: true,
4494
+ reasoning: true,
4495
+ webSearch: true,
4496
+ jsonOutput: false,
4850
4497
  structuredOutputs: false,
4851
4498
  },
4852
4499
  },
4853
- [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIR_ZAI]: {
4854
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIR_ZAI,
4500
+ [LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_5_20251101_ANTHROPIC]: {
4501
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_5_20251101_ANTHROPIC,
4855
4502
  limits: {
4856
- maxInputTokens: 128_000,
4857
- maxOutputTokens: 16_384,
4503
+ maxInputTokens: 200_000,
4504
+ maxOutputTokens: 32_768,
4858
4505
  },
4859
4506
  config: {
4860
4507
  temperature: 0.2,
4861
4508
  },
4862
4509
  pricing: {
4863
- getPriceForTextInput: (tokens) => 0.2 * tokens / 1_000_000,
4864
- getPriceForTextOutput: (tokens) => 1.1 * tokens / 1_000_000,
4510
+ getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000,
4511
+ getPriceForTextOutput: (tokens) => 25 * tokens / 1_000_000,
4865
4512
  getPriceForAudioInput: () => 0,
4866
4513
  getPriceForAudioOutput: () => 0,
4867
4514
  currency: 'USD',
4868
4515
  },
4869
4516
  capabilities: {
4870
- vision: false,
4517
+ vision: true,
4871
4518
  tools: true,
4872
- reasoning: false,
4873
- webSearch: false,
4874
- jsonOutput: true,
4875
- structuredOutputs: false,
4519
+ reasoning: true,
4520
+ webSearch: true,
4521
+ jsonOutput: false,
4522
+ structuredOutputs: true,
4876
4523
  },
4877
4524
  },
4878
- [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_EMBERCLOUD]: {
4879
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_EMBERCLOUD,
4525
+ [LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_6_ANTHROPIC]: {
4526
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_6_ANTHROPIC,
4880
4527
  limits: {
4881
- maxInputTokens: 128_000,
4882
- maxOutputTokens: 16_384,
4528
+ maxInputTokens: 1_000_000,
4529
+ maxOutputTokens: 32_768,
4883
4530
  },
4884
4531
  config: {
4885
4532
  temperature: 1,
4886
4533
  },
4887
4534
  pricing: {
4888
- getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
4889
- getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
4535
+ getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000,
4536
+ getPriceForTextOutput: (tokens) => 25 * tokens / 1_000_000,
4890
4537
  getPriceForAudioInput: () => 0,
4891
4538
  getPriceForAudioOutput: () => 0,
4892
4539
  currency: 'USD',
4893
4540
  },
4894
4541
  capabilities: {
4895
- vision: false,
4542
+ vision: true,
4896
4543
  tools: true,
4897
4544
  reasoning: true,
4898
- webSearch: false,
4545
+ webSearch: true,
4899
4546
  jsonOutput: true,
4900
- structuredOutputs: false,
4547
+ structuredOutputs: true,
4901
4548
  },
4902
4549
  },
4903
- [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_ZAI]: {
4904
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_ZAI,
4550
+ [LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_20250514_ANTHROPIC]: {
4551
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_20250514_ANTHROPIC,
4905
4552
  limits: {
4906
- maxInputTokens: 128_000,
4907
- maxOutputTokens: 16_384,
4553
+ maxInputTokens: 200_000,
4554
+ maxOutputTokens: 32_768,
4908
4555
  },
4909
4556
  config: {
4910
- temperature: 1,
4557
+ temperature: 0.2,
4911
4558
  },
4912
4559
  pricing: {
4913
- getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
4914
- getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
4560
+ getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000,
4561
+ getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
4915
4562
  getPriceForAudioInput: () => 0,
4916
4563
  getPriceForAudioOutput: () => 0,
4917
4564
  currency: 'USD',
@@ -4920,73 +4567,73 @@ exports.LLMAPI_AVAILABLE_MODELS = {
4920
4567
  vision: false,
4921
4568
  tools: true,
4922
4569
  reasoning: true,
4923
- webSearch: false,
4924
- jsonOutput: true,
4570
+ webSearch: true,
4571
+ jsonOutput: false,
4925
4572
  structuredOutputs: false,
4926
4573
  },
4927
4574
  },
4928
- [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_NOVITA]: {
4929
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_NOVITA,
4575
+ [LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_5_ANTHROPIC]: {
4576
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_5_ANTHROPIC,
4930
4577
  limits: {
4931
- maxInputTokens: 131_072,
4932
- maxOutputTokens: 16_384,
4578
+ maxInputTokens: 200_000,
4579
+ maxOutputTokens: 32_768,
4933
4580
  },
4934
4581
  config: {
4935
- temperature: 1,
4582
+ temperature: 0.2,
4936
4583
  },
4937
4584
  pricing: {
4938
- getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
4939
- getPriceForTextOutput: (tokens) => 0.9 * tokens / 1_000_000,
4585
+ getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000,
4586
+ getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
4940
4587
  getPriceForAudioInput: () => 0,
4941
4588
  getPriceForAudioOutput: () => 0,
4942
4589
  currency: 'USD',
4943
4590
  },
4944
4591
  capabilities: {
4945
- vision: true,
4592
+ vision: false,
4946
4593
  tools: true,
4947
4594
  reasoning: true,
4948
- webSearch: false,
4949
- jsonOutput: true,
4950
- structuredOutputs: false,
4595
+ webSearch: true,
4596
+ jsonOutput: false,
4597
+ structuredOutputs: true,
4951
4598
  },
4952
4599
  },
4953
- [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_ZAI]: {
4954
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_ZAI,
4600
+ [LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_5_20250929_ANTHROPIC]: {
4601
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_5_20250929_ANTHROPIC,
4955
4602
  limits: {
4956
- maxInputTokens: 131_072,
4957
- maxOutputTokens: 16_384,
4603
+ maxInputTokens: 200_000,
4604
+ maxOutputTokens: 32_768,
4958
4605
  },
4959
4606
  config: {
4960
- temperature: 1,
4607
+ temperature: 0.2,
4961
4608
  },
4962
4609
  pricing: {
4963
- getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
4964
- getPriceForTextOutput: (tokens) => 0.9 * tokens / 1_000_000,
4610
+ getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000,
4611
+ getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
4965
4612
  getPriceForAudioInput: () => 0,
4966
4613
  getPriceForAudioOutput: () => 0,
4967
4614
  currency: 'USD',
4968
4615
  },
4969
4616
  capabilities: {
4970
- vision: true,
4617
+ vision: false,
4971
4618
  tools: true,
4972
4619
  reasoning: true,
4973
- webSearch: false,
4974
- jsonOutput: true,
4975
- structuredOutputs: false,
4620
+ webSearch: true,
4621
+ jsonOutput: false,
4622
+ structuredOutputs: true,
4976
4623
  },
4977
4624
  },
4978
- [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6_NOVITA]: {
4979
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6_NOVITA,
4625
+ [LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_6_ANTHROPIC]: {
4626
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_6_ANTHROPIC,
4980
4627
  limits: {
4981
- maxInputTokens: 204_800,
4982
- maxOutputTokens: 128_000,
4628
+ maxInputTokens: 200_000,
4629
+ maxOutputTokens: 32_768,
4983
4630
  },
4984
4631
  config: {
4985
- temperature: 1,
4632
+ temperature: 0.2,
4986
4633
  },
4987
4634
  pricing: {
4988
- getPriceForTextInput: (tokens) => 0.55 * tokens / 1_000_000,
4989
- getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
4635
+ getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000,
4636
+ getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
4990
4637
  getPriceForAudioInput: () => 0,
4991
4638
  getPriceForAudioOutput: () => 0,
4992
4639
  currency: 'USD',
@@ -4995,23 +4642,62 @@ exports.LLMAPI_AVAILABLE_MODELS = {
4995
4642
  vision: false,
4996
4643
  tools: true,
4997
4644
  reasoning: true,
4645
+ webSearch: true,
4646
+ jsonOutput: false,
4647
+ structuredOutputs: true,
4648
+ },
4649
+ },
4650
+ [LLMAPI_typedefs_1.LLMAPIModelNames.AUTO]: {
4651
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.AUTO,
4652
+ limits: { maxInputTokens: 128_000, maxOutputTokens: 16_384 },
4653
+ config: { temperature: 0.2 },
4654
+ pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4655
+ capabilities: {
4656
+ vision: true,
4657
+ tools: true,
4658
+ reasoning: false,
4998
4659
  webSearch: false,
4999
4660
  jsonOutput: true,
5000
4661
  structuredOutputs: false,
5001
4662
  },
5002
4663
  },
5003
- [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6_ZAI]: {
5004
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6_ZAI,
4664
+ [LLMAPI_typedefs_1.LLMAPIModelNames.ANTHROPIC_CLAUDE_OPUS_4_1_20250805_V1_0_AWS_BEDROCK]: {
4665
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.ANTHROPIC_CLAUDE_OPUS_4_1_20250805_V1_0_AWS_BEDROCK,
5005
4666
  limits: {
5006
- maxInputTokens: 204_800,
5007
- maxOutputTokens: 128_000,
4667
+ maxInputTokens: 200_000,
4668
+ maxOutputTokens: 32_768,
5008
4669
  },
5009
4670
  config: {
5010
- temperature: 1,
4671
+ temperature: 0.2,
5011
4672
  },
5012
4673
  pricing: {
5013
- getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
5014
- getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
4674
+ getPriceForTextInput: (tokens) => 15 * tokens / 1_000_000,
4675
+ getPriceForTextOutput: (tokens) => 75 * tokens / 1_000_000,
4676
+ getPriceForAudioInput: () => 0,
4677
+ getPriceForAudioOutput: () => 0,
4678
+ currency: 'USD',
4679
+ },
4680
+ capabilities: {
4681
+ vision: true,
4682
+ tools: true,
4683
+ reasoning: true,
4684
+ webSearch: true,
4685
+ jsonOutput: false,
4686
+ structuredOutputs: true,
4687
+ },
4688
+ },
4689
+ [LLMAPI_typedefs_1.LLMAPIModelNames.ANTHROPIC_CLAUDE_OPUS_4_20250514_V1_0_AWS_BEDROCK]: {
4690
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.ANTHROPIC_CLAUDE_OPUS_4_20250514_V1_0_AWS_BEDROCK,
4691
+ limits: {
4692
+ maxInputTokens: 200_000,
4693
+ maxOutputTokens: 32_768,
4694
+ },
4695
+ config: {
4696
+ temperature: 0.2,
4697
+ },
4698
+ pricing: {
4699
+ getPriceForTextInput: (tokens) => 15 * tokens / 1_000_000,
4700
+ getPriceForTextOutput: (tokens) => 75 * tokens / 1_000_000,
5015
4701
  getPriceForAudioInput: () => 0,
5016
4702
  getPriceForAudioOutput: () => 0,
5017
4703
  currency: 'USD',
@@ -5020,48 +4706,73 @@ exports.LLMAPI_AVAILABLE_MODELS = {
5020
4706
  vision: false,
5021
4707
  tools: true,
5022
4708
  reasoning: true,
5023
- webSearch: false,
5024
- jsonOutput: true,
4709
+ webSearch: true,
4710
+ jsonOutput: false,
5025
4711
  structuredOutputs: false,
5026
4712
  },
5027
4713
  },
5028
- [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_CANOPYWAVE]: {
5029
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_CANOPYWAVE,
4714
+ [LLMAPI_typedefs_1.LLMAPIModelNames.ANTHROPIC_CLAUDE_OPUS_4_5_20251101_V1_0_AWS_BEDROCK]: {
4715
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.ANTHROPIC_CLAUDE_OPUS_4_5_20251101_V1_0_AWS_BEDROCK,
5030
4716
  limits: {
5031
- maxInputTokens: 204_800,
5032
- maxOutputTokens: 128_000,
4717
+ maxInputTokens: 200_000,
4718
+ maxOutputTokens: 32_768,
4719
+ },
4720
+ config: {
4721
+ temperature: 0.2,
4722
+ },
4723
+ pricing: {
4724
+ getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000,
4725
+ getPriceForTextOutput: (tokens) => 25 * tokens / 1_000_000,
4726
+ getPriceForAudioInput: () => 0,
4727
+ getPriceForAudioOutput: () => 0,
4728
+ currency: 'USD',
4729
+ },
4730
+ capabilities: {
4731
+ vision: true,
4732
+ tools: true,
4733
+ reasoning: true,
4734
+ webSearch: true,
4735
+ jsonOutput: false,
4736
+ structuredOutputs: true,
4737
+ },
4738
+ },
4739
+ [LLMAPI_typedefs_1.LLMAPIModelNames.ANTHROPIC_CLAUDE_OPUS_4_6_V1_AWS_BEDROCK]: {
4740
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.ANTHROPIC_CLAUDE_OPUS_4_6_V1_AWS_BEDROCK,
4741
+ limits: {
4742
+ maxInputTokens: 1_000_000,
4743
+ maxOutputTokens: 32_768,
5033
4744
  },
5034
4745
  config: {
5035
4746
  temperature: 1,
5036
4747
  },
5037
4748
  pricing: {
5038
- getPriceForTextInput: (tokens) => 0.43 * tokens / 1_000_000,
5039
- getPriceForTextOutput: (tokens) => 1.75 * tokens / 1_000_000,
4749
+ getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000,
4750
+ getPriceForTextOutput: (tokens) => 25 * tokens / 1_000_000,
5040
4751
  getPriceForAudioInput: () => 0,
5041
4752
  getPriceForAudioOutput: () => 0,
5042
4753
  currency: 'USD',
5043
4754
  },
5044
4755
  capabilities: {
5045
- vision: false,
4756
+ vision: true,
5046
4757
  tools: true,
5047
4758
  reasoning: true,
5048
- webSearch: false,
4759
+ webSearch: true,
5049
4760
  jsonOutput: true,
5050
- structuredOutputs: false,
4761
+ structuredOutputs: true,
5051
4762
  },
5052
4763
  },
5053
- [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_EMBERCLOUD]: {
5054
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_EMBERCLOUD,
4764
+ [LLMAPI_typedefs_1.LLMAPIModelNames.ANTHROPIC_CLAUDE_SONNET_4_20250514_V1_0_AWS_BEDROCK]: {
4765
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.ANTHROPIC_CLAUDE_SONNET_4_20250514_V1_0_AWS_BEDROCK,
5055
4766
  limits: {
5056
- maxInputTokens: 204_800,
5057
- maxOutputTokens: 128_000,
4767
+ maxInputTokens: 200_000,
4768
+ maxOutputTokens: 32_768,
5058
4769
  },
5059
4770
  config: {
5060
- temperature: 1,
4771
+ temperature: 0.2,
5061
4772
  },
5062
4773
  pricing: {
5063
- getPriceForTextInput: (tokens) => 0.38 * tokens / 1_000_000,
5064
- getPriceForTextOutput: (tokens) => 1.98 * tokens / 1_000_000,
4774
+ getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000,
4775
+ getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
5065
4776
  getPriceForAudioInput: () => 0,
5066
4777
  getPriceForAudioOutput: () => 0,
5067
4778
  currency: 'USD',
@@ -5070,23 +4781,23 @@ exports.LLMAPI_AVAILABLE_MODELS = {
5070
4781
  vision: false,
5071
4782
  tools: true,
5072
4783
  reasoning: true,
5073
- webSearch: false,
5074
- jsonOutput: true,
4784
+ webSearch: true,
4785
+ jsonOutput: false,
5075
4786
  structuredOutputs: false,
5076
4787
  },
5077
4788
  },
5078
- [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASH_EMBERCLOUD]: {
5079
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASH_EMBERCLOUD,
4789
+ [LLMAPI_typedefs_1.LLMAPIModelNames.ANTHROPIC_CLAUDE_SONNET_4_5_20250929_V1_0_AWS_BEDROCK]: {
4790
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.ANTHROPIC_CLAUDE_SONNET_4_5_20250929_V1_0_AWS_BEDROCK,
5080
4791
  limits: {
5081
4792
  maxInputTokens: 200_000,
5082
- maxOutputTokens: 128_000,
4793
+ maxOutputTokens: 32_768,
5083
4794
  },
5084
4795
  config: {
5085
- temperature: 1,
4796
+ temperature: 0.2,
5086
4797
  },
5087
4798
  pricing: {
5088
- getPriceForTextInput: (tokens) => 0.06 * tokens / 1_000_000,
5089
- getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000,
4799
+ getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000,
4800
+ getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
5090
4801
  getPriceForAudioInput: () => 0,
5091
4802
  getPriceForAudioOutput: () => 0,
5092
4803
  currency: 'USD',
@@ -5095,23 +4806,23 @@ exports.LLMAPI_AVAILABLE_MODELS = {
5095
4806
  vision: false,
5096
4807
  tools: true,
5097
4808
  reasoning: true,
5098
- webSearch: false,
5099
- jsonOutput: true,
5100
- structuredOutputs: false,
4809
+ webSearch: true,
4810
+ jsonOutput: false,
4811
+ structuredOutputs: true,
5101
4812
  },
5102
4813
  },
5103
- [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASH_ZAI]: {
5104
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASH_ZAI,
4814
+ [LLMAPI_typedefs_1.LLMAPIModelNames.ANTHROPIC_CLAUDE_SONNET_4_6_AWS_BEDROCK]: {
4815
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.ANTHROPIC_CLAUDE_SONNET_4_6_AWS_BEDROCK,
5105
4816
  limits: {
5106
4817
  maxInputTokens: 200_000,
5107
- maxOutputTokens: 128_000,
4818
+ maxOutputTokens: 32_768,
5108
4819
  },
5109
4820
  config: {
5110
- temperature: 1,
4821
+ temperature: 0.2,
5111
4822
  },
5112
4823
  pricing: {
5113
- getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000,
5114
- getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000,
4824
+ getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000,
4825
+ getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
5115
4826
  getPriceForAudioInput: () => 0,
5116
4827
  getPriceForAudioOutput: () => 0,
5117
4828
  currency: 'USD',
@@ -5120,23 +4831,65 @@ exports.LLMAPI_AVAILABLE_MODELS = {
5120
4831
  vision: false,
5121
4832
  tools: true,
5122
4833
  reasoning: true,
4834
+ webSearch: true,
4835
+ jsonOutput: false,
4836
+ structuredOutputs: true,
4837
+ },
4838
+ },
4839
+ [LLMAPI_typedefs_1.LLMAPIModelNames.META_LLAMA3_1_8B_INSTRUCT_V1_0_AWS_BEDROCK]: {
4840
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.META_LLAMA3_1_8B_INSTRUCT_V1_0_AWS_BEDROCK,
4841
+ limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
4842
+ config: { temperature: 0.2 },
4843
+ pricing: { getPriceForTextInput: (tokens) => 0.22 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.22 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4844
+ capabilities: {
4845
+ vision: false,
4846
+ tools: false,
4847
+ reasoning: false,
4848
+ webSearch: false,
4849
+ jsonOutput: true,
4850
+ structuredOutputs: false,
4851
+ },
4852
+ },
4853
+ [LLMAPI_typedefs_1.LLMAPIModelNames.META_LLAMA4_MAVERICK_17B_INSTRUCT_V1_0_AWS_BEDROCK]: {
4854
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.META_LLAMA4_MAVERICK_17B_INSTRUCT_V1_0_AWS_BEDROCK,
4855
+ limits: { maxInputTokens: 1_048_576, maxOutputTokens: 8_192 },
4856
+ config: { temperature: 0.2 },
4857
+ pricing: { getPriceForTextInput: (tokens) => 0.24 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.97 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4858
+ capabilities: {
4859
+ vision: true,
4860
+ tools: false,
4861
+ reasoning: false,
4862
+ webSearch: false,
4863
+ jsonOutput: true,
4864
+ structuredOutputs: false,
4865
+ },
4866
+ },
4867
+ [LLMAPI_typedefs_1.LLMAPIModelNames.META_LLAMA4_SCOUT_17B_INSTRUCT_V1_0_AWS_BEDROCK]: {
4868
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.META_LLAMA4_SCOUT_17B_INSTRUCT_V1_0_AWS_BEDROCK,
4869
+ limits: { maxInputTokens: 131_072, maxOutputTokens: 8_192 },
4870
+ config: { temperature: 0.2 },
4871
+ pricing: { getPriceForTextInput: (tokens) => 0.17 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.66 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4872
+ capabilities: {
4873
+ vision: true,
4874
+ tools: false,
4875
+ reasoning: false,
5123
4876
  webSearch: false,
5124
4877
  jsonOutput: true,
5125
4878
  structuredOutputs: false,
5126
4879
  },
5127
4880
  },
5128
- [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_NOVITA]: {
5129
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_NOVITA,
4881
+ [LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_MINIMAX_M2_5_AWS_BEDROCK]: {
4882
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_MINIMAX_M2_5_AWS_BEDROCK,
5130
4883
  limits: {
5131
4884
  maxInputTokens: 204_800,
5132
- maxOutputTokens: 128_000,
4885
+ maxOutputTokens: 16_384,
5133
4886
  },
5134
4887
  config: {
5135
- temperature: 1,
4888
+ temperature: 0.2,
5136
4889
  },
5137
4890
  pricing: {
5138
- getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
5139
- getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
4891
+ getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
4892
+ getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000,
5140
4893
  getPriceForAudioInput: () => 0,
5141
4894
  getPriceForAudioOutput: () => 0,
5142
4895
  currency: 'USD',
@@ -5150,18 +4903,32 @@ exports.LLMAPI_AVAILABLE_MODELS = {
5150
4903
  structuredOutputs: false,
5151
4904
  },
5152
4905
  },
5153
- [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_ZAI]: {
5154
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_ZAI,
4906
+ [LLMAPI_typedefs_1.LLMAPIModelNames.OPENAI_GPT_OSS_120B_1_0_AWS_BEDROCK]: {
4907
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.OPENAI_GPT_OSS_120B_1_0_AWS_BEDROCK,
4908
+ limits: { maxInputTokens: 131_072, maxOutputTokens: 131_072 },
4909
+ config: { temperature: 0.2 },
4910
+ pricing: { getPriceForTextInput: (tokens) => 0.15 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.6 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
4911
+ capabilities: {
4912
+ vision: false,
4913
+ tools: true,
4914
+ reasoning: false,
4915
+ webSearch: false,
4916
+ jsonOutput: true,
4917
+ structuredOutputs: false,
4918
+ },
4919
+ },
4920
+ [LLMAPI_typedefs_1.LLMAPIModelNames.OPENAI_GPT_OSS_20B_1_0_AWS_BEDROCK]: {
4921
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.OPENAI_GPT_OSS_20B_1_0_AWS_BEDROCK,
5155
4922
  limits: {
5156
- maxInputTokens: 204_800,
5157
- maxOutputTokens: 128_000,
4923
+ maxInputTokens: 131_072,
4924
+ maxOutputTokens: 32_768,
5158
4925
  },
5159
4926
  config: {
5160
- temperature: 1,
4927
+ temperature: 0.2,
5161
4928
  },
5162
4929
  pricing: {
5163
- getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
5164
- getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
4930
+ getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000,
4931
+ getPriceForTextOutput: (tokens) => 0.5 * tokens / 1_000_000,
5165
4932
  getPriceForAudioInput: () => 0,
5166
4933
  getPriceForAudioOutput: () => 0,
5167
4934
  currency: 'USD',
@@ -5175,18 +4942,18 @@ exports.LLMAPI_AVAILABLE_MODELS = {
5175
4942
  structuredOutputs: false,
5176
4943
  },
5177
4944
  },
5178
- [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_CANOPYWAVE]: {
5179
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_CANOPYWAVE,
4945
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_CODER_NEXT_AWS_BEDROCK]: {
4946
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_CODER_NEXT_AWS_BEDROCK,
5180
4947
  limits: {
5181
- maxInputTokens: 202_800,
4948
+ maxInputTokens: 262_144,
5182
4949
  maxOutputTokens: 128_000,
5183
4950
  },
5184
4951
  config: {
5185
4952
  temperature: 1,
5186
4953
  },
5187
4954
  pricing: {
5188
- getPriceForTextInput: (tokens) => 0.9 * tokens / 1_000_000,
5189
- getPriceForTextOutput: (tokens) => 3.1 * tokens / 1_000_000,
4955
+ getPriceForTextInput: (tokens) => 0.108 * tokens / 1_000_000,
4956
+ getPriceForTextOutput: (tokens) => 0.675 * tokens / 1_000_000,
5190
4957
  getPriceForAudioInput: () => 0,
5191
4958
  getPriceForAudioOutput: () => 0,
5192
4959
  currency: 'USD',
@@ -5197,337 +4964,1867 @@ exports.LLMAPI_AVAILABLE_MODELS = {
5197
4964
  reasoning: true,
5198
4965
  webSearch: false,
5199
4966
  jsonOutput: true,
5200
- structuredOutputs: false,
4967
+ structuredOutputs: true,
5201
4968
  },
5202
4969
  },
5203
- [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_EMBERCLOUD]: {
5204
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_EMBERCLOUD,
4970
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CHAT_AZURE]: {
4971
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CHAT_AZURE,
5205
4972
  limits: {
5206
- maxInputTokens: 202_800,
5207
- maxOutputTokens: 128_000,
4973
+ maxInputTokens: 128_000,
4974
+ maxOutputTokens: 16_384,
5208
4975
  },
5209
4976
  config: {
5210
4977
  temperature: 1,
5211
4978
  },
5212
4979
  pricing: {
5213
- getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
5214
- getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
4980
+ getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000,
4981
+ getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000,
5215
4982
  getPriceForAudioInput: () => 0,
5216
4983
  getPriceForAudioOutput: () => 0,
5217
4984
  currency: 'USD',
5218
4985
  },
5219
4986
  capabilities: {
5220
- vision: false,
4987
+ vision: true,
5221
4988
  tools: true,
5222
4989
  reasoning: true,
4990
+ webSearch: true,
4991
+ jsonOutput: false,
4992
+ structuredOutputs: true,
4993
+ },
4994
+ },
4995
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CHAT_AZURE]: {
4996
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CHAT_AZURE,
4997
+ limits: {
4998
+ maxInputTokens: 128_000,
4999
+ maxOutputTokens: 16_384,
5000
+ },
5001
+ config: {
5002
+ temperature: 0.2,
5003
+ },
5004
+ pricing: {
5005
+ getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000,
5006
+ getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000,
5007
+ getPriceForAudioInput: () => 0,
5008
+ getPriceForAudioOutput: () => 0,
5009
+ currency: 'USD',
5010
+ },
5011
+ capabilities: {
5012
+ vision: true,
5013
+ tools: true,
5014
+ reasoning: false,
5223
5015
  webSearch: false,
5224
5016
  jsonOutput: true,
5225
- structuredOutputs: false,
5017
+ structuredOutputs: true,
5226
5018
  },
5227
5019
  },
5228
- [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_NOVITA]: {
5229
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_NOVITA,
5020
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_MINI_AZURE]: {
5021
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_MINI_AZURE,
5230
5022
  limits: {
5231
- maxInputTokens: 202_800,
5023
+ maxInputTokens: 400_000,
5232
5024
  maxOutputTokens: 128_000,
5233
5025
  },
5234
5026
  config: {
5235
5027
  temperature: 1,
5236
5028
  },
5237
5029
  pricing: {
5238
- getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000,
5239
- getPriceForTextOutput: (tokens) => 3.2 * tokens / 1_000_000,
5030
+ getPriceForTextInput: (tokens) => 0.75 * tokens / 1_000_000,
5031
+ getPriceForTextOutput: (tokens) => 4.5 * tokens / 1_000_000,
5240
5032
  getPriceForAudioInput: () => 0,
5241
5033
  getPriceForAudioOutput: () => 0,
5242
5034
  currency: 'USD',
5243
5035
  },
5244
5036
  capabilities: {
5245
- vision: false,
5037
+ vision: true,
5246
5038
  tools: true,
5247
5039
  reasoning: true,
5248
- webSearch: false,
5040
+ webSearch: true,
5249
5041
  jsonOutput: true,
5250
- structuredOutputs: false,
5042
+ structuredOutputs: true,
5251
5043
  },
5252
5044
  },
5253
- [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_ZAI]: {
5254
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_ZAI,
5045
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_NANO_AZURE]: {
5046
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_NANO_AZURE,
5255
5047
  limits: {
5256
- maxInputTokens: 202_800,
5048
+ maxInputTokens: 400_000,
5257
5049
  maxOutputTokens: 128_000,
5258
5050
  },
5259
5051
  config: {
5260
5052
  temperature: 1,
5261
5053
  },
5262
5054
  pricing: {
5263
- getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000,
5264
- getPriceForTextOutput: (tokens) => 3.2 * tokens / 1_000_000,
5055
+ getPriceForTextInput: (tokens) => 0.2 * tokens / 1_000_000,
5056
+ getPriceForTextOutput: (tokens) => 1.25 * tokens / 1_000_000,
5265
5057
  getPriceForAudioInput: () => 0,
5266
5058
  getPriceForAudioOutput: () => 0,
5267
5059
  currency: 'USD',
5268
5060
  },
5269
5061
  capabilities: {
5270
- vision: false,
5062
+ vision: true,
5271
5063
  tools: true,
5272
5064
  reasoning: true,
5273
- webSearch: false,
5065
+ webSearch: true,
5274
5066
  jsonOutput: true,
5275
- structuredOutputs: false,
5067
+ structuredOutputs: true,
5276
5068
  },
5277
5069
  },
5278
- // ─── OpenAI explicit provider variants ────────────────────────
5279
- [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_OPENAI]: {
5280
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_OPENAI,
5281
- limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
5282
- config: { temperature: 1 },
5283
- pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5284
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
5070
+ [LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_5_AZURE]: {
5071
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_5_AZURE,
5072
+ limits: {
5073
+ maxInputTokens: 262_144,
5074
+ maxOutputTokens: 128_000,
5075
+ },
5076
+ config: {
5077
+ temperature: 0.2,
5078
+ },
5079
+ pricing: {
5080
+ getPriceForTextInput: (tokens) => 0.405 * tokens / 1_000_000,
5081
+ getPriceForTextOutput: (tokens) => 1.98 * tokens / 1_000_000,
5082
+ getPriceForAudioInput: () => 0,
5083
+ getPriceForAudioOutput: () => 0,
5084
+ currency: 'USD',
5085
+ },
5086
+ capabilities: {
5087
+ vision: true,
5088
+ tools: true,
5089
+ reasoning: false,
5090
+ webSearch: false,
5091
+ jsonOutput: true,
5092
+ structuredOutputs: false,
5093
+ },
5094
+ },
5095
+ [LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_DEEPSEEK_CHAT_V3_2_CANOPYWAVE]: {
5096
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_DEEPSEEK_CHAT_V3_2_CANOPYWAVE,
5097
+ limits: { maxInputTokens: 163_840, maxOutputTokens: 8_192 },
5098
+ config: { temperature: 0.2 },
5099
+ pricing: { getPriceForTextInput: (tokens) => 0.28 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.42 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5100
+ capabilities: {
5101
+ vision: true,
5102
+ tools: true,
5103
+ reasoning: false,
5104
+ webSearch: false,
5105
+ jsonOutput: true,
5106
+ structuredOutputs: false,
5107
+ },
5108
+ },
5109
+ [LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_MINIMAX_M2_1_CANOPYWAVE]: {
5110
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_MINIMAX_M2_1_CANOPYWAVE,
5111
+ limits: {
5112
+ maxInputTokens: 204_800,
5113
+ maxOutputTokens: 128_000,
5114
+ },
5115
+ config: {
5116
+ temperature: 1,
5117
+ },
5118
+ pricing: {
5119
+ getPriceForTextInput: (tokens) => 0.27 * tokens / 1_000_000,
5120
+ getPriceForTextOutput: (tokens) => 1.08 * tokens / 1_000_000,
5121
+ getPriceForAudioInput: () => 0,
5122
+ getPriceForAudioOutput: () => 0,
5123
+ currency: 'USD',
5124
+ },
5125
+ capabilities: {
5126
+ vision: false,
5127
+ tools: true,
5128
+ reasoning: true,
5129
+ webSearch: false,
5130
+ jsonOutput: true,
5131
+ structuredOutputs: false,
5132
+ },
5133
+ },
5134
+ [LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_MINIMAX_M2_5_CANOPYWAVE]: {
5135
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_MINIMAX_M2_5_CANOPYWAVE,
5136
+ limits: {
5137
+ maxInputTokens: 204_800,
5138
+ maxOutputTokens: 16_384,
5139
+ },
5140
+ config: {
5141
+ temperature: 0.2,
5142
+ },
5143
+ pricing: {
5144
+ getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
5145
+ getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000,
5146
+ getPriceForAudioInput: () => 0,
5147
+ getPriceForAudioOutput: () => 0,
5148
+ currency: 'USD',
5149
+ },
5150
+ capabilities: {
5151
+ vision: false,
5152
+ tools: true,
5153
+ reasoning: true,
5154
+ webSearch: false,
5155
+ jsonOutput: true,
5156
+ structuredOutputs: false,
5157
+ },
5158
+ },
5159
+ [LLMAPI_typedefs_1.LLMAPIModelNames.MOONSHOTAI_KIMI_K2_5_CANOPYWAVE]: {
5160
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.MOONSHOTAI_KIMI_K2_5_CANOPYWAVE,
5161
+ limits: {
5162
+ maxInputTokens: 262_144,
5163
+ maxOutputTokens: 128_000,
5164
+ },
5165
+ config: {
5166
+ temperature: 0.2,
5167
+ },
5168
+ pricing: {
5169
+ getPriceForTextInput: (tokens) => 0.405 * tokens / 1_000_000,
5170
+ getPriceForTextOutput: (tokens) => 1.98 * tokens / 1_000_000,
5171
+ getPriceForAudioInput: () => 0,
5172
+ getPriceForAudioOutput: () => 0,
5173
+ currency: 'USD',
5174
+ },
5175
+ capabilities: {
5176
+ vision: true,
5177
+ tools: true,
5178
+ reasoning: false,
5179
+ webSearch: false,
5180
+ jsonOutput: true,
5181
+ structuredOutputs: false,
5182
+ },
5183
+ },
5184
+ [LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_GLM_4_7_CANOPYWAVE]: {
5185
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_GLM_4_7_CANOPYWAVE,
5186
+ limits: {
5187
+ maxInputTokens: 204_800,
5188
+ maxOutputTokens: 128_000,
5189
+ },
5190
+ config: {
5191
+ temperature: 1,
5192
+ },
5193
+ pricing: {
5194
+ getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
5195
+ getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
5196
+ getPriceForAudioInput: () => 0,
5197
+ getPriceForAudioOutput: () => 0,
5198
+ currency: 'USD',
5199
+ },
5200
+ capabilities: {
5201
+ vision: false,
5202
+ tools: true,
5203
+ reasoning: true,
5204
+ webSearch: false,
5205
+ jsonOutput: true,
5206
+ structuredOutputs: false,
5207
+ },
5208
+ },
5209
+ [LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_GLM_5_CANOPYWAVE]: {
5210
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_GLM_5_CANOPYWAVE,
5211
+ limits: {
5212
+ maxInputTokens: 202_800,
5213
+ maxOutputTokens: 16_384,
5214
+ },
5215
+ config: {
5216
+ temperature: 0.2,
5217
+ },
5218
+ pricing: {
5219
+ getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000,
5220
+ getPriceForTextOutput: (tokens) => 3.2 * tokens / 1_000_000,
5221
+ getPriceForAudioInput: () => 0,
5222
+ getPriceForAudioOutput: () => 0,
5223
+ currency: 'USD',
5224
+ },
5225
+ capabilities: {
5226
+ vision: false,
5227
+ tools: true,
5228
+ reasoning: true,
5229
+ webSearch: true,
5230
+ jsonOutput: true,
5231
+ structuredOutputs: false,
5232
+ },
5233
+ },
5234
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_OSS_120B_CEREBRAS]: {
5235
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_OSS_120B_CEREBRAS,
5236
+ limits: { maxInputTokens: 131_072, maxOutputTokens: 65_536 },
5237
+ config: { temperature: 0.2 },
5238
+ pricing: { getPriceForTextInput: (tokens) => 0.35 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.75 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5239
+ capabilities: {
5240
+ vision: false,
5241
+ tools: true,
5242
+ reasoning: true,
5243
+ webSearch: false,
5244
+ jsonOutput: true,
5245
+ structuredOutputs: false,
5246
+ },
5247
+ },
5248
+ [LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_3_HAIKU]: {
5249
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_3_HAIKU,
5250
+ limits: { maxInputTokens: 200_000, maxOutputTokens: 4_096 },
5251
+ config: { temperature: 0.2 },
5252
+ pricing: { getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5253
+ capabilities: {
5254
+ vision: true,
5255
+ tools: true,
5256
+ reasoning: false,
5257
+ webSearch: false,
5258
+ jsonOutput: false,
5259
+ structuredOutputs: false,
5260
+ },
5261
+ },
5262
+ [LLMAPI_typedefs_1.LLMAPIModelNames.COGVIEW_4]: {
5263
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.COGVIEW_4,
5264
+ limits: { maxInputTokens: 2_000, maxOutputTokens: 8_192 },
5265
+ config: { temperature: 0.2 },
5266
+ pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5267
+ capabilities: {
5268
+ vision: false,
5269
+ tools: false,
5270
+ reasoning: false,
5271
+ webSearch: false,
5272
+ jsonOutput: false,
5273
+ structuredOutputs: false,
5274
+ },
5275
+ },
5276
+ [LLMAPI_typedefs_1.LLMAPIModelNames.CUSTOM]: {
5277
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.CUSTOM,
5278
+ limits: { maxInputTokens: 128_000, maxOutputTokens: 16_384 },
5279
+ config: { temperature: 0.2 },
5280
+ pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5281
+ capabilities: {
5282
+ vision: true,
5283
+ tools: true,
5284
+ reasoning: false,
5285
+ webSearch: false,
5286
+ jsonOutput: true,
5287
+ structuredOutputs: false,
5288
+ },
5289
+ },
5290
+ [LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_CHAT_DEEPSEEK]: {
5291
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.DEEPSEEK_CHAT_DEEPSEEK,
5292
+ limits: { maxInputTokens: 163_840, maxOutputTokens: 8_192 },
5293
+ config: { temperature: 0.2 },
5294
+ pricing: { getPriceForTextInput: (tokens) => 0.28 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.42 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5295
+ capabilities: {
5296
+ vision: true,
5297
+ tools: true,
5298
+ reasoning: false,
5299
+ webSearch: false,
5300
+ jsonOutput: true,
5301
+ structuredOutputs: false,
5302
+ },
5303
+ },
5304
+ [LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_MINIMAX_M2_5_EMBERCLOUD]: {
5305
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_MINIMAX_M2_5_EMBERCLOUD,
5306
+ limits: {
5307
+ maxInputTokens: 204_800,
5308
+ maxOutputTokens: 16_384,
5309
+ },
5310
+ config: {
5311
+ temperature: 0.2,
5312
+ },
5313
+ pricing: {
5314
+ getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
5315
+ getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000,
5316
+ getPriceForAudioInput: () => 0,
5317
+ getPriceForAudioOutput: () => 0,
5318
+ currency: 'USD',
5319
+ },
5320
+ capabilities: {
5321
+ vision: false,
5322
+ tools: true,
5323
+ reasoning: true,
5324
+ webSearch: false,
5325
+ jsonOutput: true,
5326
+ structuredOutputs: false,
5327
+ },
5328
+ },
5329
+ [LLMAPI_typedefs_1.LLMAPIModelNames.MOONSHOTAI_KIMI_K2_5_EMBERCLOUD]: {
5330
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.MOONSHOTAI_KIMI_K2_5_EMBERCLOUD,
5331
+ limits: {
5332
+ maxInputTokens: 262_144,
5333
+ maxOutputTokens: 128_000,
5334
+ },
5335
+ config: {
5336
+ temperature: 0.2,
5337
+ },
5338
+ pricing: {
5339
+ getPriceForTextInput: (tokens) => 0.405 * tokens / 1_000_000,
5340
+ getPriceForTextOutput: (tokens) => 1.98 * tokens / 1_000_000,
5341
+ getPriceForAudioInput: () => 0,
5342
+ getPriceForAudioOutput: () => 0,
5343
+ currency: 'USD',
5344
+ },
5345
+ capabilities: {
5346
+ vision: true,
5347
+ tools: true,
5348
+ reasoning: false,
5349
+ webSearch: false,
5350
+ jsonOutput: true,
5351
+ structuredOutputs: false,
5352
+ },
5353
+ },
5354
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_NEXT_EMBERCLOUD]: {
5355
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_NEXT_EMBERCLOUD,
5356
+ limits: {
5357
+ maxInputTokens: 262_144,
5358
+ maxOutputTokens: 128_000,
5359
+ },
5360
+ config: {
5361
+ temperature: 1,
5362
+ },
5363
+ pricing: {
5364
+ getPriceForTextInput: (tokens) => 0.108 * tokens / 1_000_000,
5365
+ getPriceForTextOutput: (tokens) => 0.675 * tokens / 1_000_000,
5366
+ getPriceForAudioInput: () => 0,
5367
+ getPriceForAudioOutput: () => 0,
5368
+ currency: 'USD',
5369
+ },
5370
+ capabilities: {
5371
+ vision: false,
5372
+ tools: true,
5373
+ reasoning: true,
5374
+ webSearch: false,
5375
+ jsonOutput: true,
5376
+ structuredOutputs: true,
5377
+ },
5378
+ },
5379
+ [LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_GLM_4_7_EMBERCLOUD]: {
5380
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_GLM_4_7_EMBERCLOUD,
5381
+ limits: {
5382
+ maxInputTokens: 204_800,
5383
+ maxOutputTokens: 128_000,
5384
+ },
5385
+ config: {
5386
+ temperature: 1,
5387
+ },
5388
+ pricing: {
5389
+ getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
5390
+ getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
5391
+ getPriceForAudioInput: () => 0,
5392
+ getPriceForAudioOutput: () => 0,
5393
+ currency: 'USD',
5394
+ },
5395
+ capabilities: {
5396
+ vision: false,
5397
+ tools: true,
5398
+ reasoning: true,
5399
+ webSearch: false,
5400
+ jsonOutput: true,
5401
+ structuredOutputs: false,
5402
+ },
5403
+ },
5404
+ [LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_GLM_5_EMBERCLOUD]: {
5405
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_GLM_5_EMBERCLOUD,
5406
+ limits: {
5407
+ maxInputTokens: 202_800,
5408
+ maxOutputTokens: 16_384,
5409
+ },
5410
+ config: {
5411
+ temperature: 0.2,
5412
+ },
5413
+ pricing: {
5414
+ getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000,
5415
+ getPriceForTextOutput: (tokens) => 3.2 * tokens / 1_000_000,
5416
+ getPriceForAudioInput: () => 0,
5417
+ getPriceForAudioOutput: () => 0,
5418
+ currency: 'USD',
5419
+ },
5420
+ capabilities: {
5421
+ vision: false,
5422
+ tools: true,
5423
+ reasoning: true,
5424
+ webSearch: true,
5425
+ jsonOutput: true,
5426
+ structuredOutputs: false,
5427
+ },
5428
+ },
5429
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_PRO_IMAGE]: {
5430
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_PRO_IMAGE,
5431
+ limits: { maxInputTokens: 1_000, maxOutputTokens: 8_192 },
5432
+ config: { temperature: 0.2 },
5433
+ pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5434
+ capabilities: {
5435
+ vision: false,
5436
+ tools: false,
5437
+ reasoning: false,
5438
+ webSearch: false,
5439
+ jsonOutput: false,
5440
+ structuredOutputs: false,
5441
+ },
5442
+ },
5443
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_PRO_IMAGE_PREVIEW]: {
5444
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_PRO_IMAGE_PREVIEW,
5445
+ limits: { maxInputTokens: 65_536, maxOutputTokens: 8_192 },
5446
+ config: { temperature: 0.2 },
5447
+ pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 12 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5448
+ capabilities: {
5449
+ vision: true,
5450
+ tools: false,
5451
+ reasoning: false,
5452
+ webSearch: false,
5453
+ jsonOutput: true,
5454
+ structuredOutputs: true,
5455
+ },
5456
+ },
5457
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_FLASH_IMAGE_PREVIEW]: {
5458
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_FLASH_IMAGE_PREVIEW,
5459
+ limits: { maxInputTokens: 131_072, maxOutputTokens: 8_192 },
5460
+ config: { temperature: 0.2 },
5461
+ pricing: { getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5462
+ capabilities: {
5463
+ vision: true,
5464
+ tools: false,
5465
+ reasoning: true,
5466
+ webSearch: false,
5467
+ jsonOutput: false,
5468
+ structuredOutputs: false,
5469
+ },
5470
+ },
5471
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_TURBO]: {
5472
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_TURBO,
5473
+ limits: { maxInputTokens: 200_000, maxOutputTokens: 65_536 },
5474
+ config: { temperature: 0.2 },
5475
+ pricing: { getPriceForTextInput: (tokens) => 1.2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5476
+ capabilities: {
5477
+ vision: false,
5478
+ tools: true,
5479
+ reasoning: true,
5480
+ webSearch: false,
5481
+ jsonOutput: true,
5482
+ structuredOutputs: false,
5483
+ },
5484
+ },
5485
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_1]: {
5486
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_1,
5487
+ limits: { maxInputTokens: 202_800, maxOutputTokens: 65_536 },
5488
+ config: { temperature: 0.2 },
5489
+ pricing: { getPriceForTextInput: (tokens) => 1.4 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5490
+ capabilities: {
5491
+ vision: false,
5492
+ tools: true,
5493
+ reasoning: true,
5494
+ webSearch: false,
5495
+ jsonOutput: true,
5496
+ structuredOutputs: false,
5497
+ },
5498
+ },
5499
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5V_TURBO]: {
5500
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5V_TURBO,
5501
+ limits: { maxInputTokens: 200_000, maxOutputTokens: 16_384 },
5502
+ config: { temperature: 0.2 },
5503
+ pricing: { getPriceForTextInput: (tokens) => 1.2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5504
+ capabilities: {
5505
+ vision: true,
5506
+ tools: true,
5507
+ reasoning: true,
5508
+ webSearch: false,
5509
+ jsonOutput: true,
5510
+ structuredOutputs: false,
5511
+ },
5512
+ },
5513
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_IMAGE]: {
5514
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_IMAGE,
5515
+ limits: { maxInputTokens: 2_000, maxOutputTokens: 8_192 },
5516
+ config: { temperature: 0.2 },
5517
+ pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5518
+ capabilities: {
5519
+ vision: false,
5520
+ tools: false,
5521
+ reasoning: false,
5522
+ webSearch: false,
5523
+ jsonOutput: false,
5524
+ structuredOutputs: false,
5525
+ },
5526
+ },
5527
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_OCR]: {
5528
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_OCR,
5529
+ limits: { maxInputTokens: 8_000, maxOutputTokens: 8_192 },
5530
+ config: { temperature: 0.2 },
5531
+ pricing: { getPriceForTextInput: (tokens) => 0.03 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.03 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5532
+ capabilities: {
5533
+ vision: true,
5534
+ tools: false,
5535
+ reasoning: false,
5536
+ webSearch: false,
5537
+ jsonOutput: true,
5538
+ structuredOutputs: false,
5539
+ },
5540
+ },
5541
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_PRO_IMAGE_PREVIEW_GOOGLE_AI_STUDIO]: {
5542
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_PRO_IMAGE_PREVIEW_GOOGLE_AI_STUDIO,
5543
+ limits: { maxInputTokens: 65_536, maxOutputTokens: 8_192 },
5544
+ config: { temperature: 0.2 },
5545
+ pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 12 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5546
+ capabilities: {
5547
+ vision: true,
5548
+ tools: false,
5549
+ reasoning: false,
5550
+ webSearch: false,
5551
+ jsonOutput: true,
5552
+ structuredOutputs: true,
5553
+ },
5554
+ },
5555
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_FLASH_IMAGE_PREVIEW_GOOGLE_AI_STUDIO]: {
5556
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_FLASH_IMAGE_PREVIEW_GOOGLE_AI_STUDIO,
5557
+ limits: { maxInputTokens: 131_072, maxOutputTokens: 8_192 },
5558
+ config: { temperature: 0.2 },
5559
+ pricing: { getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5560
+ capabilities: {
5561
+ vision: true,
5562
+ tools: false,
5563
+ reasoning: true,
5564
+ webSearch: false,
5565
+ jsonOutput: false,
5566
+ structuredOutputs: false,
5567
+ },
5568
+ },
5569
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_PRO_IMAGE_PREVIEW_GOOGLE_VERTEX]: {
5570
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_PRO_IMAGE_PREVIEW_GOOGLE_VERTEX,
5571
+ limits: { maxInputTokens: 65_536, maxOutputTokens: 8_192 },
5572
+ config: { temperature: 0.2 },
5573
+ pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 12 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5574
+ capabilities: {
5575
+ vision: true,
5576
+ tools: false,
5577
+ reasoning: false,
5578
+ webSearch: false,
5579
+ jsonOutput: true,
5580
+ structuredOutputs: true,
5581
+ },
5582
+ },
5583
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_FLASH_IMAGE_PREVIEW_GOOGLE_VERTEX]: {
5584
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_FLASH_IMAGE_PREVIEW_GOOGLE_VERTEX,
5585
+ limits: { maxInputTokens: 131_072, maxOutputTokens: 8_192 },
5586
+ config: { temperature: 0.2 },
5587
+ pricing: { getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5588
+ capabilities: {
5589
+ vision: true,
5590
+ tools: false,
5591
+ reasoning: true,
5592
+ webSearch: false,
5593
+ jsonOutput: false,
5594
+ structuredOutputs: false,
5595
+ },
5596
+ },
5597
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_OSS_120B]: {
5598
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_OSS_120B,
5599
+ limits: { maxInputTokens: 131_072, maxOutputTokens: 131_072 },
5600
+ config: { temperature: 0.2 },
5601
+ pricing: { getPriceForTextInput: (tokens) => 0.15 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.75 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5602
+ capabilities: {
5603
+ vision: false,
5604
+ tools: true,
5605
+ reasoning: true,
5606
+ webSearch: false,
5607
+ jsonOutput: true,
5608
+ structuredOutputs: false,
5609
+ },
5610
+ },
5611
+ [LLMAPI_typedefs_1.LLMAPIModelNames.MOONSHOTAI_KIMI_K2_INSTRUCT_GROQ]: {
5612
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.MOONSHOTAI_KIMI_K2_INSTRUCT_GROQ,
5613
+ limits: { maxInputTokens: 131_072, maxOutputTokens: 16_384 },
5614
+ config: { temperature: 0.2 },
5615
+ pricing: { getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5616
+ capabilities: {
5617
+ vision: false,
5618
+ tools: true,
5619
+ reasoning: false,
5620
+ webSearch: false,
5621
+ jsonOutput: true,
5622
+ structuredOutputs: false,
5623
+ },
5624
+ },
5625
+ [LLMAPI_typedefs_1.LLMAPIModelNames.OPENAI_GPT_OSS_20B_GROQ]: {
5626
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.OPENAI_GPT_OSS_20B_GROQ,
5627
+ limits: {
5628
+ maxInputTokens: 131_072,
5629
+ maxOutputTokens: 32_768,
5630
+ },
5631
+ config: {
5632
+ temperature: 0.2,
5633
+ },
5634
+ pricing: {
5635
+ getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000,
5636
+ getPriceForTextOutput: (tokens) => 0.5 * tokens / 1_000_000,
5637
+ getPriceForAudioInput: () => 0,
5638
+ getPriceForAudioOutput: () => 0,
5639
+ currency: 'USD',
5640
+ },
5641
+ capabilities: {
5642
+ vision: false,
5643
+ tools: true,
5644
+ reasoning: true,
5645
+ webSearch: false,
5646
+ jsonOutput: true,
5647
+ structuredOutputs: false,
5648
+ },
5649
+ },
5650
+ [LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_GUARD_3_8B]: {
5651
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA_GUARD_3_8B,
5652
+ limits: { maxInputTokens: 8_192, maxOutputTokens: 8_192 },
5653
+ config: { temperature: 0.2 },
5654
+ pricing: { getPriceForTextInput: (tokens) => 0.02 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.06 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5655
+ capabilities: {
5656
+ vision: false,
5657
+ tools: false,
5658
+ reasoning: false,
5659
+ webSearch: false,
5660
+ jsonOutput: false,
5661
+ structuredOutputs: false,
5662
+ },
5663
+ },
5664
+ [LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA3_1_8B]: {
5665
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.LLAMA3_1_8B,
5666
+ limits: { maxInputTokens: 32_000, maxOutputTokens: 8_192 },
5667
+ config: { temperature: 0.2 },
5668
+ pricing: { getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.1 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5669
+ capabilities: {
5670
+ vision: false,
5671
+ tools: true,
5672
+ reasoning: false,
5673
+ webSearch: false,
5674
+ jsonOutput: true,
5675
+ structuredOutputs: true,
5676
+ },
5677
+ },
5678
+ [LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_HIGHSPEED]: {
5679
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_HIGHSPEED,
5680
+ limits: { maxInputTokens: 204_800, maxOutputTokens: 32_768 },
5681
+ config: { temperature: 0.2 },
5682
+ pricing: { getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5683
+ capabilities: {
5684
+ vision: false,
5685
+ tools: true,
5686
+ reasoning: true,
5687
+ webSearch: false,
5688
+ jsonOutput: true,
5689
+ structuredOutputs: false,
5690
+ },
5691
+ },
5692
+ [LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_7]: {
5693
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_7,
5694
+ limits: { maxInputTokens: 204_800, maxOutputTokens: 65_536 },
5695
+ config: { temperature: 0.2 },
5696
+ pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5697
+ capabilities: {
5698
+ vision: false,
5699
+ tools: true,
5700
+ reasoning: true,
5701
+ webSearch: false,
5702
+ jsonOutput: true,
5703
+ structuredOutputs: false,
5704
+ },
5705
+ },
5706
+ [LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1_MINIMAX_2]: {
5707
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1_MINIMAX_2,
5708
+ limits: {
5709
+ maxInputTokens: 204_800,
5710
+ maxOutputTokens: 128_000,
5711
+ },
5712
+ config: {
5713
+ temperature: 1,
5714
+ },
5715
+ pricing: {
5716
+ getPriceForTextInput: (tokens) => 0.27 * tokens / 1_000_000,
5717
+ getPriceForTextOutput: (tokens) => 1.08 * tokens / 1_000_000,
5718
+ getPriceForAudioInput: () => 0,
5719
+ getPriceForAudioOutput: () => 0,
5720
+ currency: 'USD',
5721
+ },
5722
+ capabilities: {
5723
+ vision: false,
5724
+ tools: true,
5725
+ reasoning: true,
5726
+ webSearch: false,
5727
+ jsonOutput: true,
5728
+ structuredOutputs: false,
5729
+ },
5730
+ },
5731
+ [LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_MINIMAX]: {
5732
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_MINIMAX,
5733
+ limits: {
5734
+ maxInputTokens: 204_800,
5735
+ maxOutputTokens: 16_384,
5736
+ },
5737
+ config: {
5738
+ temperature: 0.2,
5739
+ },
5740
+ pricing: {
5741
+ getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
5742
+ getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000,
5743
+ getPriceForAudioInput: () => 0,
5744
+ getPriceForAudioOutput: () => 0,
5745
+ currency: 'USD',
5746
+ },
5747
+ capabilities: {
5748
+ vision: false,
5749
+ tools: true,
5750
+ reasoning: true,
5751
+ webSearch: false,
5752
+ jsonOutput: true,
5753
+ structuredOutputs: false,
5754
+ },
5755
+ },
5756
+ [LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_0711_PREVIEW_MOONSHOT]: {
5757
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_0711_PREVIEW_MOONSHOT,
5758
+ limits: { maxInputTokens: 131_072, maxOutputTokens: 16_384 },
5759
+ config: { temperature: 0.2 },
5760
+ pricing: { getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5761
+ capabilities: {
5762
+ vision: false,
5763
+ tools: true,
5764
+ reasoning: false,
5765
+ webSearch: false,
5766
+ jsonOutput: true,
5767
+ structuredOutputs: false,
5768
+ },
5769
+ },
5770
+ [LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_0905_PREVIEW_MOONSHOT]: {
5771
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.KIMI_K2_0905_PREVIEW_MOONSHOT,
5772
+ limits: { maxInputTokens: 131_072, maxOutputTokens: 16_384 },
5773
+ config: { temperature: 0.2 },
5774
+ pricing: { getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5775
+ capabilities: {
5776
+ vision: false,
5777
+ tools: true,
5778
+ reasoning: false,
5779
+ webSearch: false,
5780
+ jsonOutput: true,
5781
+ structuredOutputs: false,
5782
+ },
5783
+ },
5784
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_235B_A22B_INSTRUCT_2507_NEBIUS]: {
5785
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_235B_A22B_INSTRUCT_2507_NEBIUS,
5786
+ limits: {
5787
+ maxInputTokens: 262_000,
5788
+ maxOutputTokens: 16_384,
5789
+ },
5790
+ config: {
5791
+ temperature: 0.2,
5792
+ },
5793
+ pricing: {
5794
+ getPriceForTextInput: (tokens) => 0.2 * tokens / 1_000_000,
5795
+ getPriceForTextOutput: (tokens) => 0.6 * tokens / 1_000_000,
5796
+ getPriceForAudioInput: () => 0,
5797
+ getPriceForAudioOutput: () => 0,
5798
+ currency: 'USD',
5799
+ },
5800
+ capabilities: {
5801
+ vision: false,
5802
+ tools: true,
5803
+ reasoning: false,
5804
+ webSearch: false,
5805
+ jsonOutput: true,
5806
+ structuredOutputs: false,
5807
+ },
5808
+ },
5809
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_235B_A22B_THINKING_2507_NEBIUS]: {
5810
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_235B_A22B_THINKING_2507_NEBIUS,
5811
+ limits: {
5812
+ maxInputTokens: 262_000,
5813
+ maxOutputTokens: 128_000,
5814
+ },
5815
+ config: {
5816
+ temperature: 0.2,
5817
+ },
5818
+ pricing: {
5819
+ getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
5820
+ getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000,
5821
+ getPriceForAudioInput: () => 0,
5822
+ getPriceForAudioOutput: () => 0,
5823
+ currency: 'USD',
5824
+ },
5825
+ capabilities: {
5826
+ vision: false,
5827
+ tools: true,
5828
+ reasoning: false,
5829
+ webSearch: false,
5830
+ jsonOutput: true,
5831
+ structuredOutputs: false,
5832
+ },
5833
+ },
5834
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_CODER_30B_A3B_INSTRUCT_NEBIUS]: {
5835
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_CODER_30B_A3B_INSTRUCT_NEBIUS,
5836
+ limits: {
5837
+ maxInputTokens: 262_000,
5838
+ maxOutputTokens: 128_000,
5839
+ },
5840
+ config: {
5841
+ temperature: 0.2,
5842
+ },
5843
+ pricing: {
5844
+ getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000,
5845
+ getPriceForTextOutput: (tokens) => 0.3 * tokens / 1_000_000,
5846
+ getPriceForAudioInput: () => 0,
5847
+ getPriceForAudioOutput: () => 0,
5848
+ currency: 'USD',
5849
+ },
5850
+ capabilities: {
5851
+ vision: false,
5852
+ tools: true,
5853
+ reasoning: false,
5854
+ webSearch: false,
5855
+ jsonOutput: true,
5856
+ structuredOutputs: false,
5857
+ },
5858
+ },
5859
+ [LLMAPI_typedefs_1.LLMAPIModelNames.META_LLAMA_LLAMA_3_3_70B_INSTRUCT_NEBIUS]: {
5860
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.META_LLAMA_LLAMA_3_3_70B_INSTRUCT_NEBIUS,
5861
+ limits: {
5862
+ maxInputTokens: 131_072,
5863
+ maxOutputTokens: 8_192,
5864
+ },
5865
+ config: {
5866
+ temperature: 0.2,
5867
+ },
5868
+ pricing: {
5869
+ getPriceForTextInput: (tokens) => 0.13 * tokens / 1_000_000,
5870
+ getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000,
5871
+ getPriceForAudioInput: () => 0,
5872
+ getPriceForAudioOutput: () => 0,
5873
+ currency: 'USD',
5874
+ },
5875
+ capabilities: {
5876
+ vision: false,
5877
+ tools: true,
5878
+ reasoning: false,
5879
+ webSearch: false,
5880
+ jsonOutput: true,
5881
+ structuredOutputs: false,
5882
+ },
5883
+ },
5884
+ [LLMAPI_typedefs_1.LLMAPIModelNames.META_LLAMA_META_LLAMA_3_1_8B_INSTRUCT_NEBIUS]: {
5885
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.META_LLAMA_META_LLAMA_3_1_8B_INSTRUCT_NEBIUS,
5886
+ limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
5887
+ config: { temperature: 0.2 },
5888
+ pricing: { getPriceForTextInput: (tokens) => 0.02 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.06 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5889
+ capabilities: {
5890
+ vision: false,
5891
+ tools: false,
5892
+ reasoning: false,
5893
+ webSearch: false,
5894
+ jsonOutput: true,
5895
+ structuredOutputs: false,
5896
+ },
5897
+ },
5898
+ [LLMAPI_typedefs_1.LLMAPIModelNames.MOONSHOTAI_KIMI_K2_INSTRUCT_NEBIUS]: {
5899
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.MOONSHOTAI_KIMI_K2_INSTRUCT_NEBIUS,
5900
+ limits: { maxInputTokens: 131_072, maxOutputTokens: 16_384 },
5901
+ config: { temperature: 0.2 },
5902
+ pricing: { getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5903
+ capabilities: {
5904
+ vision: false,
5905
+ tools: true,
5906
+ reasoning: false,
5907
+ webSearch: false,
5908
+ jsonOutput: true,
5909
+ structuredOutputs: false,
5910
+ },
5911
+ },
5912
+ [LLMAPI_typedefs_1.LLMAPIModelNames.NOVA_2_LITE]: {
5913
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.NOVA_2_LITE,
5914
+ limits: { maxInputTokens: 1_000_000, maxOutputTokens: 8_192 },
5915
+ config: { temperature: 0.2 },
5916
+ pricing: { getPriceForTextInput: (tokens) => 0.04 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.16 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5917
+ capabilities: {
5918
+ vision: false,
5919
+ tools: true,
5920
+ reasoning: true,
5921
+ webSearch: false,
5922
+ jsonOutput: false,
5923
+ structuredOutputs: false,
5924
+ },
5925
+ },
5926
+ [LLMAPI_typedefs_1.LLMAPIModelNames.NOVA_LITE]: {
5927
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.NOVA_LITE,
5928
+ limits: { maxInputTokens: 300_000, maxOutputTokens: 8_192 },
5929
+ config: { temperature: 0.2 },
5930
+ pricing: { getPriceForTextInput: (tokens) => 0.06 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.24 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5931
+ capabilities: {
5932
+ vision: true,
5933
+ tools: true,
5934
+ reasoning: false,
5935
+ webSearch: false,
5936
+ jsonOutput: false,
5937
+ structuredOutputs: false,
5938
+ },
5939
+ },
5940
+ [LLMAPI_typedefs_1.LLMAPIModelNames.NOVA_MICRO]: {
5941
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.NOVA_MICRO,
5942
+ limits: { maxInputTokens: 128_000, maxOutputTokens: 8_192 },
5943
+ config: { temperature: 0.2 },
5944
+ pricing: { getPriceForTextInput: (tokens) => 0.035 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5945
+ capabilities: {
5946
+ vision: false,
5947
+ tools: true,
5948
+ reasoning: false,
5949
+ webSearch: false,
5950
+ jsonOutput: false,
5951
+ structuredOutputs: false,
5952
+ },
5953
+ },
5954
+ [LLMAPI_typedefs_1.LLMAPIModelNames.NOVA_PRO]: {
5955
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.NOVA_PRO,
5956
+ limits: { maxInputTokens: 300_000, maxOutputTokens: 8_192 },
5957
+ config: { temperature: 0.2 },
5958
+ pricing: { getPriceForTextInput: (tokens) => 0.8 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3.2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5959
+ capabilities: {
5960
+ vision: true,
5961
+ tools: true,
5962
+ reasoning: false,
5963
+ webSearch: false,
5964
+ jsonOutput: false,
5965
+ structuredOutputs: false,
5966
+ },
5967
+ },
5968
+ [LLMAPI_typedefs_1.LLMAPIModelNames.META_LLAMA_LLAMA_3_1_8B_INSTRUCT_NOVITA]: {
5969
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.META_LLAMA_LLAMA_3_1_8B_INSTRUCT_NOVITA,
5970
+ limits: {
5971
+ maxInputTokens: 128_000,
5972
+ maxOutputTokens: 8_192,
5973
+ },
5974
+ config: {
5975
+ temperature: 0.2,
5976
+ },
5977
+ pricing: {
5978
+ getPriceForTextInput: (tokens) => 0.22 * tokens / 1_000_000,
5979
+ getPriceForTextOutput: (tokens) => 0.22 * tokens / 1_000_000,
5980
+ getPriceForAudioInput: () => 0,
5981
+ getPriceForAudioOutput: () => 0,
5982
+ currency: 'USD',
5983
+ },
5984
+ capabilities: {
5985
+ vision: false,
5986
+ tools: false,
5987
+ reasoning: false,
5988
+ webSearch: false,
5989
+ jsonOutput: true,
5990
+ structuredOutputs: false,
5991
+ },
5992
+ },
5993
+ [LLMAPI_typedefs_1.LLMAPIModelNames.META_LLAMA_LLAMA_3_3_70B_INSTRUCT_NOVITA]: {
5994
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.META_LLAMA_LLAMA_3_3_70B_INSTRUCT_NOVITA,
5995
+ limits: {
5996
+ maxInputTokens: 131_072,
5997
+ maxOutputTokens: 8_192,
5998
+ },
5999
+ config: {
6000
+ temperature: 0.2,
6001
+ },
6002
+ pricing: {
6003
+ getPriceForTextInput: (tokens) => 0.13 * tokens / 1_000_000,
6004
+ getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000,
6005
+ getPriceForAudioInput: () => 0,
6006
+ getPriceForAudioOutput: () => 0,
6007
+ currency: 'USD',
6008
+ },
6009
+ capabilities: {
6010
+ vision: false,
6011
+ tools: true,
6012
+ reasoning: false,
6013
+ webSearch: false,
6014
+ jsonOutput: true,
6015
+ structuredOutputs: false,
6016
+ },
6017
+ },
6018
+ [LLMAPI_typedefs_1.LLMAPIModelNames.META_LLAMA_LLAMA_4_MAVERICK_17B_128E_INSTRUCT_FP8_NOVITA]: {
6019
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.META_LLAMA_LLAMA_4_MAVERICK_17B_128E_INSTRUCT_FP8_NOVITA,
6020
+ limits: { maxInputTokens: 1_048_576, maxOutputTokens: 8_192 },
6021
+ config: { temperature: 0.2 },
6022
+ pricing: { getPriceForTextInput: (tokens) => 0.27 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.85 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
6023
+ capabilities: {
6024
+ vision: true,
6025
+ tools: false,
6026
+ reasoning: false,
6027
+ webSearch: false,
6028
+ jsonOutput: true,
6029
+ structuredOutputs: false,
6030
+ },
6031
+ },
6032
+ [LLMAPI_typedefs_1.LLMAPIModelNames.META_LLAMA_LLAMA_4_SCOUT_17B_16E_INSTRUCT_NOVITA]: {
6033
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.META_LLAMA_LLAMA_4_SCOUT_17B_16E_INSTRUCT_NOVITA,
6034
+ limits: { maxInputTokens: 131_072, maxOutputTokens: 8_192 },
6035
+ config: { temperature: 0.2 },
6036
+ pricing: { getPriceForTextInput: (tokens) => 0.18 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.59 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
6037
+ capabilities: {
6038
+ vision: true,
6039
+ tools: false,
6040
+ reasoning: false,
6041
+ webSearch: false,
6042
+ jsonOutput: true,
6043
+ structuredOutputs: false,
6044
+ },
6045
+ },
6046
+ [LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_MINIMAX_M2_1_NOVITA]: {
6047
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_MINIMAX_M2_1_NOVITA,
6048
+ limits: {
6049
+ maxInputTokens: 204_800,
6050
+ maxOutputTokens: 128_000,
6051
+ },
6052
+ config: {
6053
+ temperature: 1,
6054
+ },
6055
+ pricing: {
6056
+ getPriceForTextInput: (tokens) => 0.27 * tokens / 1_000_000,
6057
+ getPriceForTextOutput: (tokens) => 1.08 * tokens / 1_000_000,
6058
+ getPriceForAudioInput: () => 0,
6059
+ getPriceForAudioOutput: () => 0,
6060
+ currency: 'USD',
6061
+ },
6062
+ capabilities: {
6063
+ vision: false,
6064
+ tools: true,
6065
+ reasoning: true,
6066
+ webSearch: false,
6067
+ jsonOutput: true,
6068
+ structuredOutputs: false,
6069
+ },
5285
6070
  },
5286
- [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_AZURE]: {
5287
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_AZURE,
5288
- limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
5289
- config: { temperature: 1 },
5290
- pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5291
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
6071
+ [LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_MINIMAX_M2_5_NOVITA]: {
6072
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_MINIMAX_M2_5_NOVITA,
6073
+ limits: {
6074
+ maxInputTokens: 204_800,
6075
+ maxOutputTokens: 16_384,
6076
+ },
6077
+ config: {
6078
+ temperature: 0.2,
6079
+ },
6080
+ pricing: {
6081
+ getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
6082
+ getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000,
6083
+ getPriceForAudioInput: () => 0,
6084
+ getPriceForAudioOutput: () => 0,
6085
+ currency: 'USD',
6086
+ },
6087
+ capabilities: {
6088
+ vision: false,
6089
+ tools: true,
6090
+ reasoning: true,
6091
+ webSearch: false,
6092
+ jsonOutput: true,
6093
+ structuredOutputs: false,
6094
+ },
5292
6095
  },
5293
- [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI_OPENAI]: {
5294
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI_OPENAI,
5295
- limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
5296
- config: { temperature: 1 },
5297
- pricing: { getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5298
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
6096
+ [LLMAPI_typedefs_1.LLMAPIModelNames.MOONSHOTAI_KIMI_K2_INSTRUCT_NOVITA]: {
6097
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.MOONSHOTAI_KIMI_K2_INSTRUCT_NOVITA,
6098
+ limits: { maxInputTokens: 131_072, maxOutputTokens: 16_384 },
6099
+ config: { temperature: 0.2 },
6100
+ pricing: { getPriceForTextInput: (tokens) => 0.57 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
6101
+ capabilities: {
6102
+ vision: false,
6103
+ tools: true,
6104
+ reasoning: false,
6105
+ webSearch: false,
6106
+ jsonOutput: true,
6107
+ structuredOutputs: false,
6108
+ },
5299
6109
  },
5300
- [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI_AZURE]: {
5301
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI_AZURE,
5302
- limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
5303
- config: { temperature: 1 },
5304
- pricing: { getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5305
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
6110
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_235B_A22B_INSTRUCT_2507_NOVITA]: {
6111
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_235B_A22B_INSTRUCT_2507_NOVITA,
6112
+ limits: {
6113
+ maxInputTokens: 262_000,
6114
+ maxOutputTokens: 16_384,
6115
+ },
6116
+ config: {
6117
+ temperature: 0.2,
6118
+ },
6119
+ pricing: {
6120
+ getPriceForTextInput: (tokens) => 0.2 * tokens / 1_000_000,
6121
+ getPriceForTextOutput: (tokens) => 0.6 * tokens / 1_000_000,
6122
+ getPriceForAudioInput: () => 0,
6123
+ getPriceForAudioOutput: () => 0,
6124
+ currency: 'USD',
6125
+ },
6126
+ capabilities: {
6127
+ vision: false,
6128
+ tools: true,
6129
+ reasoning: false,
6130
+ webSearch: false,
6131
+ jsonOutput: true,
6132
+ structuredOutputs: false,
6133
+ },
5306
6134
  },
5307
- [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO_OPENAI]: {
5308
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO_OPENAI,
5309
- limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
5310
- config: { temperature: 1 },
5311
- pricing: { getPriceForTextInput: (tokens) => 0.05 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5312
- capabilities: { vision: false, tools: true, reasoning: true, webSearch: true },
6135
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_235B_A22B_THINKING_2507_NOVITA]: {
6136
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_235B_A22B_THINKING_2507_NOVITA,
6137
+ limits: {
6138
+ maxInputTokens: 262_000,
6139
+ maxOutputTokens: 128_000,
6140
+ },
6141
+ config: {
6142
+ temperature: 0.2,
6143
+ },
6144
+ pricing: {
6145
+ getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
6146
+ getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000,
6147
+ getPriceForAudioInput: () => 0,
6148
+ getPriceForAudioOutput: () => 0,
6149
+ currency: 'USD',
6150
+ },
6151
+ capabilities: {
6152
+ vision: false,
6153
+ tools: true,
6154
+ reasoning: false,
6155
+ webSearch: false,
6156
+ jsonOutput: true,
6157
+ structuredOutputs: false,
6158
+ },
5313
6159
  },
5314
- [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO_AZURE]: {
5315
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO_AZURE,
5316
- limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
5317
- config: { temperature: 1 },
5318
- pricing: { getPriceForTextInput: (tokens) => 0.05 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5319
- capabilities: { vision: false, tools: true, reasoning: true, webSearch: true },
6160
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_CODER_30B_A3B_INSTRUCT_NOVITA]: {
6161
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_CODER_30B_A3B_INSTRUCT_NOVITA,
6162
+ limits: {
6163
+ maxInputTokens: 262_000,
6164
+ maxOutputTokens: 128_000,
6165
+ },
6166
+ config: {
6167
+ temperature: 0.2,
6168
+ },
6169
+ pricing: {
6170
+ getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000,
6171
+ getPriceForTextOutput: (tokens) => 0.3 * tokens / 1_000_000,
6172
+ getPriceForAudioInput: () => 0,
6173
+ getPriceForAudioOutput: () => 0,
6174
+ currency: 'USD',
6175
+ },
6176
+ capabilities: {
6177
+ vision: false,
6178
+ tools: true,
6179
+ reasoning: false,
6180
+ webSearch: false,
6181
+ jsonOutput: true,
6182
+ structuredOutputs: false,
6183
+ },
5320
6184
  },
5321
- [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO_OPENAI]: {
5322
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO_OPENAI,
5323
- limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
5324
- config: { temperature: 1 },
5325
- pricing: { getPriceForTextInput: (tokens) => 15 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 120 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5326
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
6185
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_MAX_NOVITA]: {
6186
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_MAX_NOVITA,
6187
+ limits: {
6188
+ maxInputTokens: 262_144,
6189
+ maxOutputTokens: 16_384,
6190
+ },
6191
+ config: {
6192
+ temperature: 0.2,
6193
+ },
6194
+ pricing: {
6195
+ getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000,
6196
+ getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
6197
+ getPriceForAudioInput: () => 0,
6198
+ getPriceForAudioOutput: () => 0,
6199
+ currency: 'USD',
6200
+ },
6201
+ capabilities: {
6202
+ vision: true,
6203
+ tools: true,
6204
+ reasoning: true,
6205
+ webSearch: false,
6206
+ jsonOutput: true,
6207
+ structuredOutputs: false,
6208
+ },
5327
6209
  },
5328
- [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO_AZURE]: {
5329
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO_AZURE,
5330
- limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
5331
- config: { temperature: 1 },
5332
- pricing: { getPriceForTextInput: (tokens) => 15 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 120 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5333
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
6210
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_NEXT_80B_A3B_INSTRUCT_NOVITA]: {
6211
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_NEXT_80B_A3B_INSTRUCT_NOVITA,
6212
+ limits: {
6213
+ maxInputTokens: 131_072,
6214
+ maxOutputTokens: 16_384,
6215
+ },
6216
+ config: {
6217
+ temperature: 0.2,
6218
+ },
6219
+ pricing: {
6220
+ getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000,
6221
+ getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000,
6222
+ getPriceForAudioInput: () => 0,
6223
+ getPriceForAudioOutput: () => 0,
6224
+ currency: 'USD',
6225
+ },
6226
+ capabilities: {
6227
+ vision: false,
6228
+ tools: true,
6229
+ reasoning: false,
6230
+ webSearch: false,
6231
+ jsonOutput: true,
6232
+ structuredOutputs: false,
6233
+ },
5334
6234
  },
5335
- [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_OPENAI]: {
5336
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_OPENAI,
5337
- limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
5338
- config: { temperature: 1 },
5339
- pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5340
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
6235
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_NEXT_80B_A3B_THINKING_NOVITA]: {
6236
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_NEXT_80B_A3B_THINKING_NOVITA,
6237
+ limits: {
6238
+ maxInputTokens: 131_072,
6239
+ maxOutputTokens: 16_384,
6240
+ },
6241
+ config: {
6242
+ temperature: 1,
6243
+ },
6244
+ pricing: {
6245
+ getPriceForTextInput: (tokens) => 0.15 * tokens / 1_000_000,
6246
+ getPriceForTextOutput: (tokens) => 1.5 * tokens / 1_000_000,
6247
+ getPriceForAudioInput: () => 0,
6248
+ getPriceForAudioOutput: () => 0,
6249
+ currency: 'USD',
6250
+ },
6251
+ capabilities: {
6252
+ vision: false,
6253
+ tools: true,
6254
+ reasoning: true,
6255
+ webSearch: false,
6256
+ jsonOutput: false,
6257
+ structuredOutputs: false,
6258
+ },
6259
+ },
6260
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_VL_235B_A22B_INSTRUCT_NOVITA]: {
6261
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_VL_235B_A22B_INSTRUCT_NOVITA,
6262
+ limits: {
6263
+ maxInputTokens: 131_072,
6264
+ maxOutputTokens: 16_384,
6265
+ },
6266
+ config: {
6267
+ temperature: 0.2,
6268
+ },
6269
+ pricing: {
6270
+ getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
6271
+ getPriceForTextOutput: (tokens) => 1.5 * tokens / 1_000_000,
6272
+ getPriceForAudioInput: () => 0,
6273
+ getPriceForAudioOutput: () => 0,
6274
+ currency: 'USD',
6275
+ },
6276
+ capabilities: {
6277
+ vision: true,
6278
+ tools: true,
6279
+ reasoning: false,
6280
+ webSearch: false,
6281
+ jsonOutput: true,
6282
+ structuredOutputs: false,
6283
+ },
6284
+ },
6285
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_VL_235B_A22B_THINKING_NOVITA]: {
6286
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_VL_235B_A22B_THINKING_NOVITA,
6287
+ limits: {
6288
+ maxInputTokens: 131_072,
6289
+ maxOutputTokens: 16_384,
6290
+ },
6291
+ config: {
6292
+ temperature: 1,
6293
+ },
6294
+ pricing: {
6295
+ getPriceForTextInput: (tokens) => 0.98 * tokens / 1_000_000,
6296
+ getPriceForTextOutput: (tokens) => 3.95 * tokens / 1_000_000,
6297
+ getPriceForAudioInput: () => 0,
6298
+ getPriceForAudioOutput: () => 0,
6299
+ currency: 'USD',
6300
+ },
6301
+ capabilities: {
6302
+ vision: true,
6303
+ tools: false,
6304
+ reasoning: true,
6305
+ webSearch: false,
6306
+ jsonOutput: false,
6307
+ structuredOutputs: false,
6308
+ },
5341
6309
  },
5342
- [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_AZURE]: {
5343
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_AZURE,
5344
- limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
5345
- config: { temperature: 1 },
5346
- pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5347
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
6310
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_5_397B_A17B_NOVITA]: {
6311
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_5_397B_A17B_NOVITA,
6312
+ limits: { maxInputTokens: 262_144, maxOutputTokens: 65_536 },
6313
+ config: { temperature: 0.2 },
6314
+ pricing: { getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3.6 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
6315
+ capabilities: {
6316
+ vision: true,
6317
+ tools: true,
6318
+ reasoning: true,
6319
+ webSearch: false,
6320
+ jsonOutput: true,
6321
+ structuredOutputs: false,
6322
+ },
5348
6323
  },
5349
- [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_OPENAI]: {
5350
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_OPENAI,
5351
- limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
5352
- config: { temperature: 1 },
5353
- pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5354
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
6324
+ [LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_ORG_GLM_4_5V_NOVITA]: {
6325
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_ORG_GLM_4_5V_NOVITA,
6326
+ limits: {
6327
+ maxInputTokens: 128_000,
6328
+ maxOutputTokens: 16_384,
6329
+ },
6330
+ config: {
6331
+ temperature: 1,
6332
+ },
6333
+ pricing: {
6334
+ getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
6335
+ getPriceForTextOutput: (tokens) => 1.8 * tokens / 1_000_000,
6336
+ getPriceForAudioInput: () => 0,
6337
+ getPriceForAudioOutput: () => 0,
6338
+ currency: 'USD',
6339
+ },
6340
+ capabilities: {
6341
+ vision: true,
6342
+ tools: true,
6343
+ reasoning: true,
6344
+ webSearch: false,
6345
+ jsonOutput: true,
6346
+ structuredOutputs: false,
6347
+ },
5355
6348
  },
5356
- [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_AZURE]: {
5357
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_AZURE,
5358
- limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
5359
- config: { temperature: 1 },
5360
- pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5361
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
6349
+ [LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_ORG_GLM_4_6_NOVITA]: {
6350
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_ORG_GLM_4_6_NOVITA,
6351
+ limits: {
6352
+ maxInputTokens: 204_800,
6353
+ maxOutputTokens: 128_000,
6354
+ },
6355
+ config: {
6356
+ temperature: 1,
6357
+ },
6358
+ pricing: {
6359
+ getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
6360
+ getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
6361
+ getPriceForAudioInput: () => 0,
6362
+ getPriceForAudioOutput: () => 0,
6363
+ currency: 'USD',
6364
+ },
6365
+ capabilities: {
6366
+ vision: false,
6367
+ tools: true,
6368
+ reasoning: true,
6369
+ webSearch: false,
6370
+ jsonOutput: true,
6371
+ structuredOutputs: false,
6372
+ },
5362
6373
  },
5363
- [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI_OPENAI]: {
5364
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI_OPENAI,
5365
- limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
5366
- config: { temperature: 1 },
5367
- pricing: { getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5368
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
6374
+ [LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_ORG_GLM_4_6V_NOVITA]: {
6375
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_ORG_GLM_4_6V_NOVITA,
6376
+ limits: {
6377
+ maxInputTokens: 131_072,
6378
+ maxOutputTokens: 16_384,
6379
+ },
6380
+ config: {
6381
+ temperature: 1,
6382
+ },
6383
+ pricing: {
6384
+ getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
6385
+ getPriceForTextOutput: (tokens) => 0.9 * tokens / 1_000_000,
6386
+ getPriceForAudioInput: () => 0,
6387
+ getPriceForAudioOutput: () => 0,
6388
+ currency: 'USD',
6389
+ },
6390
+ capabilities: {
6391
+ vision: true,
6392
+ tools: true,
6393
+ reasoning: true,
6394
+ webSearch: false,
6395
+ jsonOutput: true,
6396
+ structuredOutputs: false,
6397
+ },
5369
6398
  },
5370
- [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI_AZURE]: {
5371
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI_AZURE,
5372
- limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
5373
- config: { temperature: 1 },
5374
- pricing: { getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5375
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
6399
+ [LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_ORG_GLM_4_7_NOVITA]: {
6400
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_ORG_GLM_4_7_NOVITA,
6401
+ limits: {
6402
+ maxInputTokens: 204_800,
6403
+ maxOutputTokens: 128_000,
6404
+ },
6405
+ config: {
6406
+ temperature: 1,
6407
+ },
6408
+ pricing: {
6409
+ getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
6410
+ getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
6411
+ getPriceForAudioInput: () => 0,
6412
+ getPriceForAudioOutput: () => 0,
6413
+ currency: 'USD',
6414
+ },
6415
+ capabilities: {
6416
+ vision: false,
6417
+ tools: true,
6418
+ reasoning: true,
6419
+ webSearch: false,
6420
+ jsonOutput: true,
6421
+ structuredOutputs: false,
6422
+ },
5376
6423
  },
5377
- [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_OPENAI]: {
5378
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_OPENAI,
5379
- limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
5380
- config: { temperature: 1 },
5381
- pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5382
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
6424
+ [LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_ORG_GLM_5_NOVITA]: {
6425
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_ORG_GLM_5_NOVITA,
6426
+ limits: {
6427
+ maxInputTokens: 202_800,
6428
+ maxOutputTokens: 16_384,
6429
+ },
6430
+ config: {
6431
+ temperature: 0.2,
6432
+ },
6433
+ pricing: {
6434
+ getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000,
6435
+ getPriceForTextOutput: (tokens) => 3.2 * tokens / 1_000_000,
6436
+ getPriceForAudioInput: () => 0,
6437
+ getPriceForAudioOutput: () => 0,
6438
+ currency: 'USD',
6439
+ },
6440
+ capabilities: {
6441
+ vision: false,
6442
+ tools: true,
6443
+ reasoning: true,
6444
+ webSearch: true,
6445
+ jsonOutput: true,
6446
+ structuredOutputs: false,
6447
+ },
5383
6448
  },
5384
- [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_AZURE]: {
5385
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_AZURE,
5386
- limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
5387
- config: { temperature: 1 },
5388
- pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5389
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
6449
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE_OBSIDIAN]: {
6450
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE_OBSIDIAN,
6451
+ limits: { maxInputTokens: 32_768, maxOutputTokens: 65_536 },
6452
+ config: { temperature: 0.2 },
6453
+ pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 30 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
6454
+ capabilities: {
6455
+ vision: true,
6456
+ tools: false,
6457
+ reasoning: false,
6458
+ webSearch: false,
6459
+ jsonOutput: true,
6460
+ structuredOutputs: true,
6461
+ },
5390
6462
  },
5391
- [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX_OPENAI]: {
5392
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX_OPENAI,
5393
- limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
5394
- config: { temperature: 1 },
5395
- pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5396
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
6463
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_PRO_IMAGE_PREVIEW_OBSIDIAN]: {
6464
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_PRO_IMAGE_PREVIEW_OBSIDIAN,
6465
+ limits: { maxInputTokens: 65_536, maxOutputTokens: 8_192 },
6466
+ config: { temperature: 0.2 },
6467
+ pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 12 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
6468
+ capabilities: {
6469
+ vision: true,
6470
+ tools: false,
6471
+ reasoning: false,
6472
+ webSearch: false,
6473
+ jsonOutput: true,
6474
+ structuredOutputs: true,
6475
+ },
5397
6476
  },
5398
- [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX_AZURE]: {
5399
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX_AZURE,
5400
- limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
5401
- config: { temperature: 1 },
6477
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CHAT_LATEST_OPENAI]: {
6478
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CHAT_LATEST_OPENAI,
6479
+ limits: { maxInputTokens: 128_000, maxOutputTokens: 131_072 },
6480
+ config: { temperature: 0.2 },
5402
6481
  pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5403
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
6482
+ capabilities: {
6483
+ vision: true,
6484
+ tools: true,
6485
+ reasoning: true,
6486
+ webSearch: false,
6487
+ jsonOutput: false,
6488
+ structuredOutputs: false,
6489
+ },
5404
6490
  },
5405
- [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX_OPENAI]: {
5406
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX_OPENAI,
5407
- limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
5408
- config: { temperature: 1 },
6491
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CHAT_LATEST_OPENAI]: {
6492
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CHAT_LATEST_OPENAI,
6493
+ limits: { maxInputTokens: 128_000, maxOutputTokens: 131_072 },
6494
+ config: { temperature: 0.2 },
5409
6495
  pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5410
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
6496
+ capabilities: {
6497
+ vision: true,
6498
+ tools: true,
6499
+ reasoning: false,
6500
+ webSearch: false,
6501
+ jsonOutput: true,
6502
+ structuredOutputs: true,
6503
+ },
5411
6504
  },
5412
- [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX_AZURE]: {
5413
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX_AZURE,
5414
- limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
5415
- config: { temperature: 1 },
5416
- pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5417
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
6505
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_MINI_OPENAI]: {
6506
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_MINI_OPENAI,
6507
+ limits: {
6508
+ maxInputTokens: 400_000,
6509
+ maxOutputTokens: 128_000,
6510
+ },
6511
+ config: {
6512
+ temperature: 1,
6513
+ },
6514
+ pricing: {
6515
+ getPriceForTextInput: (tokens) => 0.75 * tokens / 1_000_000,
6516
+ getPriceForTextOutput: (tokens) => 4.5 * tokens / 1_000_000,
6517
+ getPriceForAudioInput: () => 0,
6518
+ getPriceForAudioOutput: () => 0,
6519
+ currency: 'USD',
6520
+ },
6521
+ capabilities: {
6522
+ vision: true,
6523
+ tools: true,
6524
+ reasoning: true,
6525
+ webSearch: true,
6526
+ jsonOutput: true,
6527
+ structuredOutputs: true,
6528
+ },
5418
6529
  },
5419
- [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_OPENAI]: {
5420
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_OPENAI,
5421
- limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
5422
- config: { temperature: 1 },
5423
- pricing: { getPriceForTextInput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5424
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
6530
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_NANO_OPENAI]: {
6531
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_NANO_OPENAI,
6532
+ limits: {
6533
+ maxInputTokens: 400_000,
6534
+ maxOutputTokens: 128_000,
6535
+ },
6536
+ config: {
6537
+ temperature: 1,
6538
+ },
6539
+ pricing: {
6540
+ getPriceForTextInput: (tokens) => 0.2 * tokens / 1_000_000,
6541
+ getPriceForTextOutput: (tokens) => 1.25 * tokens / 1_000_000,
6542
+ getPriceForAudioInput: () => 0,
6543
+ getPriceForAudioOutput: () => 0,
6544
+ currency: 'USD',
6545
+ },
6546
+ capabilities: {
6547
+ vision: true,
6548
+ tools: true,
6549
+ reasoning: true,
6550
+ webSearch: true,
6551
+ jsonOutput: true,
6552
+ structuredOutputs: true,
6553
+ },
5425
6554
  },
5426
- [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_AZURE]: {
5427
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_AZURE,
5428
- limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
5429
- config: { temperature: 1 },
5430
- pricing: { getPriceForTextInput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5431
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
6555
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_3_235B_A22B_INSTRUCT_2507]: {
6556
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_3_235B_A22B_INSTRUCT_2507,
6557
+ limits: { maxInputTokens: 131_000, maxOutputTokens: 32_768 },
6558
+ config: { temperature: 0.2 },
6559
+ pricing: { getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
6560
+ capabilities: {
6561
+ vision: false,
6562
+ tools: true,
6563
+ reasoning: false,
6564
+ webSearch: false,
6565
+ jsonOutput: true,
6566
+ structuredOutputs: true,
6567
+ },
5432
6568
  },
5433
- [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO_OPENAI]: {
5434
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO_OPENAI,
5435
- limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
5436
- config: { temperature: 1 },
5437
- pricing: { getPriceForTextInput: (tokens) => 30 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 180 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5438
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
6569
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_IMAGE]: {
6570
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_IMAGE,
6571
+ limits: { maxInputTokens: 2_000, maxOutputTokens: 8_192 },
6572
+ config: { temperature: 0.2 },
6573
+ pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
6574
+ capabilities: {
6575
+ vision: false,
6576
+ tools: false,
6577
+ reasoning: false,
6578
+ webSearch: false,
6579
+ jsonOutput: false,
6580
+ structuredOutputs: false,
6581
+ },
5439
6582
  },
5440
- [LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO_AZURE]: {
5441
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO_AZURE,
5442
- limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
5443
- config: { temperature: 1 },
5444
- pricing: { getPriceForTextInput: (tokens) => 30 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 180 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5445
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
6583
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_IMAGE_2_0]: {
6584
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_IMAGE_2_0,
6585
+ limits: { maxInputTokens: 1_000, maxOutputTokens: 8_192 },
6586
+ config: { temperature: 0.2 },
6587
+ pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
6588
+ capabilities: {
6589
+ vision: true,
6590
+ tools: false,
6591
+ reasoning: false,
6592
+ webSearch: false,
6593
+ jsonOutput: false,
6594
+ structuredOutputs: false,
6595
+ },
5446
6596
  },
5447
- // ─── Gemini explicit provider variants ────────────────────────
5448
- [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_PRO_GOOGLE_AI_STUDIO]: {
5449
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_PRO_GOOGLE_AI_STUDIO,
5450
- limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
6597
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_IMAGE_2_0_PRO]: {
6598
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_IMAGE_2_0_PRO,
6599
+ limits: { maxInputTokens: 1_000, maxOutputTokens: 8_192 },
5451
6600
  config: { temperature: 0.2 },
5452
- pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5453
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
6601
+ pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
6602
+ capabilities: {
6603
+ vision: true,
6604
+ tools: false,
6605
+ reasoning: false,
6606
+ webSearch: false,
6607
+ jsonOutput: false,
6608
+ structuredOutputs: false,
6609
+ },
5454
6610
  },
5455
- [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_PRO_GOOGLE_VERTEX]: {
5456
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_PRO_GOOGLE_VERTEX,
5457
- limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
6611
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_IMAGE_EDIT_MAX]: {
6612
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_IMAGE_EDIT_MAX,
6613
+ limits: { maxInputTokens: 2_000, maxOutputTokens: 8_192 },
5458
6614
  config: { temperature: 0.2 },
5459
- pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5460
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
6615
+ pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
6616
+ capabilities: {
6617
+ vision: true,
6618
+ tools: false,
6619
+ reasoning: false,
6620
+ webSearch: false,
6621
+ jsonOutput: false,
6622
+ structuredOutputs: false,
6623
+ },
5461
6624
  },
5462
- [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_GOOGLE_AI_STUDIO]: {
5463
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_GOOGLE_AI_STUDIO,
5464
- limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
6625
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_IMAGE_EDIT_PLUS]: {
6626
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_IMAGE_EDIT_PLUS,
6627
+ limits: { maxInputTokens: 2_000, maxOutputTokens: 8_192 },
5465
6628
  config: { temperature: 0.2 },
5466
- pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5467
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
6629
+ pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
6630
+ capabilities: {
6631
+ vision: true,
6632
+ tools: false,
6633
+ reasoning: false,
6634
+ webSearch: false,
6635
+ jsonOutput: false,
6636
+ structuredOutputs: false,
6637
+ },
5468
6638
  },
5469
- [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_GOOGLE_VERTEX]: {
5470
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_GOOGLE_VERTEX,
5471
- limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
6639
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_IMAGE_MAX]: {
6640
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_IMAGE_MAX,
6641
+ limits: { maxInputTokens: 2_000, maxOutputTokens: 8_192 },
5472
6642
  config: { temperature: 0.2 },
5473
- pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5474
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
6643
+ pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
6644
+ capabilities: {
6645
+ vision: false,
6646
+ tools: false,
6647
+ reasoning: false,
6648
+ webSearch: false,
6649
+ jsonOutput: false,
6650
+ structuredOutputs: false,
6651
+ },
5475
6652
  },
5476
- [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_GOOGLE_AI_STUDIO]: {
5477
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_GOOGLE_AI_STUDIO,
5478
- limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
6653
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_IMAGE_MAX_2025_12_30]: {
6654
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_IMAGE_MAX_2025_12_30,
6655
+ limits: { maxInputTokens: 2_000, maxOutputTokens: 8_192 },
5479
6656
  config: { temperature: 0.2 },
5480
- pricing: { getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5481
- capabilities: { vision: true, tools: true, reasoning: false, webSearch: false },
6657
+ pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
6658
+ capabilities: {
6659
+ vision: false,
6660
+ tools: false,
6661
+ reasoning: false,
6662
+ webSearch: false,
6663
+ jsonOutput: false,
6664
+ structuredOutputs: false,
6665
+ },
5482
6666
  },
5483
- [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_GOOGLE_VERTEX]: {
5484
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_GOOGLE_VERTEX,
5485
- limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
6667
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_IMAGE_PLUS]: {
6668
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_IMAGE_PLUS,
6669
+ limits: { maxInputTokens: 2_000, maxOutputTokens: 8_192 },
5486
6670
  config: { temperature: 0.2 },
5487
- pricing: { getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5488
- capabilities: { vision: true, tools: true, reasoning: false, webSearch: false },
6671
+ pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
6672
+ capabilities: {
6673
+ vision: false,
6674
+ tools: false,
6675
+ reasoning: false,
6676
+ webSearch: false,
6677
+ jsonOutput: false,
6678
+ structuredOutputs: false,
6679
+ },
5489
6680
  },
5490
- [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW_GOOGLE_AI_STUDIO]: {
5491
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW_GOOGLE_AI_STUDIO,
5492
- limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
6681
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_5_397B_A17B]: {
6682
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_5_397B_A17B,
6683
+ limits: { maxInputTokens: 262_144, maxOutputTokens: 65_536 },
5493
6684
  config: { temperature: 0.2 },
5494
- pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 12 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5495
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
6685
+ pricing: { getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3.6 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
6686
+ capabilities: {
6687
+ vision: true,
6688
+ tools: true,
6689
+ reasoning: true,
6690
+ webSearch: false,
6691
+ jsonOutput: true,
6692
+ structuredOutputs: true,
6693
+ },
5496
6694
  },
5497
- [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW_GOOGLE_VERTEX]: {
5498
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW_GOOGLE_VERTEX,
5499
- limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
6695
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_5_9B]: {
6696
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_5_9B,
6697
+ limits: { maxInputTokens: 262_144, maxOutputTokens: 32_768 },
5500
6698
  config: { temperature: 0.2 },
5501
- pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 12 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5502
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
6699
+ pricing: { getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.15 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
6700
+ capabilities: {
6701
+ vision: true,
6702
+ tools: true,
6703
+ reasoning: true,
6704
+ webSearch: false,
6705
+ jsonOutput: true,
6706
+ structuredOutputs: true,
6707
+ },
5503
6708
  },
5504
- [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW_GOOGLE_AI_STUDIO]: {
5505
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW_GOOGLE_AI_STUDIO,
6709
+ [LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_6_PLUS]: {
6710
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_6_PLUS,
5506
6711
  limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
5507
6712
  config: { temperature: 0.2 },
5508
6713
  pricing: { getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5509
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
6714
+ capabilities: {
6715
+ vision: true,
6716
+ tools: true,
6717
+ reasoning: true,
6718
+ webSearch: false,
6719
+ jsonOutput: true,
6720
+ structuredOutputs: false,
6721
+ },
5510
6722
  },
5511
- [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW_GOOGLE_VERTEX]: {
5512
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW_GOOGLE_VERTEX,
5513
- limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
6723
+ [LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAXAI_MINIMAX_M2_5_TOGETHERAI]: {
6724
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAXAI_MINIMAX_M2_5_TOGETHERAI,
6725
+ limits: {
6726
+ maxInputTokens: 204_800,
6727
+ maxOutputTokens: 16_384,
6728
+ },
6729
+ config: {
6730
+ temperature: 0.2,
6731
+ },
6732
+ pricing: {
6733
+ getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
6734
+ getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000,
6735
+ getPriceForAudioInput: () => 0,
6736
+ getPriceForAudioOutput: () => 0,
6737
+ currency: 'USD',
6738
+ },
6739
+ capabilities: {
6740
+ vision: false,
6741
+ tools: true,
6742
+ reasoning: true,
6743
+ webSearch: false,
6744
+ jsonOutput: true,
6745
+ structuredOutputs: false,
6746
+ },
6747
+ },
6748
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GOOGLE_FLASH_IMAGE_2_5_TOGETHERAI]: {
6749
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GOOGLE_FLASH_IMAGE_2_5_TOGETHERAI,
6750
+ limits: { maxInputTokens: 32_768, maxOutputTokens: 8_192 },
5514
6751
  config: { temperature: 0.2 },
5515
- pricing: { getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5516
- capabilities: { vision: true, tools: true, reasoning: true, webSearch: true },
6752
+ pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
6753
+ capabilities: {
6754
+ vision: true,
6755
+ tools: false,
6756
+ reasoning: false,
6757
+ webSearch: false,
6758
+ jsonOutput: true,
6759
+ structuredOutputs: true,
6760
+ },
5517
6761
  },
5518
- [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE_GOOGLE_AI_STUDIO]: {
5519
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE_GOOGLE_AI_STUDIO,
5520
- limits: { maxInputTokens: 32_768, maxOutputTokens: 65_536 },
6762
+ [LLMAPI_typedefs_1.LLMAPIModelNames.MOONSHOTAI_KIMI_K2_5_TOGETHERAI]: {
6763
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.MOONSHOTAI_KIMI_K2_5_TOGETHERAI,
6764
+ limits: {
6765
+ maxInputTokens: 262_144,
6766
+ maxOutputTokens: 128_000,
6767
+ },
6768
+ config: {
6769
+ temperature: 0.2,
6770
+ },
6771
+ pricing: {
6772
+ getPriceForTextInput: (tokens) => 0.405 * tokens / 1_000_000,
6773
+ getPriceForTextOutput: (tokens) => 1.98 * tokens / 1_000_000,
6774
+ getPriceForAudioInput: () => 0,
6775
+ getPriceForAudioOutput: () => 0,
6776
+ currency: 'USD',
6777
+ },
6778
+ capabilities: {
6779
+ vision: true,
6780
+ tools: true,
6781
+ reasoning: false,
6782
+ webSearch: false,
6783
+ jsonOutput: true,
6784
+ structuredOutputs: false,
6785
+ },
6786
+ },
6787
+ [LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_ORG_GLM_5_1_TOGETHERAI]: {
6788
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_ORG_GLM_5_1_TOGETHERAI,
6789
+ limits: { maxInputTokens: 202_800, maxOutputTokens: 65_536 },
5521
6790
  config: { temperature: 0.2 },
5522
- pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 30 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5523
- capabilities: { vision: true, tools: false, reasoning: false, webSearch: false },
6791
+ pricing: { getPriceForTextInput: (tokens) => 1.4 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
6792
+ capabilities: {
6793
+ vision: false,
6794
+ tools: true,
6795
+ reasoning: true,
6796
+ webSearch: false,
6797
+ jsonOutput: true,
6798
+ structuredOutputs: false,
6799
+ },
5524
6800
  },
5525
- [LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE_GOOGLE_VERTEX]: {
5526
- name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE_GOOGLE_VERTEX,
5527
- limits: { maxInputTokens: 32_768, maxOutputTokens: 65_536 },
6801
+ [LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_GLM_4_7]: {
6802
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_GLM_4_7,
6803
+ limits: { maxInputTokens: 131_000, maxOutputTokens: 65_536 },
5528
6804
  config: { temperature: 0.2 },
5529
- pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 30 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
5530
- capabilities: { vision: true, tools: false, reasoning: false, webSearch: false },
6805
+ pricing: { getPriceForTextInput: (tokens) => 2.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.75 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
6806
+ capabilities: {
6807
+ vision: false,
6808
+ tools: true,
6809
+ reasoning: true,
6810
+ webSearch: false,
6811
+ jsonOutput: false,
6812
+ structuredOutputs: true,
6813
+ },
6814
+ },
6815
+ [LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_1_ZAI]: {
6816
+ name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_1_ZAI,
6817
+ limits: { maxInputTokens: 202_800, maxOutputTokens: 65_536 },
6818
+ config: { temperature: 0.2 },
6819
+ pricing: { getPriceForTextInput: (tokens) => 1.4 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 4.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
6820
+ capabilities: {
6821
+ vision: false,
6822
+ tools: true,
6823
+ reasoning: true,
6824
+ webSearch: false,
6825
+ jsonOutput: true,
6826
+ structuredOutputs: false,
6827
+ },
5531
6828
  },
5532
6829
  };
5533
6830
  const LLMAPI_COMPLETION_MODELS = exports.LLMAPI_AVAILABLE_MODELS;