@earendil-works/pi-ai 0.75.4 → 0.76.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. package/dist/cli.d.ts.map +1 -1
  2. package/dist/cli.js +14 -0
  3. package/dist/cli.js.map +1 -1
  4. package/dist/index.d.ts +1 -1
  5. package/dist/index.d.ts.map +1 -1
  6. package/dist/index.js.map +1 -1
  7. package/dist/models.generated.d.ts +364 -687
  8. package/dist/models.generated.d.ts.map +1 -1
  9. package/dist/models.generated.js +407 -749
  10. package/dist/models.generated.js.map +1 -1
  11. package/dist/providers/amazon-bedrock.d.ts.map +1 -1
  12. package/dist/providers/amazon-bedrock.js +2 -1
  13. package/dist/providers/amazon-bedrock.js.map +1 -1
  14. package/dist/providers/anthropic.d.ts +22 -5
  15. package/dist/providers/anthropic.d.ts.map +1 -1
  16. package/dist/providers/anthropic.js +8 -22
  17. package/dist/providers/anthropic.js.map +1 -1
  18. package/dist/providers/azure-openai-responses.d.ts.map +1 -1
  19. package/dist/providers/azure-openai-responses.js +1 -1
  20. package/dist/providers/azure-openai-responses.js.map +1 -1
  21. package/dist/providers/images/openrouter.d.ts.map +1 -1
  22. package/dist/providers/images/openrouter.js +1 -1
  23. package/dist/providers/images/openrouter.js.map +1 -1
  24. package/dist/providers/openai-codex-responses.d.ts.map +1 -1
  25. package/dist/providers/openai-codex-responses.js +148 -76
  26. package/dist/providers/openai-codex-responses.js.map +1 -1
  27. package/dist/providers/openai-completions.d.ts.map +1 -1
  28. package/dist/providers/openai-completions.js +1 -1
  29. package/dist/providers/openai-completions.js.map +1 -1
  30. package/dist/providers/openai-responses.d.ts.map +1 -1
  31. package/dist/providers/openai-responses.js +1 -1
  32. package/dist/providers/openai-responses.js.map +1 -1
  33. package/dist/providers/simple-options.d.ts.map +1 -1
  34. package/dist/providers/simple-options.js +1 -0
  35. package/dist/providers/simple-options.js.map +1 -1
  36. package/dist/types.d.ts +16 -0
  37. package/dist/types.d.ts.map +1 -1
  38. package/dist/types.js.map +1 -1
  39. package/dist/utils/abort-signals.d.ts +6 -0
  40. package/dist/utils/abort-signals.d.ts.map +1 -0
  41. package/dist/utils/abort-signals.js +34 -0
  42. package/dist/utils/abort-signals.js.map +1 -0
  43. package/dist/utils/oauth/device-code.d.ts +19 -0
  44. package/dist/utils/oauth/device-code.d.ts.map +1 -0
  45. package/dist/utils/oauth/device-code.js +55 -0
  46. package/dist/utils/oauth/device-code.js.map +1 -0
  47. package/dist/utils/oauth/github-copilot.d.ts +3 -3
  48. package/dist/utils/oauth/github-copilot.d.ts.map +1 -1
  49. package/dist/utils/oauth/github-copilot.js +45 -69
  50. package/dist/utils/oauth/github-copilot.js.map +1 -1
  51. package/dist/utils/oauth/index.d.ts +1 -0
  52. package/dist/utils/oauth/index.d.ts.map +1 -1
  53. package/dist/utils/oauth/index.js +1 -0
  54. package/dist/utils/oauth/index.js.map +1 -1
  55. package/dist/utils/oauth/types.d.ts +8 -1
  56. package/dist/utils/oauth/types.d.ts.map +1 -1
  57. package/dist/utils/oauth/types.js.map +1 -1
  58. package/dist/utils/overflow.d.ts +2 -1
  59. package/dist/utils/overflow.d.ts.map +1 -1
  60. package/dist/utils/overflow.js +5 -2
  61. package/dist/utils/overflow.js.map +1 -1
  62. package/package.json +2 -1
