@mate-academy/llm-gateway 7.2.1 → 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.
- package/README.md +17 -0
- package/dist/LLMService.constants.d.ts +6073 -2623
- package/dist/providers/LLMAPI/LLMAPI.constants.d.ts +9470 -4295
- package/dist/providers/LLMAPI/LLMAPI.constants.js +2156 -1123
- package/dist/providers/LLMAPI/LLMAPI.constants.js.map +1 -1
- package/dist/providers/LLMAPI/LLMAPI.typedefs.d.ts +125 -56
- package/dist/providers/LLMAPI/LLMAPI.typedefs.js +138 -55
- package/dist/providers/LLMAPI/LLMAPI.typedefs.js.map +1 -1
- package/package.json +1 -1
|
@@ -1070,31 +1070,6 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
1070
1070
|
structuredOutputs: true,
|
|
1071
1071
|
},
|
|
1072
1072
|
},
|
|
1073
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_PREVIEW_09_2025]: {
|
|
1074
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_PREVIEW_09_2025,
|
|
1075
|
-
limits: {
|
|
1076
|
-
maxInputTokens: 1_048_576,
|
|
1077
|
-
maxOutputTokens: 65_536,
|
|
1078
|
-
},
|
|
1079
|
-
config: {
|
|
1080
|
-
temperature: 0.2,
|
|
1081
|
-
},
|
|
1082
|
-
pricing: {
|
|
1083
|
-
getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000,
|
|
1084
|
-
getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000,
|
|
1085
|
-
getPriceForAudioInput: () => 0,
|
|
1086
|
-
getPriceForAudioOutput: () => 0,
|
|
1087
|
-
currency: 'USD',
|
|
1088
|
-
},
|
|
1089
|
-
capabilities: {
|
|
1090
|
-
vision: true,
|
|
1091
|
-
tools: true,
|
|
1092
|
-
reasoning: false,
|
|
1093
|
-
webSearch: false,
|
|
1094
|
-
jsonOutput: true,
|
|
1095
|
-
structuredOutputs: true,
|
|
1096
|
-
},
|
|
1097
|
-
},
|
|
1098
1073
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW]: {
|
|
1099
1074
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW,
|
|
1100
1075
|
limits: {
|
|
@@ -2051,56 +2026,6 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2051
2026
|
structuredOutputs: false,
|
|
2052
2027
|
},
|
|
2053
2028
|
},
|
|
2054
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_NATIVE]: {
|
|
2055
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_NATIVE,
|
|
2056
|
-
limits: {
|
|
2057
|
-
maxInputTokens: 204_800,
|
|
2058
|
-
maxOutputTokens: 16_384,
|
|
2059
|
-
},
|
|
2060
|
-
config: {
|
|
2061
|
-
temperature: 0.2,
|
|
2062
|
-
},
|
|
2063
|
-
pricing: {
|
|
2064
|
-
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
2065
|
-
getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000,
|
|
2066
|
-
getPriceForAudioInput: () => 0,
|
|
2067
|
-
getPriceForAudioOutput: () => 0,
|
|
2068
|
-
currency: 'USD',
|
|
2069
|
-
},
|
|
2070
|
-
capabilities: {
|
|
2071
|
-
vision: false,
|
|
2072
|
-
tools: true,
|
|
2073
|
-
reasoning: true,
|
|
2074
|
-
webSearch: false,
|
|
2075
|
-
jsonOutput: true,
|
|
2076
|
-
structuredOutputs: false,
|
|
2077
|
-
},
|
|
2078
|
-
},
|
|
2079
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_NOVITA]: {
|
|
2080
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_NOVITA,
|
|
2081
|
-
limits: {
|
|
2082
|
-
maxInputTokens: 204_800,
|
|
2083
|
-
maxOutputTokens: 16_384,
|
|
2084
|
-
},
|
|
2085
|
-
config: {
|
|
2086
|
-
temperature: 0.2,
|
|
2087
|
-
},
|
|
2088
|
-
pricing: {
|
|
2089
|
-
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
2090
|
-
getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000,
|
|
2091
|
-
getPriceForAudioInput: () => 0,
|
|
2092
|
-
getPriceForAudioOutput: () => 0,
|
|
2093
|
-
currency: 'USD',
|
|
2094
|
-
},
|
|
2095
|
-
capabilities: {
|
|
2096
|
-
vision: false,
|
|
2097
|
-
tools: true,
|
|
2098
|
-
reasoning: true,
|
|
2099
|
-
webSearch: false,
|
|
2100
|
-
jsonOutput: true,
|
|
2101
|
-
structuredOutputs: false,
|
|
2102
|
-
},
|
|
2103
|
-
},
|
|
2104
2029
|
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2]: {
|
|
2105
2030
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2,
|
|
2106
2031
|
limits: {
|
|
@@ -3329,31 +3254,6 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3329
3254
|
structuredOutputs: false,
|
|
3330
3255
|
},
|
|
3331
3256
|
},
|
|
3332
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_FLASH]: {
|
|
3333
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_FLASH,
|
|
3334
|
-
limits: {
|
|
3335
|
-
maxInputTokens: 128_000,
|
|
3336
|
-
maxOutputTokens: 16_384,
|
|
3337
|
-
},
|
|
3338
|
-
config: {
|
|
3339
|
-
temperature: 0.2,
|
|
3340
|
-
},
|
|
3341
|
-
pricing: {
|
|
3342
|
-
getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000,
|
|
3343
|
-
getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000,
|
|
3344
|
-
getPriceForAudioInput: () => 0,
|
|
3345
|
-
getPriceForAudioOutput: () => 0,
|
|
3346
|
-
currency: 'USD',
|
|
3347
|
-
},
|
|
3348
|
-
capabilities: {
|
|
3349
|
-
vision: false,
|
|
3350
|
-
tools: true,
|
|
3351
|
-
reasoning: false,
|
|
3352
|
-
webSearch: false,
|
|
3353
|
-
jsonOutput: true,
|
|
3354
|
-
structuredOutputs: false,
|
|
3355
|
-
},
|
|
3356
|
-
},
|
|
3357
3257
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6]: {
|
|
3358
3258
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6,
|
|
3359
3259
|
limits: {
|
|
@@ -3429,31 +3329,6 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3429
3329
|
structuredOutputs: false,
|
|
3430
3330
|
},
|
|
3431
3331
|
},
|
|
3432
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_FLASH]: {
|
|
3433
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_FLASH,
|
|
3434
|
-
limits: {
|
|
3435
|
-
maxInputTokens: 128_000,
|
|
3436
|
-
maxOutputTokens: 16_384,
|
|
3437
|
-
},
|
|
3438
|
-
config: {
|
|
3439
|
-
temperature: 0.2,
|
|
3440
|
-
},
|
|
3441
|
-
pricing: {
|
|
3442
|
-
getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000,
|
|
3443
|
-
getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000,
|
|
3444
|
-
getPriceForAudioInput: () => 0,
|
|
3445
|
-
getPriceForAudioOutput: () => 0,
|
|
3446
|
-
currency: 'USD',
|
|
3447
|
-
},
|
|
3448
|
-
capabilities: {
|
|
3449
|
-
vision: true,
|
|
3450
|
-
tools: true,
|
|
3451
|
-
reasoning: true,
|
|
3452
|
-
webSearch: false,
|
|
3453
|
-
jsonOutput: true,
|
|
3454
|
-
structuredOutputs: false,
|
|
3455
|
-
},
|
|
3456
|
-
},
|
|
3457
3332
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7]: {
|
|
3458
3333
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7,
|
|
3459
3334
|
limits: {
|
|
@@ -3504,31 +3379,6 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3504
3379
|
structuredOutputs: false,
|
|
3505
3380
|
},
|
|
3506
3381
|
},
|
|
3507
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASH]: {
|
|
3508
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_FLASH,
|
|
3509
|
-
limits: {
|
|
3510
|
-
maxInputTokens: 200_000,
|
|
3511
|
-
maxOutputTokens: 16_384,
|
|
3512
|
-
},
|
|
3513
|
-
config: {
|
|
3514
|
-
temperature: 0.2,
|
|
3515
|
-
},
|
|
3516
|
-
pricing: {
|
|
3517
|
-
getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000,
|
|
3518
|
-
getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000,
|
|
3519
|
-
getPriceForAudioInput: () => 0,
|
|
3520
|
-
getPriceForAudioOutput: () => 0,
|
|
3521
|
-
currency: 'USD',
|
|
3522
|
-
},
|
|
3523
|
-
capabilities: {
|
|
3524
|
-
vision: false,
|
|
3525
|
-
tools: true,
|
|
3526
|
-
reasoning: true,
|
|
3527
|
-
webSearch: false,
|
|
3528
|
-
jsonOutput: true,
|
|
3529
|
-
structuredOutputs: false,
|
|
3530
|
-
},
|
|
3531
|
-
},
|
|
3532
3382
|
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_32B_0414_128K]: {
|
|
3533
3383
|
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_32B_0414_128K,
|
|
3534
3384
|
limits: {
|
|
@@ -3680,50 +3530,55 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3680
3530
|
structuredOutputs: true,
|
|
3681
3531
|
},
|
|
3682
3532
|
},
|
|
3683
|
-
|
|
3684
|
-
|
|
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,
|
|
3685
3540
|
limits: {
|
|
3686
|
-
maxInputTokens:
|
|
3687
|
-
maxOutputTokens:
|
|
3541
|
+
maxInputTokens: 262_144,
|
|
3542
|
+
maxOutputTokens: 128_000,
|
|
3688
3543
|
},
|
|
3689
3544
|
config: {
|
|
3690
3545
|
temperature: 0.2,
|
|
3691
3546
|
},
|
|
3692
3547
|
pricing: {
|
|
3693
|
-
getPriceForTextInput: (tokens) =>
|
|
3694
|
-
getPriceForTextOutput: (tokens) =>
|
|
3548
|
+
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
3549
|
+
getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000,
|
|
3695
3550
|
getPriceForAudioInput: () => 0,
|
|
3696
3551
|
getPriceForAudioOutput: () => 0,
|
|
3697
3552
|
currency: 'USD',
|
|
3698
3553
|
},
|
|
3699
3554
|
capabilities: {
|
|
3700
|
-
vision:
|
|
3701
|
-
tools:
|
|
3555
|
+
vision: true,
|
|
3556
|
+
tools: true,
|
|
3702
3557
|
reasoning: false,
|
|
3703
3558
|
webSearch: false,
|
|
3704
|
-
jsonOutput:
|
|
3559
|
+
jsonOutput: true,
|
|
3705
3560
|
structuredOutputs: false,
|
|
3706
3561
|
},
|
|
3707
3562
|
},
|
|
3708
|
-
// ───
|
|
3709
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
3710
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
3563
|
+
// ─── Alibaba Qwen (new models & routes) ─────────────────
|
|
3564
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_NEXT]: {
|
|
3565
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_NEXT,
|
|
3711
3566
|
limits: {
|
|
3712
|
-
maxInputTokens:
|
|
3567
|
+
maxInputTokens: 262_144,
|
|
3713
3568
|
maxOutputTokens: 128_000,
|
|
3714
3569
|
},
|
|
3715
3570
|
config: {
|
|
3716
3571
|
temperature: 1,
|
|
3717
3572
|
},
|
|
3718
3573
|
pricing: {
|
|
3719
|
-
getPriceForTextInput: (tokens) =>
|
|
3720
|
-
getPriceForTextOutput: (tokens) =>
|
|
3574
|
+
getPriceForTextInput: (tokens) => 0.108 * tokens / 1_000_000,
|
|
3575
|
+
getPriceForTextOutput: (tokens) => 0.675 * tokens / 1_000_000,
|
|
3721
3576
|
getPriceForAudioInput: () => 0,
|
|
3722
3577
|
getPriceForAudioOutput: () => 0,
|
|
3723
3578
|
currency: 'USD',
|
|
3724
3579
|
},
|
|
3725
3580
|
capabilities: {
|
|
3726
|
-
vision:
|
|
3581
|
+
vision: false,
|
|
3727
3582
|
tools: true,
|
|
3728
3583
|
reasoning: true,
|
|
3729
3584
|
webSearch: false,
|
|
@@ -3731,69 +3586,68 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3731
3586
|
structuredOutputs: true,
|
|
3732
3587
|
},
|
|
3733
3588
|
},
|
|
3734
|
-
|
|
3735
|
-
|
|
3736
|
-
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,
|
|
3737
3591
|
limits: {
|
|
3738
|
-
maxInputTokens:
|
|
3592
|
+
maxInputTokens: 131_072,
|
|
3739
3593
|
maxOutputTokens: 16_384,
|
|
3740
3594
|
},
|
|
3741
3595
|
config: {
|
|
3742
3596
|
temperature: 0.2,
|
|
3743
3597
|
},
|
|
3744
3598
|
pricing: {
|
|
3745
|
-
getPriceForTextInput: (tokens) => 0.
|
|
3746
|
-
getPriceForTextOutput: (tokens) =>
|
|
3599
|
+
getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000,
|
|
3600
|
+
getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000,
|
|
3747
3601
|
getPriceForAudioInput: () => 0,
|
|
3748
3602
|
getPriceForAudioOutput: () => 0,
|
|
3749
3603
|
currency: 'USD',
|
|
3750
3604
|
},
|
|
3751
3605
|
capabilities: {
|
|
3752
3606
|
vision: false,
|
|
3753
|
-
tools:
|
|
3607
|
+
tools: true,
|
|
3754
3608
|
reasoning: false,
|
|
3755
3609
|
webSearch: false,
|
|
3756
|
-
jsonOutput:
|
|
3610
|
+
jsonOutput: true,
|
|
3757
3611
|
structuredOutputs: false,
|
|
3758
3612
|
},
|
|
3759
3613
|
},
|
|
3760
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
3761
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
3614
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_THINKING_ALIBABA]: {
|
|
3615
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_NEXT_80B_A3B_THINKING_ALIBABA,
|
|
3762
3616
|
limits: {
|
|
3763
|
-
maxInputTokens:
|
|
3617
|
+
maxInputTokens: 131_072,
|
|
3764
3618
|
maxOutputTokens: 16_384,
|
|
3765
3619
|
},
|
|
3766
3620
|
config: {
|
|
3767
|
-
temperature:
|
|
3621
|
+
temperature: 1,
|
|
3768
3622
|
},
|
|
3769
3623
|
pricing: {
|
|
3770
|
-
getPriceForTextInput: (tokens) => 0.
|
|
3771
|
-
getPriceForTextOutput: (tokens) =>
|
|
3624
|
+
getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000,
|
|
3625
|
+
getPriceForTextOutput: (tokens) => 6 * tokens / 1_000_000,
|
|
3772
3626
|
getPriceForAudioInput: () => 0,
|
|
3773
3627
|
getPriceForAudioOutput: () => 0,
|
|
3774
3628
|
currency: 'USD',
|
|
3775
3629
|
},
|
|
3776
3630
|
capabilities: {
|
|
3777
3631
|
vision: false,
|
|
3778
|
-
tools:
|
|
3779
|
-
reasoning:
|
|
3632
|
+
tools: true,
|
|
3633
|
+
reasoning: true,
|
|
3780
3634
|
webSearch: false,
|
|
3781
3635
|
jsonOutput: false,
|
|
3782
3636
|
structuredOutputs: false,
|
|
3783
3637
|
},
|
|
3784
3638
|
},
|
|
3785
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
3786
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
3639
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_INSTRUCT_ALIBABA]: {
|
|
3640
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_INSTRUCT_ALIBABA,
|
|
3787
3641
|
limits: {
|
|
3788
|
-
maxInputTokens:
|
|
3789
|
-
maxOutputTokens:
|
|
3642
|
+
maxInputTokens: 131_072,
|
|
3643
|
+
maxOutputTokens: 16_384,
|
|
3790
3644
|
},
|
|
3791
3645
|
config: {
|
|
3792
3646
|
temperature: 0.2,
|
|
3793
3647
|
},
|
|
3794
3648
|
pricing: {
|
|
3795
|
-
getPriceForTextInput: (tokens) => 0.
|
|
3796
|
-
getPriceForTextOutput: (tokens) =>
|
|
3649
|
+
getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000,
|
|
3650
|
+
getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000,
|
|
3797
3651
|
getPriceForAudioInput: () => 0,
|
|
3798
3652
|
getPriceForAudioOutput: () => 0,
|
|
3799
3653
|
currency: 'USD',
|
|
@@ -3807,59 +3661,59 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3807
3661
|
structuredOutputs: false,
|
|
3808
3662
|
},
|
|
3809
3663
|
},
|
|
3810
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
3811
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
3664
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_THINKING_ALIBABA]: {
|
|
3665
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_VL_235B_A22B_THINKING_ALIBABA,
|
|
3812
3666
|
limits: {
|
|
3813
|
-
maxInputTokens:
|
|
3814
|
-
maxOutputTokens:
|
|
3667
|
+
maxInputTokens: 131_072,
|
|
3668
|
+
maxOutputTokens: 16_384,
|
|
3815
3669
|
},
|
|
3816
3670
|
config: {
|
|
3817
|
-
temperature:
|
|
3671
|
+
temperature: 1,
|
|
3818
3672
|
},
|
|
3819
3673
|
pricing: {
|
|
3820
|
-
getPriceForTextInput: (tokens) => 0.
|
|
3821
|
-
getPriceForTextOutput: (tokens) =>
|
|
3674
|
+
getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000,
|
|
3675
|
+
getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000,
|
|
3822
3676
|
getPriceForAudioInput: () => 0,
|
|
3823
3677
|
getPriceForAudioOutput: () => 0,
|
|
3824
3678
|
currency: 'USD',
|
|
3825
3679
|
},
|
|
3826
3680
|
capabilities: {
|
|
3827
3681
|
vision: true,
|
|
3828
|
-
tools:
|
|
3829
|
-
reasoning:
|
|
3682
|
+
tools: false,
|
|
3683
|
+
reasoning: true,
|
|
3830
3684
|
webSearch: false,
|
|
3831
|
-
jsonOutput:
|
|
3685
|
+
jsonOutput: false,
|
|
3832
3686
|
structuredOutputs: false,
|
|
3833
3687
|
},
|
|
3834
3688
|
},
|
|
3835
|
-
// ───
|
|
3836
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
3837
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
3689
|
+
// ─── Zhipu GLM (provider routes) ─────────────────────
|
|
3690
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5V_ZAI]: {
|
|
3691
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5V_ZAI,
|
|
3838
3692
|
limits: {
|
|
3839
3693
|
maxInputTokens: 128_000,
|
|
3840
3694
|
maxOutputTokens: 16_384,
|
|
3841
3695
|
},
|
|
3842
3696
|
config: {
|
|
3843
|
-
temperature:
|
|
3697
|
+
temperature: 1,
|
|
3844
3698
|
},
|
|
3845
3699
|
pricing: {
|
|
3846
|
-
getPriceForTextInput: (tokens) => 0.
|
|
3847
|
-
getPriceForTextOutput: (tokens) =>
|
|
3700
|
+
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
3701
|
+
getPriceForTextOutput: (tokens) => 1.8 * tokens / 1_000_000,
|
|
3848
3702
|
getPriceForAudioInput: () => 0,
|
|
3849
3703
|
getPriceForAudioOutput: () => 0,
|
|
3850
3704
|
currency: 'USD',
|
|
3851
3705
|
},
|
|
3852
3706
|
capabilities: {
|
|
3853
|
-
vision:
|
|
3854
|
-
tools:
|
|
3855
|
-
reasoning:
|
|
3707
|
+
vision: true,
|
|
3708
|
+
tools: true,
|
|
3709
|
+
reasoning: true,
|
|
3856
3710
|
webSearch: false,
|
|
3857
3711
|
jsonOutput: true,
|
|
3858
3712
|
structuredOutputs: false,
|
|
3859
3713
|
},
|
|
3860
3714
|
},
|
|
3861
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
3862
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
3715
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIR_EMBERCLOUD]: {
|
|
3716
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIR_EMBERCLOUD,
|
|
3863
3717
|
limits: {
|
|
3864
3718
|
maxInputTokens: 128_000,
|
|
3865
3719
|
maxOutputTokens: 16_384,
|
|
@@ -3868,33 +3722,33 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3868
3722
|
temperature: 0.2,
|
|
3869
3723
|
},
|
|
3870
3724
|
pricing: {
|
|
3871
|
-
getPriceForTextInput: (tokens) => 0.
|
|
3872
|
-
getPriceForTextOutput: (tokens) => 0.
|
|
3725
|
+
getPriceForTextInput: (tokens) => 0.13 * tokens / 1_000_000,
|
|
3726
|
+
getPriceForTextOutput: (tokens) => 0.85 * tokens / 1_000_000,
|
|
3873
3727
|
getPriceForAudioInput: () => 0,
|
|
3874
3728
|
getPriceForAudioOutput: () => 0,
|
|
3875
3729
|
currency: 'USD',
|
|
3876
3730
|
},
|
|
3877
3731
|
capabilities: {
|
|
3878
3732
|
vision: false,
|
|
3879
|
-
tools:
|
|
3733
|
+
tools: true,
|
|
3880
3734
|
reasoning: false,
|
|
3881
3735
|
webSearch: false,
|
|
3882
3736
|
jsonOutput: true,
|
|
3883
3737
|
structuredOutputs: false,
|
|
3884
3738
|
},
|
|
3885
3739
|
},
|
|
3886
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
3887
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
3740
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIR_ZAI]: {
|
|
3741
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_AIR_ZAI,
|
|
3888
3742
|
limits: {
|
|
3889
|
-
maxInputTokens:
|
|
3743
|
+
maxInputTokens: 128_000,
|
|
3890
3744
|
maxOutputTokens: 16_384,
|
|
3891
3745
|
},
|
|
3892
3746
|
config: {
|
|
3893
3747
|
temperature: 0.2,
|
|
3894
3748
|
},
|
|
3895
3749
|
pricing: {
|
|
3896
|
-
getPriceForTextInput: (tokens) => 0.
|
|
3897
|
-
getPriceForTextOutput: (tokens) =>
|
|
3750
|
+
getPriceForTextInput: (tokens) => 0.2 * tokens / 1_000_000,
|
|
3751
|
+
getPriceForTextOutput: (tokens) => 1.1 * tokens / 1_000_000,
|
|
3898
3752
|
getPriceForAudioInput: () => 0,
|
|
3899
3753
|
getPriceForAudioOutput: () => 0,
|
|
3900
3754
|
currency: 'USD',
|
|
@@ -3908,18 +3762,18 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3908
3762
|
structuredOutputs: false,
|
|
3909
3763
|
},
|
|
3910
3764
|
},
|
|
3911
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
3912
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
3765
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_EMBERCLOUD]: {
|
|
3766
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_EMBERCLOUD,
|
|
3913
3767
|
limits: {
|
|
3914
|
-
maxInputTokens:
|
|
3768
|
+
maxInputTokens: 128_000,
|
|
3915
3769
|
maxOutputTokens: 16_384,
|
|
3916
3770
|
},
|
|
3917
3771
|
config: {
|
|
3918
|
-
temperature:
|
|
3772
|
+
temperature: 1,
|
|
3919
3773
|
},
|
|
3920
3774
|
pricing: {
|
|
3921
|
-
getPriceForTextInput: (tokens) => 0.
|
|
3922
|
-
getPriceForTextOutput: (tokens) =>
|
|
3775
|
+
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
3776
|
+
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
3923
3777
|
getPriceForAudioInput: () => 0,
|
|
3924
3778
|
getPriceForAudioOutput: () => 0,
|
|
3925
3779
|
currency: 'USD',
|
|
@@ -3927,81 +3781,55 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
3927
3781
|
capabilities: {
|
|
3928
3782
|
vision: false,
|
|
3929
3783
|
tools: true,
|
|
3930
|
-
reasoning:
|
|
3784
|
+
reasoning: true,
|
|
3931
3785
|
webSearch: false,
|
|
3932
3786
|
jsonOutput: true,
|
|
3933
3787
|
structuredOutputs: false,
|
|
3934
3788
|
},
|
|
3935
3789
|
},
|
|
3936
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
3937
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
3790
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_ZAI]: {
|
|
3791
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5_ZAI,
|
|
3938
3792
|
limits: {
|
|
3939
|
-
maxInputTokens:
|
|
3940
|
-
maxOutputTokens:
|
|
3793
|
+
maxInputTokens: 128_000,
|
|
3794
|
+
maxOutputTokens: 16_384,
|
|
3941
3795
|
},
|
|
3942
3796
|
config: {
|
|
3943
|
-
temperature:
|
|
3797
|
+
temperature: 1,
|
|
3944
3798
|
},
|
|
3945
3799
|
pricing: {
|
|
3946
|
-
getPriceForTextInput: (tokens) => 0.
|
|
3947
|
-
getPriceForTextOutput: (tokens) =>
|
|
3800
|
+
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
3801
|
+
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
3948
3802
|
getPriceForAudioInput: () => 0,
|
|
3949
3803
|
getPriceForAudioOutput: () => 0,
|
|
3950
3804
|
currency: 'USD',
|
|
3951
3805
|
},
|
|
3952
3806
|
capabilities: {
|
|
3953
|
-
vision:
|
|
3954
|
-
tools:
|
|
3955
|
-
reasoning:
|
|
3807
|
+
vision: false,
|
|
3808
|
+
tools: true,
|
|
3809
|
+
reasoning: true,
|
|
3956
3810
|
webSearch: false,
|
|
3957
3811
|
jsonOutput: true,
|
|
3958
3812
|
structuredOutputs: false,
|
|
3959
3813
|
},
|
|
3960
3814
|
},
|
|
3961
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
3962
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
3815
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_ZAI]: {
|
|
3816
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6V_ZAI,
|
|
3963
3817
|
limits: {
|
|
3964
3818
|
maxInputTokens: 131_072,
|
|
3965
3819
|
maxOutputTokens: 16_384,
|
|
3966
3820
|
},
|
|
3967
|
-
config: {
|
|
3968
|
-
temperature: 0.2,
|
|
3969
|
-
},
|
|
3970
|
-
pricing: {
|
|
3971
|
-
getPriceForTextInput: (tokens) => 0.18 * tokens / 1_000_000,
|
|
3972
|
-
getPriceForTextOutput: (tokens) => 0.59 * tokens / 1_000_000,
|
|
3973
|
-
getPriceForAudioInput: () => 0,
|
|
3974
|
-
getPriceForAudioOutput: () => 0,
|
|
3975
|
-
currency: 'USD',
|
|
3976
|
-
},
|
|
3977
|
-
capabilities: {
|
|
3978
|
-
vision: true,
|
|
3979
|
-
tools: false,
|
|
3980
|
-
reasoning: false,
|
|
3981
|
-
webSearch: false,
|
|
3982
|
-
jsonOutput: true,
|
|
3983
|
-
structuredOutputs: false,
|
|
3984
|
-
},
|
|
3985
|
-
},
|
|
3986
|
-
// ─── MiniMax (provider routes) ────────────────────────
|
|
3987
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1_CANOPYWAVE]: {
|
|
3988
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1_CANOPYWAVE,
|
|
3989
|
-
limits: {
|
|
3990
|
-
maxInputTokens: 204_800,
|
|
3991
|
-
maxOutputTokens: 128_000,
|
|
3992
|
-
},
|
|
3993
3821
|
config: {
|
|
3994
3822
|
temperature: 1,
|
|
3995
3823
|
},
|
|
3996
3824
|
pricing: {
|
|
3997
|
-
getPriceForTextInput: (tokens) => 0.
|
|
3998
|
-
getPriceForTextOutput: (tokens) =>
|
|
3825
|
+
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
3826
|
+
getPriceForTextOutput: (tokens) => 0.9 * tokens / 1_000_000,
|
|
3999
3827
|
getPriceForAudioInput: () => 0,
|
|
4000
3828
|
getPriceForAudioOutput: () => 0,
|
|
4001
3829
|
currency: 'USD',
|
|
4002
3830
|
},
|
|
4003
3831
|
capabilities: {
|
|
4004
|
-
vision:
|
|
3832
|
+
vision: true,
|
|
4005
3833
|
tools: true,
|
|
4006
3834
|
reasoning: true,
|
|
4007
3835
|
webSearch: false,
|
|
@@ -4009,8 +3837,8 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4009
3837
|
structuredOutputs: false,
|
|
4010
3838
|
},
|
|
4011
3839
|
},
|
|
4012
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4013
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
3840
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6_ZAI]: {
|
|
3841
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_6_ZAI,
|
|
4014
3842
|
limits: {
|
|
4015
3843
|
maxInputTokens: 204_800,
|
|
4016
3844
|
maxOutputTokens: 128_000,
|
|
@@ -4019,23 +3847,23 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4019
3847
|
temperature: 1,
|
|
4020
3848
|
},
|
|
4021
3849
|
pricing: {
|
|
4022
|
-
getPriceForTextInput: (tokens) => 0.
|
|
4023
|
-
getPriceForTextOutput: (tokens) =>
|
|
3850
|
+
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
3851
|
+
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
4024
3852
|
getPriceForAudioInput: () => 0,
|
|
4025
3853
|
getPriceForAudioOutput: () => 0,
|
|
4026
3854
|
currency: 'USD',
|
|
4027
3855
|
},
|
|
4028
3856
|
capabilities: {
|
|
4029
3857
|
vision: false,
|
|
4030
|
-
tools:
|
|
3858
|
+
tools: true,
|
|
4031
3859
|
reasoning: true,
|
|
4032
3860
|
webSearch: false,
|
|
4033
3861
|
jsonOutput: true,
|
|
4034
3862
|
structuredOutputs: false,
|
|
4035
3863
|
},
|
|
4036
3864
|
},
|
|
4037
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4038
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
3865
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_ZAI]: {
|
|
3866
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_7_ZAI,
|
|
4039
3867
|
limits: {
|
|
4040
3868
|
maxInputTokens: 204_800,
|
|
4041
3869
|
maxOutputTokens: 128_000,
|
|
@@ -4044,8 +3872,8 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4044
3872
|
temperature: 1,
|
|
4045
3873
|
},
|
|
4046
3874
|
pricing: {
|
|
4047
|
-
getPriceForTextInput: (tokens) => 0.
|
|
4048
|
-
getPriceForTextOutput: (tokens) =>
|
|
3875
|
+
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
3876
|
+
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
4049
3877
|
getPriceForAudioInput: () => 0,
|
|
4050
3878
|
getPriceForAudioOutput: () => 0,
|
|
4051
3879
|
currency: 'USD',
|
|
@@ -4059,18 +3887,18 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4059
3887
|
structuredOutputs: false,
|
|
4060
3888
|
},
|
|
4061
3889
|
},
|
|
4062
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4063
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
3890
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_ZAI]: {
|
|
3891
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_5_ZAI,
|
|
4064
3892
|
limits: {
|
|
4065
|
-
maxInputTokens:
|
|
3893
|
+
maxInputTokens: 202_800,
|
|
4066
3894
|
maxOutputTokens: 128_000,
|
|
4067
3895
|
},
|
|
4068
3896
|
config: {
|
|
4069
3897
|
temperature: 1,
|
|
4070
3898
|
},
|
|
4071
3899
|
pricing: {
|
|
4072
|
-
getPriceForTextInput: (tokens) =>
|
|
4073
|
-
getPriceForTextOutput: (tokens) =>
|
|
3900
|
+
getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000,
|
|
3901
|
+
getPriceForTextOutput: (tokens) => 3.2 * tokens / 1_000_000,
|
|
4074
3902
|
getPriceForAudioInput: () => 0,
|
|
4075
3903
|
getPriceForAudioOutput: () => 0,
|
|
4076
3904
|
currency: 'USD',
|
|
@@ -4084,194 +3912,917 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4084
3912
|
structuredOutputs: false,
|
|
4085
3913
|
},
|
|
4086
3914
|
},
|
|
4087
|
-
|
|
4088
|
-
|
|
4089
|
-
|
|
4090
|
-
|
|
4091
|
-
|
|
4092
|
-
},
|
|
4093
|
-
config: {
|
|
4094
|
-
temperature: 1,
|
|
4095
|
-
},
|
|
4096
|
-
pricing: {
|
|
4097
|
-
getPriceForTextInput: (tokens) => 0.2 * tokens / 1_000_000,
|
|
4098
|
-
getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000,
|
|
4099
|
-
getPriceForAudioInput: () => 0,
|
|
4100
|
-
getPriceForAudioOutput: () => 0,
|
|
4101
|
-
currency: 'USD',
|
|
4102
|
-
},
|
|
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' },
|
|
4103
3921
|
capabilities: {
|
|
4104
|
-
vision:
|
|
3922
|
+
vision: true,
|
|
4105
3923
|
tools: true,
|
|
4106
3924
|
reasoning: true,
|
|
4107
|
-
webSearch:
|
|
3925
|
+
webSearch: true,
|
|
4108
3926
|
jsonOutput: true,
|
|
4109
|
-
structuredOutputs:
|
|
3927
|
+
structuredOutputs: true,
|
|
4110
3928
|
},
|
|
4111
3929
|
},
|
|
4112
|
-
|
|
4113
|
-
|
|
4114
|
-
|
|
4115
|
-
|
|
4116
|
-
|
|
4117
|
-
maxOutputTokens: 128_000,
|
|
4118
|
-
},
|
|
4119
|
-
config: {
|
|
4120
|
-
temperature: 0.2,
|
|
4121
|
-
},
|
|
4122
|
-
pricing: {
|
|
4123
|
-
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
4124
|
-
getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000,
|
|
4125
|
-
getPriceForAudioInput: () => 0,
|
|
4126
|
-
getPriceForAudioOutput: () => 0,
|
|
4127
|
-
currency: 'USD',
|
|
4128
|
-
},
|
|
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' },
|
|
4129
3935
|
capabilities: {
|
|
4130
3936
|
vision: true,
|
|
4131
3937
|
tools: true,
|
|
4132
|
-
reasoning:
|
|
4133
|
-
webSearch:
|
|
3938
|
+
reasoning: true,
|
|
3939
|
+
webSearch: true,
|
|
4134
3940
|
jsonOutput: true,
|
|
4135
|
-
structuredOutputs:
|
|
3941
|
+
structuredOutputs: true,
|
|
4136
3942
|
},
|
|
4137
3943
|
},
|
|
4138
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4139
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4140
|
-
limits: {
|
|
4141
|
-
|
|
4142
|
-
|
|
4143
|
-
},
|
|
4144
|
-
config: {
|
|
4145
|
-
temperature: 0.2,
|
|
4146
|
-
},
|
|
4147
|
-
pricing: {
|
|
4148
|
-
getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000,
|
|
4149
|
-
getPriceForTextOutput: (tokens) => 2.8 * tokens / 1_000_000,
|
|
4150
|
-
getPriceForAudioInput: () => 0,
|
|
4151
|
-
getPriceForAudioOutput: () => 0,
|
|
4152
|
-
currency: 'USD',
|
|
4153
|
-
},
|
|
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' },
|
|
4154
3949
|
capabilities: {
|
|
4155
3950
|
vision: true,
|
|
4156
3951
|
tools: true,
|
|
4157
|
-
reasoning:
|
|
4158
|
-
webSearch:
|
|
3952
|
+
reasoning: true,
|
|
3953
|
+
webSearch: true,
|
|
4159
3954
|
jsonOutput: true,
|
|
4160
|
-
structuredOutputs:
|
|
3955
|
+
structuredOutputs: true,
|
|
4161
3956
|
},
|
|
4162
3957
|
},
|
|
4163
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4164
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4165
|
-
limits: {
|
|
4166
|
-
|
|
4167
|
-
|
|
4168
|
-
},
|
|
4169
|
-
config: {
|
|
4170
|
-
temperature: 0.2,
|
|
4171
|
-
},
|
|
4172
|
-
pricing: {
|
|
4173
|
-
getPriceForTextInput: (tokens) => 0.405 * tokens / 1_000_000,
|
|
4174
|
-
getPriceForTextOutput: (tokens) => 1.98 * tokens / 1_000_000,
|
|
4175
|
-
getPriceForAudioInput: () => 0,
|
|
4176
|
-
getPriceForAudioOutput: () => 0,
|
|
4177
|
-
currency: 'USD',
|
|
4178
|
-
},
|
|
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' },
|
|
4179
3963
|
capabilities: {
|
|
4180
3964
|
vision: true,
|
|
4181
3965
|
tools: true,
|
|
4182
|
-
reasoning:
|
|
4183
|
-
webSearch:
|
|
3966
|
+
reasoning: true,
|
|
3967
|
+
webSearch: true,
|
|
4184
3968
|
jsonOutput: true,
|
|
4185
|
-
structuredOutputs:
|
|
3969
|
+
structuredOutputs: true,
|
|
4186
3970
|
},
|
|
4187
3971
|
},
|
|
4188
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4189
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4190
|
-
limits: {
|
|
4191
|
-
|
|
4192
|
-
|
|
4193
|
-
},
|
|
4194
|
-
config: {
|
|
4195
|
-
temperature: 0.2,
|
|
4196
|
-
},
|
|
4197
|
-
pricing: {
|
|
4198
|
-
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
4199
|
-
getPriceForTextOutput: (tokens) => 1.75 * tokens / 1_000_000,
|
|
4200
|
-
getPriceForAudioInput: () => 0,
|
|
4201
|
-
getPriceForAudioOutput: () => 0,
|
|
4202
|
-
currency: 'USD',
|
|
4203
|
-
},
|
|
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' },
|
|
4204
3977
|
capabilities: {
|
|
4205
3978
|
vision: false,
|
|
4206
3979
|
tools: true,
|
|
4207
|
-
reasoning:
|
|
4208
|
-
webSearch:
|
|
3980
|
+
reasoning: true,
|
|
3981
|
+
webSearch: true,
|
|
4209
3982
|
jsonOutput: true,
|
|
4210
|
-
structuredOutputs:
|
|
3983
|
+
structuredOutputs: true,
|
|
4211
3984
|
},
|
|
4212
3985
|
},
|
|
4213
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4214
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4215
|
-
limits: {
|
|
4216
|
-
|
|
4217
|
-
|
|
4218
|
-
},
|
|
4219
|
-
config: {
|
|
4220
|
-
temperature: 0.2,
|
|
4221
|
-
},
|
|
4222
|
-
pricing: {
|
|
4223
|
-
getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000,
|
|
4224
|
-
getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000,
|
|
4225
|
-
getPriceForAudioInput: () => 0,
|
|
4226
|
-
getPriceForAudioOutput: () => 0,
|
|
4227
|
-
currency: 'USD',
|
|
4228
|
-
},
|
|
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' },
|
|
4229
3991
|
capabilities: {
|
|
4230
3992
|
vision: false,
|
|
4231
3993
|
tools: true,
|
|
4232
|
-
reasoning:
|
|
4233
|
-
webSearch:
|
|
3994
|
+
reasoning: true,
|
|
3995
|
+
webSearch: true,
|
|
4234
3996
|
jsonOutput: true,
|
|
4235
|
-
structuredOutputs:
|
|
3997
|
+
structuredOutputs: true,
|
|
4236
3998
|
},
|
|
4237
3999
|
},
|
|
4238
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4239
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4240
|
-
limits: {
|
|
4241
|
-
|
|
4242
|
-
|
|
4243
|
-
},
|
|
4244
|
-
config: {
|
|
4245
|
-
temperature: 0.2,
|
|
4246
|
-
},
|
|
4247
|
-
pricing: {
|
|
4248
|
-
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
4249
|
-
getPriceForTextOutput: (tokens) => 2.5 * tokens / 1_000_000,
|
|
4250
|
-
getPriceForAudioInput: () => 0,
|
|
4251
|
-
getPriceForAudioOutput: () => 0,
|
|
4252
|
-
currency: 'USD',
|
|
4253
|
-
},
|
|
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' },
|
|
4254
4005
|
capabilities: {
|
|
4255
|
-
vision:
|
|
4006
|
+
vision: true,
|
|
4256
4007
|
tools: true,
|
|
4257
|
-
reasoning:
|
|
4258
|
-
webSearch:
|
|
4008
|
+
reasoning: true,
|
|
4009
|
+
webSearch: true,
|
|
4259
4010
|
jsonOutput: true,
|
|
4260
|
-
structuredOutputs:
|
|
4011
|
+
structuredOutputs: true,
|
|
4261
4012
|
},
|
|
4262
4013
|
},
|
|
4263
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4264
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4265
|
-
limits: {
|
|
4266
|
-
|
|
4267
|
-
|
|
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' },
|
|
4019
|
+
capabilities: {
|
|
4020
|
+
vision: true,
|
|
4021
|
+
tools: true,
|
|
4022
|
+
reasoning: true,
|
|
4023
|
+
webSearch: true,
|
|
4024
|
+
jsonOutput: true,
|
|
4025
|
+
structuredOutputs: true,
|
|
4026
|
+
},
|
|
4027
|
+
},
|
|
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' },
|
|
4033
|
+
capabilities: {
|
|
4034
|
+
vision: true,
|
|
4035
|
+
tools: true,
|
|
4036
|
+
reasoning: true,
|
|
4037
|
+
webSearch: true,
|
|
4038
|
+
jsonOutput: true,
|
|
4039
|
+
structuredOutputs: true,
|
|
4040
|
+
},
|
|
4041
|
+
},
|
|
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' },
|
|
4047
|
+
capabilities: {
|
|
4048
|
+
vision: true,
|
|
4049
|
+
tools: true,
|
|
4050
|
+
reasoning: true,
|
|
4051
|
+
webSearch: true,
|
|
4052
|
+
jsonOutput: true,
|
|
4053
|
+
structuredOutputs: true,
|
|
4054
|
+
},
|
|
4055
|
+
},
|
|
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' },
|
|
4061
|
+
capabilities: {
|
|
4062
|
+
vision: true,
|
|
4063
|
+
tools: true,
|
|
4064
|
+
reasoning: true,
|
|
4065
|
+
webSearch: true,
|
|
4066
|
+
jsonOutput: true,
|
|
4067
|
+
structuredOutputs: true,
|
|
4068
|
+
},
|
|
4069
|
+
},
|
|
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' },
|
|
4075
|
+
capabilities: {
|
|
4076
|
+
vision: true,
|
|
4077
|
+
tools: true,
|
|
4078
|
+
reasoning: true,
|
|
4079
|
+
webSearch: true,
|
|
4080
|
+
jsonOutput: true,
|
|
4081
|
+
structuredOutputs: true,
|
|
4082
|
+
},
|
|
4083
|
+
},
|
|
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' },
|
|
4089
|
+
capabilities: {
|
|
4090
|
+
vision: true,
|
|
4091
|
+
tools: true,
|
|
4092
|
+
reasoning: true,
|
|
4093
|
+
webSearch: true,
|
|
4094
|
+
jsonOutput: true,
|
|
4095
|
+
structuredOutputs: true,
|
|
4096
|
+
},
|
|
4097
|
+
},
|
|
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' },
|
|
4103
|
+
capabilities: {
|
|
4104
|
+
vision: true,
|
|
4105
|
+
tools: true,
|
|
4106
|
+
reasoning: true,
|
|
4107
|
+
webSearch: true,
|
|
4108
|
+
jsonOutput: true,
|
|
4109
|
+
structuredOutputs: true,
|
|
4110
|
+
},
|
|
4111
|
+
},
|
|
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' },
|
|
4117
|
+
capabilities: {
|
|
4118
|
+
vision: true,
|
|
4119
|
+
tools: true,
|
|
4120
|
+
reasoning: true,
|
|
4121
|
+
webSearch: true,
|
|
4122
|
+
jsonOutput: true,
|
|
4123
|
+
structuredOutputs: true,
|
|
4124
|
+
},
|
|
4125
|
+
},
|
|
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' },
|
|
4131
|
+
capabilities: {
|
|
4132
|
+
vision: true,
|
|
4133
|
+
tools: true,
|
|
4134
|
+
reasoning: true,
|
|
4135
|
+
webSearch: true,
|
|
4136
|
+
jsonOutput: true,
|
|
4137
|
+
structuredOutputs: true,
|
|
4138
|
+
},
|
|
4139
|
+
},
|
|
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,
|
|
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' },
|
|
4159
|
+
capabilities: {
|
|
4160
|
+
vision: true,
|
|
4161
|
+
tools: true,
|
|
4162
|
+
reasoning: true,
|
|
4163
|
+
webSearch: true,
|
|
4164
|
+
jsonOutput: true,
|
|
4165
|
+
structuredOutputs: true,
|
|
4166
|
+
},
|
|
4167
|
+
},
|
|
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' },
|
|
4173
|
+
capabilities: {
|
|
4174
|
+
vision: true,
|
|
4175
|
+
tools: true,
|
|
4176
|
+
reasoning: true,
|
|
4177
|
+
webSearch: true,
|
|
4178
|
+
jsonOutput: true,
|
|
4179
|
+
structuredOutputs: true,
|
|
4180
|
+
},
|
|
4181
|
+
},
|
|
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' },
|
|
4187
|
+
capabilities: {
|
|
4188
|
+
vision: true,
|
|
4189
|
+
tools: true,
|
|
4190
|
+
reasoning: true,
|
|
4191
|
+
webSearch: true,
|
|
4192
|
+
jsonOutput: true,
|
|
4193
|
+
structuredOutputs: true,
|
|
4194
|
+
},
|
|
4195
|
+
},
|
|
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' },
|
|
4201
|
+
capabilities: {
|
|
4202
|
+
vision: true,
|
|
4203
|
+
tools: true,
|
|
4204
|
+
reasoning: true,
|
|
4205
|
+
webSearch: true,
|
|
4206
|
+
jsonOutput: true,
|
|
4207
|
+
structuredOutputs: true,
|
|
4208
|
+
},
|
|
4209
|
+
},
|
|
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' },
|
|
4215
|
+
capabilities: {
|
|
4216
|
+
vision: true,
|
|
4217
|
+
tools: true,
|
|
4218
|
+
reasoning: true,
|
|
4219
|
+
webSearch: true,
|
|
4220
|
+
jsonOutput: true,
|
|
4221
|
+
structuredOutputs: true,
|
|
4222
|
+
},
|
|
4223
|
+
},
|
|
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' },
|
|
4229
|
+
capabilities: {
|
|
4230
|
+
vision: true,
|
|
4231
|
+
tools: true,
|
|
4232
|
+
reasoning: true,
|
|
4233
|
+
webSearch: true,
|
|
4234
|
+
jsonOutput: true,
|
|
4235
|
+
structuredOutputs: true,
|
|
4236
|
+
},
|
|
4237
|
+
},
|
|
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' },
|
|
4243
|
+
capabilities: {
|
|
4244
|
+
vision: true,
|
|
4245
|
+
tools: true,
|
|
4246
|
+
reasoning: true,
|
|
4247
|
+
webSearch: true,
|
|
4248
|
+
jsonOutput: true,
|
|
4249
|
+
structuredOutputs: true,
|
|
4250
|
+
},
|
|
4251
|
+
},
|
|
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' },
|
|
4258
|
+
capabilities: {
|
|
4259
|
+
vision: true,
|
|
4260
|
+
tools: true,
|
|
4261
|
+
reasoning: true,
|
|
4262
|
+
webSearch: true,
|
|
4263
|
+
jsonOutput: true,
|
|
4264
|
+
structuredOutputs: true,
|
|
4265
|
+
},
|
|
4266
|
+
},
|
|
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' },
|
|
4272
|
+
capabilities: {
|
|
4273
|
+
vision: true,
|
|
4274
|
+
tools: true,
|
|
4275
|
+
reasoning: true,
|
|
4276
|
+
webSearch: true,
|
|
4277
|
+
jsonOutput: true,
|
|
4278
|
+
structuredOutputs: true,
|
|
4279
|
+
},
|
|
4280
|
+
},
|
|
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,
|
|
4293
|
+
},
|
|
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,
|
|
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' },
|
|
4314
|
+
capabilities: {
|
|
4315
|
+
vision: true,
|
|
4316
|
+
tools: true,
|
|
4317
|
+
reasoning: false,
|
|
4318
|
+
webSearch: false,
|
|
4319
|
+
jsonOutput: true,
|
|
4320
|
+
structuredOutputs: true,
|
|
4321
|
+
},
|
|
4322
|
+
},
|
|
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,
|
|
4335
|
+
},
|
|
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,
|
|
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' },
|
|
4356
|
+
capabilities: {
|
|
4357
|
+
vision: true,
|
|
4358
|
+
tools: true,
|
|
4359
|
+
reasoning: true,
|
|
4360
|
+
webSearch: true,
|
|
4361
|
+
jsonOutput: true,
|
|
4362
|
+
structuredOutputs: true,
|
|
4363
|
+
},
|
|
4364
|
+
},
|
|
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,
|
|
4377
|
+
},
|
|
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,
|
|
4391
|
+
},
|
|
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,
|
|
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' },
|
|
4412
|
+
capabilities: {
|
|
4413
|
+
vision: true,
|
|
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,
|
|
4430
|
+
reasoning: true,
|
|
4431
|
+
webSearch: false,
|
|
4432
|
+
jsonOutput: true,
|
|
4433
|
+
structuredOutputs: false,
|
|
4434
|
+
},
|
|
4435
|
+
},
|
|
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' },
|
|
4441
|
+
capabilities: {
|
|
4442
|
+
vision: true,
|
|
4443
|
+
tools: true,
|
|
4444
|
+
reasoning: true,
|
|
4445
|
+
webSearch: false,
|
|
4446
|
+
jsonOutput: true,
|
|
4447
|
+
structuredOutputs: false,
|
|
4448
|
+
},
|
|
4449
|
+
},
|
|
4450
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_1_20250805_ANTHROPIC]: {
|
|
4451
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_1_20250805_ANTHROPIC,
|
|
4452
|
+
limits: {
|
|
4453
|
+
maxInputTokens: 200_000,
|
|
4454
|
+
maxOutputTokens: 32_768,
|
|
4455
|
+
},
|
|
4456
|
+
config: {
|
|
4457
|
+
temperature: 0.2,
|
|
4458
|
+
},
|
|
4459
|
+
pricing: {
|
|
4460
|
+
getPriceForTextInput: (tokens) => 15 * tokens / 1_000_000,
|
|
4461
|
+
getPriceForTextOutput: (tokens) => 75 * tokens / 1_000_000,
|
|
4462
|
+
getPriceForAudioInput: () => 0,
|
|
4463
|
+
getPriceForAudioOutput: () => 0,
|
|
4464
|
+
currency: 'USD',
|
|
4465
|
+
},
|
|
4466
|
+
capabilities: {
|
|
4467
|
+
vision: true,
|
|
4468
|
+
tools: true,
|
|
4469
|
+
reasoning: true,
|
|
4470
|
+
webSearch: true,
|
|
4471
|
+
jsonOutput: false,
|
|
4472
|
+
structuredOutputs: true,
|
|
4473
|
+
},
|
|
4474
|
+
},
|
|
4475
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_20250514_ANTHROPIC]: {
|
|
4476
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_20250514_ANTHROPIC,
|
|
4477
|
+
limits: {
|
|
4478
|
+
maxInputTokens: 200_000,
|
|
4479
|
+
maxOutputTokens: 32_768,
|
|
4480
|
+
},
|
|
4481
|
+
config: {
|
|
4482
|
+
temperature: 0.2,
|
|
4483
|
+
},
|
|
4484
|
+
pricing: {
|
|
4485
|
+
getPriceForTextInput: (tokens) => 15 * tokens / 1_000_000,
|
|
4486
|
+
getPriceForTextOutput: (tokens) => 75 * tokens / 1_000_000,
|
|
4487
|
+
getPriceForAudioInput: () => 0,
|
|
4488
|
+
getPriceForAudioOutput: () => 0,
|
|
4489
|
+
currency: 'USD',
|
|
4490
|
+
},
|
|
4491
|
+
capabilities: {
|
|
4492
|
+
vision: false,
|
|
4493
|
+
tools: true,
|
|
4494
|
+
reasoning: true,
|
|
4495
|
+
webSearch: true,
|
|
4496
|
+
jsonOutput: false,
|
|
4497
|
+
structuredOutputs: false,
|
|
4498
|
+
},
|
|
4499
|
+
},
|
|
4500
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_5_20251101_ANTHROPIC]: {
|
|
4501
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_5_20251101_ANTHROPIC,
|
|
4502
|
+
limits: {
|
|
4503
|
+
maxInputTokens: 200_000,
|
|
4504
|
+
maxOutputTokens: 32_768,
|
|
4505
|
+
},
|
|
4506
|
+
config: {
|
|
4507
|
+
temperature: 0.2,
|
|
4508
|
+
},
|
|
4509
|
+
pricing: {
|
|
4510
|
+
getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000,
|
|
4511
|
+
getPriceForTextOutput: (tokens) => 25 * tokens / 1_000_000,
|
|
4512
|
+
getPriceForAudioInput: () => 0,
|
|
4513
|
+
getPriceForAudioOutput: () => 0,
|
|
4514
|
+
currency: 'USD',
|
|
4515
|
+
},
|
|
4516
|
+
capabilities: {
|
|
4517
|
+
vision: true,
|
|
4518
|
+
tools: true,
|
|
4519
|
+
reasoning: true,
|
|
4520
|
+
webSearch: true,
|
|
4521
|
+
jsonOutput: false,
|
|
4522
|
+
structuredOutputs: true,
|
|
4523
|
+
},
|
|
4524
|
+
},
|
|
4525
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_6_ANTHROPIC]: {
|
|
4526
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_OPUS_4_6_ANTHROPIC,
|
|
4527
|
+
limits: {
|
|
4528
|
+
maxInputTokens: 1_000_000,
|
|
4529
|
+
maxOutputTokens: 32_768,
|
|
4530
|
+
},
|
|
4531
|
+
config: {
|
|
4532
|
+
temperature: 1,
|
|
4533
|
+
},
|
|
4534
|
+
pricing: {
|
|
4535
|
+
getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000,
|
|
4536
|
+
getPriceForTextOutput: (tokens) => 25 * tokens / 1_000_000,
|
|
4537
|
+
getPriceForAudioInput: () => 0,
|
|
4538
|
+
getPriceForAudioOutput: () => 0,
|
|
4539
|
+
currency: 'USD',
|
|
4540
|
+
},
|
|
4541
|
+
capabilities: {
|
|
4542
|
+
vision: true,
|
|
4543
|
+
tools: true,
|
|
4544
|
+
reasoning: true,
|
|
4545
|
+
webSearch: true,
|
|
4546
|
+
jsonOutput: true,
|
|
4547
|
+
structuredOutputs: true,
|
|
4548
|
+
},
|
|
4549
|
+
},
|
|
4550
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_20250514_ANTHROPIC]: {
|
|
4551
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_20250514_ANTHROPIC,
|
|
4552
|
+
limits: {
|
|
4553
|
+
maxInputTokens: 200_000,
|
|
4554
|
+
maxOutputTokens: 32_768,
|
|
4555
|
+
},
|
|
4556
|
+
config: {
|
|
4557
|
+
temperature: 0.2,
|
|
4558
|
+
},
|
|
4559
|
+
pricing: {
|
|
4560
|
+
getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000,
|
|
4561
|
+
getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
|
|
4562
|
+
getPriceForAudioInput: () => 0,
|
|
4563
|
+
getPriceForAudioOutput: () => 0,
|
|
4564
|
+
currency: 'USD',
|
|
4565
|
+
},
|
|
4566
|
+
capabilities: {
|
|
4567
|
+
vision: false,
|
|
4568
|
+
tools: true,
|
|
4569
|
+
reasoning: true,
|
|
4570
|
+
webSearch: true,
|
|
4571
|
+
jsonOutput: false,
|
|
4572
|
+
structuredOutputs: false,
|
|
4573
|
+
},
|
|
4574
|
+
},
|
|
4575
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_5_ANTHROPIC]: {
|
|
4576
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_5_ANTHROPIC,
|
|
4577
|
+
limits: {
|
|
4578
|
+
maxInputTokens: 200_000,
|
|
4579
|
+
maxOutputTokens: 32_768,
|
|
4580
|
+
},
|
|
4581
|
+
config: {
|
|
4582
|
+
temperature: 0.2,
|
|
4583
|
+
},
|
|
4584
|
+
pricing: {
|
|
4585
|
+
getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000,
|
|
4586
|
+
getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
|
|
4587
|
+
getPriceForAudioInput: () => 0,
|
|
4588
|
+
getPriceForAudioOutput: () => 0,
|
|
4589
|
+
currency: 'USD',
|
|
4590
|
+
},
|
|
4591
|
+
capabilities: {
|
|
4592
|
+
vision: false,
|
|
4593
|
+
tools: true,
|
|
4594
|
+
reasoning: true,
|
|
4595
|
+
webSearch: true,
|
|
4596
|
+
jsonOutput: false,
|
|
4597
|
+
structuredOutputs: true,
|
|
4598
|
+
},
|
|
4599
|
+
},
|
|
4600
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_5_20250929_ANTHROPIC]: {
|
|
4601
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_5_20250929_ANTHROPIC,
|
|
4602
|
+
limits: {
|
|
4603
|
+
maxInputTokens: 200_000,
|
|
4604
|
+
maxOutputTokens: 32_768,
|
|
4605
|
+
},
|
|
4606
|
+
config: {
|
|
4607
|
+
temperature: 0.2,
|
|
4608
|
+
},
|
|
4609
|
+
pricing: {
|
|
4610
|
+
getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000,
|
|
4611
|
+
getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
|
|
4612
|
+
getPriceForAudioInput: () => 0,
|
|
4613
|
+
getPriceForAudioOutput: () => 0,
|
|
4614
|
+
currency: 'USD',
|
|
4615
|
+
},
|
|
4616
|
+
capabilities: {
|
|
4617
|
+
vision: false,
|
|
4618
|
+
tools: true,
|
|
4619
|
+
reasoning: true,
|
|
4620
|
+
webSearch: true,
|
|
4621
|
+
jsonOutput: false,
|
|
4622
|
+
structuredOutputs: true,
|
|
4623
|
+
},
|
|
4624
|
+
},
|
|
4625
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_6_ANTHROPIC]: {
|
|
4626
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.CLAUDE_SONNET_4_6_ANTHROPIC,
|
|
4627
|
+
limits: {
|
|
4628
|
+
maxInputTokens: 200_000,
|
|
4629
|
+
maxOutputTokens: 32_768,
|
|
4630
|
+
},
|
|
4631
|
+
config: {
|
|
4632
|
+
temperature: 0.2,
|
|
4633
|
+
},
|
|
4634
|
+
pricing: {
|
|
4635
|
+
getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000,
|
|
4636
|
+
getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
|
|
4637
|
+
getPriceForAudioInput: () => 0,
|
|
4638
|
+
getPriceForAudioOutput: () => 0,
|
|
4639
|
+
currency: 'USD',
|
|
4640
|
+
},
|
|
4641
|
+
capabilities: {
|
|
4642
|
+
vision: false,
|
|
4643
|
+
tools: true,
|
|
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,
|
|
4659
|
+
webSearch: false,
|
|
4660
|
+
jsonOutput: true,
|
|
4661
|
+
structuredOutputs: false,
|
|
4662
|
+
},
|
|
4663
|
+
},
|
|
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,
|
|
4666
|
+
limits: {
|
|
4667
|
+
maxInputTokens: 200_000,
|
|
4668
|
+
maxOutputTokens: 32_768,
|
|
4669
|
+
},
|
|
4670
|
+
config: {
|
|
4671
|
+
temperature: 0.2,
|
|
4672
|
+
},
|
|
4673
|
+
pricing: {
|
|
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,
|
|
4701
|
+
getPriceForAudioInput: () => 0,
|
|
4702
|
+
getPriceForAudioOutput: () => 0,
|
|
4703
|
+
currency: 'USD',
|
|
4704
|
+
},
|
|
4705
|
+
capabilities: {
|
|
4706
|
+
vision: false,
|
|
4707
|
+
tools: true,
|
|
4708
|
+
reasoning: true,
|
|
4709
|
+
webSearch: true,
|
|
4710
|
+
jsonOutput: false,
|
|
4711
|
+
structuredOutputs: false,
|
|
4712
|
+
},
|
|
4713
|
+
},
|
|
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,
|
|
4716
|
+
limits: {
|
|
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,
|
|
4744
|
+
},
|
|
4745
|
+
config: {
|
|
4746
|
+
temperature: 1,
|
|
4747
|
+
},
|
|
4748
|
+
pricing: {
|
|
4749
|
+
getPriceForTextInput: (tokens) => 5 * tokens / 1_000_000,
|
|
4750
|
+
getPriceForTextOutput: (tokens) => 25 * tokens / 1_000_000,
|
|
4751
|
+
getPriceForAudioInput: () => 0,
|
|
4752
|
+
getPriceForAudioOutput: () => 0,
|
|
4753
|
+
currency: 'USD',
|
|
4754
|
+
},
|
|
4755
|
+
capabilities: {
|
|
4756
|
+
vision: true,
|
|
4757
|
+
tools: true,
|
|
4758
|
+
reasoning: true,
|
|
4759
|
+
webSearch: true,
|
|
4760
|
+
jsonOutput: true,
|
|
4761
|
+
structuredOutputs: true,
|
|
4762
|
+
},
|
|
4763
|
+
},
|
|
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,
|
|
4766
|
+
limits: {
|
|
4767
|
+
maxInputTokens: 200_000,
|
|
4768
|
+
maxOutputTokens: 32_768,
|
|
4769
|
+
},
|
|
4770
|
+
config: {
|
|
4771
|
+
temperature: 0.2,
|
|
4772
|
+
},
|
|
4773
|
+
pricing: {
|
|
4774
|
+
getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000,
|
|
4775
|
+
getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
|
|
4776
|
+
getPriceForAudioInput: () => 0,
|
|
4777
|
+
getPriceForAudioOutput: () => 0,
|
|
4778
|
+
currency: 'USD',
|
|
4779
|
+
},
|
|
4780
|
+
capabilities: {
|
|
4781
|
+
vision: false,
|
|
4782
|
+
tools: true,
|
|
4783
|
+
reasoning: true,
|
|
4784
|
+
webSearch: true,
|
|
4785
|
+
jsonOutput: false,
|
|
4786
|
+
structuredOutputs: false,
|
|
4787
|
+
},
|
|
4788
|
+
},
|
|
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,
|
|
4791
|
+
limits: {
|
|
4792
|
+
maxInputTokens: 200_000,
|
|
4793
|
+
maxOutputTokens: 32_768,
|
|
4268
4794
|
},
|
|
4269
4795
|
config: {
|
|
4270
4796
|
temperature: 0.2,
|
|
4271
4797
|
},
|
|
4272
4798
|
pricing: {
|
|
4273
|
-
getPriceForTextInput: (tokens) =>
|
|
4274
|
-
getPriceForTextOutput: (tokens) =>
|
|
4799
|
+
getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000,
|
|
4800
|
+
getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
|
|
4801
|
+
getPriceForAudioInput: () => 0,
|
|
4802
|
+
getPriceForAudioOutput: () => 0,
|
|
4803
|
+
currency: 'USD',
|
|
4804
|
+
},
|
|
4805
|
+
capabilities: {
|
|
4806
|
+
vision: false,
|
|
4807
|
+
tools: true,
|
|
4808
|
+
reasoning: true,
|
|
4809
|
+
webSearch: true,
|
|
4810
|
+
jsonOutput: false,
|
|
4811
|
+
structuredOutputs: true,
|
|
4812
|
+
},
|
|
4813
|
+
},
|
|
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,
|
|
4816
|
+
limits: {
|
|
4817
|
+
maxInputTokens: 200_000,
|
|
4818
|
+
maxOutputTokens: 32_768,
|
|
4819
|
+
},
|
|
4820
|
+
config: {
|
|
4821
|
+
temperature: 0.2,
|
|
4822
|
+
},
|
|
4823
|
+
pricing: {
|
|
4824
|
+
getPriceForTextInput: (tokens) => 3 * tokens / 1_000_000,
|
|
4825
|
+
getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000,
|
|
4275
4826
|
getPriceForAudioInput: () => 0,
|
|
4276
4827
|
getPriceForAudioOutput: () => 0,
|
|
4277
4828
|
currency: 'USD',
|
|
@@ -4279,28 +4830,84 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4279
4830
|
capabilities: {
|
|
4280
4831
|
vision: false,
|
|
4281
4832
|
tools: true,
|
|
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,
|
|
4282
4875
|
reasoning: false,
|
|
4283
4876
|
webSearch: false,
|
|
4284
4877
|
jsonOutput: true,
|
|
4285
4878
|
structuredOutputs: false,
|
|
4286
4879
|
},
|
|
4287
4880
|
},
|
|
4288
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4289
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4881
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_MINIMAX_M2_5_AWS_BEDROCK]: {
|
|
4882
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_MINIMAX_M2_5_AWS_BEDROCK,
|
|
4290
4883
|
limits: {
|
|
4291
|
-
maxInputTokens:
|
|
4884
|
+
maxInputTokens: 204_800,
|
|
4292
4885
|
maxOutputTokens: 16_384,
|
|
4293
4886
|
},
|
|
4294
4887
|
config: {
|
|
4295
4888
|
temperature: 0.2,
|
|
4296
4889
|
},
|
|
4297
4890
|
pricing: {
|
|
4298
|
-
getPriceForTextInput: (tokens) => 0.
|
|
4299
|
-
getPriceForTextOutput: (tokens) => 2
|
|
4891
|
+
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
4892
|
+
getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000,
|
|
4300
4893
|
getPriceForAudioInput: () => 0,
|
|
4301
4894
|
getPriceForAudioOutput: () => 0,
|
|
4302
4895
|
currency: 'USD',
|
|
4303
4896
|
},
|
|
4897
|
+
capabilities: {
|
|
4898
|
+
vision: false,
|
|
4899
|
+
tools: true,
|
|
4900
|
+
reasoning: true,
|
|
4901
|
+
webSearch: false,
|
|
4902
|
+
jsonOutput: true,
|
|
4903
|
+
structuredOutputs: false,
|
|
4904
|
+
},
|
|
4905
|
+
},
|
|
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' },
|
|
4304
4911
|
capabilities: {
|
|
4305
4912
|
vision: false,
|
|
4306
4913
|
tools: true,
|
|
@@ -4310,19 +4917,18 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4310
4917
|
structuredOutputs: false,
|
|
4311
4918
|
},
|
|
4312
4919
|
},
|
|
4313
|
-
|
|
4314
|
-
|
|
4315
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_235B_A22B_INSTRUCT_2507_NEBIUS,
|
|
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,
|
|
4316
4922
|
limits: {
|
|
4317
|
-
maxInputTokens:
|
|
4318
|
-
maxOutputTokens:
|
|
4923
|
+
maxInputTokens: 131_072,
|
|
4924
|
+
maxOutputTokens: 32_768,
|
|
4319
4925
|
},
|
|
4320
4926
|
config: {
|
|
4321
4927
|
temperature: 0.2,
|
|
4322
4928
|
},
|
|
4323
4929
|
pricing: {
|
|
4324
|
-
getPriceForTextInput: (tokens) => 0.
|
|
4325
|
-
getPriceForTextOutput: (tokens) => 0.
|
|
4930
|
+
getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000,
|
|
4931
|
+
getPriceForTextOutput: (tokens) => 0.5 * tokens / 1_000_000,
|
|
4326
4932
|
getPriceForAudioInput: () => 0,
|
|
4327
4933
|
getPriceForAudioOutput: () => 0,
|
|
4328
4934
|
currency: 'USD',
|
|
@@ -4330,24 +4936,24 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4330
4936
|
capabilities: {
|
|
4331
4937
|
vision: false,
|
|
4332
4938
|
tools: true,
|
|
4333
|
-
reasoning:
|
|
4939
|
+
reasoning: true,
|
|
4334
4940
|
webSearch: false,
|
|
4335
4941
|
jsonOutput: true,
|
|
4336
4942
|
structuredOutputs: false,
|
|
4337
4943
|
},
|
|
4338
4944
|
},
|
|
4339
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4340
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4945
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_CODER_NEXT_AWS_BEDROCK]: {
|
|
4946
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_QWEN3_CODER_NEXT_AWS_BEDROCK,
|
|
4341
4947
|
limits: {
|
|
4342
|
-
maxInputTokens:
|
|
4948
|
+
maxInputTokens: 262_144,
|
|
4343
4949
|
maxOutputTokens: 128_000,
|
|
4344
4950
|
},
|
|
4345
4951
|
config: {
|
|
4346
|
-
temperature:
|
|
4952
|
+
temperature: 1,
|
|
4347
4953
|
},
|
|
4348
4954
|
pricing: {
|
|
4349
|
-
getPriceForTextInput: (tokens) => 0.
|
|
4350
|
-
getPriceForTextOutput: (tokens) => 0.
|
|
4955
|
+
getPriceForTextInput: (tokens) => 0.108 * tokens / 1_000_000,
|
|
4956
|
+
getPriceForTextOutput: (tokens) => 0.675 * tokens / 1_000_000,
|
|
4351
4957
|
getPriceForAudioInput: () => 0,
|
|
4352
4958
|
getPriceForAudioOutput: () => 0,
|
|
4353
4959
|
currency: 'USD',
|
|
@@ -4355,16 +4961,91 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4355
4961
|
capabilities: {
|
|
4356
4962
|
vision: false,
|
|
4357
4963
|
tools: true,
|
|
4964
|
+
reasoning: true,
|
|
4965
|
+
webSearch: false,
|
|
4966
|
+
jsonOutput: true,
|
|
4967
|
+
structuredOutputs: true,
|
|
4968
|
+
},
|
|
4969
|
+
},
|
|
4970
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CHAT_AZURE]: {
|
|
4971
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CHAT_AZURE,
|
|
4972
|
+
limits: {
|
|
4973
|
+
maxInputTokens: 128_000,
|
|
4974
|
+
maxOutputTokens: 16_384,
|
|
4975
|
+
},
|
|
4976
|
+
config: {
|
|
4977
|
+
temperature: 1,
|
|
4978
|
+
},
|
|
4979
|
+
pricing: {
|
|
4980
|
+
getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000,
|
|
4981
|
+
getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000,
|
|
4982
|
+
getPriceForAudioInput: () => 0,
|
|
4983
|
+
getPriceForAudioOutput: () => 0,
|
|
4984
|
+
currency: 'USD',
|
|
4985
|
+
},
|
|
4986
|
+
capabilities: {
|
|
4987
|
+
vision: true,
|
|
4988
|
+
tools: true,
|
|
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,
|
|
4358
5014
|
reasoning: false,
|
|
4359
5015
|
webSearch: false,
|
|
4360
5016
|
jsonOutput: true,
|
|
4361
|
-
structuredOutputs:
|
|
5017
|
+
structuredOutputs: true,
|
|
4362
5018
|
},
|
|
4363
5019
|
},
|
|
4364
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4365
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5020
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_MINI_AZURE]: {
|
|
5021
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_MINI_AZURE,
|
|
4366
5022
|
limits: {
|
|
4367
|
-
maxInputTokens:
|
|
5023
|
+
maxInputTokens: 400_000,
|
|
5024
|
+
maxOutputTokens: 128_000,
|
|
5025
|
+
},
|
|
5026
|
+
config: {
|
|
5027
|
+
temperature: 1,
|
|
5028
|
+
},
|
|
5029
|
+
pricing: {
|
|
5030
|
+
getPriceForTextInput: (tokens) => 0.75 * tokens / 1_000_000,
|
|
5031
|
+
getPriceForTextOutput: (tokens) => 4.5 * tokens / 1_000_000,
|
|
5032
|
+
getPriceForAudioInput: () => 0,
|
|
5033
|
+
getPriceForAudioOutput: () => 0,
|
|
5034
|
+
currency: 'USD',
|
|
5035
|
+
},
|
|
5036
|
+
capabilities: {
|
|
5037
|
+
vision: true,
|
|
5038
|
+
tools: true,
|
|
5039
|
+
reasoning: true,
|
|
5040
|
+
webSearch: true,
|
|
5041
|
+
jsonOutput: true,
|
|
5042
|
+
structuredOutputs: true,
|
|
5043
|
+
},
|
|
5044
|
+
},
|
|
5045
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_NANO_AZURE]: {
|
|
5046
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_NANO_AZURE,
|
|
5047
|
+
limits: {
|
|
5048
|
+
maxInputTokens: 400_000,
|
|
4368
5049
|
maxOutputTokens: 128_000,
|
|
4369
5050
|
},
|
|
4370
5051
|
config: {
|
|
@@ -4372,38 +5053,127 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4372
5053
|
},
|
|
4373
5054
|
pricing: {
|
|
4374
5055
|
getPriceForTextInput: (tokens) => 0.2 * tokens / 1_000_000,
|
|
4375
|
-
getPriceForTextOutput: (tokens) =>
|
|
5056
|
+
getPriceForTextOutput: (tokens) => 1.25 * tokens / 1_000_000,
|
|
4376
5057
|
getPriceForAudioInput: () => 0,
|
|
4377
5058
|
getPriceForAudioOutput: () => 0,
|
|
4378
5059
|
currency: 'USD',
|
|
4379
5060
|
},
|
|
4380
5061
|
capabilities: {
|
|
4381
|
-
vision:
|
|
5062
|
+
vision: true,
|
|
4382
5063
|
tools: true,
|
|
4383
5064
|
reasoning: true,
|
|
5065
|
+
webSearch: true,
|
|
5066
|
+
jsonOutput: true,
|
|
5067
|
+
structuredOutputs: true,
|
|
5068
|
+
},
|
|
5069
|
+
},
|
|
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,
|
|
4384
5104
|
webSearch: false,
|
|
4385
5105
|
jsonOutput: true,
|
|
4386
5106
|
structuredOutputs: false,
|
|
4387
5107
|
},
|
|
4388
5108
|
},
|
|
4389
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4390
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5109
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_MINIMAX_M2_1_CANOPYWAVE]: {
|
|
5110
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_MINIMAX_M2_1_CANOPYWAVE,
|
|
4391
5111
|
limits: {
|
|
4392
|
-
maxInputTokens:
|
|
5112
|
+
maxInputTokens: 204_800,
|
|
4393
5113
|
maxOutputTokens: 128_000,
|
|
4394
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
|
+
},
|
|
4395
5140
|
config: {
|
|
4396
5141
|
temperature: 0.2,
|
|
4397
5142
|
},
|
|
4398
5143
|
pricing: {
|
|
4399
5144
|
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
4400
|
-
getPriceForTextOutput: (tokens) =>
|
|
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,
|
|
4401
5171
|
getPriceForAudioInput: () => 0,
|
|
4402
5172
|
getPriceForAudioOutput: () => 0,
|
|
4403
5173
|
currency: 'USD',
|
|
4404
5174
|
},
|
|
4405
5175
|
capabilities: {
|
|
4406
|
-
vision:
|
|
5176
|
+
vision: true,
|
|
4407
5177
|
tools: true,
|
|
4408
5178
|
reasoning: false,
|
|
4409
5179
|
webSearch: false,
|
|
@@ -4411,10 +5181,10 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4411
5181
|
structuredOutputs: false,
|
|
4412
5182
|
},
|
|
4413
5183
|
},
|
|
4414
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4415
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5184
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_GLM_4_7_CANOPYWAVE]: {
|
|
5185
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_GLM_4_7_CANOPYWAVE,
|
|
4416
5186
|
limits: {
|
|
4417
|
-
maxInputTokens:
|
|
5187
|
+
maxInputTokens: 204_800,
|
|
4418
5188
|
maxOutputTokens: 128_000,
|
|
4419
5189
|
},
|
|
4420
5190
|
config: {
|
|
@@ -4422,13 +5192,13 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4422
5192
|
},
|
|
4423
5193
|
pricing: {
|
|
4424
5194
|
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
4425
|
-
getPriceForTextOutput: (tokens) =>
|
|
5195
|
+
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
4426
5196
|
getPriceForAudioInput: () => 0,
|
|
4427
5197
|
getPriceForAudioOutput: () => 0,
|
|
4428
5198
|
currency: 'USD',
|
|
4429
5199
|
},
|
|
4430
5200
|
capabilities: {
|
|
4431
|
-
vision:
|
|
5201
|
+
vision: false,
|
|
4432
5202
|
tools: true,
|
|
4433
5203
|
reasoning: true,
|
|
4434
5204
|
webSearch: false,
|
|
@@ -4436,24 +5206,38 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4436
5206
|
structuredOutputs: false,
|
|
4437
5207
|
},
|
|
4438
5208
|
},
|
|
4439
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4440
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5209
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_GLM_5_CANOPYWAVE]: {
|
|
5210
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_GLM_5_CANOPYWAVE,
|
|
4441
5211
|
limits: {
|
|
4442
|
-
maxInputTokens:
|
|
4443
|
-
maxOutputTokens:
|
|
5212
|
+
maxInputTokens: 202_800,
|
|
5213
|
+
maxOutputTokens: 16_384,
|
|
4444
5214
|
},
|
|
4445
5215
|
config: {
|
|
4446
|
-
temperature:
|
|
5216
|
+
temperature: 0.2,
|
|
4447
5217
|
},
|
|
4448
5218
|
pricing: {
|
|
4449
|
-
getPriceForTextInput: (tokens) =>
|
|
4450
|
-
getPriceForTextOutput: (tokens) => 3.
|
|
5219
|
+
getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000,
|
|
5220
|
+
getPriceForTextOutput: (tokens) => 3.2 * tokens / 1_000_000,
|
|
4451
5221
|
getPriceForAudioInput: () => 0,
|
|
4452
5222
|
getPriceForAudioOutput: () => 0,
|
|
4453
5223
|
currency: 'USD',
|
|
4454
5224
|
},
|
|
4455
5225
|
capabilities: {
|
|
4456
|
-
vision:
|
|
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,
|
|
4457
5241
|
tools: true,
|
|
4458
5242
|
reasoning: true,
|
|
4459
5243
|
webSearch: false,
|
|
@@ -4461,18 +5245,74 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4461
5245
|
structuredOutputs: false,
|
|
4462
5246
|
},
|
|
4463
5247
|
},
|
|
4464
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4465
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
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,
|
|
4466
5306
|
limits: {
|
|
4467
|
-
maxInputTokens:
|
|
4468
|
-
maxOutputTokens:
|
|
5307
|
+
maxInputTokens: 204_800,
|
|
5308
|
+
maxOutputTokens: 16_384,
|
|
4469
5309
|
},
|
|
4470
5310
|
config: {
|
|
4471
5311
|
temperature: 0.2,
|
|
4472
5312
|
},
|
|
4473
5313
|
pricing: {
|
|
4474
|
-
getPriceForTextInput: (tokens) => 0.
|
|
4475
|
-
getPriceForTextOutput: (tokens) =>
|
|
5314
|
+
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
5315
|
+
getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000,
|
|
4476
5316
|
getPriceForAudioInput: () => 0,
|
|
4477
5317
|
getPriceForAudioOutput: () => 0,
|
|
4478
5318
|
currency: 'USD',
|
|
@@ -4480,30 +5320,30 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4480
5320
|
capabilities: {
|
|
4481
5321
|
vision: false,
|
|
4482
5322
|
tools: true,
|
|
4483
|
-
reasoning:
|
|
5323
|
+
reasoning: true,
|
|
4484
5324
|
webSearch: false,
|
|
4485
5325
|
jsonOutput: true,
|
|
4486
5326
|
structuredOutputs: false,
|
|
4487
5327
|
},
|
|
4488
5328
|
},
|
|
4489
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4490
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5329
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.MOONSHOTAI_KIMI_K2_5_EMBERCLOUD]: {
|
|
5330
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.MOONSHOTAI_KIMI_K2_5_EMBERCLOUD,
|
|
4491
5331
|
limits: {
|
|
4492
|
-
maxInputTokens:
|
|
5332
|
+
maxInputTokens: 262_144,
|
|
4493
5333
|
maxOutputTokens: 128_000,
|
|
4494
5334
|
},
|
|
4495
5335
|
config: {
|
|
4496
5336
|
temperature: 0.2,
|
|
4497
5337
|
},
|
|
4498
5338
|
pricing: {
|
|
4499
|
-
getPriceForTextInput: (tokens) => 0.
|
|
4500
|
-
getPriceForTextOutput: (tokens) =>
|
|
5339
|
+
getPriceForTextInput: (tokens) => 0.405 * tokens / 1_000_000,
|
|
5340
|
+
getPriceForTextOutput: (tokens) => 1.98 * tokens / 1_000_000,
|
|
4501
5341
|
getPriceForAudioInput: () => 0,
|
|
4502
5342
|
getPriceForAudioOutput: () => 0,
|
|
4503
5343
|
currency: 'USD',
|
|
4504
5344
|
},
|
|
4505
5345
|
capabilities: {
|
|
4506
|
-
vision:
|
|
5346
|
+
vision: true,
|
|
4507
5347
|
tools: true,
|
|
4508
5348
|
reasoning: false,
|
|
4509
5349
|
webSearch: false,
|
|
@@ -4511,8 +5351,8 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4511
5351
|
structuredOutputs: false,
|
|
4512
5352
|
},
|
|
4513
5353
|
},
|
|
4514
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4515
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5354
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_NEXT_EMBERCLOUD]: {
|
|
5355
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_CODER_NEXT_EMBERCLOUD,
|
|
4516
5356
|
limits: {
|
|
4517
5357
|
maxInputTokens: 262_144,
|
|
4518
5358
|
maxOutputTokens: 128_000,
|
|
@@ -4536,24 +5376,24 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4536
5376
|
structuredOutputs: true,
|
|
4537
5377
|
},
|
|
4538
5378
|
},
|
|
4539
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4540
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5379
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_GLM_4_7_EMBERCLOUD]: {
|
|
5380
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_GLM_4_7_EMBERCLOUD,
|
|
4541
5381
|
limits: {
|
|
4542
|
-
maxInputTokens:
|
|
5382
|
+
maxInputTokens: 204_800,
|
|
4543
5383
|
maxOutputTokens: 128_000,
|
|
4544
5384
|
},
|
|
4545
5385
|
config: {
|
|
4546
5386
|
temperature: 1,
|
|
4547
5387
|
},
|
|
4548
5388
|
pricing: {
|
|
4549
|
-
getPriceForTextInput: (tokens) =>
|
|
4550
|
-
getPriceForTextOutput: (tokens) =>
|
|
5389
|
+
getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
5390
|
+
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
4551
5391
|
getPriceForAudioInput: () => 0,
|
|
4552
5392
|
getPriceForAudioOutput: () => 0,
|
|
4553
5393
|
currency: 'USD',
|
|
4554
5394
|
},
|
|
4555
5395
|
capabilities: {
|
|
4556
|
-
vision:
|
|
5396
|
+
vision: false,
|
|
4557
5397
|
tools: true,
|
|
4558
5398
|
reasoning: true,
|
|
4559
5399
|
webSearch: false,
|
|
@@ -4561,18 +5401,18 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4561
5401
|
structuredOutputs: false,
|
|
4562
5402
|
},
|
|
4563
5403
|
},
|
|
4564
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4565
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5404
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_GLM_5_EMBERCLOUD]: {
|
|
5405
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.ZAI_GLM_5_EMBERCLOUD,
|
|
4566
5406
|
limits: {
|
|
4567
|
-
maxInputTokens:
|
|
4568
|
-
maxOutputTokens:
|
|
5407
|
+
maxInputTokens: 202_800,
|
|
5408
|
+
maxOutputTokens: 16_384,
|
|
4569
5409
|
},
|
|
4570
5410
|
config: {
|
|
4571
5411
|
temperature: 0.2,
|
|
4572
5412
|
},
|
|
4573
5413
|
pricing: {
|
|
4574
|
-
getPriceForTextInput: (tokens) =>
|
|
4575
|
-
getPriceForTextOutput: (tokens) => 3.
|
|
5414
|
+
getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000,
|
|
5415
|
+
getPriceForTextOutput: (tokens) => 3.2 * tokens / 1_000_000,
|
|
4576
5416
|
getPriceForAudioInput: () => 0,
|
|
4577
5417
|
getPriceForAudioOutput: () => 0,
|
|
4578
5418
|
currency: 'USD',
|
|
@@ -4580,130 +5420,201 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4580
5420
|
capabilities: {
|
|
4581
5421
|
vision: false,
|
|
4582
5422
|
tools: true,
|
|
4583
|
-
reasoning:
|
|
4584
|
-
webSearch:
|
|
5423
|
+
reasoning: true,
|
|
5424
|
+
webSearch: true,
|
|
4585
5425
|
jsonOutput: true,
|
|
4586
5426
|
structuredOutputs: false,
|
|
4587
5427
|
},
|
|
4588
5428
|
},
|
|
4589
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4590
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4591
|
-
limits: {
|
|
4592
|
-
|
|
4593
|
-
|
|
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,
|
|
4594
5441
|
},
|
|
4595
|
-
|
|
4596
|
-
|
|
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,
|
|
4597
5455
|
},
|
|
4598
|
-
|
|
4599
|
-
|
|
4600
|
-
|
|
4601
|
-
|
|
4602
|
-
|
|
4603
|
-
|
|
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,
|
|
4604
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' },
|
|
4605
5476
|
capabilities: {
|
|
4606
5477
|
vision: false,
|
|
4607
5478
|
tools: true,
|
|
4608
|
-
reasoning:
|
|
5479
|
+
reasoning: true,
|
|
4609
5480
|
webSearch: false,
|
|
4610
5481
|
jsonOutput: true,
|
|
4611
5482
|
structuredOutputs: false,
|
|
4612
5483
|
},
|
|
4613
5484
|
},
|
|
4614
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4615
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4616
|
-
limits: {
|
|
4617
|
-
|
|
4618
|
-
|
|
4619
|
-
},
|
|
4620
|
-
config: {
|
|
4621
|
-
temperature: 0.2,
|
|
4622
|
-
},
|
|
4623
|
-
pricing: {
|
|
4624
|
-
getPriceForTextInput: (tokens) => 0.15 * tokens / 1_000_000,
|
|
4625
|
-
getPriceForTextOutput: (tokens) => 1.5 * tokens / 1_000_000,
|
|
4626
|
-
getPriceForAudioInput: () => 0,
|
|
4627
|
-
getPriceForAudioOutput: () => 0,
|
|
4628
|
-
currency: 'USD',
|
|
4629
|
-
},
|
|
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' },
|
|
4630
5490
|
capabilities: {
|
|
4631
5491
|
vision: false,
|
|
4632
5492
|
tools: true,
|
|
4633
|
-
reasoning:
|
|
5493
|
+
reasoning: true,
|
|
4634
5494
|
webSearch: false,
|
|
4635
5495
|
jsonOutput: true,
|
|
4636
5496
|
structuredOutputs: false,
|
|
4637
5497
|
},
|
|
4638
5498
|
},
|
|
4639
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4640
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4641
|
-
limits: {
|
|
4642
|
-
|
|
4643
|
-
|
|
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,
|
|
4644
5511
|
},
|
|
4645
|
-
|
|
4646
|
-
|
|
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,
|
|
4647
5525
|
},
|
|
4648
|
-
|
|
4649
|
-
|
|
4650
|
-
|
|
4651
|
-
|
|
4652
|
-
|
|
4653
|
-
|
|
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,
|
|
4654
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' },
|
|
4655
5546
|
capabilities: {
|
|
4656
|
-
vision:
|
|
4657
|
-
tools:
|
|
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,
|
|
4658
5563
|
reasoning: true,
|
|
4659
5564
|
webSearch: false,
|
|
4660
5565
|
jsonOutput: false,
|
|
4661
5566
|
structuredOutputs: false,
|
|
4662
5567
|
},
|
|
4663
5568
|
},
|
|
4664
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4665
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4666
|
-
limits: {
|
|
4667
|
-
|
|
4668
|
-
|
|
4669
|
-
|
|
4670
|
-
|
|
4671
|
-
|
|
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,
|
|
4672
5581
|
},
|
|
4673
|
-
|
|
4674
|
-
|
|
4675
|
-
|
|
4676
|
-
|
|
4677
|
-
|
|
4678
|
-
|
|
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,
|
|
4679
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' },
|
|
4680
5602
|
capabilities: {
|
|
4681
5603
|
vision: false,
|
|
4682
5604
|
tools: true,
|
|
4683
5605
|
reasoning: true,
|
|
4684
5606
|
webSearch: false,
|
|
4685
|
-
jsonOutput:
|
|
5607
|
+
jsonOutput: true,
|
|
4686
5608
|
structuredOutputs: false,
|
|
4687
5609
|
},
|
|
4688
5610
|
},
|
|
4689
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4690
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4691
|
-
limits: {
|
|
4692
|
-
|
|
4693
|
-
|
|
4694
|
-
},
|
|
4695
|
-
config: {
|
|
4696
|
-
temperature: 0.2,
|
|
4697
|
-
},
|
|
4698
|
-
pricing: {
|
|
4699
|
-
getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000,
|
|
4700
|
-
getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000,
|
|
4701
|
-
getPriceForAudioInput: () => 0,
|
|
4702
|
-
getPriceForAudioOutput: () => 0,
|
|
4703
|
-
currency: 'USD',
|
|
4704
|
-
},
|
|
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' },
|
|
4705
5616
|
capabilities: {
|
|
4706
|
-
vision:
|
|
5617
|
+
vision: false,
|
|
4707
5618
|
tools: true,
|
|
4708
5619
|
reasoning: false,
|
|
4709
5620
|
webSearch: false,
|
|
@@ -4711,100 +5622,105 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4711
5622
|
structuredOutputs: false,
|
|
4712
5623
|
},
|
|
4713
5624
|
},
|
|
4714
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4715
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5625
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.OPENAI_GPT_OSS_20B_GROQ]: {
|
|
5626
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.OPENAI_GPT_OSS_20B_GROQ,
|
|
4716
5627
|
limits: {
|
|
4717
5628
|
maxInputTokens: 131_072,
|
|
4718
|
-
maxOutputTokens:
|
|
5629
|
+
maxOutputTokens: 32_768,
|
|
4719
5630
|
},
|
|
4720
5631
|
config: {
|
|
4721
5632
|
temperature: 0.2,
|
|
4722
5633
|
},
|
|
4723
5634
|
pricing: {
|
|
4724
|
-
getPriceForTextInput: (tokens) => 0.
|
|
4725
|
-
getPriceForTextOutput: (tokens) =>
|
|
5635
|
+
getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000,
|
|
5636
|
+
getPriceForTextOutput: (tokens) => 0.5 * tokens / 1_000_000,
|
|
4726
5637
|
getPriceForAudioInput: () => 0,
|
|
4727
5638
|
getPriceForAudioOutput: () => 0,
|
|
4728
5639
|
currency: 'USD',
|
|
4729
5640
|
},
|
|
4730
5641
|
capabilities: {
|
|
4731
|
-
vision:
|
|
5642
|
+
vision: false,
|
|
4732
5643
|
tools: true,
|
|
4733
|
-
reasoning:
|
|
5644
|
+
reasoning: true,
|
|
4734
5645
|
webSearch: false,
|
|
4735
5646
|
jsonOutput: true,
|
|
4736
5647
|
structuredOutputs: false,
|
|
4737
5648
|
},
|
|
4738
5649
|
},
|
|
4739
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4740
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4741
|
-
limits: {
|
|
4742
|
-
|
|
4743
|
-
|
|
4744
|
-
},
|
|
4745
|
-
config: {
|
|
4746
|
-
temperature: 1,
|
|
4747
|
-
},
|
|
4748
|
-
pricing: {
|
|
4749
|
-
getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000,
|
|
4750
|
-
getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000,
|
|
4751
|
-
getPriceForAudioInput: () => 0,
|
|
4752
|
-
getPriceForAudioOutput: () => 0,
|
|
4753
|
-
currency: 'USD',
|
|
4754
|
-
},
|
|
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' },
|
|
4755
5655
|
capabilities: {
|
|
4756
|
-
vision:
|
|
5656
|
+
vision: false,
|
|
4757
5657
|
tools: false,
|
|
4758
|
-
reasoning:
|
|
5658
|
+
reasoning: false,
|
|
4759
5659
|
webSearch: false,
|
|
4760
5660
|
jsonOutput: false,
|
|
4761
5661
|
structuredOutputs: false,
|
|
4762
5662
|
},
|
|
4763
5663
|
},
|
|
4764
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4765
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4766
|
-
limits: {
|
|
4767
|
-
|
|
4768
|
-
|
|
4769
|
-
|
|
4770
|
-
|
|
4771
|
-
|
|
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,
|
|
4772
5676
|
},
|
|
4773
|
-
|
|
4774
|
-
|
|
4775
|
-
|
|
4776
|
-
|
|
4777
|
-
|
|
4778
|
-
|
|
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,
|
|
4779
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' },
|
|
4780
5697
|
capabilities: {
|
|
4781
|
-
vision:
|
|
4782
|
-
tools:
|
|
5698
|
+
vision: false,
|
|
5699
|
+
tools: true,
|
|
4783
5700
|
reasoning: true,
|
|
4784
5701
|
webSearch: false,
|
|
4785
|
-
jsonOutput:
|
|
5702
|
+
jsonOutput: true,
|
|
4786
5703
|
structuredOutputs: false,
|
|
4787
5704
|
},
|
|
4788
5705
|
},
|
|
4789
|
-
|
|
4790
|
-
|
|
4791
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GLM_4_5V_NOVITA,
|
|
5706
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1_MINIMAX_2]: {
|
|
5707
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_1_MINIMAX_2,
|
|
4792
5708
|
limits: {
|
|
4793
|
-
maxInputTokens:
|
|
4794
|
-
maxOutputTokens:
|
|
5709
|
+
maxInputTokens: 204_800,
|
|
5710
|
+
maxOutputTokens: 128_000,
|
|
4795
5711
|
},
|
|
4796
5712
|
config: {
|
|
4797
5713
|
temperature: 1,
|
|
4798
5714
|
},
|
|
4799
5715
|
pricing: {
|
|
4800
|
-
getPriceForTextInput: (tokens) => 0.
|
|
4801
|
-
getPriceForTextOutput: (tokens) => 1.
|
|
5716
|
+
getPriceForTextInput: (tokens) => 0.27 * tokens / 1_000_000,
|
|
5717
|
+
getPriceForTextOutput: (tokens) => 1.08 * tokens / 1_000_000,
|
|
4802
5718
|
getPriceForAudioInput: () => 0,
|
|
4803
5719
|
getPriceForAudioOutput: () => 0,
|
|
4804
5720
|
currency: 'USD',
|
|
4805
5721
|
},
|
|
4806
5722
|
capabilities: {
|
|
4807
|
-
vision:
|
|
5723
|
+
vision: false,
|
|
4808
5724
|
tools: true,
|
|
4809
5725
|
reasoning: true,
|
|
4810
5726
|
webSearch: false,
|
|
@@ -4812,24 +5728,24 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4812
5728
|
structuredOutputs: false,
|
|
4813
5729
|
},
|
|
4814
5730
|
},
|
|
4815
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4816
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5731
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_MINIMAX]: {
|
|
5732
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_M2_5_MINIMAX,
|
|
4817
5733
|
limits: {
|
|
4818
|
-
maxInputTokens:
|
|
5734
|
+
maxInputTokens: 204_800,
|
|
4819
5735
|
maxOutputTokens: 16_384,
|
|
4820
5736
|
},
|
|
4821
5737
|
config: {
|
|
4822
|
-
temperature:
|
|
5738
|
+
temperature: 0.2,
|
|
4823
5739
|
},
|
|
4824
5740
|
pricing: {
|
|
4825
|
-
getPriceForTextInput: (tokens) => 0.
|
|
4826
|
-
getPriceForTextOutput: (tokens) => 1.
|
|
5741
|
+
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
5742
|
+
getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000,
|
|
4827
5743
|
getPriceForAudioInput: () => 0,
|
|
4828
5744
|
getPriceForAudioOutput: () => 0,
|
|
4829
5745
|
currency: 'USD',
|
|
4830
5746
|
},
|
|
4831
5747
|
capabilities: {
|
|
4832
|
-
vision:
|
|
5748
|
+
vision: false,
|
|
4833
5749
|
tools: true,
|
|
4834
5750
|
reasoning: true,
|
|
4835
5751
|
webSearch: false,
|
|
@@ -4837,22 +5753,25 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4837
5753
|
structuredOutputs: false,
|
|
4838
5754
|
},
|
|
4839
5755
|
},
|
|
4840
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4841
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4842
|
-
limits: {
|
|
4843
|
-
|
|
4844
|
-
|
|
4845
|
-
|
|
4846
|
-
|
|
4847
|
-
|
|
4848
|
-
|
|
4849
|
-
|
|
4850
|
-
|
|
4851
|
-
|
|
4852
|
-
getPriceForAudioInput: () => 0,
|
|
4853
|
-
getPriceForAudioOutput: () => 0,
|
|
4854
|
-
currency: 'USD',
|
|
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,
|
|
4855
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' },
|
|
4856
5775
|
capabilities: {
|
|
4857
5776
|
vision: false,
|
|
4858
5777
|
tools: true,
|
|
@@ -4862,10 +5781,10 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4862
5781
|
structuredOutputs: false,
|
|
4863
5782
|
},
|
|
4864
5783
|
},
|
|
4865
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4866
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
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,
|
|
4867
5786
|
limits: {
|
|
4868
|
-
maxInputTokens:
|
|
5787
|
+
maxInputTokens: 262_000,
|
|
4869
5788
|
maxOutputTokens: 16_384,
|
|
4870
5789
|
},
|
|
4871
5790
|
config: {
|
|
@@ -4873,7 +5792,7 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4873
5792
|
},
|
|
4874
5793
|
pricing: {
|
|
4875
5794
|
getPriceForTextInput: (tokens) => 0.2 * tokens / 1_000_000,
|
|
4876
|
-
getPriceForTextOutput: (tokens) =>
|
|
5795
|
+
getPriceForTextOutput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
4877
5796
|
getPriceForAudioInput: () => 0,
|
|
4878
5797
|
getPriceForAudioOutput: () => 0,
|
|
4879
5798
|
currency: 'USD',
|
|
@@ -4887,18 +5806,18 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4887
5806
|
structuredOutputs: false,
|
|
4888
5807
|
},
|
|
4889
5808
|
},
|
|
4890
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4891
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
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,
|
|
4892
5811
|
limits: {
|
|
4893
|
-
maxInputTokens:
|
|
4894
|
-
maxOutputTokens:
|
|
5812
|
+
maxInputTokens: 262_000,
|
|
5813
|
+
maxOutputTokens: 128_000,
|
|
4895
5814
|
},
|
|
4896
5815
|
config: {
|
|
4897
|
-
temperature:
|
|
5816
|
+
temperature: 0.2,
|
|
4898
5817
|
},
|
|
4899
5818
|
pricing: {
|
|
4900
|
-
getPriceForTextInput: (tokens) => 0.
|
|
4901
|
-
getPriceForTextOutput: (tokens) =>
|
|
5819
|
+
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
5820
|
+
getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000,
|
|
4902
5821
|
getPriceForAudioInput: () => 0,
|
|
4903
5822
|
getPriceForAudioOutput: () => 0,
|
|
4904
5823
|
currency: 'USD',
|
|
@@ -4906,24 +5825,24 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4906
5825
|
capabilities: {
|
|
4907
5826
|
vision: false,
|
|
4908
5827
|
tools: true,
|
|
4909
|
-
reasoning:
|
|
5828
|
+
reasoning: false,
|
|
4910
5829
|
webSearch: false,
|
|
4911
5830
|
jsonOutput: true,
|
|
4912
5831
|
structuredOutputs: false,
|
|
4913
5832
|
},
|
|
4914
5833
|
},
|
|
4915
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4916
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
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,
|
|
4917
5836
|
limits: {
|
|
4918
|
-
maxInputTokens:
|
|
4919
|
-
maxOutputTokens:
|
|
5837
|
+
maxInputTokens: 262_000,
|
|
5838
|
+
maxOutputTokens: 128_000,
|
|
4920
5839
|
},
|
|
4921
5840
|
config: {
|
|
4922
|
-
temperature:
|
|
5841
|
+
temperature: 0.2,
|
|
4923
5842
|
},
|
|
4924
5843
|
pricing: {
|
|
4925
|
-
getPriceForTextInput: (tokens) => 0.
|
|
4926
|
-
getPriceForTextOutput: (tokens) =>
|
|
5844
|
+
getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000,
|
|
5845
|
+
getPriceForTextOutput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
4927
5846
|
getPriceForAudioInput: () => 0,
|
|
4928
5847
|
getPriceForAudioOutput: () => 0,
|
|
4929
5848
|
currency: 'USD',
|
|
@@ -4931,173 +5850,157 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
4931
5850
|
capabilities: {
|
|
4932
5851
|
vision: false,
|
|
4933
5852
|
tools: true,
|
|
4934
|
-
reasoning:
|
|
5853
|
+
reasoning: false,
|
|
4935
5854
|
webSearch: false,
|
|
4936
5855
|
jsonOutput: true,
|
|
4937
5856
|
structuredOutputs: false,
|
|
4938
5857
|
},
|
|
4939
5858
|
},
|
|
4940
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4941
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
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,
|
|
4942
5861
|
limits: {
|
|
4943
5862
|
maxInputTokens: 131_072,
|
|
4944
|
-
maxOutputTokens:
|
|
5863
|
+
maxOutputTokens: 8_192,
|
|
4945
5864
|
},
|
|
4946
5865
|
config: {
|
|
4947
|
-
temperature:
|
|
5866
|
+
temperature: 0.2,
|
|
4948
5867
|
},
|
|
4949
5868
|
pricing: {
|
|
4950
|
-
getPriceForTextInput: (tokens) => 0.
|
|
4951
|
-
getPriceForTextOutput: (tokens) => 0.
|
|
5869
|
+
getPriceForTextInput: (tokens) => 0.13 * tokens / 1_000_000,
|
|
5870
|
+
getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000,
|
|
4952
5871
|
getPriceForAudioInput: () => 0,
|
|
4953
5872
|
getPriceForAudioOutput: () => 0,
|
|
4954
5873
|
currency: 'USD',
|
|
4955
5874
|
},
|
|
4956
5875
|
capabilities: {
|
|
4957
|
-
vision:
|
|
5876
|
+
vision: false,
|
|
4958
5877
|
tools: true,
|
|
4959
|
-
reasoning:
|
|
5878
|
+
reasoning: false,
|
|
4960
5879
|
webSearch: false,
|
|
4961
5880
|
jsonOutput: true,
|
|
4962
5881
|
structuredOutputs: false,
|
|
4963
5882
|
},
|
|
4964
5883
|
},
|
|
4965
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4966
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4967
|
-
limits: {
|
|
4968
|
-
|
|
4969
|
-
|
|
4970
|
-
|
|
4971
|
-
|
|
4972
|
-
|
|
4973
|
-
|
|
4974
|
-
|
|
4975
|
-
|
|
4976
|
-
|
|
4977
|
-
getPriceForAudioInput: () => 0,
|
|
4978
|
-
getPriceForAudioOutput: () => 0,
|
|
4979
|
-
currency: 'USD',
|
|
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,
|
|
4980
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' },
|
|
4981
5903
|
capabilities: {
|
|
4982
|
-
vision:
|
|
5904
|
+
vision: false,
|
|
4983
5905
|
tools: true,
|
|
4984
|
-
reasoning:
|
|
5906
|
+
reasoning: false,
|
|
4985
5907
|
webSearch: false,
|
|
4986
5908
|
jsonOutput: true,
|
|
4987
5909
|
structuredOutputs: false,
|
|
4988
5910
|
},
|
|
4989
5911
|
},
|
|
4990
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4991
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
4992
|
-
limits: {
|
|
4993
|
-
|
|
4994
|
-
|
|
4995
|
-
},
|
|
4996
|
-
config: {
|
|
4997
|
-
temperature: 1,
|
|
4998
|
-
},
|
|
4999
|
-
pricing: {
|
|
5000
|
-
getPriceForTextInput: (tokens) => 0.55 * tokens / 1_000_000,
|
|
5001
|
-
getPriceForTextOutput: (tokens) => 2.2 * tokens / 1_000_000,
|
|
5002
|
-
getPriceForAudioInput: () => 0,
|
|
5003
|
-
getPriceForAudioOutput: () => 0,
|
|
5004
|
-
currency: 'USD',
|
|
5005
|
-
},
|
|
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' },
|
|
5006
5917
|
capabilities: {
|
|
5007
5918
|
vision: false,
|
|
5008
5919
|
tools: true,
|
|
5009
5920
|
reasoning: true,
|
|
5010
5921
|
webSearch: false,
|
|
5011
|
-
jsonOutput:
|
|
5922
|
+
jsonOutput: false,
|
|
5012
5923
|
structuredOutputs: false,
|
|
5013
5924
|
},
|
|
5014
5925
|
},
|
|
5015
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5016
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5017
|
-
limits: {
|
|
5018
|
-
|
|
5019
|
-
|
|
5020
|
-
|
|
5021
|
-
|
|
5022
|
-
|
|
5023
|
-
|
|
5024
|
-
|
|
5025
|
-
|
|
5026
|
-
|
|
5027
|
-
getPriceForAudioInput: () => 0,
|
|
5028
|
-
getPriceForAudioOutput: () => 0,
|
|
5029
|
-
currency: 'USD',
|
|
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,
|
|
5030
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' },
|
|
5031
5945
|
capabilities: {
|
|
5032
5946
|
vision: false,
|
|
5033
5947
|
tools: true,
|
|
5034
|
-
reasoning:
|
|
5948
|
+
reasoning: false,
|
|
5035
5949
|
webSearch: false,
|
|
5036
|
-
jsonOutput:
|
|
5950
|
+
jsonOutput: false,
|
|
5037
5951
|
structuredOutputs: false,
|
|
5038
5952
|
},
|
|
5039
5953
|
},
|
|
5040
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5041
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5042
|
-
limits: {
|
|
5043
|
-
|
|
5044
|
-
|
|
5045
|
-
},
|
|
5046
|
-
config: {
|
|
5047
|
-
temperature: 1,
|
|
5048
|
-
},
|
|
5049
|
-
pricing: {
|
|
5050
|
-
getPriceForTextInput: (tokens) => 0.43 * tokens / 1_000_000,
|
|
5051
|
-
getPriceForTextOutput: (tokens) => 1.75 * tokens / 1_000_000,
|
|
5052
|
-
getPriceForAudioInput: () => 0,
|
|
5053
|
-
getPriceForAudioOutput: () => 0,
|
|
5054
|
-
currency: 'USD',
|
|
5055
|
-
},
|
|
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' },
|
|
5056
5959
|
capabilities: {
|
|
5057
|
-
vision:
|
|
5960
|
+
vision: true,
|
|
5058
5961
|
tools: true,
|
|
5059
|
-
reasoning:
|
|
5962
|
+
reasoning: false,
|
|
5060
5963
|
webSearch: false,
|
|
5061
|
-
jsonOutput:
|
|
5964
|
+
jsonOutput: false,
|
|
5062
5965
|
structuredOutputs: false,
|
|
5063
5966
|
},
|
|
5064
5967
|
},
|
|
5065
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5066
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
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,
|
|
5067
5970
|
limits: {
|
|
5068
|
-
maxInputTokens:
|
|
5069
|
-
maxOutputTokens:
|
|
5971
|
+
maxInputTokens: 128_000,
|
|
5972
|
+
maxOutputTokens: 8_192,
|
|
5070
5973
|
},
|
|
5071
5974
|
config: {
|
|
5072
|
-
temperature:
|
|
5975
|
+
temperature: 0.2,
|
|
5073
5976
|
},
|
|
5074
5977
|
pricing: {
|
|
5075
|
-
getPriceForTextInput: (tokens) => 0.
|
|
5076
|
-
getPriceForTextOutput: (tokens) =>
|
|
5978
|
+
getPriceForTextInput: (tokens) => 0.22 * tokens / 1_000_000,
|
|
5979
|
+
getPriceForTextOutput: (tokens) => 0.22 * tokens / 1_000_000,
|
|
5077
5980
|
getPriceForAudioInput: () => 0,
|
|
5078
5981
|
getPriceForAudioOutput: () => 0,
|
|
5079
5982
|
currency: 'USD',
|
|
5080
5983
|
},
|
|
5081
5984
|
capabilities: {
|
|
5082
5985
|
vision: false,
|
|
5083
|
-
tools:
|
|
5084
|
-
reasoning:
|
|
5986
|
+
tools: false,
|
|
5987
|
+
reasoning: false,
|
|
5085
5988
|
webSearch: false,
|
|
5086
5989
|
jsonOutput: true,
|
|
5087
5990
|
structuredOutputs: false,
|
|
5088
5991
|
},
|
|
5089
5992
|
},
|
|
5090
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5091
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
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,
|
|
5092
5995
|
limits: {
|
|
5093
|
-
maxInputTokens:
|
|
5094
|
-
maxOutputTokens:
|
|
5996
|
+
maxInputTokens: 131_072,
|
|
5997
|
+
maxOutputTokens: 8_192,
|
|
5095
5998
|
},
|
|
5096
5999
|
config: {
|
|
5097
|
-
temperature:
|
|
6000
|
+
temperature: 0.2,
|
|
5098
6001
|
},
|
|
5099
6002
|
pricing: {
|
|
5100
|
-
getPriceForTextInput: (tokens) => 0.
|
|
6003
|
+
getPriceForTextInput: (tokens) => 0.13 * tokens / 1_000_000,
|
|
5101
6004
|
getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000,
|
|
5102
6005
|
getPriceForAudioInput: () => 0,
|
|
5103
6006
|
getPriceForAudioOutput: () => 0,
|
|
@@ -5106,39 +6009,42 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
5106
6009
|
capabilities: {
|
|
5107
6010
|
vision: false,
|
|
5108
6011
|
tools: true,
|
|
5109
|
-
reasoning:
|
|
6012
|
+
reasoning: false,
|
|
5110
6013
|
webSearch: false,
|
|
5111
6014
|
jsonOutput: true,
|
|
5112
6015
|
structuredOutputs: false,
|
|
5113
6016
|
},
|
|
5114
6017
|
},
|
|
5115
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5116
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5117
|
-
limits: {
|
|
5118
|
-
|
|
5119
|
-
|
|
5120
|
-
|
|
5121
|
-
|
|
5122
|
-
|
|
5123
|
-
|
|
5124
|
-
|
|
5125
|
-
|
|
5126
|
-
|
|
5127
|
-
getPriceForAudioInput: () => 0,
|
|
5128
|
-
getPriceForAudioOutput: () => 0,
|
|
5129
|
-
currency: 'USD',
|
|
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,
|
|
5130
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' },
|
|
5131
6037
|
capabilities: {
|
|
5132
|
-
vision:
|
|
5133
|
-
tools:
|
|
5134
|
-
reasoning:
|
|
6038
|
+
vision: true,
|
|
6039
|
+
tools: false,
|
|
6040
|
+
reasoning: false,
|
|
5135
6041
|
webSearch: false,
|
|
5136
6042
|
jsonOutput: true,
|
|
5137
6043
|
structuredOutputs: false,
|
|
5138
6044
|
},
|
|
5139
6045
|
},
|
|
5140
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5141
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
6046
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_MINIMAX_M2_1_NOVITA]: {
|
|
6047
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_MINIMAX_M2_1_NOVITA,
|
|
5142
6048
|
limits: {
|
|
5143
6049
|
maxInputTokens: 204_800,
|
|
5144
6050
|
maxOutputTokens: 128_000,
|
|
@@ -5147,8 +6053,8 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
5147
6053
|
temperature: 1,
|
|
5148
6054
|
},
|
|
5149
6055
|
pricing: {
|
|
5150
|
-
getPriceForTextInput: (tokens) => 0.
|
|
5151
|
-
getPriceForTextOutput: (tokens) =>
|
|
6056
|
+
getPriceForTextInput: (tokens) => 0.27 * tokens / 1_000_000,
|
|
6057
|
+
getPriceForTextOutput: (tokens) => 1.08 * tokens / 1_000_000,
|
|
5152
6058
|
getPriceForAudioInput: () => 0,
|
|
5153
6059
|
getPriceForAudioOutput: () => 0,
|
|
5154
6060
|
currency: 'USD',
|
|
@@ -5162,18 +6068,18 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
5162
6068
|
structuredOutputs: false,
|
|
5163
6069
|
},
|
|
5164
6070
|
},
|
|
5165
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5166
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
6071
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_MINIMAX_M2_5_NOVITA]: {
|
|
6072
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.MINIMAX_MINIMAX_M2_5_NOVITA,
|
|
5167
6073
|
limits: {
|
|
5168
6074
|
maxInputTokens: 204_800,
|
|
5169
|
-
maxOutputTokens:
|
|
6075
|
+
maxOutputTokens: 16_384,
|
|
5170
6076
|
},
|
|
5171
6077
|
config: {
|
|
5172
|
-
temperature:
|
|
6078
|
+
temperature: 0.2,
|
|
5173
6079
|
},
|
|
5174
6080
|
pricing: {
|
|
5175
|
-
getPriceForTextInput: (tokens) => 0.
|
|
5176
|
-
getPriceForTextOutput: (tokens) =>
|
|
6081
|
+
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
6082
|
+
getPriceForTextOutput: (tokens) => 1.2 * tokens / 1_000_000,
|
|
5177
6083
|
getPriceForAudioInput: () => 0,
|
|
5178
6084
|
getPriceForAudioOutput: () => 0,
|
|
5179
6085
|
currency: 'USD',
|
|
@@ -5187,43 +6093,32 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
5187
6093
|
structuredOutputs: false,
|
|
5188
6094
|
},
|
|
5189
6095
|
},
|
|
5190
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5191
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5192
|
-
limits: {
|
|
5193
|
-
|
|
5194
|
-
|
|
5195
|
-
},
|
|
5196
|
-
config: {
|
|
5197
|
-
temperature: 1,
|
|
5198
|
-
},
|
|
5199
|
-
pricing: {
|
|
5200
|
-
getPriceForTextInput: (tokens) => 0.9 * tokens / 1_000_000,
|
|
5201
|
-
getPriceForTextOutput: (tokens) => 3.1 * tokens / 1_000_000,
|
|
5202
|
-
getPriceForAudioInput: () => 0,
|
|
5203
|
-
getPriceForAudioOutput: () => 0,
|
|
5204
|
-
currency: 'USD',
|
|
5205
|
-
},
|
|
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' },
|
|
5206
6101
|
capabilities: {
|
|
5207
6102
|
vision: false,
|
|
5208
6103
|
tools: true,
|
|
5209
|
-
reasoning:
|
|
6104
|
+
reasoning: false,
|
|
5210
6105
|
webSearch: false,
|
|
5211
6106
|
jsonOutput: true,
|
|
5212
6107
|
structuredOutputs: false,
|
|
5213
6108
|
},
|
|
5214
6109
|
},
|
|
5215
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5216
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
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,
|
|
5217
6112
|
limits: {
|
|
5218
|
-
maxInputTokens:
|
|
5219
|
-
maxOutputTokens:
|
|
6113
|
+
maxInputTokens: 262_000,
|
|
6114
|
+
maxOutputTokens: 16_384,
|
|
5220
6115
|
},
|
|
5221
6116
|
config: {
|
|
5222
|
-
temperature:
|
|
6117
|
+
temperature: 0.2,
|
|
5223
6118
|
},
|
|
5224
6119
|
pricing: {
|
|
5225
|
-
getPriceForTextInput: (tokens) => 0.
|
|
5226
|
-
getPriceForTextOutput: (tokens) =>
|
|
6120
|
+
getPriceForTextInput: (tokens) => 0.2 * tokens / 1_000_000,
|
|
6121
|
+
getPriceForTextOutput: (tokens) => 0.6 * tokens / 1_000_000,
|
|
5227
6122
|
getPriceForAudioInput: () => 0,
|
|
5228
6123
|
getPriceForAudioOutput: () => 0,
|
|
5229
6124
|
currency: 'USD',
|
|
@@ -5231,24 +6126,24 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
5231
6126
|
capabilities: {
|
|
5232
6127
|
vision: false,
|
|
5233
6128
|
tools: true,
|
|
5234
|
-
reasoning:
|
|
6129
|
+
reasoning: false,
|
|
5235
6130
|
webSearch: false,
|
|
5236
6131
|
jsonOutput: true,
|
|
5237
6132
|
structuredOutputs: false,
|
|
5238
6133
|
},
|
|
5239
6134
|
},
|
|
5240
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5241
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
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,
|
|
5242
6137
|
limits: {
|
|
5243
|
-
maxInputTokens:
|
|
6138
|
+
maxInputTokens: 262_000,
|
|
5244
6139
|
maxOutputTokens: 128_000,
|
|
5245
6140
|
},
|
|
5246
6141
|
config: {
|
|
5247
|
-
temperature:
|
|
6142
|
+
temperature: 0.2,
|
|
5248
6143
|
},
|
|
5249
6144
|
pricing: {
|
|
5250
|
-
getPriceForTextInput: (tokens) =>
|
|
5251
|
-
getPriceForTextOutput: (tokens) => 3
|
|
6145
|
+
getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
6146
|
+
getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000,
|
|
5252
6147
|
getPriceForAudioInput: () => 0,
|
|
5253
6148
|
getPriceForAudioOutput: () => 0,
|
|
5254
6149
|
currency: 'USD',
|
|
@@ -5256,24 +6151,24 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
5256
6151
|
capabilities: {
|
|
5257
6152
|
vision: false,
|
|
5258
6153
|
tools: true,
|
|
5259
|
-
reasoning:
|
|
6154
|
+
reasoning: false,
|
|
5260
6155
|
webSearch: false,
|
|
5261
6156
|
jsonOutput: true,
|
|
5262
6157
|
structuredOutputs: false,
|
|
5263
6158
|
},
|
|
5264
6159
|
},
|
|
5265
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5266
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
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,
|
|
5267
6162
|
limits: {
|
|
5268
|
-
maxInputTokens:
|
|
6163
|
+
maxInputTokens: 262_000,
|
|
5269
6164
|
maxOutputTokens: 128_000,
|
|
5270
6165
|
},
|
|
5271
6166
|
config: {
|
|
5272
|
-
temperature:
|
|
6167
|
+
temperature: 0.2,
|
|
5273
6168
|
},
|
|
5274
6169
|
pricing: {
|
|
5275
|
-
getPriceForTextInput: (tokens) => 1 * tokens / 1_000_000,
|
|
5276
|
-
getPriceForTextOutput: (tokens) => 3
|
|
6170
|
+
getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000,
|
|
6171
|
+
getPriceForTextOutput: (tokens) => 0.3 * tokens / 1_000_000,
|
|
5277
6172
|
getPriceForAudioInput: () => 0,
|
|
5278
6173
|
getPriceForAudioOutput: () => 0,
|
|
5279
6174
|
currency: 'USD',
|
|
@@ -5281,312 +6176,348 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
5281
6176
|
capabilities: {
|
|
5282
6177
|
vision: false,
|
|
5283
6178
|
tools: true,
|
|
5284
|
-
reasoning:
|
|
6179
|
+
reasoning: false,
|
|
5285
6180
|
webSearch: false,
|
|
5286
6181
|
jsonOutput: true,
|
|
5287
6182
|
structuredOutputs: false,
|
|
5288
6183
|
},
|
|
5289
6184
|
},
|
|
5290
|
-
|
|
5291
|
-
|
|
5292
|
-
|
|
5293
|
-
|
|
5294
|
-
|
|
5295
|
-
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5296
|
-
capabilities: {
|
|
5297
|
-
vision: true,
|
|
5298
|
-
tools: true,
|
|
5299
|
-
reasoning: true,
|
|
5300
|
-
webSearch: true,
|
|
5301
|
-
jsonOutput: true,
|
|
5302
|
-
structuredOutputs: true,
|
|
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,
|
|
5303
6190
|
},
|
|
5304
|
-
|
|
5305
|
-
|
|
5306
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_AZURE,
|
|
5307
|
-
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
5308
|
-
config: { temperature: 1, reasoning_effort: 'minimal', verbosity: 'medium' },
|
|
5309
|
-
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5310
|
-
capabilities: {
|
|
5311
|
-
vision: true,
|
|
5312
|
-
tools: true,
|
|
5313
|
-
reasoning: true,
|
|
5314
|
-
webSearch: true,
|
|
5315
|
-
jsonOutput: true,
|
|
5316
|
-
structuredOutputs: true,
|
|
6191
|
+
config: {
|
|
6192
|
+
temperature: 0.2,
|
|
5317
6193
|
},
|
|
5318
|
-
|
|
5319
|
-
|
|
5320
|
-
|
|
5321
|
-
|
|
5322
|
-
|
|
5323
|
-
|
|
5324
|
-
capabilities: {
|
|
5325
|
-
vision: true,
|
|
5326
|
-
tools: true,
|
|
5327
|
-
reasoning: true,
|
|
5328
|
-
webSearch: true,
|
|
5329
|
-
jsonOutput: true,
|
|
5330
|
-
structuredOutputs: true,
|
|
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',
|
|
5331
6200
|
},
|
|
5332
|
-
},
|
|
5333
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI_AZURE]: {
|
|
5334
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI_AZURE,
|
|
5335
|
-
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
5336
|
-
config: { temperature: 1, reasoning_effort: 'minimal', verbosity: 'medium' },
|
|
5337
|
-
pricing: { getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5338
6201
|
capabilities: {
|
|
5339
6202
|
vision: true,
|
|
5340
6203
|
tools: true,
|
|
5341
6204
|
reasoning: true,
|
|
5342
|
-
webSearch:
|
|
6205
|
+
webSearch: false,
|
|
5343
6206
|
jsonOutput: true,
|
|
5344
|
-
structuredOutputs:
|
|
6207
|
+
structuredOutputs: false,
|
|
5345
6208
|
},
|
|
5346
6209
|
},
|
|
5347
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5348
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5349
|
-
limits: {
|
|
5350
|
-
|
|
5351
|
-
|
|
5352
|
-
capabilities: {
|
|
5353
|
-
vision: false,
|
|
5354
|
-
tools: true,
|
|
5355
|
-
reasoning: true,
|
|
5356
|
-
webSearch: true,
|
|
5357
|
-
jsonOutput: true,
|
|
5358
|
-
structuredOutputs: 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,
|
|
5359
6215
|
},
|
|
5360
|
-
|
|
5361
|
-
|
|
5362
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO_AZURE,
|
|
5363
|
-
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
5364
|
-
config: { temperature: 1, reasoning_effort: 'minimal', verbosity: 'medium' },
|
|
5365
|
-
pricing: { getPriceForTextInput: (tokens) => 0.05 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5366
|
-
capabilities: {
|
|
5367
|
-
vision: false,
|
|
5368
|
-
tools: true,
|
|
5369
|
-
reasoning: true,
|
|
5370
|
-
webSearch: true,
|
|
5371
|
-
jsonOutput: true,
|
|
5372
|
-
structuredOutputs: true,
|
|
6216
|
+
config: {
|
|
6217
|
+
temperature: 0.2,
|
|
5373
6218
|
},
|
|
5374
|
-
|
|
5375
|
-
|
|
5376
|
-
|
|
5377
|
-
|
|
5378
|
-
|
|
5379
|
-
|
|
5380
|
-
capabilities: {
|
|
5381
|
-
vision: true,
|
|
5382
|
-
tools: true,
|
|
5383
|
-
reasoning: true,
|
|
5384
|
-
webSearch: true,
|
|
5385
|
-
jsonOutput: true,
|
|
5386
|
-
structuredOutputs: true,
|
|
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',
|
|
5387
6225
|
},
|
|
5388
|
-
},
|
|
5389
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO_AZURE]: {
|
|
5390
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO_AZURE,
|
|
5391
|
-
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
5392
|
-
config: { temperature: 1 },
|
|
5393
|
-
pricing: { getPriceForTextInput: (tokens) => 15 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 120 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5394
6226
|
capabilities: {
|
|
5395
|
-
vision:
|
|
6227
|
+
vision: false,
|
|
5396
6228
|
tools: true,
|
|
5397
|
-
reasoning:
|
|
5398
|
-
webSearch:
|
|
6229
|
+
reasoning: false,
|
|
6230
|
+
webSearch: false,
|
|
5399
6231
|
jsonOutput: true,
|
|
5400
|
-
structuredOutputs:
|
|
6232
|
+
structuredOutputs: false,
|
|
5401
6233
|
},
|
|
5402
6234
|
},
|
|
5403
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5404
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5405
|
-
limits: {
|
|
5406
|
-
|
|
5407
|
-
|
|
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
|
+
},
|
|
5408
6251
|
capabilities: {
|
|
5409
|
-
vision:
|
|
6252
|
+
vision: false,
|
|
5410
6253
|
tools: true,
|
|
5411
6254
|
reasoning: true,
|
|
5412
|
-
webSearch:
|
|
5413
|
-
jsonOutput:
|
|
5414
|
-
structuredOutputs:
|
|
6255
|
+
webSearch: false,
|
|
6256
|
+
jsonOutput: false,
|
|
6257
|
+
structuredOutputs: false,
|
|
5415
6258
|
},
|
|
5416
6259
|
},
|
|
5417
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5418
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5419
|
-
limits: {
|
|
5420
|
-
|
|
5421
|
-
|
|
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
|
+
},
|
|
5422
6276
|
capabilities: {
|
|
5423
6277
|
vision: true,
|
|
5424
6278
|
tools: true,
|
|
5425
|
-
reasoning:
|
|
5426
|
-
webSearch:
|
|
6279
|
+
reasoning: false,
|
|
6280
|
+
webSearch: false,
|
|
5427
6281
|
jsonOutput: true,
|
|
5428
|
-
structuredOutputs:
|
|
6282
|
+
structuredOutputs: false,
|
|
5429
6283
|
},
|
|
5430
6284
|
},
|
|
5431
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5432
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5433
|
-
limits: {
|
|
5434
|
-
|
|
5435
|
-
|
|
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
|
+
},
|
|
5436
6301
|
capabilities: {
|
|
5437
6302
|
vision: true,
|
|
5438
|
-
tools:
|
|
6303
|
+
tools: false,
|
|
5439
6304
|
reasoning: true,
|
|
5440
|
-
webSearch:
|
|
5441
|
-
jsonOutput:
|
|
5442
|
-
structuredOutputs:
|
|
6305
|
+
webSearch: false,
|
|
6306
|
+
jsonOutput: false,
|
|
6307
|
+
structuredOutputs: false,
|
|
5443
6308
|
},
|
|
5444
6309
|
},
|
|
5445
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5446
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5447
|
-
limits: { maxInputTokens:
|
|
5448
|
-
config: { temperature:
|
|
5449
|
-
pricing: { getPriceForTextInput: (tokens) =>
|
|
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' },
|
|
5450
6315
|
capabilities: {
|
|
5451
6316
|
vision: true,
|
|
5452
6317
|
tools: true,
|
|
5453
6318
|
reasoning: true,
|
|
5454
|
-
webSearch:
|
|
6319
|
+
webSearch: false,
|
|
5455
6320
|
jsonOutput: true,
|
|
5456
|
-
structuredOutputs:
|
|
6321
|
+
structuredOutputs: false,
|
|
5457
6322
|
},
|
|
5458
6323
|
},
|
|
5459
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5460
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5461
|
-
limits: {
|
|
5462
|
-
|
|
5463
|
-
|
|
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
|
+
},
|
|
5464
6340
|
capabilities: {
|
|
5465
6341
|
vision: true,
|
|
5466
6342
|
tools: true,
|
|
5467
6343
|
reasoning: true,
|
|
5468
|
-
webSearch:
|
|
6344
|
+
webSearch: false,
|
|
5469
6345
|
jsonOutput: true,
|
|
5470
|
-
structuredOutputs:
|
|
6346
|
+
structuredOutputs: false,
|
|
5471
6347
|
},
|
|
5472
6348
|
},
|
|
5473
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5474
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5475
|
-
limits: {
|
|
5476
|
-
|
|
5477
|
-
|
|
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
|
+
},
|
|
5478
6365
|
capabilities: {
|
|
5479
|
-
vision:
|
|
6366
|
+
vision: false,
|
|
5480
6367
|
tools: true,
|
|
5481
6368
|
reasoning: true,
|
|
5482
|
-
webSearch:
|
|
6369
|
+
webSearch: false,
|
|
5483
6370
|
jsonOutput: true,
|
|
5484
|
-
structuredOutputs:
|
|
6371
|
+
structuredOutputs: false,
|
|
5485
6372
|
},
|
|
5486
6373
|
},
|
|
5487
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5488
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5489
|
-
limits: {
|
|
5490
|
-
|
|
5491
|
-
|
|
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
|
+
},
|
|
5492
6390
|
capabilities: {
|
|
5493
6391
|
vision: true,
|
|
5494
6392
|
tools: true,
|
|
5495
6393
|
reasoning: true,
|
|
5496
|
-
webSearch:
|
|
6394
|
+
webSearch: false,
|
|
5497
6395
|
jsonOutput: true,
|
|
5498
|
-
structuredOutputs:
|
|
6396
|
+
structuredOutputs: false,
|
|
5499
6397
|
},
|
|
5500
6398
|
},
|
|
5501
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5502
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5503
|
-
limits: {
|
|
5504
|
-
|
|
5505
|
-
|
|
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
|
+
},
|
|
5506
6415
|
capabilities: {
|
|
5507
|
-
vision:
|
|
6416
|
+
vision: false,
|
|
5508
6417
|
tools: true,
|
|
5509
6418
|
reasoning: true,
|
|
5510
|
-
webSearch:
|
|
6419
|
+
webSearch: false,
|
|
5511
6420
|
jsonOutput: true,
|
|
5512
|
-
structuredOutputs:
|
|
6421
|
+
structuredOutputs: false,
|
|
5513
6422
|
},
|
|
5514
6423
|
},
|
|
5515
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5516
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5517
|
-
limits: {
|
|
5518
|
-
|
|
5519
|
-
|
|
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
|
+
},
|
|
5520
6440
|
capabilities: {
|
|
5521
|
-
vision:
|
|
6441
|
+
vision: false,
|
|
5522
6442
|
tools: true,
|
|
5523
6443
|
reasoning: true,
|
|
5524
6444
|
webSearch: true,
|
|
5525
6445
|
jsonOutput: true,
|
|
5526
|
-
structuredOutputs:
|
|
6446
|
+
structuredOutputs: false,
|
|
5527
6447
|
},
|
|
5528
6448
|
},
|
|
5529
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5530
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5531
|
-
limits: { maxInputTokens:
|
|
5532
|
-
config: { temperature:
|
|
5533
|
-
pricing: { getPriceForTextInput: (tokens) =>
|
|
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' },
|
|
5534
6454
|
capabilities: {
|
|
5535
6455
|
vision: true,
|
|
5536
|
-
tools:
|
|
5537
|
-
reasoning:
|
|
5538
|
-
webSearch:
|
|
6456
|
+
tools: false,
|
|
6457
|
+
reasoning: false,
|
|
6458
|
+
webSearch: false,
|
|
5539
6459
|
jsonOutput: true,
|
|
5540
6460
|
structuredOutputs: true,
|
|
5541
6461
|
},
|
|
5542
6462
|
},
|
|
5543
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5544
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5545
|
-
limits: { maxInputTokens:
|
|
5546
|
-
config: { temperature:
|
|
5547
|
-
pricing: { getPriceForTextInput: (tokens) =>
|
|
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' },
|
|
5548
6468
|
capabilities: {
|
|
5549
6469
|
vision: true,
|
|
5550
|
-
tools:
|
|
5551
|
-
reasoning:
|
|
5552
|
-
webSearch:
|
|
6470
|
+
tools: false,
|
|
6471
|
+
reasoning: false,
|
|
6472
|
+
webSearch: false,
|
|
5553
6473
|
jsonOutput: true,
|
|
5554
6474
|
structuredOutputs: true,
|
|
5555
6475
|
},
|
|
5556
6476
|
},
|
|
5557
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5558
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5559
|
-
limits: { maxInputTokens:
|
|
5560
|
-
config: { temperature:
|
|
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 },
|
|
5561
6481
|
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5562
6482
|
capabilities: {
|
|
5563
6483
|
vision: true,
|
|
5564
6484
|
tools: true,
|
|
5565
6485
|
reasoning: true,
|
|
5566
|
-
webSearch:
|
|
5567
|
-
jsonOutput:
|
|
5568
|
-
structuredOutputs:
|
|
6486
|
+
webSearch: false,
|
|
6487
|
+
jsonOutput: false,
|
|
6488
|
+
structuredOutputs: false,
|
|
5569
6489
|
},
|
|
5570
|
-
},
|
|
5571
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5572
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5573
|
-
limits: { maxInputTokens:
|
|
5574
|
-
config: { temperature:
|
|
5575
|
-
pricing: { getPriceForTextInput: (tokens) =>
|
|
6490
|
+
},
|
|
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 },
|
|
6495
|
+
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5576
6496
|
capabilities: {
|
|
5577
6497
|
vision: true,
|
|
5578
6498
|
tools: true,
|
|
5579
|
-
reasoning:
|
|
5580
|
-
webSearch:
|
|
6499
|
+
reasoning: false,
|
|
6500
|
+
webSearch: false,
|
|
5581
6501
|
jsonOutput: true,
|
|
5582
6502
|
structuredOutputs: true,
|
|
5583
6503
|
},
|
|
5584
6504
|
},
|
|
5585
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5586
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5587
|
-
limits: {
|
|
5588
|
-
|
|
5589
|
-
|
|
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
|
+
},
|
|
5590
6521
|
capabilities: {
|
|
5591
6522
|
vision: true,
|
|
5592
6523
|
tools: true,
|
|
@@ -5596,11 +6527,22 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
5596
6527
|
structuredOutputs: true,
|
|
5597
6528
|
},
|
|
5598
6529
|
},
|
|
5599
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5600
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5601
|
-
limits: {
|
|
5602
|
-
|
|
5603
|
-
|
|
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
|
+
},
|
|
5604
6546
|
capabilities: {
|
|
5605
6547
|
vision: true,
|
|
5606
6548
|
tools: true,
|
|
@@ -5610,135 +6552,162 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
5610
6552
|
structuredOutputs: true,
|
|
5611
6553
|
},
|
|
5612
6554
|
},
|
|
5613
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5614
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5615
|
-
limits: { maxInputTokens:
|
|
5616
|
-
config: { temperature:
|
|
5617
|
-
pricing: { getPriceForTextInput: (tokens) =>
|
|
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' },
|
|
5618
6560
|
capabilities: {
|
|
5619
|
-
vision:
|
|
6561
|
+
vision: false,
|
|
5620
6562
|
tools: true,
|
|
5621
|
-
reasoning:
|
|
5622
|
-
webSearch:
|
|
6563
|
+
reasoning: false,
|
|
6564
|
+
webSearch: false,
|
|
5623
6565
|
jsonOutput: true,
|
|
5624
6566
|
structuredOutputs: true,
|
|
5625
6567
|
},
|
|
5626
6568
|
},
|
|
5627
|
-
|
|
5628
|
-
|
|
5629
|
-
|
|
5630
|
-
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
6569
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_IMAGE]: {
|
|
6570
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN_IMAGE,
|
|
6571
|
+
limits: { maxInputTokens: 2_000, maxOutputTokens: 8_192 },
|
|
5631
6572
|
config: { temperature: 0.2 },
|
|
5632
|
-
pricing: { getPriceForTextInput: (tokens) =>
|
|
6573
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5633
6574
|
capabilities: {
|
|
5634
|
-
vision:
|
|
5635
|
-
tools:
|
|
5636
|
-
reasoning:
|
|
5637
|
-
webSearch:
|
|
5638
|
-
jsonOutput:
|
|
5639
|
-
structuredOutputs:
|
|
6575
|
+
vision: false,
|
|
6576
|
+
tools: false,
|
|
6577
|
+
reasoning: false,
|
|
6578
|
+
webSearch: false,
|
|
6579
|
+
jsonOutput: false,
|
|
6580
|
+
structuredOutputs: false,
|
|
5640
6581
|
},
|
|
5641
6582
|
},
|
|
5642
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5643
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5644
|
-
limits: { maxInputTokens:
|
|
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 },
|
|
5645
6586
|
config: { temperature: 0.2 },
|
|
5646
|
-
pricing: { getPriceForTextInput: (tokens) =>
|
|
6587
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5647
6588
|
capabilities: {
|
|
5648
6589
|
vision: true,
|
|
5649
|
-
tools:
|
|
5650
|
-
reasoning:
|
|
5651
|
-
webSearch:
|
|
5652
|
-
jsonOutput:
|
|
5653
|
-
structuredOutputs:
|
|
6590
|
+
tools: false,
|
|
6591
|
+
reasoning: false,
|
|
6592
|
+
webSearch: false,
|
|
6593
|
+
jsonOutput: false,
|
|
6594
|
+
structuredOutputs: false,
|
|
5654
6595
|
},
|
|
5655
6596
|
},
|
|
5656
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5657
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5658
|
-
limits: { maxInputTokens:
|
|
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 },
|
|
5659
6600
|
config: { temperature: 0.2 },
|
|
5660
|
-
pricing: { getPriceForTextInput: (tokens) => 0
|
|
6601
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5661
6602
|
capabilities: {
|
|
5662
6603
|
vision: true,
|
|
5663
|
-
tools:
|
|
5664
|
-
reasoning:
|
|
5665
|
-
webSearch:
|
|
5666
|
-
jsonOutput:
|
|
5667
|
-
structuredOutputs:
|
|
6604
|
+
tools: false,
|
|
6605
|
+
reasoning: false,
|
|
6606
|
+
webSearch: false,
|
|
6607
|
+
jsonOutput: false,
|
|
6608
|
+
structuredOutputs: false,
|
|
5668
6609
|
},
|
|
5669
6610
|
},
|
|
5670
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5671
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5672
|
-
limits: { maxInputTokens:
|
|
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 },
|
|
5673
6614
|
config: { temperature: 0.2 },
|
|
5674
|
-
pricing: { getPriceForTextInput: (tokens) => 0
|
|
6615
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5675
6616
|
capabilities: {
|
|
5676
6617
|
vision: true,
|
|
5677
|
-
tools:
|
|
5678
|
-
reasoning:
|
|
5679
|
-
webSearch:
|
|
5680
|
-
jsonOutput:
|
|
5681
|
-
structuredOutputs:
|
|
6618
|
+
tools: false,
|
|
6619
|
+
reasoning: false,
|
|
6620
|
+
webSearch: false,
|
|
6621
|
+
jsonOutput: false,
|
|
6622
|
+
structuredOutputs: false,
|
|
5682
6623
|
},
|
|
5683
6624
|
},
|
|
5684
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5685
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5686
|
-
limits: { maxInputTokens:
|
|
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 },
|
|
5687
6628
|
config: { temperature: 0.2 },
|
|
5688
|
-
pricing: { getPriceForTextInput: (tokens) => 0
|
|
6629
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5689
6630
|
capabilities: {
|
|
5690
6631
|
vision: true,
|
|
5691
|
-
tools:
|
|
6632
|
+
tools: false,
|
|
5692
6633
|
reasoning: false,
|
|
5693
6634
|
webSearch: false,
|
|
5694
|
-
jsonOutput:
|
|
5695
|
-
structuredOutputs:
|
|
6635
|
+
jsonOutput: false,
|
|
6636
|
+
structuredOutputs: false,
|
|
5696
6637
|
},
|
|
5697
6638
|
},
|
|
5698
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5699
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5700
|
-
limits: { maxInputTokens:
|
|
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 },
|
|
5701
6642
|
config: { temperature: 0.2 },
|
|
5702
|
-
pricing: { getPriceForTextInput: (tokens) => 0
|
|
6643
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5703
6644
|
capabilities: {
|
|
5704
|
-
vision:
|
|
5705
|
-
tools:
|
|
6645
|
+
vision: false,
|
|
6646
|
+
tools: false,
|
|
5706
6647
|
reasoning: false,
|
|
5707
6648
|
webSearch: false,
|
|
5708
|
-
jsonOutput:
|
|
5709
|
-
structuredOutputs:
|
|
6649
|
+
jsonOutput: false,
|
|
6650
|
+
structuredOutputs: false,
|
|
5710
6651
|
},
|
|
5711
6652
|
},
|
|
5712
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5713
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5714
|
-
limits: { maxInputTokens:
|
|
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 },
|
|
5715
6656
|
config: { temperature: 0.2 },
|
|
5716
|
-
pricing: { getPriceForTextInput: (tokens) =>
|
|
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
|
+
},
|
|
6666
|
+
},
|
|
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 },
|
|
6670
|
+
config: { temperature: 0.2 },
|
|
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
|
+
},
|
|
6680
|
+
},
|
|
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 },
|
|
6684
|
+
config: { temperature: 0.2 },
|
|
6685
|
+
pricing: { getPriceForTextInput: (tokens) => 0.6 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3.6 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5717
6686
|
capabilities: {
|
|
5718
6687
|
vision: true,
|
|
5719
6688
|
tools: true,
|
|
5720
6689
|
reasoning: true,
|
|
5721
|
-
webSearch:
|
|
6690
|
+
webSearch: false,
|
|
5722
6691
|
jsonOutput: true,
|
|
5723
6692
|
structuredOutputs: true,
|
|
5724
6693
|
},
|
|
5725
6694
|
},
|
|
5726
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5727
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5728
|
-
limits: { maxInputTokens:
|
|
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 },
|
|
5729
6698
|
config: { temperature: 0.2 },
|
|
5730
|
-
pricing: { getPriceForTextInput: (tokens) =>
|
|
6699
|
+
pricing: { getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.15 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5731
6700
|
capabilities: {
|
|
5732
6701
|
vision: true,
|
|
5733
6702
|
tools: true,
|
|
5734
6703
|
reasoning: true,
|
|
5735
|
-
webSearch:
|
|
6704
|
+
webSearch: false,
|
|
5736
6705
|
jsonOutput: true,
|
|
5737
6706
|
structuredOutputs: true,
|
|
5738
6707
|
},
|
|
5739
6708
|
},
|
|
5740
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5741
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
6709
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_6_PLUS]: {
|
|
6710
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.QWEN3_6_PLUS,
|
|
5742
6711
|
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
5743
6712
|
config: { temperature: 0.2 },
|
|
5744
6713
|
pricing: { getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
@@ -5746,30 +6715,41 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
5746
6715
|
vision: true,
|
|
5747
6716
|
tools: true,
|
|
5748
6717
|
reasoning: true,
|
|
5749
|
-
webSearch:
|
|
6718
|
+
webSearch: false,
|
|
5750
6719
|
jsonOutput: true,
|
|
5751
|
-
structuredOutputs:
|
|
6720
|
+
structuredOutputs: false,
|
|
5752
6721
|
},
|
|
5753
6722
|
},
|
|
5754
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5755
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5756
|
-
limits: {
|
|
5757
|
-
|
|
5758
|
-
|
|
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
|
+
},
|
|
5759
6739
|
capabilities: {
|
|
5760
|
-
vision:
|
|
6740
|
+
vision: false,
|
|
5761
6741
|
tools: true,
|
|
5762
6742
|
reasoning: true,
|
|
5763
|
-
webSearch:
|
|
6743
|
+
webSearch: false,
|
|
5764
6744
|
jsonOutput: true,
|
|
5765
|
-
structuredOutputs:
|
|
6745
|
+
structuredOutputs: false,
|
|
5766
6746
|
},
|
|
5767
6747
|
},
|
|
5768
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5769
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5770
|
-
limits: { maxInputTokens: 32_768, maxOutputTokens:
|
|
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 },
|
|
5771
6751
|
config: { temperature: 0.2 },
|
|
5772
|
-
pricing: { getPriceForTextInput: (tokens) => 0
|
|
6752
|
+
pricing: { getPriceForTextInput: (tokens) => 0 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
5773
6753
|
capabilities: {
|
|
5774
6754
|
vision: true,
|
|
5775
6755
|
tools: false,
|
|
@@ -5779,20 +6759,73 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
5779
6759
|
structuredOutputs: true,
|
|
5780
6760
|
},
|
|
5781
6761
|
},
|
|
5782
|
-
[LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5783
|
-
name: LLMAPI_typedefs_1.LLMAPIModelNames.
|
|
5784
|
-
limits: {
|
|
5785
|
-
|
|
5786
|
-
|
|
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
|
+
},
|
|
5787
6778
|
capabilities: {
|
|
5788
6779
|
vision: true,
|
|
5789
|
-
tools:
|
|
6780
|
+
tools: true,
|
|
5790
6781
|
reasoning: false,
|
|
5791
6782
|
webSearch: false,
|
|
5792
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 },
|
|
6790
|
+
config: { temperature: 0.2 },
|
|
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
|
+
},
|
|
6800
|
+
},
|
|
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 },
|
|
6804
|
+
config: { temperature: 0.2 },
|
|
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,
|
|
5793
6812
|
structuredOutputs: true,
|
|
5794
6813
|
},
|
|
5795
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
|
+
},
|
|
6828
|
+
},
|
|
5796
6829
|
};
|
|
5797
6830
|
const LLMAPI_COMPLETION_MODELS = exports.LLMAPI_AVAILABLE_MODELS;
|
|
5798
6831
|
exports.LLMAPI_MODELS = {
|