@@ -1738,6 +1738,9 @@ export declare const MODELS: {
1738
1738
  api: "anthropic-messages";
1739
1739
  provider: string;
1740
1740
  baseUrl: string;
1741
+ compat: {
1742
+ forceAdaptiveThinking: true;
1743
+ };
1741
1744
  reasoning: true;
1742
1745
  thinkingLevelMap: {
1743
1746
  xhigh: string;
@@ -1758,6 +1761,9 @@ export declare const MODELS: {
1758
1761
  api: "anthropic-messages";
1759
1762
  provider: string;
1760
1763
  baseUrl: string;
1764
+ compat: {
1765
+ forceAdaptiveThinking: true;
1766
+ };
1761
1767
  reasoning: true;
1762
1768
  thinkingLevelMap: {
1763
1769
  xhigh: string;
@@ -1846,6 +1852,9 @@ export declare const MODELS: {
1846
1852
  api: "anthropic-messages";
1847
1853
  provider: string;
1848
1854
  baseUrl: string;
1855
+ compat: {
1856
+ forceAdaptiveThinking: true;
1857
+ };
1849
1858
  reasoning: true;
1850
1859
  input: ("image" | "text")[];
1851
1860
  cost: {
@@ -2694,23 +2703,6 @@ export declare const MODELS: {
2694
2703
  contextWindow: number;
2695
2704
  maxTokens: number;
2696
2705
  };
2697
- readonly "qwen-3-235b-a22b-instruct-2507": {
2698
- id: string;
2699
- name: string;
2700
- api: "openai-completions";
2701
- provider: string;
2702
- baseUrl: string;
2703
- reasoning: false;
2704
- input: "text"[];
2705
- cost: {
2706
- input: number;
2707
- output: number;
2708
- cacheRead: number;
2709
- cacheWrite: number;
2710
- };
2711
- contextWindow: number;
2712
- maxTokens: number;
2713
- };
2714
2706
  readonly "zai-glm-4.7": {
2715
2707
  id: string;
2716
2708
  name: string;
@@ -2906,6 +2898,9 @@ export declare const MODELS: {
2906
2898
  api: "anthropic-messages";
2907
2899
  provider: string;
2908
2900
  baseUrl: string;
2901
+ compat: {
2902
+ forceAdaptiveThinking: true;
2903
+ };
2909
2904
  reasoning: true;
2910
2905
  thinkingLevelMap: {
2911
2906
  xhigh: string;
@@ -2926,6 +2921,9 @@ export declare const MODELS: {
2926
2921
  api: "anthropic-messages";
2927
2922
  provider: string;
2928
2923
  baseUrl: string;
2924
+ compat: {
2925
+ forceAdaptiveThinking: true;
2926
+ };
2929
2927
  reasoning: true;
2930
2928
  thinkingLevelMap: {
2931
2929
  xhigh: string;
@@ -2980,6 +2978,9 @@ export declare const MODELS: {
2980
2978
  api: "anthropic-messages";
2981
2979
  provider: string;
2982
2980
  baseUrl: string;
2981
+ compat: {
2982
+ forceAdaptiveThinking: true;
2983
+ };
2983
2984
  reasoning: true;
2984
2985
  input: ("image" | "text")[];
2985
2986
  cost: {
@@ -3391,7 +3392,7 @@ export declare const MODELS: {
3391
3392
  contextWindow: number;
3392
3393
  maxTokens: number;
3393
3394
  };
3394
- readonly "@cf/meta/llama-4-scout-17b-16e-instruct": {
3395
+ readonly "@cf/ibm-granite/granite-4.0-h-micro": {
3395
3396
  id: string;
3396
3397
  name: string;
3397
3398
  api: "openai-completions";
@@ -3401,7 +3402,7 @@ export declare const MODELS: {
3401
3402
  sendSessionAffinityHeaders: true;
3402
3403
  };
3403
3404
  reasoning: false;
3404
- input: ("image" | "text")[];
3405
+ input: "text"[];
3405
3406
  cost: {
3406
3407
  input: number;
3407
3408
  output: number;
@@ -3411,7 +3412,7 @@ export declare const MODELS: {
3411
3412
  contextWindow: number;
3412
3413
  maxTokens: number;
3413
3414
  };
3414
- readonly "@cf/moonshotai/kimi-k2.5": {
3415
+ readonly "@cf/meta/llama-3.3-70b-instruct-fp8-fast": {
3415
3416
  id: string;
3416
3417
  name: string;
3417
3418
  api: "openai-completions";
@@ -3420,8 +3421,8 @@ export declare const MODELS: {
3420
3421
  compat: {
3421
3422
  sendSessionAffinityHeaders: true;
3422
3423
  };
3423
- reasoning: true;
3424
- input: ("image" | "text")[];
3424
+ reasoning: false;
3425
+ input: "text"[];
3425
3426
  cost: {
3426
3427
  input: number;
3427
3428
  output: number;
@@ -3431,7 +3432,7 @@ export declare const MODELS: {
3431
3432
  contextWindow: number;
3432
3433
  maxTokens: number;
3433
3434
  };
3434
- readonly "@cf/moonshotai/kimi-k2.6": {
3435
+ readonly "@cf/meta/llama-4-scout-17b-16e-instruct": {
3435
3436
  id: string;
3436
3437
  name: string;
3437
3438
  api: "openai-completions";
@@ -3440,7 +3441,7 @@ export declare const MODELS: {
3440
3441
  compat: {
3441
3442
  sendSessionAffinityHeaders: true;
3442
3443
  };
3443
- reasoning: true;
3444
+ reasoning: false;
3444
3445
  input: ("image" | "text")[];
3445
3446
  cost: {
3446
3447
  input: number;
@@ -3451,7 +3452,7 @@ export declare const MODELS: {
3451
3452
  contextWindow: number;
3452
3453
  maxTokens: number;
3453
3454
  };
3454
- readonly "@cf/nvidia/nemotron-3-120b-a12b": {
3455
+ readonly "@cf/mistralai/mistral-small-3.1-24b-instruct": {
3455
3456
  id: string;
3456
3457
  name: string;
3457
3458
  api: "openai-completions";
@@ -3460,7 +3461,7 @@ export declare const MODELS: {
3460
3461
  compat: {
3461
3462
  sendSessionAffinityHeaders: true;
3462
3463
  };
3463
- reasoning: true;
3464
+ reasoning: false;
3464
3465
  input: "text"[];
3465
3466
  cost: {
3466
3467
  input: number;
@@ -3471,7 +3472,7 @@ export declare const MODELS: {
3471
3472
  contextWindow: number;
3472
3473
  maxTokens: number;
3473
3474
  };
3474
- readonly "@cf/openai/gpt-oss-120b": {
3475
+ readonly "@cf/moonshotai/kimi-k2.5": {
3475
3476
  id: string;
3476
3477
  name: string;
3477
3478
  api: "openai-completions";
@@ -3481,7 +3482,7 @@ export declare const MODELS: {
3481
3482
  sendSessionAffinityHeaders: true;
3482
3483
  };
3483
3484
  reasoning: true;
3484
- input: "text"[];
3485
+ input: ("image" | "text")[];
3485
3486
  cost: {
3486
3487
  input: number;
3487
3488
  output: number;
@@ -3491,7 +3492,7 @@ export declare const MODELS: {
3491
3492
  contextWindow: number;
3492
3493
  maxTokens: number;
3493
3494
  };
3494
- readonly "@cf/openai/gpt-oss-20b": {
3495
+ readonly "@cf/moonshotai/kimi-k2.6": {
3495
3496
  id: string;
3496
3497
  name: string;
3497
3498
  api: "openai-completions";
@@ -3501,7 +3502,7 @@ export declare const MODELS: {
3501
3502
  sendSessionAffinityHeaders: true;
3502
3503
  };
3503
3504
  reasoning: true;
3504
- input: "text"[];
3505
+ input: ("image" | "text")[];
3505
3506
  cost: {
3506
3507
  input: number;
3507
3508
  output: number;
@@ -3511,7 +3512,7 @@ export declare const MODELS: {
3511
3512
  contextWindow: number;
3512
3513
  maxTokens: number;
3513
3514
  };
3514
- readonly "@cf/zai-org/glm-4.7-flash": {
3515
+ readonly "@cf/nvidia/nemotron-3-120b-a12b": {
3515
3516
  id: string;
3516
3517
  name: string;
3517
3518
  api: "openai-completions";
@@ -3531,26 +3532,16 @@ export declare const MODELS: {
3531
3532
  contextWindow: number;
3532
3533
  maxTokens: number;
3533
3534
  };
3534
- };
3535
- readonly deepseek: {
3536
- readonly "deepseek-v4-flash": {
3535
+ readonly "@cf/openai/gpt-oss-120b": {
3537
3536
  id: string;
3538
3537
  name: string;
3539
3538
  api: "openai-completions";
3540
3539
  provider: string;
3541
3540
  baseUrl: string;
3542
3541
  compat: {
3543
- requiresReasoningContentOnAssistantMessages: true;
3544
- thinkingFormat: "deepseek";
3542
+ sendSessionAffinityHeaders: true;
3545
3543
  };
3546
3544
  reasoning: true;
3547
- thinkingLevelMap: {
3548
- minimal: null;
3549
- low: null;
3550
- medium: null;
3551
- high: string;
3552
- xhigh: string;
3553
- };
3554
3545
  input: "text"[];
3555
3546
  cost: {
3556
3547
  input: number;
@@ -3561,47 +3552,14 @@ export declare const MODELS: {
3561
3552
  contextWindow: number;
3562
3553
  maxTokens: number;
3563
3554
  };
3564
- readonly "deepseek-v4-pro": {
3555
+ readonly "@cf/openai/gpt-oss-20b": {
3565
3556
  id: string;
3566
3557
  name: string;
3567
3558
  api: "openai-completions";
3568
3559
  provider: string;
3569
3560
  baseUrl: string;
3570
- compat: {
3571
- requiresReasoningContentOnAssistantMessages: true;
3572
- thinkingFormat: "deepseek";
3573
- };
3574
- reasoning: true;
3575
- thinkingLevelMap: {
3576
- minimal: null;
3577
- low: null;
3578
- medium: null;
3579
- high: string;
3580
- xhigh: string;
3581
- };
3582
- input: "text"[];
3583
- cost: {
3584
- input: number;
3585
- output: number;
3586
- cacheRead: number;
3587
- cacheWrite: number;
3588
- };
3589
- contextWindow: number;
3590
- maxTokens: number;
3591
- };
3592
- };
3593
- readonly fireworks: {
3594
- readonly "accounts/fireworks/models/deepseek-v3p1": {
3595
- id: string;
3596
- name: string;
3597
- api: "anthropic-messages";
3598
- provider: string;
3599
- baseUrl: string;
3600
3561
  compat: {
3601
3562
  sendSessionAffinityHeaders: true;
3602
- supportsEagerToolInputStreaming: false;
3603
- supportsCacheControlOnTools: false;
3604
- supportsLongCacheRetention: false;
3605
3563
  };
3606
3564
  reasoning: true;
3607
3565
  input: "text"[];
@@ -3614,17 +3572,14 @@ export declare const MODELS: {
3614
3572
  contextWindow: number;
3615
3573
  maxTokens: number;
3616
3574
  };
3617
- readonly "accounts/fireworks/models/deepseek-v3p2": {
3575
+ readonly "@cf/qwen/qwen3-30b-a3b-fp8": {
3618
3576
  id: string;
3619
3577
  name: string;
3620
- api: "anthropic-messages";
3578
+ api: "openai-completions";
3621
3579
  provider: string;
3622
3580
  baseUrl: string;
3623
3581
  compat: {
3624
3582
  sendSessionAffinityHeaders: true;
3625
- supportsEagerToolInputStreaming: false;
3626
- supportsCacheControlOnTools: false;
3627
- supportsLongCacheRetention: false;
3628
3583
  };
3629
3584
  reasoning: true;
3630
3585
  input: "text"[];
@@ -3637,17 +3592,14 @@ export declare const MODELS: {
3637
3592
  contextWindow: number;
3638
3593
  maxTokens: number;
3639
3594
  };
3640
- readonly "accounts/fireworks/models/deepseek-v4-flash": {
3595
+ readonly "@cf/zai-org/glm-4.7-flash": {
3641
3596
  id: string;
3642
3597
  name: string;
3643
- api: "anthropic-messages";
3598
+ api: "openai-completions";
3644
3599
  provider: string;
3645
3600
  baseUrl: string;
3646
3601
  compat: {
3647
3602
  sendSessionAffinityHeaders: true;
3648
- supportsEagerToolInputStreaming: false;
3649
- supportsCacheControlOnTools: false;
3650
- supportsLongCacheRetention: false;
3651
3603
  };
3652
3604
  reasoning: true;
3653
3605
  input: "text"[];
@@ -3660,42 +3612,26 @@ export declare const MODELS: {
3660
3612
  contextWindow: number;
3661
3613
  maxTokens: number;
3662
3614
  };
3663
- readonly "accounts/fireworks/models/deepseek-v4-pro": {
3615
+ };
3616
+ readonly deepseek: {
3617
+ readonly "deepseek-v4-flash": {
3664
3618
  id: string;
3665
3619
  name: string;
3666
- api: "anthropic-messages";
3620
+ api: "openai-completions";
3667
3621
  provider: string;
3668
3622
  baseUrl: string;
3669
3623
  compat: {
3670
- sendSessionAffinityHeaders: true;
3671
- supportsEagerToolInputStreaming: false;
3672
- supportsCacheControlOnTools: false;
3673
- supportsLongCacheRetention: false;
3624
+ requiresReasoningContentOnAssistantMessages: true;
3625
+ thinkingFormat: "deepseek";
3674
3626
  };
3675
3627
  reasoning: true;
3676
- input: "text"[];
3677
- cost: {
3678
- input: number;
3679
- output: number;
3680
- cacheRead: number;
3681
- cacheWrite: number;
3682
- };
3683
- contextWindow: number;
3684
- maxTokens: number;
3685
- };
3686
- readonly "accounts/fireworks/models/glm-4p5": {
3687
- id: string;
3688
- name: string;
3689
- api: "anthropic-messages";
3690
- provider: string;
3691
- baseUrl: string;
3692
- compat: {
3693
- sendSessionAffinityHeaders: true;
3694
- supportsEagerToolInputStreaming: false;
3695
- supportsCacheControlOnTools: false;
3696
- supportsLongCacheRetention: false;
3628
+ thinkingLevelMap: {
3629
+ minimal: null;
3630
+ low: null;
3631
+ medium: null;
3632
+ high: string;
3633
+ xhigh: string;
3697
3634
  };
3698
- reasoning: true;
3699
3635
  input: "text"[];
3700
3636
  cost: {
3701
3637
  input: number;
@@ -3706,19 +3642,24 @@ export declare const MODELS: {
3706
3642
  contextWindow: number;
3707
3643
  maxTokens: number;
3708
3644
  };
3709
- readonly "accounts/fireworks/models/glm-4p5-air": {
3645
+ readonly "deepseek-v4-pro": {
3710
3646
  id: string;
3711
3647
  name: string;
3712
- api: "anthropic-messages";
3648
+ api: "openai-completions";
3713
3649
  provider: string;
3714
3650
  baseUrl: string;
3715
3651
  compat: {
3716
- sendSessionAffinityHeaders: true;
3717
- supportsEagerToolInputStreaming: false;
3718
- supportsCacheControlOnTools: false;
3719
- supportsLongCacheRetention: false;
3652
+ requiresReasoningContentOnAssistantMessages: true;
3653
+ thinkingFormat: "deepseek";
3720
3654
  };
3721
3655
  reasoning: true;
3656
+ thinkingLevelMap: {
3657
+ minimal: null;
3658
+ low: null;
3659
+ medium: null;
3660
+ high: string;
3661
+ xhigh: string;
3662
+ };
3722
3663
  input: "text"[];
3723
3664
  cost: {
3724
3665
  input: number;
@@ -3729,7 +3670,9 @@ export declare const MODELS: {
3729
3670
  contextWindow: number;
3730
3671
  maxTokens: number;
3731
3672
  };
3732
- readonly "accounts/fireworks/models/glm-4p7": {
3673
+ };
3674
+ readonly fireworks: {
3675
+ readonly "accounts/fireworks/models/deepseek-v4-flash": {
3733
3676
  id: string;
3734
3677
  name: string;
3735
3678
  api: "anthropic-messages";
@@ -3752,7 +3695,7 @@ export declare const MODELS: {
3752
3695
  contextWindow: number;
3753
3696
  maxTokens: number;
3754
3697
  };
3755
- readonly "accounts/fireworks/models/glm-5": {
3698
+ readonly "accounts/fireworks/models/deepseek-v4-pro": {
3756
3699
  id: string;
3757
3700
  name: string;
3758
3701
  api: "anthropic-messages";
@@ -3844,52 +3787,6 @@ export declare const MODELS: {
3844
3787
  contextWindow: number;
3845
3788
  maxTokens: number;
3846
3789
  };
3847
- readonly "accounts/fireworks/models/kimi-k2-instruct": {
3848
- id: string;
3849
- name: string;
3850
- api: "anthropic-messages";
3851
- provider: string;
3852
- baseUrl: string;
3853
- compat: {
3854
- sendSessionAffinityHeaders: true;
3855
- supportsEagerToolInputStreaming: false;
3856
- supportsCacheControlOnTools: false;
3857
- supportsLongCacheRetention: false;
3858
- };
3859
- reasoning: false;
3860
- input: "text"[];
3861
- cost: {
3862
- input: number;
3863
- output: number;
3864
- cacheRead: number;
3865
- cacheWrite: number;
3866
- };
3867
- contextWindow: number;
3868
- maxTokens: number;
3869
- };
3870
- readonly "accounts/fireworks/models/kimi-k2-thinking": {
3871
- id: string;
3872
- name: string;
3873
- api: "anthropic-messages";
3874
- provider: string;
3875
- baseUrl: string;
3876
- compat: {
3877
- sendSessionAffinityHeaders: true;
3878
- supportsEagerToolInputStreaming: false;
3879
- supportsCacheControlOnTools: false;
3880
- supportsLongCacheRetention: false;
3881
- };
3882
- reasoning: true;
3883
- input: "text"[];
3884
- cost: {
3885
- input: number;
3886
- output: number;
3887
- cacheRead: number;
3888
- cacheWrite: number;
3889
- };
3890
- contextWindow: number;
3891
- maxTokens: number;
3892
- };
3893
3790
  readonly "accounts/fireworks/models/kimi-k2p5": {
3894
3791
  id: string;
3895
3792
  name: string;
@@ -3936,7 +3833,7 @@ export declare const MODELS: {
3936
3833
  contextWindow: number;
3937
3834
  maxTokens: number;
3938
3835
  };
3939
- readonly "accounts/fireworks/models/minimax-m2p1": {
3836
+ readonly "accounts/fireworks/models/minimax-m2p5": {
3940
3837
  id: string;
3941
3838
  name: string;
3942
3839
  api: "anthropic-messages";
@@ -3959,7 +3856,7 @@ export declare const MODELS: {
3959
3856
  contextWindow: number;
3960
3857
  maxTokens: number;
3961
3858
  };
3962
- readonly "accounts/fireworks/models/minimax-m2p5": {
3859
+ readonly "accounts/fireworks/models/minimax-m2p7": {
3963
3860
  id: string;
3964
3861
  name: string;
3965
3862
  api: "anthropic-messages";
@@ -3982,7 +3879,7 @@ export declare const MODELS: {
3982
3879
  contextWindow: number;
3983
3880
  maxTokens: number;
3984
3881
  };
3985
- readonly "accounts/fireworks/models/minimax-m2p7": {
3882
+ readonly "accounts/fireworks/models/qwen3p6-plus": {
3986
3883
  id: string;
3987
3884
  name: string;
3988
3885
  api: "anthropic-messages";
@@ -3995,7 +3892,7 @@ export declare const MODELS: {
3995
3892
  supportsLongCacheRetention: false;
3996
3893
  };
3997
3894
  reasoning: true;
3998
- input: "text"[];
3895
+ input: ("image" | "text")[];
3999
3896
  cost: {
4000
3897
  input: number;
4001
3898
  output: number;
@@ -4005,7 +3902,7 @@ export declare const MODELS: {
4005
3902
  contextWindow: number;
4006
3903
  maxTokens: number;
4007
3904
  };
4008
- readonly "accounts/fireworks/models/qwen3p6-plus": {
3905
+ readonly "accounts/fireworks/routers/glm-5p1-fast": {
4009
3906
  id: string;
4010
3907
  name: string;
4011
3908
  api: "anthropic-messages";
@@ -4018,7 +3915,7 @@ export declare const MODELS: {
4018
3915
  supportsLongCacheRetention: false;
4019
3916
  };
4020
3917
  reasoning: true;
4021
- input: ("image" | "text")[];
3918
+ input: "text"[];
4022
3919
  cost: {
4023
3920
  input: number;
4024
3921
  output: number;
@@ -4028,7 +3925,7 @@ export declare const MODELS: {
4028
3925
  contextWindow: number;
4029
3926
  maxTokens: number;
4030
3927
  };
4031
- readonly "accounts/fireworks/routers/kimi-k2p5-turbo": {
3928
+ readonly "accounts/fireworks/routers/kimi-k2p6-turbo": {
4032
3929
  id: string;
4033
3930
  name: string;
4034
3931
  api: "anthropic-messages";
@@ -4114,6 +4011,9 @@ export declare const MODELS: {
4114
4011
  "Editor-Plugin-Version": string;
4115
4012
  "Copilot-Integration-Id": string;
4116
4013
  };
4014
+ compat: {
4015
+ forceAdaptiveThinking: true;
4016
+ };
4117
4017
  reasoning: true;
4118
4018
  thinkingLevelMap: {
4119
4019
  xhigh: string;
@@ -4140,6 +4040,9 @@ export declare const MODELS: {
4140
4040
  "Editor-Plugin-Version": string;
4141
4041
  "Copilot-Integration-Id": string;
4142
4042
  };
4043
+ compat: {
4044
+ forceAdaptiveThinking: true;
4045
+ };
4143
4046
  reasoning: true;
4144
4047
  thinkingLevelMap: {
4145
4048
  xhigh: string;
@@ -4192,6 +4095,9 @@ export declare const MODELS: {
4192
4095
  "Editor-Plugin-Version": string;
4193
4096
  "Copilot-Integration-Id": string;
4194
4097
  };
4098
+ compat: {
4099
+ forceAdaptiveThinking: true;
4100
+ };
4195
4101
  reasoning: true;
4196
4102
  input: ("image" | "text")[];
4197
4103
  cost: {
@@ -4287,7 +4193,7 @@ export declare const MODELS: {
4287
4193
  contextWindow: number;
4288
4194
  maxTokens: number;
4289
4195
  };
4290
- readonly "gpt-4.1": {
4196
+ readonly "gemini-3.5-flash": {
4291
4197
  id: string;
4292
4198
  name: string;
4293
4199
  api: "openai-completions";
@@ -4304,7 +4210,7 @@ export declare const MODELS: {
4304
4210
  supportsDeveloperRole: false;
4305
4211
  supportsReasoningEffort: false;
4306
4212
  };
4307
- reasoning: false;
4213
+ reasoning: true;
4308
4214
  input: ("image" | "text")[];
4309
4215
  cost: {
4310
4216
  input: number;
@@ -4315,7 +4221,7 @@ export declare const MODELS: {
4315
4221
  contextWindow: number;
4316
4222
  maxTokens: number;
4317
4223
  };
4318
- readonly "gpt-4o": {
4224
+ readonly "gpt-4.1": {
4319
4225
  id: string;
4320
4226
  name: string;
4321
4227
  api: "openai-completions";
@@ -4343,121 +4249,10 @@ export declare const MODELS: {
4343
4249
  contextWindow: number;
4344
4250
  maxTokens: number;
4345
4251
  };
4346
- readonly "gpt-5-mini": {
4347
- id: string;
4348
- name: string;
4349
- api: "openai-responses";
4350
- provider: string;
4351
- baseUrl: string;
4352
- headers: {
4353
- "User-Agent": string;
4354
- "Editor-Version": string;
4355
- "Editor-Plugin-Version": string;
4356
- "Copilot-Integration-Id": string;
4357
- };
4358
- reasoning: true;
4359
- thinkingLevelMap: {
4360
- off: null;
4361
- minimal: string;
4362
- };
4363
- input: ("image" | "text")[];
4364
- cost: {
4365
- input: number;
4366
- output: number;
4367
- cacheRead: number;
4368
- cacheWrite: number;
4369
- };
4370
- contextWindow: number;
4371
- maxTokens: number;
4372
- };
4373
- readonly "gpt-5.2": {
4374
- id: string;
4375
- name: string;
4376
- api: "openai-responses";
4377
- provider: string;
4378
- baseUrl: string;
4379
- headers: {
4380
- "User-Agent": string;
4381
- "Editor-Version": string;
4382
- "Editor-Plugin-Version": string;
4383
- "Copilot-Integration-Id": string;
4384
- };
4385
- reasoning: true;
4386
- thinkingLevelMap: {
4387
- off: null;
4388
- minimal: string;
4389
- xhigh: string;
4390
- };
4391
- input: ("image" | "text")[];
4392
- cost: {
4393
- input: number;
4394
- output: number;
4395
- cacheRead: number;
4396
- cacheWrite: number;
4397
- };
4398
- contextWindow: number;
4399
- maxTokens: number;
4400
- };
4401
- readonly "gpt-5.2-codex": {
4402
- id: string;
4403
- name: string;
4404
- api: "openai-responses";
4405
- provider: string;
4406
- baseUrl: string;
4407
- headers: {
4408
- "User-Agent": string;
4409
- "Editor-Version": string;
4410
- "Editor-Plugin-Version": string;
4411
- "Copilot-Integration-Id": string;
4412
- };
4413
- reasoning: true;
4414
- thinkingLevelMap: {
4415
- off: null;
4416
- minimal: string;
4417
- xhigh: string;
4418
- };
4419
- input: ("image" | "text")[];
4420
- cost: {
4421
- input: number;
4422
- output: number;
4423
- cacheRead: number;
4424
- cacheWrite: number;
4425
- };
4426
- contextWindow: number;
4427
- maxTokens: number;
4428
- };
4429
- readonly "gpt-5.3-codex": {
4430
- id: string;
4431
- name: string;
4432
- api: "openai-responses";
4433
- provider: string;
4434
- baseUrl: string;
4435
- headers: {
4436
- "User-Agent": string;
4437
- "Editor-Version": string;
4438
- "Editor-Plugin-Version": string;
4439
- "Copilot-Integration-Id": string;
4440
- };
4441
- reasoning: true;
4442
- thinkingLevelMap: {
4443
- off: null;
4444
- minimal: string;
4445
- xhigh: string;
4446
- };
4447
- input: ("image" | "text")[];
4448
- cost: {
4449
- input: number;
4450
- output: number;
4451
- cacheRead: number;
4452
- cacheWrite: number;
4453
- };
4454
- contextWindow: number;
4455
- maxTokens: number;
4456
- };
4457
- readonly "gpt-5.4": {
4252
+ readonly "gpt-4o": {
4458
4253
  id: string;
4459
4254
  name: string;
4460
- api: "openai-responses";
4255
+ api: "openai-completions";
4461
4256
  provider: string;
4462
4257
  baseUrl: string;
4463
4258
  headers: {
@@ -4466,12 +4261,12 @@ export declare const MODELS: {
4466
4261
  "Editor-Plugin-Version": string;
4467
4262
  "Copilot-Integration-Id": string;
4468
4263
  };
4469
- reasoning: true;
4470
- thinkingLevelMap: {
4471
- off: null;
4472
- minimal: string;
4473
- xhigh: string;
4264
+ compat: {
4265
+ supportsStore: false;
4266
+ supportsDeveloperRole: false;
4267
+ supportsReasoningEffort: false;
4474
4268
  };
4269
+ reasoning: false;
4475
4270
  input: ("image" | "text")[];
4476
4271
  cost: {
4477
4272
  input: number;
@@ -4482,7 +4277,7 @@ export declare const MODELS: {
4482
4277
  contextWindow: number;
4483
4278
  maxTokens: number;
4484
4279
  };
4485
- readonly "gpt-5.4-mini": {
4280
+ readonly "gpt-5-mini": {
4486
4281
  id: string;
4487
4282
  name: string;
4488
4283
  api: "openai-responses";
@@ -4498,7 +4293,6 @@ export declare const MODELS: {
4498
4293
  thinkingLevelMap: {
4499
4294
  off: null;
4500
4295
  minimal: string;
4501
- xhigh: string;
4502
4296
  };
4503
4297
  input: ("image" | "text")[];
4504
4298
  cost: {
@@ -4510,7 +4304,7 @@ export declare const MODELS: {
4510
4304
  contextWindow: number;
4511
4305
  maxTokens: number;
4512
4306
  };
4513
- readonly "gpt-5.5": {
4307
+ readonly "gpt-5.2": {
4514
4308
  id: string;
4515
4309
  name: string;
4516
4310
  api: "openai-responses";
@@ -4519,113 +4313,15 @@ export declare const MODELS: {
4519
4313
  headers: {
4520
4314
  "User-Agent": string;
4521
4315
  "Editor-Version": string;
4522
- "Editor-Plugin-Version": string;
4523
- "Copilot-Integration-Id": string;
4524
- };
4525
- reasoning: true;
4526
- thinkingLevelMap: {
4527
- off: null;
4528
- minimal: string;
4529
- xhigh: string;
4530
- };
4531
- input: ("image" | "text")[];
4532
- cost: {
4533
- input: number;
4534
- output: number;
4535
- cacheRead: number;
4536
- cacheWrite: number;
4537
- };
4538
- contextWindow: number;
4539
- maxTokens: number;
4540
- };
4541
- readonly "grok-code-fast-1": {
4542
- id: string;
4543
- name: string;
4544
- api: "openai-completions";
4545
- provider: string;
4546
- baseUrl: string;
4547
- headers: {
4548
- "User-Agent": string;
4549
- "Editor-Version": string;
4550
- "Editor-Plugin-Version": string;
4551
- "Copilot-Integration-Id": string;
4552
- };
4553
- compat: {
4554
- supportsStore: false;
4555
- supportsDeveloperRole: false;
4556
- supportsReasoningEffort: false;
4557
- };
4558
- reasoning: true;
4559
- input: "text"[];
4560
- cost: {
4561
- input: number;
4562
- output: number;
4563
- cacheRead: number;
4564
- cacheWrite: number;
4565
- };
4566
- contextWindow: number;
4567
- maxTokens: number;
4568
- };
4569
- };
4570
- readonly google: {
4571
- readonly "gemini-1.5-flash": {
4572
- id: string;
4573
- name: string;
4574
- api: "google-generative-ai";
4575
- provider: string;
4576
- baseUrl: string;
4577
- reasoning: false;
4578
- input: ("image" | "text")[];
4579
- cost: {
4580
- input: number;
4581
- output: number;
4582
- cacheRead: number;
4583
- cacheWrite: number;
4584
- };
4585
- contextWindow: number;
4586
- maxTokens: number;
4587
- };
4588
- readonly "gemini-1.5-flash-8b": {
4589
- id: string;
4590
- name: string;
4591
- api: "google-generative-ai";
4592
- provider: string;
4593
- baseUrl: string;
4594
- reasoning: false;
4595
- input: ("image" | "text")[];
4596
- cost: {
4597
- input: number;
4598
- output: number;
4599
- cacheRead: number;
4600
- cacheWrite: number;
4601
- };
4602
- contextWindow: number;
4603
- maxTokens: number;
4604
- };
4605
- readonly "gemini-1.5-pro": {
4606
- id: string;
4607
- name: string;
4608
- api: "google-generative-ai";
4609
- provider: string;
4610
- baseUrl: string;
4611
- reasoning: false;
4612
- input: ("image" | "text")[];
4613
- cost: {
4614
- input: number;
4615
- output: number;
4616
- cacheRead: number;
4617
- cacheWrite: number;
4618
- };
4619
- contextWindow: number;
4620
- maxTokens: number;
4621
- };
4622
- readonly "gemini-2.0-flash": {
4623
- id: string;
4624
- name: string;
4625
- api: "google-generative-ai";
4626
- provider: string;
4627
- baseUrl: string;
4628
- reasoning: false;
4316
+ "Editor-Plugin-Version": string;
4317
+ "Copilot-Integration-Id": string;
4318
+ };
4319
+ reasoning: true;
4320
+ thinkingLevelMap: {
4321
+ off: null;
4322
+ minimal: string;
4323
+ xhigh: string;
4324
+ };
4629
4325
  input: ("image" | "text")[];
4630
4326
  cost: {
4631
4327
  input: number;
@@ -4636,13 +4332,24 @@ export declare const MODELS: {
4636
4332
  contextWindow: number;
4637
4333
  maxTokens: number;
4638
4334
  };
4639
- readonly "gemini-2.0-flash-lite": {
4335
+ readonly "gpt-5.2-codex": {
4640
4336
  id: string;
4641
4337
  name: string;
4642
- api: "google-generative-ai";
4338
+ api: "openai-responses";
4643
4339
  provider: string;
4644
4340
  baseUrl: string;
4645
- reasoning: false;
4341
+ headers: {
4342
+ "User-Agent": string;
4343
+ "Editor-Version": string;
4344
+ "Editor-Plugin-Version": string;
4345
+ "Copilot-Integration-Id": string;
4346
+ };
4347
+ reasoning: true;
4348
+ thinkingLevelMap: {
4349
+ off: null;
4350
+ minimal: string;
4351
+ xhigh: string;
4352
+ };
4646
4353
  input: ("image" | "text")[];
4647
4354
  cost: {
4648
4355
  input: number;
@@ -4653,13 +4360,24 @@ export declare const MODELS: {
4653
4360
  contextWindow: number;
4654
4361
  maxTokens: number;
4655
4362
  };
4656
- readonly "gemini-2.5-flash": {
4363
+ readonly "gpt-5.3-codex": {
4657
4364
  id: string;
4658
4365
  name: string;
4659
- api: "google-generative-ai";
4366
+ api: "openai-responses";
4660
4367
  provider: string;
4661
4368
  baseUrl: string;
4369
+ headers: {
4370
+ "User-Agent": string;
4371
+ "Editor-Version": string;
4372
+ "Editor-Plugin-Version": string;
4373
+ "Copilot-Integration-Id": string;
4374
+ };
4662
4375
  reasoning: true;
4376
+ thinkingLevelMap: {
4377
+ off: null;
4378
+ minimal: string;
4379
+ xhigh: string;
4380
+ };
4663
4381
  input: ("image" | "text")[];
4664
4382
  cost: {
4665
4383
  input: number;
@@ -4670,13 +4388,24 @@ export declare const MODELS: {
4670
4388
  contextWindow: number;
4671
4389
  maxTokens: number;
4672
4390
  };
4673
- readonly "gemini-2.5-flash-lite": {
4391
+ readonly "gpt-5.4": {
4674
4392
  id: string;
4675
4393
  name: string;
4676
- api: "google-generative-ai";
4394
+ api: "openai-responses";
4677
4395
  provider: string;
4678
4396
  baseUrl: string;
4397
+ headers: {
4398
+ "User-Agent": string;
4399
+ "Editor-Version": string;
4400
+ "Editor-Plugin-Version": string;
4401
+ "Copilot-Integration-Id": string;
4402
+ };
4679
4403
  reasoning: true;
4404
+ thinkingLevelMap: {
4405
+ off: null;
4406
+ minimal: string;
4407
+ xhigh: string;
4408
+ };
4680
4409
  input: ("image" | "text")[];
4681
4410
  cost: {
4682
4411
  input: number;
@@ -4687,13 +4416,24 @@ export declare const MODELS: {
4687
4416
  contextWindow: number;
4688
4417
  maxTokens: number;
4689
4418
  };
4690
- readonly "gemini-2.5-flash-lite-preview-06-17": {
4419
+ readonly "gpt-5.4-mini": {
4691
4420
  id: string;
4692
4421
  name: string;
4693
- api: "google-generative-ai";
4422
+ api: "openai-responses";
4694
4423
  provider: string;
4695
4424
  baseUrl: string;
4425
+ headers: {
4426
+ "User-Agent": string;
4427
+ "Editor-Version": string;
4428
+ "Editor-Plugin-Version": string;
4429
+ "Copilot-Integration-Id": string;
4430
+ };
4696
4431
  reasoning: true;
4432
+ thinkingLevelMap: {
4433
+ off: null;
4434
+ minimal: string;
4435
+ xhigh: string;
4436
+ };
4697
4437
  input: ("image" | "text")[];
4698
4438
  cost: {
4699
4439
  input: number;
@@ -4704,13 +4444,24 @@ export declare const MODELS: {
4704
4444
  contextWindow: number;
4705
4445
  maxTokens: number;
4706
4446
  };
4707
- readonly "gemini-2.5-flash-lite-preview-09-2025": {
4447
+ readonly "gpt-5.5": {
4708
4448
  id: string;
4709
4449
  name: string;
4710
- api: "google-generative-ai";
4450
+ api: "openai-responses";
4711
4451
  provider: string;
4712
4452
  baseUrl: string;
4453
+ headers: {
4454
+ "User-Agent": string;
4455
+ "Editor-Version": string;
4456
+ "Editor-Plugin-Version": string;
4457
+ "Copilot-Integration-Id": string;
4458
+ };
4713
4459
  reasoning: true;
4460
+ thinkingLevelMap: {
4461
+ off: null;
4462
+ minimal: string;
4463
+ xhigh: string;
4464
+ };
4714
4465
  input: ("image" | "text")[];
4715
4466
  cost: {
4716
4467
  input: number;
@@ -4721,14 +4472,25 @@ export declare const MODELS: {
4721
4472
  contextWindow: number;
4722
4473
  maxTokens: number;
4723
4474
  };
4724
- readonly "gemini-2.5-flash-preview-04-17": {
4475
+ readonly "grok-code-fast-1": {
4725
4476
  id: string;
4726
4477
  name: string;
4727
- api: "google-generative-ai";
4478
+ api: "openai-completions";
4728
4479
  provider: string;
4729
4480
  baseUrl: string;
4481
+ headers: {
4482
+ "User-Agent": string;
4483
+ "Editor-Version": string;
4484
+ "Editor-Plugin-Version": string;
4485
+ "Copilot-Integration-Id": string;
4486
+ };
4487
+ compat: {
4488
+ supportsStore: false;
4489
+ supportsDeveloperRole: false;
4490
+ supportsReasoningEffort: false;
4491
+ };
4730
4492
  reasoning: true;
4731
- input: ("image" | "text")[];
4493
+ input: "text"[];
4732
4494
  cost: {
4733
4495
  input: number;
4734
4496
  output: number;
@@ -4738,13 +4500,15 @@ export declare const MODELS: {
4738
4500
  contextWindow: number;
4739
4501
  maxTokens: number;
4740
4502
  };
4741
- readonly "gemini-2.5-flash-preview-05-20": {
4503
+ };
4504
+ readonly google: {
4505
+ readonly "gemini-2.0-flash": {
4742
4506
  id: string;
4743
4507
  name: string;
4744
4508
  api: "google-generative-ai";
4745
4509
  provider: string;
4746
4510
  baseUrl: string;
4747
- reasoning: true;
4511
+ reasoning: false;
4748
4512
  input: ("image" | "text")[];
4749
4513
  cost: {
4750
4514
  input: number;
@@ -4755,13 +4519,13 @@ export declare const MODELS: {
4755
4519
  contextWindow: number;
4756
4520
  maxTokens: number;
4757
4521
  };
4758
- readonly "gemini-2.5-flash-preview-09-2025": {
4522
+ readonly "gemini-2.0-flash-lite": {
4759
4523
  id: string;
4760
4524
  name: string;
4761
4525
  api: "google-generative-ai";
4762
4526
  provider: string;
4763
4527
  baseUrl: string;
4764
- reasoning: true;
4528
+ reasoning: false;
4765
4529
  input: ("image" | "text")[];
4766
4530
  cost: {
4767
4531
  input: number;
@@ -4772,7 +4536,7 @@ export declare const MODELS: {
4772
4536
  contextWindow: number;
4773
4537
  maxTokens: number;
4774
4538
  };
4775
- readonly "gemini-2.5-pro": {
4539
+ readonly "gemini-2.5-flash": {
4776
4540
  id: string;
4777
4541
  name: string;
4778
4542
  api: "google-generative-ai";
@@ -4789,7 +4553,7 @@ export declare const MODELS: {
4789
4553
  contextWindow: number;
4790
4554
  maxTokens: number;
4791
4555
  };
4792
- readonly "gemini-2.5-pro-preview-05-06": {
4556
+ readonly "gemini-2.5-flash-lite": {
4793
4557
  id: string;
4794
4558
  name: string;
4795
4559
  api: "google-generative-ai";
@@ -4806,7 +4570,7 @@ export declare const MODELS: {
4806
4570
  contextWindow: number;
4807
4571
  maxTokens: number;
4808
4572
  };
4809
- readonly "gemini-2.5-pro-preview-06-05": {
4573
+ readonly "gemini-2.5-pro": {
4810
4574
  id: string;
4811
4575
  name: string;
4812
4576
  api: "google-generative-ai";
@@ -5009,57 +4773,6 @@ export declare const MODELS: {
5009
4773
  contextWindow: number;
5010
4774
  maxTokens: number;
5011
4775
  };
5012
- readonly "gemini-live-2.5-flash": {
5013
- id: string;
5014
- name: string;
5015
- api: "google-generative-ai";
5016
- provider: string;
5017
- baseUrl: string;
5018
- reasoning: true;
5019
- input: ("image" | "text")[];
5020
- cost: {
5021
- input: number;
5022
- output: number;
5023
- cacheRead: number;
5024
- cacheWrite: number;
5025
- };
5026
- contextWindow: number;
5027
- maxTokens: number;
5028
- };
5029
- readonly "gemini-live-2.5-flash-preview-native-audio": {
5030
- id: string;
5031
- name: string;
5032
- api: "google-generative-ai";
5033
- provider: string;
5034
- baseUrl: string;
5035
- reasoning: true;
5036
- input: "text"[];
5037
- cost: {
5038
- input: number;
5039
- output: number;
5040
- cacheRead: number;
5041
- cacheWrite: number;
5042
- };
5043
- contextWindow: number;
5044
- maxTokens: number;
5045
- };
5046
- readonly "gemma-3-27b-it": {
5047
- id: string;
5048
- name: string;
5049
- api: "google-generative-ai";
5050
- provider: string;
5051
- baseUrl: string;
5052
- reasoning: false;
5053
- input: ("image" | "text")[];
5054
- cost: {
5055
- input: number;
5056
- output: number;
5057
- cacheRead: number;
5058
- cacheWrite: number;
5059
- };
5060
- contextWindow: number;
5061
- maxTokens: number;
5062
- };
5063
4776
  readonly "gemma-4-26b-a4b-it": {
5064
4777
  id: string;
5065
4778
  name: string;
@@ -8048,6 +7761,9 @@ export declare const MODELS: {
8048
7761
  api: "anthropic-messages";
8049
7762
  provider: string;
8050
7763
  baseUrl: string;
7764
+ compat: {
7765
+ forceAdaptiveThinking: true;
7766
+ };
8051
7767
  reasoning: true;
8052
7768
  thinkingLevelMap: {
8053
7769
  xhigh: string;
@@ -8068,6 +7784,9 @@ export declare const MODELS: {
8068
7784
  api: "anthropic-messages";
8069
7785
  provider: string;
8070
7786
  baseUrl: string;
7787
+ compat: {
7788
+ forceAdaptiveThinking: true;
7789
+ };
8071
7790
  reasoning: true;
8072
7791
  thinkingLevelMap: {
8073
7792
  xhigh: string;
@@ -8122,6 +7841,9 @@ export declare const MODELS: {
8122
7841
  api: "anthropic-messages";
8123
7842
  provider: string;
8124
7843
  baseUrl: string;
7844
+ compat: {
7845
+ forceAdaptiveThinking: true;
7846
+ };
8125
7847
  reasoning: true;
8126
7848
  input: ("image" | "text")[];
8127
7849
  cost: {
@@ -8588,7 +8310,7 @@ export declare const MODELS: {
8588
8310
  contextWindow: number;
8589
8311
  maxTokens: number;
8590
8312
  };
8591
- readonly "kimi-k2.5": {
8313
+ readonly "grok-build-0.1": {
8592
8314
  id: string;
8593
8315
  name: string;
8594
8316
  api: "openai-completions";
@@ -8605,7 +8327,7 @@ export declare const MODELS: {
8605
8327
  contextWindow: number;
8606
8328
  maxTokens: number;
8607
8329
  };
8608
- readonly "kimi-k2.6": {
8330
+ readonly "kimi-k2.5": {
8609
8331
  id: string;
8610
8332
  name: string;
8611
8333
  api: "openai-completions";
@@ -8622,14 +8344,14 @@ export declare const MODELS: {
8622
8344
  contextWindow: number;
8623
8345
  maxTokens: number;
8624
8346
  };
8625
- readonly "minimax-m2.5": {
8347
+ readonly "kimi-k2.6": {
8626
8348
  id: string;
8627
8349
  name: string;
8628
8350
  api: "openai-completions";
8629
8351
  provider: string;
8630
8352
  baseUrl: string;
8631
8353
  reasoning: true;
8632
- input: "text"[];
8354
+ input: ("image" | "text")[];
8633
8355
  cost: {
8634
8356
  input: number;
8635
8357
  output: number;
@@ -8639,14 +8361,14 @@ export declare const MODELS: {
8639
8361
  contextWindow: number;
8640
8362
  maxTokens: number;
8641
8363
  };
8642
- readonly "minimax-m2.5-free": {
8364
+ readonly "mimo-v2.5-free": {
8643
8365
  id: string;
8644
8366
  name: string;
8645
- api: "anthropic-messages";
8367
+ api: "openai-completions";
8646
8368
  provider: string;
8647
8369
  baseUrl: string;
8648
8370
  reasoning: true;
8649
- input: "text"[];
8371
+ input: ("image" | "text")[];
8650
8372
  cost: {
8651
8373
  input: number;
8652
8374
  output: number;
@@ -8656,7 +8378,7 @@ export declare const MODELS: {
8656
8378
  contextWindow: number;
8657
8379
  maxTokens: number;
8658
8380
  };
8659
- readonly "minimax-m2.7": {
8381
+ readonly "minimax-m2.5": {
8660
8382
  id: string;
8661
8383
  name: string;
8662
8384
  api: "openai-completions";
@@ -8673,7 +8395,7 @@ export declare const MODELS: {
8673
8395
  contextWindow: number;
8674
8396
  maxTokens: number;
8675
8397
  };
8676
- readonly "nemotron-3-super-free": {
8398
+ readonly "minimax-m2.7": {
8677
8399
  id: string;
8678
8400
  name: string;
8679
8401
  api: "openai-completions";
@@ -8690,14 +8412,14 @@ export declare const MODELS: {
8690
8412
  contextWindow: number;
8691
8413
  maxTokens: number;
8692
8414
  };
8693
- readonly "qwen3.5-plus": {
8415
+ readonly "nemotron-3-super-free": {
8694
8416
  id: string;
8695
8417
  name: string;
8696
- api: "anthropic-messages";
8418
+ api: "openai-completions";
8697
8419
  provider: string;
8698
8420
  baseUrl: string;
8699
8421
  reasoning: true;
8700
- input: ("image" | "text")[];
8422
+ input: "text"[];
8701
8423
  cost: {
8702
8424
  input: number;
8703
8425
  output: number;
@@ -8707,7 +8429,7 @@ export declare const MODELS: {
8707
8429
  contextWindow: number;
8708
8430
  maxTokens: number;
8709
8431
  };
8710
- readonly "qwen3.6-plus": {
8432
+ readonly "qwen3.5-plus": {
8711
8433
  id: string;
8712
8434
  name: string;
8713
8435
  api: "anthropic-messages";
@@ -8724,7 +8446,7 @@ export declare const MODELS: {
8724
8446
  contextWindow: number;
8725
8447
  maxTokens: number;
8726
8448
  };
8727
- readonly "qwen3.6-plus-free": {
8449
+ readonly "qwen3.6-plus": {
8728
8450
  id: string;
8729
8451
  name: string;
8730
8452
  api: "anthropic-messages";
@@ -8975,15 +8697,13 @@ export declare const MODELS: {
8975
8697
  contextWindow: number;
8976
8698
  maxTokens: number;
8977
8699
  };
8978
- };
8979
- readonly openrouter: {
8980
- readonly "ai21/jamba-large-1.7": {
8700
+ readonly "qwen3.7-max": {
8981
8701
  id: string;
8982
8702
  name: string;
8983
- api: "openai-completions";
8703
+ api: "anthropic-messages";
8984
8704
  provider: string;
8985
8705
  baseUrl: string;
8986
- reasoning: false;
8706
+ reasoning: true;
8987
8707
  input: "text"[];
8988
8708
  cost: {
8989
8709
  input: number;
@@ -8994,13 +8714,15 @@ export declare const MODELS: {
8994
8714
  contextWindow: number;
8995
8715
  maxTokens: number;
8996
8716
  };
8997
- readonly "alibaba/tongyi-deepresearch-30b-a3b": {
8717
+ };
8718
+ readonly openrouter: {
8719
+ readonly "ai21/jamba-large-1.7": {
8998
8720
  id: string;
8999
8721
  name: string;
9000
8722
  api: "openai-completions";
9001
8723
  provider: string;
9002
8724
  baseUrl: string;
9003
- reasoning: true;
8725
+ reasoning: false;
9004
8726
  input: "text"[];
9005
8727
  cost: {
9006
8728
  input: number;
@@ -9284,59 +9006,8 @@ export declare const MODELS: {
9284
9006
  api: "openai-completions";
9285
9007
  provider: string;
9286
9008
  baseUrl: string;
9287
- reasoning: true;
9288
- input: ("image" | "text")[];
9289
- cost: {
9290
- input: number;
9291
- output: number;
9292
- cacheRead: number;
9293
- cacheWrite: number;
9294
- };
9295
- contextWindow: number;
9296
- maxTokens: number;
9297
- };
9298
- readonly "anthropic/claude-sonnet-4.5": {
9299
- id: string;
9300
- name: string;
9301
- api: "openai-completions";
9302
- provider: string;
9303
- baseUrl: string;
9304
- reasoning: true;
9305
- input: ("image" | "text")[];
9306
- cost: {
9307
- input: number;
9308
- output: number;
9309
- cacheRead: number;
9310
- cacheWrite: number;
9311
- };
9312
- contextWindow: number;
9313
- maxTokens: number;
9314
- };
9315
- readonly "anthropic/claude-sonnet-4.6": {
9316
- id: string;
9317
- name: string;
9318
- api: "openai-completions";
9319
- provider: string;
9320
- baseUrl: string;
9321
- reasoning: true;
9322
- input: ("image" | "text")[];
9323
- cost: {
9324
- input: number;
9325
- output: number;
9326
- cacheRead: number;
9327
- cacheWrite: number;
9328
- };
9329
- contextWindow: number;
9330
- maxTokens: number;
9331
- };
9332
- readonly "arcee-ai/trinity-large-preview": {
9333
- id: string;
9334
- name: string;
9335
- api: "openai-completions";
9336
- provider: string;
9337
- baseUrl: string;
9338
- reasoning: false;
9339
- input: "text"[];
9009
+ reasoning: true;
9010
+ input: ("image" | "text")[];
9340
9011
  cost: {
9341
9012
  input: number;
9342
9013
  output: number;
@@ -9346,14 +9017,14 @@ export declare const MODELS: {
9346
9017
  contextWindow: number;
9347
9018
  maxTokens: number;
9348
9019
  };
9349
- readonly "arcee-ai/trinity-large-thinking": {
9020
+ readonly "anthropic/claude-sonnet-4.5": {
9350
9021
  id: string;
9351
9022
  name: string;
9352
9023
  api: "openai-completions";
9353
9024
  provider: string;
9354
9025
  baseUrl: string;
9355
9026
  reasoning: true;
9356
- input: "text"[];
9027
+ input: ("image" | "text")[];
9357
9028
  cost: {
9358
9029
  input: number;
9359
9030
  output: number;
@@ -9363,14 +9034,14 @@ export declare const MODELS: {
9363
9034
  contextWindow: number;
9364
9035
  maxTokens: number;
9365
9036
  };
9366
- readonly "arcee-ai/trinity-large-thinking:free": {
9037
+ readonly "anthropic/claude-sonnet-4.6": {
9367
9038
  id: string;
9368
9039
  name: string;
9369
9040
  api: "openai-completions";
9370
9041
  provider: string;
9371
9042
  baseUrl: string;
9372
9043
  reasoning: true;
9373
- input: "text"[];
9044
+ input: ("image" | "text")[];
9374
9045
  cost: {
9375
9046
  input: number;
9376
9047
  output: number;
@@ -9380,7 +9051,7 @@ export declare const MODELS: {
9380
9051
  contextWindow: number;
9381
9052
  maxTokens: number;
9382
9053
  };
9383
- readonly "arcee-ai/trinity-mini": {
9054
+ readonly "arcee-ai/trinity-large-thinking": {
9384
9055
  id: string;
9385
9056
  name: string;
9386
9057
  api: "openai-completions";
@@ -9397,13 +9068,13 @@ export declare const MODELS: {
9397
9068
  contextWindow: number;
9398
9069
  maxTokens: number;
9399
9070
  };
9400
- readonly "arcee-ai/virtuoso-large": {
9071
+ readonly "arcee-ai/trinity-mini": {
9401
9072
  id: string;
9402
9073
  name: string;
9403
9074
  api: "openai-completions";
9404
9075
  provider: string;
9405
9076
  baseUrl: string;
9406
- reasoning: false;
9077
+ reasoning: true;
9407
9078
  input: "text"[];
9408
9079
  cost: {
9409
9080
  input: number;
@@ -9414,14 +9085,14 @@ export declare const MODELS: {
9414
9085
  contextWindow: number;
9415
9086
  maxTokens: number;
9416
9087
  };
9417
- readonly auto: {
9088
+ readonly "arcee-ai/virtuoso-large": {
9418
9089
  id: string;
9419
9090
  name: string;
9420
9091
  api: "openai-completions";
9421
9092
  provider: string;
9422
9093
  baseUrl: string;
9423
- reasoning: true;
9424
- input: ("image" | "text")[];
9094
+ reasoning: false;
9095
+ input: "text"[];
9425
9096
  cost: {
9426
9097
  input: number;
9427
9098
  output: number;
@@ -9431,14 +9102,14 @@ export declare const MODELS: {
9431
9102
  contextWindow: number;
9432
9103
  maxTokens: number;
9433
9104
  };
9434
- readonly "baidu/cobuddy:free": {
9105
+ readonly auto: {
9435
9106
  id: string;
9436
9107
  name: string;
9437
9108
  api: "openai-completions";
9438
9109
  provider: string;
9439
9110
  baseUrl: string;
9440
9111
  reasoning: true;
9441
- input: "text"[];
9112
+ input: ("image" | "text")[];
9442
9113
  cost: {
9443
9114
  input: number;
9444
9115
  output: number;
@@ -10895,6 +10566,23 @@ export declare const MODELS: {
10895
10566
  contextWindow: number;
10896
10567
  maxTokens: number;
10897
10568
  };
10569
+ readonly "moonshotai/kimi-k2.6:free": {
10570
+ id: string;
10571
+ name: string;
10572
+ api: "openai-completions";
10573
+ provider: string;
10574
+ baseUrl: string;
10575
+ reasoning: true;
10576
+ input: ("image" | "text")[];
10577
+ cost: {
10578
+ input: number;
10579
+ output: number;
10580
+ cacheRead: number;
10581
+ cacheWrite: number;
10582
+ };
10583
+ contextWindow: number;
10584
+ maxTokens: number;
10585
+ };
10898
10586
  readonly "nex-agi/deepseek-v3.1-nex-n1": {
10899
10587
  id: string;
10900
10588
  name: string;
@@ -12937,6 +12625,23 @@ export declare const MODELS: {
12937
12625
  contextWindow: number;
12938
12626
  maxTokens: number;
12939
12627
  };
12628
+ readonly "qwen/qwen3.7-max": {
12629
+ id: string;
12630
+ name: string;
12631
+ api: "openai-completions";
12632
+ provider: string;
12633
+ baseUrl: string;
12634
+ reasoning: true;
12635
+ input: "text"[];
12636
+ cost: {
12637
+ input: number;
12638
+ output: number;
12639
+ cacheRead: number;
12640
+ cacheWrite: number;
12641
+ };
12642
+ contextWindow: number;
12643
+ maxTokens: number;
12644
+ };
12940
12645
  readonly "rekaai/reka-edge": {
12941
12646
  id: string;
12942
12647
  name: string;
@@ -13124,6 +12829,23 @@ export declare const MODELS: {
13124
12829
  contextWindow: number;
13125
12830
  maxTokens: number;
13126
12831
  };
12832
+ readonly "x-ai/grok-build-0.1": {
12833
+ id: string;
12834
+ name: string;
12835
+ api: "openai-completions";
12836
+ provider: string;
12837
+ baseUrl: string;
12838
+ reasoning: true;
12839
+ input: ("image" | "text")[];
12840
+ cost: {
12841
+ input: number;
12842
+ output: number;
12843
+ cacheRead: number;
12844
+ cacheWrite: number;
12845
+ };
12846
+ contextWindow: number;
12847
+ maxTokens: number;
12848
+ };
13127
12849
  readonly "xiaomi/mimo-v2-flash": {
13128
12850
  id: string;
13129
12851
  name: string;
@@ -13779,6 +13501,37 @@ export declare const MODELS: {
13779
13501
  contextWindow: number;
13780
13502
  maxTokens: number;
13781
13503
  };
13504
+ readonly "Qwen/Qwen3.7-Max": {
13505
+ id: string;
13506
+ name: string;
13507
+ api: "openai-completions";
13508
+ provider: string;
13509
+ baseUrl: string;
13510
+ compat: {
13511
+ supportsStore: false;
13512
+ supportsDeveloperRole: false;
13513
+ supportsReasoningEffort: false;
13514
+ maxTokensField: "max_tokens";
13515
+ supportsStrictMode: false;
13516
+ supportsLongCacheRetention: false;
13517
+ thinkingFormat: "together";
13518
+ };
13519
+ reasoning: true;
13520
+ thinkingLevelMap: {
13521
+ minimal: null;
13522
+ low: null;
13523
+ medium: null;
13524
+ };
13525
+ input: "text"[];
13526
+ cost: {
13527
+ input: number;
13528
+ output: number;
13529
+ cacheRead: number;
13530
+ cacheWrite: number;
13531
+ };
13532
+ contextWindow: number;
13533
+ maxTokens: number;
13534
+ };
13782
13535
  readonly "deepseek-ai/DeepSeek-V3": {
13783
13536
  id: string;
13784
13537
  name: string;
@@ -14386,6 +14139,23 @@ export declare const MODELS: {
14386
14139
  contextWindow: number;
14387
14140
  maxTokens: number;
14388
14141
  };
14142
+ readonly "alibaba/qwen3.7-max": {
14143
+ id: string;
14144
+ name: string;
14145
+ api: "anthropic-messages";
14146
+ provider: string;
14147
+ baseUrl: string;
14148
+ reasoning: true;
14149
+ input: ("image" | "text")[];
14150
+ cost: {
14151
+ input: number;
14152
+ output: number;
14153
+ cacheRead: number;
14154
+ cacheWrite: number;
14155
+ };
14156
+ contextWindow: number;
14157
+ maxTokens: number;
14158
+ };
14389
14159
  readonly "anthropic/claude-3-haiku": {
14390
14160
  id: string;
14391
14161
  name: string;
@@ -14494,6 +14264,9 @@ export declare const MODELS: {
14494
14264
  api: "anthropic-messages";
14495
14265
  provider: string;
14496
14266
  baseUrl: string;
14267
+ compat: {
14268
+ forceAdaptiveThinking: true;
14269
+ };
14497
14270
  reasoning: true;
14498
14271
  thinkingLevelMap: {
14499
14272
  xhigh: string;
@@ -14514,6 +14287,9 @@ export declare const MODELS: {
14514
14287
  api: "anthropic-messages";
14515
14288
  provider: string;
14516
14289
  baseUrl: string;
14290
+ compat: {
14291
+ forceAdaptiveThinking: true;
14292
+ };
14517
14293
  reasoning: true;
14518
14294
  thinkingLevelMap: {
14519
14295
  xhigh: string;
@@ -14568,6 +14344,9 @@ export declare const MODELS: {
14568
14344
  api: "anthropic-messages";
14569
14345
  provider: string;
14570
14346
  baseUrl: string;
14347
+ compat: {
14348
+ forceAdaptiveThinking: true;
14349
+ };
14571
14350
  reasoning: true;
14572
14351
  input: ("image" | "text")[];
14573
14352
  cost: {
@@ -16485,6 +16264,23 @@ export declare const MODELS: {
16485
16264
  contextWindow: number;
16486
16265
  maxTokens: number;
16487
16266
  };
16267
+ readonly "xai/grok-build-0.1": {
16268
+ id: string;
16269
+ name: string;
16270
+ api: "anthropic-messages";
16271
+ provider: string;
16272
+ baseUrl: string;
16273
+ reasoning: true;
16274
+ input: ("image" | "text")[];
16275
+ cost: {
16276
+ input: number;
16277
+ output: number;
16278
+ cacheRead: number;
16279
+ cacheWrite: number;
16280
+ };
16281
+ contextWindow: number;
16282
+ maxTokens: number;
16283
+ };
16488
16284
  readonly "xiaomi/mimo-v2-flash": {
16489
16285
  id: string;
16490
16286
  name: string;
@@ -16776,108 +16572,6 @@ export declare const MODELS: {
16776
16572
  };
16777
16573
  };
16778
16574
  readonly xai: {
16779
- readonly "grok-2": {
16780
- id: string;
16781
- name: string;
16782
- api: "openai-completions";
16783
- provider: string;
16784
- baseUrl: string;
16785
- reasoning: false;
16786
- input: "text"[];
16787
- cost: {
16788
- input: number;
16789
- output: number;
16790
- cacheRead: number;
16791
- cacheWrite: number;
16792
- };
16793
- contextWindow: number;
16794
- maxTokens: number;
16795
- };
16796
- readonly "grok-2-1212": {
16797
- id: string;
16798
- name: string;
16799
- api: "openai-completions";
16800
- provider: string;
16801
- baseUrl: string;
16802
- reasoning: false;
16803
- input: "text"[];
16804
- cost: {
16805
- input: number;
16806
- output: number;
16807
- cacheRead: number;
16808
- cacheWrite: number;
16809
- };
16810
- contextWindow: number;
16811
- maxTokens: number;
16812
- };
16813
- readonly "grok-2-latest": {
16814
- id: string;
16815
- name: string;
16816
- api: "openai-completions";
16817
- provider: string;
16818
- baseUrl: string;
16819
- reasoning: false;
16820
- input: "text"[];
16821
- cost: {
16822
- input: number;
16823
- output: number;
16824
- cacheRead: number;
16825
- cacheWrite: number;
16826
- };
16827
- contextWindow: number;
16828
- maxTokens: number;
16829
- };
16830
- readonly "grok-2-vision": {
16831
- id: string;
16832
- name: string;
16833
- api: "openai-completions";
16834
- provider: string;
16835
- baseUrl: string;
16836
- reasoning: false;
16837
- input: ("image" | "text")[];
16838
- cost: {
16839
- input: number;
16840
- output: number;
16841
- cacheRead: number;
16842
- cacheWrite: number;
16843
- };
16844
- contextWindow: number;
16845
- maxTokens: number;
16846
- };
16847
- readonly "grok-2-vision-1212": {
16848
- id: string;
16849
- name: string;
16850
- api: "openai-completions";
16851
- provider: string;
16852
- baseUrl: string;
16853
- reasoning: false;
16854
- input: ("image" | "text")[];
16855
- cost: {
16856
- input: number;
16857
- output: number;
16858
- cacheRead: number;
16859
- cacheWrite: number;
16860
- };
16861
- contextWindow: number;
16862
- maxTokens: number;
16863
- };
16864
- readonly "grok-2-vision-latest": {
16865
- id: string;
16866
- name: string;
16867
- api: "openai-completions";
16868
- provider: string;
16869
- baseUrl: string;
16870
- reasoning: false;
16871
- input: ("image" | "text")[];
16872
- cost: {
16873
- input: number;
16874
- output: number;
16875
- cacheRead: number;
16876
- cacheWrite: number;
16877
- };
16878
- contextWindow: number;
16879
- maxTokens: number;
16880
- };
16881
16575
  readonly "grok-3": {
16882
16576
  id: string;
16883
16577
  name: string;
@@ -16963,14 +16657,14 @@ export declare const MODELS: {
16963
16657
  contextWindow: number;
16964
16658
  maxTokens: number;
16965
16659
  };
16966
- readonly "grok-beta": {
16660
+ readonly "grok-build-0.1": {
16967
16661
  id: string;
16968
16662
  name: string;
16969
16663
  api: "openai-completions";
16970
16664
  provider: string;
16971
16665
  baseUrl: string;
16972
- reasoning: false;
16973
- input: "text"[];
16666
+ reasoning: true;
16667
+ input: ("image" | "text")[];
16974
16668
  cost: {
16975
16669
  input: number;
16976
16670
  output: number;
@@ -16997,23 +16691,6 @@ export declare const MODELS: {
16997
16691
  contextWindow: number;
16998
16692
  maxTokens: number;
16999
16693
  };
17000
- readonly "grok-vision-beta": {
17001
- id: string;
17002
- name: string;
17003
- api: "openai-completions";
17004
- provider: string;
17005
- baseUrl: string;
17006
- reasoning: false;
17007
- input: ("image" | "text")[];
17008
- cost: {
17009
- input: number;
17010
- output: number;
17011
- cacheRead: number;
17012
- cacheWrite: number;
17013
- };
17014
- contextWindow: number;
17015
- maxTokens: number;
17016
- };
17017
16694
  };
17018
16695
  readonly xiaomi: {
17019
16696
  readonly "mimo-v2-flash": {