pi-cursor-sdk 0.1.55 → 0.1.57

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 (88) hide show
  1. package/CHANGELOG.md +60 -2
  2. package/README.md +100 -28
  3. package/docs/cursor-live-smoke-checklist.md +7 -7
  4. package/docs/cursor-model-ux-spec.md +48 -41
  5. package/docs/cursor-native-tool-replay.md +4 -4
  6. package/docs/cursor-native-tool-visual-audit.md +1 -1
  7. package/docs/cursor-testing-lessons.md +20 -7
  8. package/docs/cursor-tool-surfaces.md +13 -2
  9. package/docs/platform-smoke-implementation.md +220 -0
  10. package/docs/platform-smoke.md +183 -247
  11. package/package.json +39 -7
  12. package/platform-smoke.config.mjs +5 -1
  13. package/scripts/cloud-runtime-smoke.d.mts +3 -0
  14. package/scripts/cloud-runtime-smoke.mjs +502 -0
  15. package/scripts/debug-provider-events.mjs +7 -2
  16. package/scripts/isolated-cursor-smoke.sh +4 -6
  17. package/scripts/lib/cursor-child-process.d.mts +1 -0
  18. package/scripts/lib/cursor-child-process.mjs +137 -7
  19. package/scripts/lib/local-resume-smoke-harness.mjs +543 -0
  20. package/scripts/local-resume-cleanup-smoke.mjs +108 -0
  21. package/scripts/local-resume-smoke.d.mts +1 -0
  22. package/scripts/local-resume-smoke.mjs +642 -0
  23. package/scripts/platform-smoke/artifact-anchored-extract.d.mts +10 -0
  24. package/scripts/platform-smoke/artifact-anchored-extract.mjs +111 -0
  25. package/scripts/platform-smoke/artifact-bundle-chunk.mjs +57 -0
  26. package/scripts/platform-smoke/artifact-bundle-contract.mjs +34 -0
  27. package/scripts/platform-smoke/artifact-fs-safety.mjs +311 -0
  28. package/scripts/platform-smoke/artifact-openat-extract.c +335 -0
  29. package/scripts/platform-smoke/artifact-secrets.mjs +155 -0
  30. package/scripts/platform-smoke/artifacts.mjs +293 -65
  31. package/scripts/platform-smoke/card-detect.mjs +16 -4
  32. package/scripts/platform-smoke/crabbox-runner.mjs +45 -3
  33. package/scripts/platform-smoke/doctor.mjs +20 -10
  34. package/scripts/platform-smoke/live-suite-runner.mjs +18 -57
  35. package/scripts/platform-smoke/local-resume-runner.mjs +252 -0
  36. package/scripts/platform-smoke/local-resume-suites.d.mts +15 -0
  37. package/scripts/platform-smoke/local-resume-suites.mjs +104 -0
  38. package/scripts/platform-smoke/scenarios.mjs +16 -2
  39. package/scripts/platform-smoke/target-runtime.mjs +206 -0
  40. package/scripts/platform-smoke/targets.mjs +33 -141
  41. package/scripts/platform-smoke/visual-evidence.mjs +6 -7
  42. package/scripts/platform-smoke/wrapped-line-match.mjs +9 -0
  43. package/scripts/platform-smoke.mjs +40 -27
  44. package/scripts/refresh-cursor-model-snapshots.mjs +18 -6
  45. package/scripts/steering-rpc-smoke.mjs +12 -2
  46. package/scripts/tmux-live-smoke.sh +3 -5
  47. package/shared/cursor-cloud-lifecycle-constants.d.mts +3 -0
  48. package/shared/cursor-cloud-lifecycle-constants.mjs +7 -0
  49. package/shared/cursor-sensitive-text.mjs +7 -1
  50. package/src/context.ts +5 -2
  51. package/src/cursor-agents-context-registration.ts +7 -0
  52. package/src/cursor-agents-context.ts +3 -1
  53. package/src/cursor-api-key.ts +15 -1
  54. package/src/cursor-bridge-contract.ts +3 -0
  55. package/src/cursor-cloud-lifecycle.ts +733 -0
  56. package/src/cursor-cloud-options.ts +206 -0
  57. package/src/cursor-cloud-reporting.ts +246 -0
  58. package/src/cursor-config.ts +659 -0
  59. package/src/cursor-display-only-trace.ts +14 -0
  60. package/src/cursor-display-text.ts +8 -2
  61. package/src/cursor-durable-fs.ts +49 -0
  62. package/src/cursor-fallback-models.generated.ts +2045 -485
  63. package/src/cursor-live-run-accounting.ts +7 -1
  64. package/src/cursor-live-run-coordinator.ts +1 -0
  65. package/src/cursor-pi-tool-bridge-run.ts +14 -4
  66. package/src/cursor-provider-errors.ts +31 -5
  67. package/src/cursor-provider-live-run-drain.ts +5 -0
  68. package/src/cursor-provider-run-finalizer.ts +37 -28
  69. package/src/cursor-provider-run-outcome.ts +7 -2
  70. package/src/cursor-provider-turn-finalize.ts +77 -7
  71. package/src/cursor-provider-turn-prepare.ts +228 -12
  72. package/src/cursor-provider-turn-runner.ts +42 -13
  73. package/src/cursor-provider-turn-send.ts +59 -16
  74. package/src/cursor-provider-turn-types.ts +44 -10
  75. package/src/cursor-runtime-state.ts +478 -0
  76. package/src/cursor-sdk-event-debug.ts +46 -6
  77. package/src/cursor-sdk-process-error-guard.ts +101 -30
  78. package/src/cursor-session-agent-cleanup.ts +328 -0
  79. package/src/cursor-session-agent-resume.ts +439 -0
  80. package/src/cursor-session-agent.ts +109 -13
  81. package/src/cursor-session-scope.ts +35 -2
  82. package/src/cursor-session-send-policy.ts +1 -1
  83. package/src/cursor-skill-tool.ts +30 -11
  84. package/src/cursor-state.ts +112 -69
  85. package/src/cursor-tool-manifest.ts +1 -1
  86. package/src/cursor-usage-accounting.ts +14 -4
  87. package/src/index.ts +11 -2
  88. package/src/model-discovery.ts +10 -56
@@ -1,6 +1,6 @@
1
1
  import type { ModelListItem } from "@cursor/sdk";
2
2
 
3
- // Generated/maintained fallback Cursor catalog snapshot.
3
+ // Generated with @cursor/sdk@1.0.23 from 34 Cursor models.
4
4
  // Refresh with: npm run refresh:cursor-snapshots -- --write
5
5
  // Do not add secrets; this file stores public model metadata only.
6
6
  export const FALLBACK_MODEL_ITEMS = [
@@ -3449,6 +3449,411 @@ export const FALLBACK_MODEL_ITEMS = [
3449
3449
  }
3450
3450
  ]
3451
3451
  },
3452
+ {
3453
+ id: "claude-sonnet-5",
3454
+ displayName: "Sonnet 5",
3455
+ aliases: [
3456
+ "sonnet-latest",
3457
+ "sonnet-5"
3458
+ ],
3459
+ parameters: [
3460
+ {
3461
+ id: "thinking",
3462
+ displayName: "Thinking",
3463
+ values: [
3464
+ {
3465
+ value: "false"
3466
+ },
3467
+ {
3468
+ value: "true"
3469
+ }
3470
+ ]
3471
+ },
3472
+ {
3473
+ id: "context",
3474
+ displayName: "Context",
3475
+ values: [
3476
+ {
3477
+ value: "300k",
3478
+ displayName: "300K"
3479
+ },
3480
+ {
3481
+ value: "1m",
3482
+ displayName: "1M"
3483
+ }
3484
+ ]
3485
+ },
3486
+ {
3487
+ id: "effort",
3488
+ displayName: "Effort",
3489
+ values: [
3490
+ {
3491
+ value: "low",
3492
+ displayName: "Low"
3493
+ },
3494
+ {
3495
+ value: "medium",
3496
+ displayName: "Medium"
3497
+ },
3498
+ {
3499
+ value: "high",
3500
+ displayName: "High"
3501
+ },
3502
+ {
3503
+ value: "xhigh",
3504
+ displayName: "Extra High"
3505
+ },
3506
+ {
3507
+ value: "max",
3508
+ displayName: "Max"
3509
+ }
3510
+ ]
3511
+ }
3512
+ ],
3513
+ variants: [
3514
+ {
3515
+ params: [
3516
+ {
3517
+ id: "thinking",
3518
+ value: "false"
3519
+ },
3520
+ {
3521
+ id: "context",
3522
+ value: "300k"
3523
+ },
3524
+ {
3525
+ id: "effort",
3526
+ value: "low"
3527
+ }
3528
+ ],
3529
+ displayName: "Sonnet 5"
3530
+ },
3531
+ {
3532
+ params: [
3533
+ {
3534
+ id: "thinking",
3535
+ value: "false"
3536
+ },
3537
+ {
3538
+ id: "context",
3539
+ value: "300k"
3540
+ },
3541
+ {
3542
+ id: "effort",
3543
+ value: "medium"
3544
+ }
3545
+ ],
3546
+ displayName: "Sonnet 5"
3547
+ },
3548
+ {
3549
+ params: [
3550
+ {
3551
+ id: "thinking",
3552
+ value: "false"
3553
+ },
3554
+ {
3555
+ id: "context",
3556
+ value: "300k"
3557
+ },
3558
+ {
3559
+ id: "effort",
3560
+ value: "high"
3561
+ }
3562
+ ],
3563
+ displayName: "Sonnet 5"
3564
+ },
3565
+ {
3566
+ params: [
3567
+ {
3568
+ id: "thinking",
3569
+ value: "false"
3570
+ },
3571
+ {
3572
+ id: "context",
3573
+ value: "300k"
3574
+ },
3575
+ {
3576
+ id: "effort",
3577
+ value: "xhigh"
3578
+ }
3579
+ ],
3580
+ displayName: "Sonnet 5"
3581
+ },
3582
+ {
3583
+ params: [
3584
+ {
3585
+ id: "thinking",
3586
+ value: "false"
3587
+ },
3588
+ {
3589
+ id: "context",
3590
+ value: "300k"
3591
+ },
3592
+ {
3593
+ id: "effort",
3594
+ value: "max"
3595
+ }
3596
+ ],
3597
+ displayName: "Sonnet 5"
3598
+ },
3599
+ {
3600
+ params: [
3601
+ {
3602
+ id: "thinking",
3603
+ value: "false"
3604
+ },
3605
+ {
3606
+ id: "context",
3607
+ value: "1m"
3608
+ },
3609
+ {
3610
+ id: "effort",
3611
+ value: "low"
3612
+ }
3613
+ ],
3614
+ displayName: "Sonnet 5"
3615
+ },
3616
+ {
3617
+ params: [
3618
+ {
3619
+ id: "thinking",
3620
+ value: "false"
3621
+ },
3622
+ {
3623
+ id: "context",
3624
+ value: "1m"
3625
+ },
3626
+ {
3627
+ id: "effort",
3628
+ value: "medium"
3629
+ }
3630
+ ],
3631
+ displayName: "Sonnet 5"
3632
+ },
3633
+ {
3634
+ params: [
3635
+ {
3636
+ id: "thinking",
3637
+ value: "false"
3638
+ },
3639
+ {
3640
+ id: "context",
3641
+ value: "1m"
3642
+ },
3643
+ {
3644
+ id: "effort",
3645
+ value: "high"
3646
+ }
3647
+ ],
3648
+ displayName: "Sonnet 5"
3649
+ },
3650
+ {
3651
+ params: [
3652
+ {
3653
+ id: "thinking",
3654
+ value: "false"
3655
+ },
3656
+ {
3657
+ id: "context",
3658
+ value: "1m"
3659
+ },
3660
+ {
3661
+ id: "effort",
3662
+ value: "xhigh"
3663
+ }
3664
+ ],
3665
+ displayName: "Sonnet 5"
3666
+ },
3667
+ {
3668
+ params: [
3669
+ {
3670
+ id: "thinking",
3671
+ value: "false"
3672
+ },
3673
+ {
3674
+ id: "context",
3675
+ value: "1m"
3676
+ },
3677
+ {
3678
+ id: "effort",
3679
+ value: "max"
3680
+ }
3681
+ ],
3682
+ displayName: "Sonnet 5"
3683
+ },
3684
+ {
3685
+ params: [
3686
+ {
3687
+ id: "thinking",
3688
+ value: "true"
3689
+ },
3690
+ {
3691
+ id: "context",
3692
+ value: "300k"
3693
+ },
3694
+ {
3695
+ id: "effort",
3696
+ value: "low"
3697
+ }
3698
+ ],
3699
+ displayName: "Sonnet 5"
3700
+ },
3701
+ {
3702
+ params: [
3703
+ {
3704
+ id: "thinking",
3705
+ value: "true"
3706
+ },
3707
+ {
3708
+ id: "context",
3709
+ value: "300k"
3710
+ },
3711
+ {
3712
+ id: "effort",
3713
+ value: "medium"
3714
+ }
3715
+ ],
3716
+ displayName: "Sonnet 5"
3717
+ },
3718
+ {
3719
+ params: [
3720
+ {
3721
+ id: "thinking",
3722
+ value: "true"
3723
+ },
3724
+ {
3725
+ id: "context",
3726
+ value: "300k"
3727
+ },
3728
+ {
3729
+ id: "effort",
3730
+ value: "high"
3731
+ }
3732
+ ],
3733
+ displayName: "Sonnet 5"
3734
+ },
3735
+ {
3736
+ params: [
3737
+ {
3738
+ id: "thinking",
3739
+ value: "true"
3740
+ },
3741
+ {
3742
+ id: "context",
3743
+ value: "300k"
3744
+ },
3745
+ {
3746
+ id: "effort",
3747
+ value: "xhigh"
3748
+ }
3749
+ ],
3750
+ displayName: "Sonnet 5"
3751
+ },
3752
+ {
3753
+ params: [
3754
+ {
3755
+ id: "thinking",
3756
+ value: "true"
3757
+ },
3758
+ {
3759
+ id: "context",
3760
+ value: "300k"
3761
+ },
3762
+ {
3763
+ id: "effort",
3764
+ value: "max"
3765
+ }
3766
+ ],
3767
+ displayName: "Sonnet 5"
3768
+ },
3769
+ {
3770
+ params: [
3771
+ {
3772
+ id: "thinking",
3773
+ value: "true"
3774
+ },
3775
+ {
3776
+ id: "context",
3777
+ value: "1m"
3778
+ },
3779
+ {
3780
+ id: "effort",
3781
+ value: "low"
3782
+ }
3783
+ ],
3784
+ displayName: "Sonnet 5"
3785
+ },
3786
+ {
3787
+ params: [
3788
+ {
3789
+ id: "thinking",
3790
+ value: "true"
3791
+ },
3792
+ {
3793
+ id: "context",
3794
+ value: "1m"
3795
+ },
3796
+ {
3797
+ id: "effort",
3798
+ value: "medium"
3799
+ }
3800
+ ],
3801
+ displayName: "Sonnet 5"
3802
+ },
3803
+ {
3804
+ params: [
3805
+ {
3806
+ id: "thinking",
3807
+ value: "true"
3808
+ },
3809
+ {
3810
+ id: "context",
3811
+ value: "1m"
3812
+ },
3813
+ {
3814
+ id: "effort",
3815
+ value: "high"
3816
+ }
3817
+ ],
3818
+ displayName: "Sonnet 5",
3819
+ isDefault: true
3820
+ },
3821
+ {
3822
+ params: [
3823
+ {
3824
+ id: "thinking",
3825
+ value: "true"
3826
+ },
3827
+ {
3828
+ id: "context",
3829
+ value: "1m"
3830
+ },
3831
+ {
3832
+ id: "effort",
3833
+ value: "xhigh"
3834
+ }
3835
+ ],
3836
+ displayName: "Sonnet 5"
3837
+ },
3838
+ {
3839
+ params: [
3840
+ {
3841
+ id: "thinking",
3842
+ value: "true"
3843
+ },
3844
+ {
3845
+ id: "context",
3846
+ value: "1m"
3847
+ },
3848
+ {
3849
+ id: "effort",
3850
+ value: "max"
3851
+ }
3852
+ ],
3853
+ displayName: "Sonnet 5"
3854
+ }
3855
+ ]
3856
+ },
3452
3857
  {
3453
3858
  id: "composer-2",
3454
3859
  displayName: "Composer 2",
@@ -3475,29 +3880,639 @@ export const FALLBACK_MODEL_ITEMS = [
3475
3880
  value: "true"
3476
3881
  }
3477
3882
  ],
3478
- displayName: "Composer 2",
3883
+ displayName: "Composer 2",
3884
+ isDefault: true
3885
+ },
3886
+ {
3887
+ params: [
3888
+ {
3889
+ id: "fast",
3890
+ value: "false"
3891
+ }
3892
+ ],
3893
+ displayName: "Composer 2"
3894
+ }
3895
+ ]
3896
+ },
3897
+ {
3898
+ id: "composer-2.5",
3899
+ displayName: "Composer 2.5",
3900
+ aliases: [
3901
+ "composer-latest",
3902
+ "composer",
3903
+ "composer-2-5"
3904
+ ],
3905
+ parameters: [
3906
+ {
3907
+ id: "fast",
3908
+ displayName: "Fast",
3909
+ values: [
3910
+ {
3911
+ value: "false"
3912
+ },
3913
+ {
3914
+ value: "true",
3915
+ displayName: "Fast"
3916
+ }
3917
+ ]
3918
+ }
3919
+ ],
3920
+ variants: [
3921
+ {
3922
+ params: [
3923
+ {
3924
+ id: "fast",
3925
+ value: "true"
3926
+ }
3927
+ ],
3928
+ displayName: "Composer 2.5",
3929
+ isDefault: true
3930
+ },
3931
+ {
3932
+ params: [
3933
+ {
3934
+ id: "fast",
3935
+ value: "false"
3936
+ }
3937
+ ],
3938
+ displayName: "Composer 2.5"
3939
+ }
3940
+ ]
3941
+ },
3942
+ {
3943
+ id: "default",
3944
+ displayName: "Auto",
3945
+ aliases: [
3946
+ "auto"
3947
+ ],
3948
+ variants: [
3949
+ {
3950
+ params: [],
3951
+ displayName: "Auto",
3952
+ isDefault: true
3953
+ }
3954
+ ]
3955
+ },
3956
+ {
3957
+ id: "gemini-2.5-flash",
3958
+ displayName: "Gemini 2.5 Flash",
3959
+ aliases: [
3960
+ "gemini-flash"
3961
+ ],
3962
+ variants: [
3963
+ {
3964
+ params: [],
3965
+ displayName: "Gemini 2.5 Flash",
3966
+ isDefault: true
3967
+ }
3968
+ ]
3969
+ },
3970
+ {
3971
+ id: "gemini-3-flash",
3972
+ displayName: "Gemini 3 Flash",
3973
+ variants: [
3974
+ {
3975
+ params: [],
3976
+ displayName: "Gemini 3 Flash",
3977
+ isDefault: true
3978
+ }
3979
+ ]
3980
+ },
3981
+ {
3982
+ id: "gemini-3.1-pro",
3983
+ displayName: "Gemini 3.1 Pro",
3984
+ aliases: [
3985
+ "gemini-latest",
3986
+ "gemini-pro-latest",
3987
+ "gemini",
3988
+ "gemini-pro"
3989
+ ],
3990
+ variants: [
3991
+ {
3992
+ params: [],
3993
+ displayName: "Gemini 3.1 Pro",
3994
+ isDefault: true
3995
+ }
3996
+ ]
3997
+ },
3998
+ {
3999
+ id: "gemini-3.5-flash",
4000
+ displayName: "Gemini 3.5 Flash",
4001
+ aliases: [
4002
+ "gemini-flash-latest",
4003
+ "gemini-flash"
4004
+ ],
4005
+ variants: [
4006
+ {
4007
+ params: [],
4008
+ displayName: "Gemini 3.5 Flash",
4009
+ isDefault: true
4010
+ }
4011
+ ]
4012
+ },
4013
+ {
4014
+ id: "glm-5.2",
4015
+ displayName: "GLM 5.2",
4016
+ parameters: [
4017
+ {
4018
+ id: "reasoning",
4019
+ displayName: "Reasoning",
4020
+ values: [
4021
+ {
4022
+ value: "high",
4023
+ displayName: "High"
4024
+ },
4025
+ {
4026
+ value: "max",
4027
+ displayName: "Max"
4028
+ }
4029
+ ]
4030
+ }
4031
+ ],
4032
+ variants: [
4033
+ {
4034
+ params: [
4035
+ {
4036
+ id: "reasoning",
4037
+ value: "high"
4038
+ }
4039
+ ],
4040
+ displayName: "GLM 5.2",
4041
+ isDefault: true
4042
+ },
4043
+ {
4044
+ params: [
4045
+ {
4046
+ id: "reasoning",
4047
+ value: "max"
4048
+ }
4049
+ ],
4050
+ displayName: "GLM 5.2"
4051
+ }
4052
+ ]
4053
+ },
4054
+ {
4055
+ id: "gpt-5-mini",
4056
+ displayName: "GPT-5 Mini",
4057
+ aliases: [
4058
+ "gpt-mini"
4059
+ ],
4060
+ variants: [
4061
+ {
4062
+ params: [],
4063
+ displayName: "GPT-5 Mini",
4064
+ isDefault: true
4065
+ }
4066
+ ]
4067
+ },
4068
+ {
4069
+ id: "gpt-5.1",
4070
+ displayName: "GPT-5.1",
4071
+ aliases: [
4072
+ "gpt"
4073
+ ],
4074
+ parameters: [
4075
+ {
4076
+ id: "reasoning",
4077
+ displayName: "Reasoning",
4078
+ values: [
4079
+ {
4080
+ value: "low",
4081
+ displayName: "Low"
4082
+ },
4083
+ {
4084
+ value: "medium",
4085
+ displayName: "Medium"
4086
+ },
4087
+ {
4088
+ value: "high",
4089
+ displayName: "High"
4090
+ }
4091
+ ]
4092
+ }
4093
+ ],
4094
+ variants: [
4095
+ {
4096
+ params: [
4097
+ {
4098
+ id: "reasoning",
4099
+ value: "low"
4100
+ }
4101
+ ],
4102
+ displayName: "GPT-5.1"
4103
+ },
4104
+ {
4105
+ params: [
4106
+ {
4107
+ id: "reasoning",
4108
+ value: "medium"
4109
+ }
4110
+ ],
4111
+ displayName: "GPT-5.1",
4112
+ isDefault: true
4113
+ },
4114
+ {
4115
+ params: [
4116
+ {
4117
+ id: "reasoning",
4118
+ value: "high"
4119
+ }
4120
+ ],
4121
+ displayName: "GPT-5.1"
4122
+ }
4123
+ ]
4124
+ },
4125
+ {
4126
+ id: "gpt-5.1-codex-max",
4127
+ displayName: "Codex 5.1 Max",
4128
+ aliases: [
4129
+ "codex",
4130
+ "codex-5.1-max"
4131
+ ],
4132
+ parameters: [
4133
+ {
4134
+ id: "reasoning",
4135
+ displayName: "Reasoning",
4136
+ values: [
4137
+ {
4138
+ value: "low",
4139
+ displayName: "Low"
4140
+ },
4141
+ {
4142
+ value: "medium",
4143
+ displayName: "Medium"
4144
+ },
4145
+ {
4146
+ value: "high",
4147
+ displayName: "High"
4148
+ },
4149
+ {
4150
+ value: "extra-high",
4151
+ displayName: "Extra High"
4152
+ }
4153
+ ]
4154
+ },
4155
+ {
4156
+ id: "fast",
4157
+ displayName: "Fast",
4158
+ values: [
4159
+ {
4160
+ value: "false"
4161
+ },
4162
+ {
4163
+ value: "true",
4164
+ displayName: "Fast"
4165
+ }
4166
+ ]
4167
+ }
4168
+ ],
4169
+ variants: [
4170
+ {
4171
+ params: [
4172
+ {
4173
+ id: "reasoning",
4174
+ value: "low"
4175
+ },
4176
+ {
4177
+ id: "fast",
4178
+ value: "false"
4179
+ }
4180
+ ],
4181
+ displayName: "Codex 5.1 Max"
4182
+ },
4183
+ {
4184
+ params: [
4185
+ {
4186
+ id: "reasoning",
4187
+ value: "low"
4188
+ },
4189
+ {
4190
+ id: "fast",
4191
+ value: "true"
4192
+ }
4193
+ ],
4194
+ displayName: "Codex 5.1 Max"
4195
+ },
4196
+ {
4197
+ params: [
4198
+ {
4199
+ id: "reasoning",
4200
+ value: "medium"
4201
+ },
4202
+ {
4203
+ id: "fast",
4204
+ value: "false"
4205
+ }
4206
+ ],
4207
+ displayName: "Codex 5.1 Max"
4208
+ },
4209
+ {
4210
+ params: [
4211
+ {
4212
+ id: "reasoning",
4213
+ value: "medium"
4214
+ },
4215
+ {
4216
+ id: "fast",
4217
+ value: "true"
4218
+ }
4219
+ ],
4220
+ displayName: "Codex 5.1 Max"
4221
+ },
4222
+ {
4223
+ params: [
4224
+ {
4225
+ id: "reasoning",
4226
+ value: "high"
4227
+ },
4228
+ {
4229
+ id: "fast",
4230
+ value: "false"
4231
+ }
4232
+ ],
4233
+ displayName: "Codex 5.1 Max"
4234
+ },
4235
+ {
4236
+ params: [
4237
+ {
4238
+ id: "reasoning",
4239
+ value: "high"
4240
+ },
4241
+ {
4242
+ id: "fast",
4243
+ value: "true"
4244
+ }
4245
+ ],
4246
+ displayName: "Codex 5.1 Max",
4247
+ isDefault: true
4248
+ },
4249
+ {
4250
+ params: [
4251
+ {
4252
+ id: "reasoning",
4253
+ value: "extra-high"
4254
+ },
4255
+ {
4256
+ id: "fast",
4257
+ value: "false"
4258
+ }
4259
+ ],
4260
+ displayName: "Codex 5.1 Max"
4261
+ },
4262
+ {
4263
+ params: [
4264
+ {
4265
+ id: "reasoning",
4266
+ value: "extra-high"
4267
+ },
4268
+ {
4269
+ id: "fast",
4270
+ value: "true"
4271
+ }
4272
+ ],
4273
+ displayName: "Codex 5.1 Max"
4274
+ }
4275
+ ]
4276
+ },
4277
+ {
4278
+ id: "gpt-5.1-codex-mini",
4279
+ displayName: "Codex 5.1 Mini",
4280
+ aliases: [
4281
+ "codex-mini-latest",
4282
+ "codex-mini"
4283
+ ],
4284
+ parameters: [
4285
+ {
4286
+ id: "reasoning",
4287
+ displayName: "Reasoning",
4288
+ values: [
4289
+ {
4290
+ value: "low",
4291
+ displayName: "Low"
4292
+ },
4293
+ {
4294
+ value: "medium",
4295
+ displayName: "Medium"
4296
+ },
4297
+ {
4298
+ value: "high",
4299
+ displayName: "High"
4300
+ }
4301
+ ]
4302
+ }
4303
+ ],
4304
+ variants: [
4305
+ {
4306
+ params: [
4307
+ {
4308
+ id: "reasoning",
4309
+ value: "low"
4310
+ }
4311
+ ],
4312
+ displayName: "Codex 5.1 Mini"
4313
+ },
4314
+ {
4315
+ params: [
4316
+ {
4317
+ id: "reasoning",
4318
+ value: "medium"
4319
+ }
4320
+ ],
4321
+ displayName: "Codex 5.1 Mini",
4322
+ isDefault: true
4323
+ },
4324
+ {
4325
+ params: [
4326
+ {
4327
+ id: "reasoning",
4328
+ value: "high"
4329
+ }
4330
+ ],
4331
+ displayName: "Codex 5.1 Mini"
4332
+ }
4333
+ ]
4334
+ },
4335
+ {
4336
+ id: "gpt-5.2",
4337
+ displayName: "GPT-5.2",
4338
+ aliases: [
4339
+ "gpt"
4340
+ ],
4341
+ parameters: [
4342
+ {
4343
+ id: "reasoning",
4344
+ displayName: "Reasoning",
4345
+ values: [
4346
+ {
4347
+ value: "low",
4348
+ displayName: "Low"
4349
+ },
4350
+ {
4351
+ value: "medium",
4352
+ displayName: "Medium"
4353
+ },
4354
+ {
4355
+ value: "high",
4356
+ displayName: "High"
4357
+ },
4358
+ {
4359
+ value: "extra-high",
4360
+ displayName: "Extra High"
4361
+ }
4362
+ ]
4363
+ },
4364
+ {
4365
+ id: "fast",
4366
+ displayName: "Fast",
4367
+ values: [
4368
+ {
4369
+ value: "false"
4370
+ },
4371
+ {
4372
+ value: "true",
4373
+ displayName: "Fast"
4374
+ }
4375
+ ]
4376
+ }
4377
+ ],
4378
+ variants: [
4379
+ {
4380
+ params: [
4381
+ {
4382
+ id: "reasoning",
4383
+ value: "low"
4384
+ },
4385
+ {
4386
+ id: "fast",
4387
+ value: "false"
4388
+ }
4389
+ ],
4390
+ displayName: "GPT-5.2"
4391
+ },
4392
+ {
4393
+ params: [
4394
+ {
4395
+ id: "reasoning",
4396
+ value: "low"
4397
+ },
4398
+ {
4399
+ id: "fast",
4400
+ value: "true"
4401
+ }
4402
+ ],
4403
+ displayName: "GPT-5.2"
4404
+ },
4405
+ {
4406
+ params: [
4407
+ {
4408
+ id: "reasoning",
4409
+ value: "medium"
4410
+ },
4411
+ {
4412
+ id: "fast",
4413
+ value: "false"
4414
+ }
4415
+ ],
4416
+ displayName: "GPT-5.2"
4417
+ },
4418
+ {
4419
+ params: [
4420
+ {
4421
+ id: "reasoning",
4422
+ value: "medium"
4423
+ },
4424
+ {
4425
+ id: "fast",
4426
+ value: "true"
4427
+ }
4428
+ ],
4429
+ displayName: "GPT-5.2"
4430
+ },
4431
+ {
4432
+ params: [
4433
+ {
4434
+ id: "reasoning",
4435
+ value: "high"
4436
+ },
4437
+ {
4438
+ id: "fast",
4439
+ value: "false"
4440
+ }
4441
+ ],
4442
+ displayName: "GPT-5.2"
4443
+ },
4444
+ {
4445
+ params: [
4446
+ {
4447
+ id: "reasoning",
4448
+ value: "high"
4449
+ },
4450
+ {
4451
+ id: "fast",
4452
+ value: "true"
4453
+ }
4454
+ ],
4455
+ displayName: "GPT-5.2",
3479
4456
  isDefault: true
3480
4457
  },
3481
4458
  {
3482
4459
  params: [
4460
+ {
4461
+ id: "reasoning",
4462
+ value: "extra-high"
4463
+ },
3483
4464
  {
3484
4465
  id: "fast",
3485
4466
  value: "false"
3486
4467
  }
3487
4468
  ],
3488
- displayName: "Composer 2"
4469
+ displayName: "GPT-5.2"
4470
+ },
4471
+ {
4472
+ params: [
4473
+ {
4474
+ id: "reasoning",
4475
+ value: "extra-high"
4476
+ },
4477
+ {
4478
+ id: "fast",
4479
+ value: "true"
4480
+ }
4481
+ ],
4482
+ displayName: "GPT-5.2"
3489
4483
  }
3490
4484
  ]
3491
4485
  },
3492
4486
  {
3493
- id: "composer-2.5",
3494
- displayName: "Composer 2.5",
4487
+ id: "gpt-5.2-codex",
4488
+ displayName: "Codex 5.2",
3495
4489
  aliases: [
3496
- "composer-latest",
3497
- "composer",
3498
- "composer-2-5"
4490
+ "codex",
4491
+ "codex-5.2"
3499
4492
  ],
3500
4493
  parameters: [
4494
+ {
4495
+ id: "reasoning",
4496
+ displayName: "Reasoning",
4497
+ values: [
4498
+ {
4499
+ value: "low",
4500
+ displayName: "Low"
4501
+ },
4502
+ {
4503
+ value: "medium",
4504
+ displayName: "Medium"
4505
+ },
4506
+ {
4507
+ value: "high",
4508
+ displayName: "High"
4509
+ },
4510
+ {
4511
+ value: "extra-high",
4512
+ displayName: "Extra High"
4513
+ }
4514
+ ]
4515
+ },
3501
4516
  {
3502
4517
  id: "fast",
3503
4518
  displayName: "Fast",
@@ -3515,162 +4530,293 @@ export const FALLBACK_MODEL_ITEMS = [
3515
4530
  variants: [
3516
4531
  {
3517
4532
  params: [
4533
+ {
4534
+ id: "reasoning",
4535
+ value: "low"
4536
+ },
4537
+ {
4538
+ id: "fast",
4539
+ value: "false"
4540
+ }
4541
+ ],
4542
+ displayName: "Codex 5.2"
4543
+ },
4544
+ {
4545
+ params: [
4546
+ {
4547
+ id: "reasoning",
4548
+ value: "low"
4549
+ },
3518
4550
  {
3519
4551
  id: "fast",
3520
4552
  value: "true"
3521
4553
  }
3522
4554
  ],
3523
- displayName: "Composer 2.5",
3524
- isDefault: true
4555
+ displayName: "Codex 5.2"
3525
4556
  },
3526
4557
  {
3527
4558
  params: [
4559
+ {
4560
+ id: "reasoning",
4561
+ value: "medium"
4562
+ },
3528
4563
  {
3529
4564
  id: "fast",
3530
4565
  value: "false"
3531
4566
  }
3532
4567
  ],
3533
- displayName: "Composer 2.5"
3534
- }
3535
- ]
3536
- },
3537
- {
3538
- id: "default",
3539
- displayName: "Auto",
3540
- aliases: [
3541
- "auto"
3542
- ],
3543
- variants: [
4568
+ displayName: "Codex 5.2"
4569
+ },
3544
4570
  {
3545
- params: [],
3546
- displayName: "Auto",
3547
- isDefault: true
3548
- }
3549
- ]
3550
- },
3551
- {
3552
- id: "gemini-2.5-flash",
3553
- displayName: "Gemini 2.5 Flash",
3554
- aliases: [
3555
- "gemini-flash"
3556
- ],
3557
- variants: [
4571
+ params: [
4572
+ {
4573
+ id: "reasoning",
4574
+ value: "medium"
4575
+ },
4576
+ {
4577
+ id: "fast",
4578
+ value: "true"
4579
+ }
4580
+ ],
4581
+ displayName: "Codex 5.2"
4582
+ },
3558
4583
  {
3559
- params: [],
3560
- displayName: "Gemini 2.5 Flash",
3561
- isDefault: true
3562
- }
3563
- ]
3564
- },
3565
- {
3566
- id: "gemini-3-flash",
3567
- displayName: "Gemini 3 Flash",
3568
- variants: [
4584
+ params: [
4585
+ {
4586
+ id: "reasoning",
4587
+ value: "high"
4588
+ },
4589
+ {
4590
+ id: "fast",
4591
+ value: "false"
4592
+ }
4593
+ ],
4594
+ displayName: "Codex 5.2"
4595
+ },
3569
4596
  {
3570
- params: [],
3571
- displayName: "Gemini 3 Flash",
4597
+ params: [
4598
+ {
4599
+ id: "reasoning",
4600
+ value: "high"
4601
+ },
4602
+ {
4603
+ id: "fast",
4604
+ value: "true"
4605
+ }
4606
+ ],
4607
+ displayName: "Codex 5.2",
3572
4608
  isDefault: true
3573
- }
3574
- ]
3575
- },
3576
- {
3577
- id: "gemini-3.1-pro",
3578
- displayName: "Gemini 3.1 Pro",
3579
- aliases: [
3580
- "gemini-latest",
3581
- "gemini-pro-latest",
3582
- "gemini",
3583
- "gemini-pro"
3584
- ],
3585
- variants: [
4609
+ },
3586
4610
  {
3587
- params: [],
3588
- displayName: "Gemini 3.1 Pro",
3589
- isDefault: true
4611
+ params: [
4612
+ {
4613
+ id: "reasoning",
4614
+ value: "extra-high"
4615
+ },
4616
+ {
4617
+ id: "fast",
4618
+ value: "false"
4619
+ }
4620
+ ],
4621
+ displayName: "Codex 5.2"
4622
+ },
4623
+ {
4624
+ params: [
4625
+ {
4626
+ id: "reasoning",
4627
+ value: "extra-high"
4628
+ },
4629
+ {
4630
+ id: "fast",
4631
+ value: "true"
4632
+ }
4633
+ ],
4634
+ displayName: "Codex 5.2"
3590
4635
  }
3591
4636
  ]
3592
4637
  },
3593
4638
  {
3594
- id: "gemini-3.5-flash",
3595
- displayName: "Gemini 3.5 Flash",
4639
+ id: "gpt-5.3-codex",
4640
+ displayName: "Codex 5.3",
3596
4641
  aliases: [
3597
- "gemini-flash-latest",
3598
- "gemini-flash"
4642
+ "codex-latest",
4643
+ "codex",
4644
+ "codex-5.3"
3599
4645
  ],
3600
- variants: [
3601
- {
3602
- params: [],
3603
- displayName: "Gemini 3.5 Flash",
3604
- isDefault: true
3605
- }
3606
- ]
3607
- },
3608
- {
3609
- id: "glm-5.2",
3610
- displayName: "GLM 5.2",
3611
4646
  parameters: [
3612
4647
  {
3613
4648
  id: "reasoning",
3614
4649
  displayName: "Reasoning",
3615
4650
  values: [
4651
+ {
4652
+ value: "low",
4653
+ displayName: "Low"
4654
+ },
4655
+ {
4656
+ value: "medium",
4657
+ displayName: "Medium"
4658
+ },
3616
4659
  {
3617
4660
  value: "high",
3618
4661
  displayName: "High"
3619
4662
  },
3620
4663
  {
3621
- value: "max",
3622
- displayName: "Max"
4664
+ value: "extra-high",
4665
+ displayName: "Extra High"
4666
+ }
4667
+ ]
4668
+ },
4669
+ {
4670
+ id: "fast",
4671
+ displayName: "Fast",
4672
+ values: [
4673
+ {
4674
+ value: "false"
4675
+ },
4676
+ {
4677
+ value: "true",
4678
+ displayName: "Fast"
3623
4679
  }
3624
4680
  ]
3625
4681
  }
3626
4682
  ],
3627
4683
  variants: [
4684
+ {
4685
+ params: [
4686
+ {
4687
+ id: "reasoning",
4688
+ value: "low"
4689
+ },
4690
+ {
4691
+ id: "fast",
4692
+ value: "false"
4693
+ }
4694
+ ],
4695
+ displayName: "Codex 5.3"
4696
+ },
4697
+ {
4698
+ params: [
4699
+ {
4700
+ id: "reasoning",
4701
+ value: "low"
4702
+ },
4703
+ {
4704
+ id: "fast",
4705
+ value: "true"
4706
+ }
4707
+ ],
4708
+ displayName: "Codex 5.3"
4709
+ },
4710
+ {
4711
+ params: [
4712
+ {
4713
+ id: "reasoning",
4714
+ value: "medium"
4715
+ },
4716
+ {
4717
+ id: "fast",
4718
+ value: "false"
4719
+ }
4720
+ ],
4721
+ displayName: "Codex 5.3"
4722
+ },
4723
+ {
4724
+ params: [
4725
+ {
4726
+ id: "reasoning",
4727
+ value: "medium"
4728
+ },
4729
+ {
4730
+ id: "fast",
4731
+ value: "true"
4732
+ }
4733
+ ],
4734
+ displayName: "Codex 5.3"
4735
+ },
3628
4736
  {
3629
4737
  params: [
3630
4738
  {
3631
4739
  id: "reasoning",
3632
4740
  value: "high"
4741
+ },
4742
+ {
4743
+ id: "fast",
4744
+ value: "false"
3633
4745
  }
3634
4746
  ],
3635
- displayName: "GLM 5.2",
4747
+ displayName: "Codex 5.3"
4748
+ },
4749
+ {
4750
+ params: [
4751
+ {
4752
+ id: "reasoning",
4753
+ value: "high"
4754
+ },
4755
+ {
4756
+ id: "fast",
4757
+ value: "true"
4758
+ }
4759
+ ],
4760
+ displayName: "Codex 5.3",
3636
4761
  isDefault: true
3637
4762
  },
3638
4763
  {
3639
4764
  params: [
3640
4765
  {
3641
4766
  id: "reasoning",
3642
- value: "max"
4767
+ value: "extra-high"
4768
+ },
4769
+ {
4770
+ id: "fast",
4771
+ value: "false"
3643
4772
  }
3644
4773
  ],
3645
- displayName: "GLM 5.2"
3646
- }
3647
- ]
3648
- },
3649
- {
3650
- id: "gpt-5-mini",
3651
- displayName: "GPT-5 Mini",
3652
- aliases: [
3653
- "gpt-mini"
3654
- ],
3655
- variants: [
4774
+ displayName: "Codex 5.3"
4775
+ },
3656
4776
  {
3657
- params: [],
3658
- displayName: "GPT-5 Mini",
3659
- isDefault: true
4777
+ params: [
4778
+ {
4779
+ id: "reasoning",
4780
+ value: "extra-high"
4781
+ },
4782
+ {
4783
+ id: "fast",
4784
+ value: "true"
4785
+ }
4786
+ ],
4787
+ displayName: "Codex 5.3"
3660
4788
  }
3661
4789
  ]
3662
4790
  },
3663
4791
  {
3664
- id: "gpt-5.1",
3665
- displayName: "GPT-5.1",
4792
+ id: "gpt-5.4",
4793
+ displayName: "GPT-5.4",
3666
4794
  aliases: [
3667
4795
  "gpt"
3668
4796
  ],
3669
4797
  parameters: [
4798
+ {
4799
+ id: "context",
4800
+ displayName: "Context",
4801
+ values: [
4802
+ {
4803
+ value: "272k",
4804
+ displayName: "272K"
4805
+ },
4806
+ {
4807
+ value: "1m",
4808
+ displayName: "1M"
4809
+ }
4810
+ ]
4811
+ },
3670
4812
  {
3671
4813
  id: "reasoning",
3672
4814
  displayName: "Reasoning",
3673
4815
  values: [
4816
+ {
4817
+ value: "none",
4818
+ displayName: "None"
4819
+ },
3674
4820
  {
3675
4821
  value: "low",
3676
4822
  displayName: "Low"
@@ -3682,6 +4828,23 @@ export const FALLBACK_MODEL_ITEMS = [
3682
4828
  {
3683
4829
  value: "high",
3684
4830
  displayName: "High"
4831
+ },
4832
+ {
4833
+ value: "extra-high",
4834
+ displayName: "Extra High"
4835
+ }
4836
+ ]
4837
+ },
4838
+ {
4839
+ id: "fast",
4840
+ displayName: "Fast",
4841
+ values: [
4842
+ {
4843
+ value: "false"
4844
+ },
4845
+ {
4846
+ value: "true",
4847
+ displayName: "Fast"
3685
4848
  }
3686
4849
  ]
3687
4850
  }
@@ -3689,198 +4852,278 @@ export const FALLBACK_MODEL_ITEMS = [
3689
4852
  variants: [
3690
4853
  {
3691
4854
  params: [
4855
+ {
4856
+ id: "context",
4857
+ value: "272k"
4858
+ },
3692
4859
  {
3693
4860
  id: "reasoning",
3694
- value: "low"
4861
+ value: "none"
4862
+ },
4863
+ {
4864
+ id: "fast",
4865
+ value: "false"
3695
4866
  }
3696
4867
  ],
3697
- displayName: "GPT-5.1"
4868
+ displayName: "GPT-5.4"
3698
4869
  },
3699
4870
  {
3700
4871
  params: [
4872
+ {
4873
+ id: "context",
4874
+ value: "272k"
4875
+ },
3701
4876
  {
3702
4877
  id: "reasoning",
3703
- value: "medium"
4878
+ value: "none"
4879
+ },
4880
+ {
4881
+ id: "fast",
4882
+ value: "true"
3704
4883
  }
3705
4884
  ],
3706
- displayName: "GPT-5.1",
3707
- isDefault: true
4885
+ displayName: "GPT-5.4"
3708
4886
  },
3709
4887
  {
3710
4888
  params: [
4889
+ {
4890
+ id: "context",
4891
+ value: "272k"
4892
+ },
3711
4893
  {
3712
4894
  id: "reasoning",
3713
- value: "high"
4895
+ value: "low"
4896
+ },
4897
+ {
4898
+ id: "fast",
4899
+ value: "false"
3714
4900
  }
3715
4901
  ],
3716
- displayName: "GPT-5.1"
3717
- }
3718
- ]
3719
- },
3720
- {
3721
- id: "gpt-5.1-codex-max",
3722
- displayName: "Codex 5.1 Max",
3723
- aliases: [
3724
- "codex",
3725
- "codex-5.1-max"
3726
- ],
3727
- parameters: [
4902
+ displayName: "GPT-5.4"
4903
+ },
3728
4904
  {
3729
- id: "reasoning",
3730
- displayName: "Reasoning",
3731
- values: [
4905
+ params: [
3732
4906
  {
3733
- value: "low",
3734
- displayName: "Low"
4907
+ id: "context",
4908
+ value: "272k"
4909
+ },
4910
+ {
4911
+ id: "reasoning",
4912
+ value: "low"
3735
4913
  },
3736
4914
  {
3737
- value: "medium",
3738
- displayName: "Medium"
4915
+ id: "fast",
4916
+ value: "true"
4917
+ }
4918
+ ],
4919
+ displayName: "GPT-5.4"
4920
+ },
4921
+ {
4922
+ params: [
4923
+ {
4924
+ id: "context",
4925
+ value: "272k"
3739
4926
  },
3740
4927
  {
3741
- value: "high",
3742
- displayName: "High"
4928
+ id: "reasoning",
4929
+ value: "medium"
3743
4930
  },
3744
4931
  {
3745
- value: "extra-high",
3746
- displayName: "Extra High"
4932
+ id: "fast",
4933
+ value: "false"
3747
4934
  }
3748
- ]
4935
+ ],
4936
+ displayName: "GPT-5.4"
3749
4937
  },
3750
4938
  {
3751
- id: "fast",
3752
- displayName: "Fast",
3753
- values: [
4939
+ params: [
3754
4940
  {
3755
- value: "false"
4941
+ id: "context",
4942
+ value: "272k"
3756
4943
  },
3757
4944
  {
3758
- value: "true",
3759
- displayName: "Fast"
4945
+ id: "reasoning",
4946
+ value: "medium"
4947
+ },
4948
+ {
4949
+ id: "fast",
4950
+ value: "true"
3760
4951
  }
3761
- ]
3762
- }
3763
- ],
3764
- variants: [
4952
+ ],
4953
+ displayName: "GPT-5.4"
4954
+ },
3765
4955
  {
3766
4956
  params: [
4957
+ {
4958
+ id: "context",
4959
+ value: "272k"
4960
+ },
3767
4961
  {
3768
4962
  id: "reasoning",
3769
- value: "low"
4963
+ value: "high"
3770
4964
  },
3771
4965
  {
3772
4966
  id: "fast",
3773
4967
  value: "false"
3774
4968
  }
3775
4969
  ],
3776
- displayName: "Codex 5.1 Max"
4970
+ displayName: "GPT-5.4"
3777
4971
  },
3778
4972
  {
3779
4973
  params: [
4974
+ {
4975
+ id: "context",
4976
+ value: "272k"
4977
+ },
3780
4978
  {
3781
4979
  id: "reasoning",
3782
- value: "low"
4980
+ value: "high"
3783
4981
  },
3784
4982
  {
3785
4983
  id: "fast",
3786
4984
  value: "true"
3787
4985
  }
3788
4986
  ],
3789
- displayName: "Codex 5.1 Max"
4987
+ displayName: "GPT-5.4"
3790
4988
  },
3791
4989
  {
3792
4990
  params: [
4991
+ {
4992
+ id: "context",
4993
+ value: "272k"
4994
+ },
3793
4995
  {
3794
4996
  id: "reasoning",
3795
- value: "medium"
4997
+ value: "extra-high"
3796
4998
  },
3797
4999
  {
3798
5000
  id: "fast",
3799
5001
  value: "false"
3800
5002
  }
3801
5003
  ],
3802
- displayName: "Codex 5.1 Max"
5004
+ displayName: "GPT-5.4"
3803
5005
  },
3804
5006
  {
3805
5007
  params: [
5008
+ {
5009
+ id: "context",
5010
+ value: "272k"
5011
+ },
3806
5012
  {
3807
5013
  id: "reasoning",
3808
- value: "medium"
5014
+ value: "extra-high"
3809
5015
  },
3810
5016
  {
3811
5017
  id: "fast",
3812
5018
  value: "true"
3813
5019
  }
3814
5020
  ],
3815
- displayName: "Codex 5.1 Max"
5021
+ displayName: "GPT-5.4"
3816
5022
  },
3817
5023
  {
3818
5024
  params: [
5025
+ {
5026
+ id: "context",
5027
+ value: "1m"
5028
+ },
3819
5029
  {
3820
5030
  id: "reasoning",
3821
- value: "high"
5031
+ value: "none"
3822
5032
  },
3823
5033
  {
3824
5034
  id: "fast",
3825
5035
  value: "false"
3826
5036
  }
3827
5037
  ],
3828
- displayName: "Codex 5.1 Max"
5038
+ displayName: "GPT-5.4"
3829
5039
  },
3830
5040
  {
3831
5041
  params: [
5042
+ {
5043
+ id: "context",
5044
+ value: "1m"
5045
+ },
3832
5046
  {
3833
5047
  id: "reasoning",
3834
- value: "high"
5048
+ value: "low"
3835
5049
  },
3836
5050
  {
3837
5051
  id: "fast",
3838
- value: "true"
5052
+ value: "false"
3839
5053
  }
3840
5054
  ],
3841
- displayName: "Codex 5.1 Max",
5055
+ displayName: "GPT-5.4"
5056
+ },
5057
+ {
5058
+ params: [
5059
+ {
5060
+ id: "context",
5061
+ value: "1m"
5062
+ },
5063
+ {
5064
+ id: "reasoning",
5065
+ value: "medium"
5066
+ },
5067
+ {
5068
+ id: "fast",
5069
+ value: "false"
5070
+ }
5071
+ ],
5072
+ displayName: "GPT-5.4",
3842
5073
  isDefault: true
3843
5074
  },
3844
5075
  {
3845
5076
  params: [
5077
+ {
5078
+ id: "context",
5079
+ value: "1m"
5080
+ },
3846
5081
  {
3847
5082
  id: "reasoning",
3848
- value: "extra-high"
5083
+ value: "high"
3849
5084
  },
3850
5085
  {
3851
5086
  id: "fast",
3852
5087
  value: "false"
3853
5088
  }
3854
5089
  ],
3855
- displayName: "Codex 5.1 Max"
5090
+ displayName: "GPT-5.4"
3856
5091
  },
3857
5092
  {
3858
5093
  params: [
5094
+ {
5095
+ id: "context",
5096
+ value: "1m"
5097
+ },
3859
5098
  {
3860
5099
  id: "reasoning",
3861
5100
  value: "extra-high"
3862
5101
  },
3863
5102
  {
3864
5103
  id: "fast",
3865
- value: "true"
5104
+ value: "false"
3866
5105
  }
3867
5106
  ],
3868
- displayName: "Codex 5.1 Max"
5107
+ displayName: "GPT-5.4"
3869
5108
  }
3870
5109
  ]
3871
5110
  },
3872
5111
  {
3873
- id: "gpt-5.1-codex-mini",
3874
- displayName: "Codex 5.1 Mini",
5112
+ id: "gpt-5.4-mini",
5113
+ displayName: "GPT-5.4 Mini",
3875
5114
  aliases: [
3876
- "codex-mini-latest",
3877
- "codex-mini"
5115
+ "gpt-mini-latest",
5116
+ "gpt-mini"
3878
5117
  ],
3879
5118
  parameters: [
3880
5119
  {
3881
5120
  id: "reasoning",
3882
5121
  displayName: "Reasoning",
3883
5122
  values: [
5123
+ {
5124
+ value: "none",
5125
+ displayName: "None"
5126
+ },
3884
5127
  {
3885
5128
  value: "low",
3886
5129
  displayName: "Low"
@@ -3892,11 +5135,24 @@ export const FALLBACK_MODEL_ITEMS = [
3892
5135
  {
3893
5136
  value: "high",
3894
5137
  displayName: "High"
5138
+ },
5139
+ {
5140
+ value: "xhigh",
5141
+ displayName: "Extra High"
3895
5142
  }
3896
5143
  ]
3897
5144
  }
3898
5145
  ],
3899
5146
  variants: [
5147
+ {
5148
+ params: [
5149
+ {
5150
+ id: "reasoning",
5151
+ value: "none"
5152
+ }
5153
+ ],
5154
+ displayName: "GPT-5.4 Mini"
5155
+ },
3900
5156
  {
3901
5157
  params: [
3902
5158
  {
@@ -3904,7 +5160,7 @@ export const FALLBACK_MODEL_ITEMS = [
3904
5160
  value: "low"
3905
5161
  }
3906
5162
  ],
3907
- displayName: "Codex 5.1 Mini"
5163
+ displayName: "GPT-5.4 Mini"
3908
5164
  },
3909
5165
  {
3910
5166
  params: [
@@ -3913,7 +5169,7 @@ export const FALLBACK_MODEL_ITEMS = [
3913
5169
  value: "medium"
3914
5170
  }
3915
5171
  ],
3916
- displayName: "Codex 5.1 Mini",
5172
+ displayName: "GPT-5.4 Mini",
3917
5173
  isDefault: true
3918
5174
  },
3919
5175
  {
@@ -3923,21 +5179,35 @@ export const FALLBACK_MODEL_ITEMS = [
3923
5179
  value: "high"
3924
5180
  }
3925
5181
  ],
3926
- displayName: "Codex 5.1 Mini"
5182
+ displayName: "GPT-5.4 Mini"
5183
+ },
5184
+ {
5185
+ params: [
5186
+ {
5187
+ id: "reasoning",
5188
+ value: "xhigh"
5189
+ }
5190
+ ],
5191
+ displayName: "GPT-5.4 Mini"
3927
5192
  }
3928
5193
  ]
3929
5194
  },
3930
5195
  {
3931
- id: "gpt-5.2",
3932
- displayName: "GPT-5.2",
5196
+ id: "gpt-5.4-nano",
5197
+ displayName: "GPT-5.4 Nano",
3933
5198
  aliases: [
3934
- "gpt"
5199
+ "gpt-nano-latest",
5200
+ "gpt-nano"
3935
5201
  ],
3936
5202
  parameters: [
3937
5203
  {
3938
5204
  id: "reasoning",
3939
5205
  displayName: "Reasoning",
3940
5206
  values: [
5207
+ {
5208
+ value: "none",
5209
+ displayName: "None"
5210
+ },
3941
5211
  {
3942
5212
  value: "low",
3943
5213
  displayName: "Low"
@@ -3951,23 +5221,10 @@ export const FALLBACK_MODEL_ITEMS = [
3951
5221
  displayName: "High"
3952
5222
  },
3953
5223
  {
3954
- value: "extra-high",
5224
+ value: "xhigh",
3955
5225
  displayName: "Extra High"
3956
5226
  }
3957
5227
  ]
3958
- },
3959
- {
3960
- id: "fast",
3961
- displayName: "Fast",
3962
- values: [
3963
- {
3964
- value: "false"
3965
- },
3966
- {
3967
- value: "true",
3968
- displayName: "Fast"
3969
- }
3970
- ]
3971
5228
  }
3972
5229
  ],
3973
5230
  variants: [
@@ -3975,121 +5232,79 @@ export const FALLBACK_MODEL_ITEMS = [
3975
5232
  params: [
3976
5233
  {
3977
5234
  id: "reasoning",
3978
- value: "low"
3979
- },
3980
- {
3981
- id: "fast",
3982
- value: "false"
5235
+ value: "none"
3983
5236
  }
3984
5237
  ],
3985
- displayName: "GPT-5.2"
5238
+ displayName: "GPT-5.4 Nano"
3986
5239
  },
3987
5240
  {
3988
5241
  params: [
3989
5242
  {
3990
5243
  id: "reasoning",
3991
5244
  value: "low"
3992
- },
3993
- {
3994
- id: "fast",
3995
- value: "true"
3996
- }
3997
- ],
3998
- displayName: "GPT-5.2"
3999
- },
4000
- {
4001
- params: [
4002
- {
4003
- id: "reasoning",
4004
- value: "medium"
4005
- },
4006
- {
4007
- id: "fast",
4008
- value: "false"
4009
5245
  }
4010
5246
  ],
4011
- displayName: "GPT-5.2"
5247
+ displayName: "GPT-5.4 Nano"
4012
5248
  },
4013
5249
  {
4014
5250
  params: [
4015
5251
  {
4016
5252
  id: "reasoning",
4017
5253
  value: "medium"
4018
- },
4019
- {
4020
- id: "fast",
4021
- value: "true"
4022
- }
4023
- ],
4024
- displayName: "GPT-5.2"
4025
- },
4026
- {
4027
- params: [
4028
- {
4029
- id: "reasoning",
4030
- value: "high"
4031
- },
4032
- {
4033
- id: "fast",
4034
- value: "false"
4035
- }
4036
- ],
4037
- displayName: "GPT-5.2"
4038
- },
4039
- {
4040
- params: [
4041
- {
4042
- id: "reasoning",
4043
- value: "high"
4044
- },
4045
- {
4046
- id: "fast",
4047
- value: "true"
4048
5254
  }
4049
5255
  ],
4050
- displayName: "GPT-5.2",
5256
+ displayName: "GPT-5.4 Nano",
4051
5257
  isDefault: true
4052
5258
  },
4053
5259
  {
4054
5260
  params: [
4055
5261
  {
4056
5262
  id: "reasoning",
4057
- value: "extra-high"
4058
- },
4059
- {
4060
- id: "fast",
4061
- value: "false"
5263
+ value: "high"
4062
5264
  }
4063
5265
  ],
4064
- displayName: "GPT-5.2"
5266
+ displayName: "GPT-5.4 Nano"
4065
5267
  },
4066
5268
  {
4067
5269
  params: [
4068
5270
  {
4069
5271
  id: "reasoning",
4070
- value: "extra-high"
4071
- },
4072
- {
4073
- id: "fast",
4074
- value: "true"
5272
+ value: "xhigh"
4075
5273
  }
4076
5274
  ],
4077
- displayName: "GPT-5.2"
5275
+ displayName: "GPT-5.4 Nano"
4078
5276
  }
4079
5277
  ]
4080
5278
  },
4081
5279
  {
4082
- id: "gpt-5.2-codex",
4083
- displayName: "Codex 5.2",
5280
+ id: "gpt-5.5",
5281
+ displayName: "GPT-5.5",
4084
5282
  aliases: [
4085
- "codex",
4086
- "codex-5.2"
5283
+ "gpt-5-5"
4087
5284
  ],
4088
5285
  parameters: [
5286
+ {
5287
+ id: "context",
5288
+ displayName: "Context",
5289
+ values: [
5290
+ {
5291
+ value: "272k",
5292
+ displayName: "272K"
5293
+ },
5294
+ {
5295
+ value: "1m",
5296
+ displayName: "1M"
5297
+ }
5298
+ ]
5299
+ },
4089
5300
  {
4090
5301
  id: "reasoning",
4091
5302
  displayName: "Reasoning",
4092
5303
  values: [
5304
+ {
5305
+ value: "none",
5306
+ displayName: "None"
5307
+ },
4093
5308
  {
4094
5309
  value: "low",
4095
5310
  displayName: "Low"
@@ -4125,269 +5340,267 @@ export const FALLBACK_MODEL_ITEMS = [
4125
5340
  variants: [
4126
5341
  {
4127
5342
  params: [
5343
+ {
5344
+ id: "context",
5345
+ value: "272k"
5346
+ },
4128
5347
  {
4129
5348
  id: "reasoning",
4130
- value: "low"
5349
+ value: "none"
4131
5350
  },
4132
5351
  {
4133
5352
  id: "fast",
4134
5353
  value: "false"
4135
5354
  }
4136
5355
  ],
4137
- displayName: "Codex 5.2"
5356
+ displayName: "GPT-5.5"
4138
5357
  },
4139
5358
  {
4140
5359
  params: [
5360
+ {
5361
+ id: "context",
5362
+ value: "272k"
5363
+ },
4141
5364
  {
4142
5365
  id: "reasoning",
4143
- value: "low"
5366
+ value: "none"
4144
5367
  },
4145
5368
  {
4146
5369
  id: "fast",
4147
5370
  value: "true"
4148
5371
  }
4149
5372
  ],
4150
- displayName: "Codex 5.2"
5373
+ displayName: "GPT-5.5"
4151
5374
  },
4152
5375
  {
4153
5376
  params: [
5377
+ {
5378
+ id: "context",
5379
+ value: "272k"
5380
+ },
4154
5381
  {
4155
5382
  id: "reasoning",
4156
- value: "medium"
5383
+ value: "low"
4157
5384
  },
4158
5385
  {
4159
5386
  id: "fast",
4160
5387
  value: "false"
4161
5388
  }
4162
5389
  ],
4163
- displayName: "Codex 5.2"
5390
+ displayName: "GPT-5.5"
4164
5391
  },
4165
5392
  {
4166
5393
  params: [
5394
+ {
5395
+ id: "context",
5396
+ value: "272k"
5397
+ },
4167
5398
  {
4168
5399
  id: "reasoning",
4169
- value: "medium"
5400
+ value: "low"
4170
5401
  },
4171
5402
  {
4172
5403
  id: "fast",
4173
5404
  value: "true"
4174
5405
  }
4175
5406
  ],
4176
- displayName: "Codex 5.2"
5407
+ displayName: "GPT-5.5"
4177
5408
  },
4178
5409
  {
4179
5410
  params: [
5411
+ {
5412
+ id: "context",
5413
+ value: "272k"
5414
+ },
4180
5415
  {
4181
5416
  id: "reasoning",
4182
- value: "high"
5417
+ value: "medium"
4183
5418
  },
4184
5419
  {
4185
5420
  id: "fast",
4186
5421
  value: "false"
4187
5422
  }
4188
5423
  ],
4189
- displayName: "Codex 5.2"
5424
+ displayName: "GPT-5.5"
4190
5425
  },
4191
5426
  {
4192
5427
  params: [
5428
+ {
5429
+ id: "context",
5430
+ value: "272k"
5431
+ },
4193
5432
  {
4194
5433
  id: "reasoning",
4195
- value: "high"
5434
+ value: "medium"
4196
5435
  },
4197
5436
  {
4198
5437
  id: "fast",
4199
5438
  value: "true"
4200
5439
  }
4201
5440
  ],
4202
- displayName: "Codex 5.2",
4203
- isDefault: true
5441
+ displayName: "GPT-5.5"
4204
5442
  },
4205
5443
  {
4206
5444
  params: [
5445
+ {
5446
+ id: "context",
5447
+ value: "272k"
5448
+ },
4207
5449
  {
4208
5450
  id: "reasoning",
4209
- value: "extra-high"
5451
+ value: "high"
4210
5452
  },
4211
5453
  {
4212
5454
  id: "fast",
4213
5455
  value: "false"
4214
5456
  }
4215
5457
  ],
4216
- displayName: "Codex 5.2"
5458
+ displayName: "GPT-5.5"
4217
5459
  },
4218
5460
  {
4219
5461
  params: [
5462
+ {
5463
+ id: "context",
5464
+ value: "272k"
5465
+ },
4220
5466
  {
4221
5467
  id: "reasoning",
4222
- value: "extra-high"
5468
+ value: "high"
4223
5469
  },
4224
5470
  {
4225
5471
  id: "fast",
4226
5472
  value: "true"
4227
5473
  }
4228
5474
  ],
4229
- displayName: "Codex 5.2"
4230
- }
4231
- ]
4232
- },
4233
- {
4234
- id: "gpt-5.3-codex",
4235
- displayName: "Codex 5.3",
4236
- aliases: [
4237
- "codex-latest",
4238
- "codex",
4239
- "codex-5.3"
4240
- ],
4241
- parameters: [
4242
- {
4243
- id: "reasoning",
4244
- displayName: "Reasoning",
4245
- values: [
4246
- {
4247
- value: "low",
4248
- displayName: "Low"
4249
- },
4250
- {
4251
- value: "medium",
4252
- displayName: "Medium"
4253
- },
4254
- {
4255
- value: "high",
4256
- displayName: "High"
4257
- },
4258
- {
4259
- value: "extra-high",
4260
- displayName: "Extra High"
4261
- }
4262
- ]
5475
+ displayName: "GPT-5.5"
4263
5476
  },
4264
5477
  {
4265
- id: "fast",
4266
- displayName: "Fast",
4267
- values: [
5478
+ params: [
4268
5479
  {
4269
- value: "false"
5480
+ id: "context",
5481
+ value: "272k"
4270
5482
  },
4271
- {
4272
- value: "true",
4273
- displayName: "Fast"
4274
- }
4275
- ]
4276
- }
4277
- ],
4278
- variants: [
4279
- {
4280
- params: [
4281
5483
  {
4282
5484
  id: "reasoning",
4283
- value: "low"
5485
+ value: "extra-high"
4284
5486
  },
4285
5487
  {
4286
5488
  id: "fast",
4287
5489
  value: "false"
4288
5490
  }
4289
5491
  ],
4290
- displayName: "Codex 5.3"
5492
+ displayName: "GPT-5.5"
4291
5493
  },
4292
5494
  {
4293
5495
  params: [
5496
+ {
5497
+ id: "context",
5498
+ value: "272k"
5499
+ },
4294
5500
  {
4295
5501
  id: "reasoning",
4296
- value: "low"
5502
+ value: "extra-high"
4297
5503
  },
4298
5504
  {
4299
5505
  id: "fast",
4300
5506
  value: "true"
4301
5507
  }
4302
5508
  ],
4303
- displayName: "Codex 5.3"
5509
+ displayName: "GPT-5.5"
4304
5510
  },
4305
5511
  {
4306
5512
  params: [
5513
+ {
5514
+ id: "context",
5515
+ value: "1m"
5516
+ },
4307
5517
  {
4308
5518
  id: "reasoning",
4309
- value: "medium"
5519
+ value: "none"
4310
5520
  },
4311
5521
  {
4312
5522
  id: "fast",
4313
5523
  value: "false"
4314
5524
  }
4315
5525
  ],
4316
- displayName: "Codex 5.3"
5526
+ displayName: "GPT-5.5"
4317
5527
  },
4318
5528
  {
4319
5529
  params: [
4320
5530
  {
4321
- id: "reasoning",
4322
- value: "medium"
5531
+ id: "context",
5532
+ value: "1m"
4323
5533
  },
4324
- {
4325
- id: "fast",
4326
- value: "true"
4327
- }
4328
- ],
4329
- displayName: "Codex 5.3"
4330
- },
4331
- {
4332
- params: [
4333
5534
  {
4334
5535
  id: "reasoning",
4335
- value: "high"
5536
+ value: "low"
4336
5537
  },
4337
5538
  {
4338
5539
  id: "fast",
4339
5540
  value: "false"
4340
5541
  }
4341
5542
  ],
4342
- displayName: "Codex 5.3"
5543
+ displayName: "GPT-5.5"
4343
5544
  },
4344
5545
  {
4345
5546
  params: [
5547
+ {
5548
+ id: "context",
5549
+ value: "1m"
5550
+ },
4346
5551
  {
4347
5552
  id: "reasoning",
4348
- value: "high"
5553
+ value: "medium"
4349
5554
  },
4350
5555
  {
4351
5556
  id: "fast",
4352
- value: "true"
5557
+ value: "false"
4353
5558
  }
4354
5559
  ],
4355
- displayName: "Codex 5.3",
5560
+ displayName: "GPT-5.5",
4356
5561
  isDefault: true
4357
5562
  },
4358
5563
  {
4359
5564
  params: [
5565
+ {
5566
+ id: "context",
5567
+ value: "1m"
5568
+ },
4360
5569
  {
4361
5570
  id: "reasoning",
4362
- value: "extra-high"
5571
+ value: "high"
4363
5572
  },
4364
5573
  {
4365
5574
  id: "fast",
4366
5575
  value: "false"
4367
5576
  }
4368
5577
  ],
4369
- displayName: "Codex 5.3"
5578
+ displayName: "GPT-5.5"
4370
5579
  },
4371
5580
  {
4372
5581
  params: [
5582
+ {
5583
+ id: "context",
5584
+ value: "1m"
5585
+ },
4373
5586
  {
4374
5587
  id: "reasoning",
4375
5588
  value: "extra-high"
4376
5589
  },
4377
5590
  {
4378
5591
  id: "fast",
4379
- value: "true"
5592
+ value: "false"
4380
5593
  }
4381
5594
  ],
4382
- displayName: "Codex 5.3"
5595
+ displayName: "GPT-5.5"
4383
5596
  }
4384
5597
  ]
4385
5598
  },
4386
5599
  {
4387
- id: "gpt-5.4",
4388
- displayName: "GPT-5.4",
5600
+ id: "gpt-5.6-luna",
5601
+ displayName: "GPT-5.6 Luna",
4389
5602
  aliases: [
4390
- "gpt"
5603
+ "gpt-5-6-luna"
4391
5604
  ],
4392
5605
  parameters: [
4393
5606
  {
@@ -4425,8 +5638,12 @@ export const FALLBACK_MODEL_ITEMS = [
4425
5638
  displayName: "High"
4426
5639
  },
4427
5640
  {
4428
- value: "extra-high",
5641
+ value: "xhigh",
4429
5642
  displayName: "Extra High"
5643
+ },
5644
+ {
5645
+ value: "max",
5646
+ displayName: "Max"
4430
5647
  }
4431
5648
  ]
4432
5649
  },
@@ -4453,14 +5670,48 @@ export const FALLBACK_MODEL_ITEMS = [
4453
5670
  },
4454
5671
  {
4455
5672
  id: "reasoning",
4456
- value: "none"
5673
+ value: "none"
5674
+ },
5675
+ {
5676
+ id: "fast",
5677
+ value: "false"
5678
+ }
5679
+ ],
5680
+ displayName: "GPT-5.6 Luna"
5681
+ },
5682
+ {
5683
+ params: [
5684
+ {
5685
+ id: "context",
5686
+ value: "272k"
5687
+ },
5688
+ {
5689
+ id: "reasoning",
5690
+ value: "none"
5691
+ },
5692
+ {
5693
+ id: "fast",
5694
+ value: "true"
5695
+ }
5696
+ ],
5697
+ displayName: "GPT-5.6 Luna"
5698
+ },
5699
+ {
5700
+ params: [
5701
+ {
5702
+ id: "context",
5703
+ value: "272k"
5704
+ },
5705
+ {
5706
+ id: "reasoning",
5707
+ value: "low"
4457
5708
  },
4458
5709
  {
4459
5710
  id: "fast",
4460
5711
  value: "false"
4461
5712
  }
4462
5713
  ],
4463
- displayName: "GPT-5.4"
5714
+ displayName: "GPT-5.6 Luna"
4464
5715
  },
4465
5716
  {
4466
5717
  params: [
@@ -4470,14 +5721,14 @@ export const FALLBACK_MODEL_ITEMS = [
4470
5721
  },
4471
5722
  {
4472
5723
  id: "reasoning",
4473
- value: "none"
5724
+ value: "low"
4474
5725
  },
4475
5726
  {
4476
5727
  id: "fast",
4477
5728
  value: "true"
4478
5729
  }
4479
5730
  ],
4480
- displayName: "GPT-5.4"
5731
+ displayName: "GPT-5.6 Luna"
4481
5732
  },
4482
5733
  {
4483
5734
  params: [
@@ -4487,14 +5738,14 @@ export const FALLBACK_MODEL_ITEMS = [
4487
5738
  },
4488
5739
  {
4489
5740
  id: "reasoning",
4490
- value: "low"
5741
+ value: "medium"
4491
5742
  },
4492
5743
  {
4493
5744
  id: "fast",
4494
5745
  value: "false"
4495
5746
  }
4496
5747
  ],
4497
- displayName: "GPT-5.4"
5748
+ displayName: "GPT-5.6 Luna"
4498
5749
  },
4499
5750
  {
4500
5751
  params: [
@@ -4504,14 +5755,14 @@ export const FALLBACK_MODEL_ITEMS = [
4504
5755
  },
4505
5756
  {
4506
5757
  id: "reasoning",
4507
- value: "low"
5758
+ value: "medium"
4508
5759
  },
4509
5760
  {
4510
5761
  id: "fast",
4511
5762
  value: "true"
4512
5763
  }
4513
5764
  ],
4514
- displayName: "GPT-5.4"
5765
+ displayName: "GPT-5.6 Luna"
4515
5766
  },
4516
5767
  {
4517
5768
  params: [
@@ -4521,14 +5772,14 @@ export const FALLBACK_MODEL_ITEMS = [
4521
5772
  },
4522
5773
  {
4523
5774
  id: "reasoning",
4524
- value: "medium"
5775
+ value: "high"
4525
5776
  },
4526
5777
  {
4527
5778
  id: "fast",
4528
5779
  value: "false"
4529
5780
  }
4530
5781
  ],
4531
- displayName: "GPT-5.4"
5782
+ displayName: "GPT-5.6 Luna"
4532
5783
  },
4533
5784
  {
4534
5785
  params: [
@@ -4538,14 +5789,14 @@ export const FALLBACK_MODEL_ITEMS = [
4538
5789
  },
4539
5790
  {
4540
5791
  id: "reasoning",
4541
- value: "medium"
5792
+ value: "high"
4542
5793
  },
4543
5794
  {
4544
5795
  id: "fast",
4545
5796
  value: "true"
4546
5797
  }
4547
5798
  ],
4548
- displayName: "GPT-5.4"
5799
+ displayName: "GPT-5.6 Luna"
4549
5800
  },
4550
5801
  {
4551
5802
  params: [
@@ -4555,14 +5806,14 @@ export const FALLBACK_MODEL_ITEMS = [
4555
5806
  },
4556
5807
  {
4557
5808
  id: "reasoning",
4558
- value: "high"
5809
+ value: "xhigh"
4559
5810
  },
4560
5811
  {
4561
5812
  id: "fast",
4562
5813
  value: "false"
4563
5814
  }
4564
5815
  ],
4565
- displayName: "GPT-5.4"
5816
+ displayName: "GPT-5.6 Luna"
4566
5817
  },
4567
5818
  {
4568
5819
  params: [
@@ -4572,14 +5823,14 @@ export const FALLBACK_MODEL_ITEMS = [
4572
5823
  },
4573
5824
  {
4574
5825
  id: "reasoning",
4575
- value: "high"
5826
+ value: "xhigh"
4576
5827
  },
4577
5828
  {
4578
5829
  id: "fast",
4579
5830
  value: "true"
4580
5831
  }
4581
5832
  ],
4582
- displayName: "GPT-5.4"
5833
+ displayName: "GPT-5.6 Luna"
4583
5834
  },
4584
5835
  {
4585
5836
  params: [
@@ -4589,14 +5840,14 @@ export const FALLBACK_MODEL_ITEMS = [
4589
5840
  },
4590
5841
  {
4591
5842
  id: "reasoning",
4592
- value: "extra-high"
5843
+ value: "max"
4593
5844
  },
4594
5845
  {
4595
5846
  id: "fast",
4596
5847
  value: "false"
4597
5848
  }
4598
5849
  ],
4599
- displayName: "GPT-5.4"
5850
+ displayName: "GPT-5.6 Luna"
4600
5851
  },
4601
5852
  {
4602
5853
  params: [
@@ -4606,14 +5857,14 @@ export const FALLBACK_MODEL_ITEMS = [
4606
5857
  },
4607
5858
  {
4608
5859
  id: "reasoning",
4609
- value: "extra-high"
5860
+ value: "max"
4610
5861
  },
4611
5862
  {
4612
5863
  id: "fast",
4613
5864
  value: "true"
4614
5865
  }
4615
5866
  ],
4616
- displayName: "GPT-5.4"
5867
+ displayName: "GPT-5.6 Luna"
4617
5868
  },
4618
5869
  {
4619
5870
  params: [
@@ -4630,7 +5881,7 @@ export const FALLBACK_MODEL_ITEMS = [
4630
5881
  value: "false"
4631
5882
  }
4632
5883
  ],
4633
- displayName: "GPT-5.4"
5884
+ displayName: "GPT-5.6 Luna"
4634
5885
  },
4635
5886
  {
4636
5887
  params: [
@@ -4647,7 +5898,7 @@ export const FALLBACK_MODEL_ITEMS = [
4647
5898
  value: "false"
4648
5899
  }
4649
5900
  ],
4650
- displayName: "GPT-5.4"
5901
+ displayName: "GPT-5.6 Luna"
4651
5902
  },
4652
5903
  {
4653
5904
  params: [
@@ -4664,7 +5915,7 @@ export const FALLBACK_MODEL_ITEMS = [
4664
5915
  value: "false"
4665
5916
  }
4666
5917
  ],
4667
- displayName: "GPT-5.4",
5918
+ displayName: "GPT-5.6 Luna",
4668
5919
  isDefault: true
4669
5920
  },
4670
5921
  {
@@ -4682,7 +5933,7 @@ export const FALLBACK_MODEL_ITEMS = [
4682
5933
  value: "false"
4683
5934
  }
4684
5935
  ],
4685
- displayName: "GPT-5.4"
5936
+ displayName: "GPT-5.6 Luna"
4686
5937
  },
4687
5938
  {
4688
5939
  params: [
@@ -4692,25 +5943,58 @@ export const FALLBACK_MODEL_ITEMS = [
4692
5943
  },
4693
5944
  {
4694
5945
  id: "reasoning",
4695
- value: "extra-high"
5946
+ value: "xhigh"
4696
5947
  },
4697
5948
  {
4698
5949
  id: "fast",
4699
5950
  value: "false"
4700
5951
  }
4701
5952
  ],
4702
- displayName: "GPT-5.4"
5953
+ displayName: "GPT-5.6 Luna"
5954
+ },
5955
+ {
5956
+ params: [
5957
+ {
5958
+ id: "context",
5959
+ value: "1m"
5960
+ },
5961
+ {
5962
+ id: "reasoning",
5963
+ value: "max"
5964
+ },
5965
+ {
5966
+ id: "fast",
5967
+ value: "false"
5968
+ }
5969
+ ],
5970
+ displayName: "GPT-5.6 Luna"
4703
5971
  }
4704
5972
  ]
4705
5973
  },
4706
5974
  {
4707
- id: "gpt-5.4-mini",
4708
- displayName: "GPT-5.4 Mini",
5975
+ id: "gpt-5.6-sol",
5976
+ displayName: "GPT-5.6 Sol",
4709
5977
  aliases: [
4710
- "gpt-mini-latest",
4711
- "gpt-mini"
5978
+ "gpt-latest",
5979
+ "gpt",
5980
+ "gpt-5-6-sol",
5981
+ "gpt-5.6"
4712
5982
  ],
4713
5983
  parameters: [
5984
+ {
5985
+ id: "context",
5986
+ displayName: "Context",
5987
+ values: [
5988
+ {
5989
+ value: "272k",
5990
+ displayName: "272K"
5991
+ },
5992
+ {
5993
+ value: "1m",
5994
+ displayName: "1M"
5995
+ }
5996
+ ]
5997
+ },
4714
5998
  {
4715
5999
  id: "reasoning",
4716
6000
  displayName: "Reasoning",
@@ -4734,6 +6018,23 @@ export const FALLBACK_MODEL_ITEMS = [
4734
6018
  {
4735
6019
  value: "xhigh",
4736
6020
  displayName: "Extra High"
6021
+ },
6022
+ {
6023
+ value: "max",
6024
+ displayName: "Max"
6025
+ }
6026
+ ]
6027
+ },
6028
+ {
6029
+ id: "fast",
6030
+ displayName: "Fast",
6031
+ values: [
6032
+ {
6033
+ value: "false"
6034
+ },
6035
+ {
6036
+ value: "true",
6037
+ displayName: "Fast"
4737
6038
  }
4738
6039
  ]
4739
6040
  }
@@ -4741,143 +6042,318 @@ export const FALLBACK_MODEL_ITEMS = [
4741
6042
  variants: [
4742
6043
  {
4743
6044
  params: [
6045
+ {
6046
+ id: "context",
6047
+ value: "272k"
6048
+ },
6049
+ {
6050
+ id: "reasoning",
6051
+ value: "none"
6052
+ },
6053
+ {
6054
+ id: "fast",
6055
+ value: "false"
6056
+ }
6057
+ ],
6058
+ displayName: "GPT-5.6 Sol"
6059
+ },
6060
+ {
6061
+ params: [
6062
+ {
6063
+ id: "context",
6064
+ value: "272k"
6065
+ },
4744
6066
  {
4745
6067
  id: "reasoning",
4746
6068
  value: "none"
6069
+ },
6070
+ {
6071
+ id: "fast",
6072
+ value: "true"
4747
6073
  }
4748
6074
  ],
4749
- displayName: "GPT-5.4 Mini"
6075
+ displayName: "GPT-5.6 Sol"
4750
6076
  },
4751
6077
  {
4752
6078
  params: [
6079
+ {
6080
+ id: "context",
6081
+ value: "272k"
6082
+ },
4753
6083
  {
4754
6084
  id: "reasoning",
4755
6085
  value: "low"
6086
+ },
6087
+ {
6088
+ id: "fast",
6089
+ value: "false"
4756
6090
  }
4757
6091
  ],
4758
- displayName: "GPT-5.4 Mini"
6092
+ displayName: "GPT-5.6 Sol"
4759
6093
  },
4760
6094
  {
4761
6095
  params: [
6096
+ {
6097
+ id: "context",
6098
+ value: "272k"
6099
+ },
6100
+ {
6101
+ id: "reasoning",
6102
+ value: "low"
6103
+ },
6104
+ {
6105
+ id: "fast",
6106
+ value: "true"
6107
+ }
6108
+ ],
6109
+ displayName: "GPT-5.6 Sol"
6110
+ },
6111
+ {
6112
+ params: [
6113
+ {
6114
+ id: "context",
6115
+ value: "272k"
6116
+ },
4762
6117
  {
4763
6118
  id: "reasoning",
4764
6119
  value: "medium"
6120
+ },
6121
+ {
6122
+ id: "fast",
6123
+ value: "false"
4765
6124
  }
4766
6125
  ],
4767
- displayName: "GPT-5.4 Mini",
4768
- isDefault: true
6126
+ displayName: "GPT-5.6 Sol"
6127
+ },
6128
+ {
6129
+ params: [
6130
+ {
6131
+ id: "context",
6132
+ value: "272k"
6133
+ },
6134
+ {
6135
+ id: "reasoning",
6136
+ value: "medium"
6137
+ },
6138
+ {
6139
+ id: "fast",
6140
+ value: "true"
6141
+ }
6142
+ ],
6143
+ displayName: "GPT-5.6 Sol"
4769
6144
  },
4770
6145
  {
4771
6146
  params: [
6147
+ {
6148
+ id: "context",
6149
+ value: "272k"
6150
+ },
4772
6151
  {
4773
6152
  id: "reasoning",
4774
6153
  value: "high"
6154
+ },
6155
+ {
6156
+ id: "fast",
6157
+ value: "false"
4775
6158
  }
4776
6159
  ],
4777
- displayName: "GPT-5.4 Mini"
6160
+ displayName: "GPT-5.6 Sol"
6161
+ },
6162
+ {
6163
+ params: [
6164
+ {
6165
+ id: "context",
6166
+ value: "272k"
6167
+ },
6168
+ {
6169
+ id: "reasoning",
6170
+ value: "high"
6171
+ },
6172
+ {
6173
+ id: "fast",
6174
+ value: "true"
6175
+ }
6176
+ ],
6177
+ displayName: "GPT-5.6 Sol"
4778
6178
  },
4779
6179
  {
4780
6180
  params: [
6181
+ {
6182
+ id: "context",
6183
+ value: "272k"
6184
+ },
4781
6185
  {
4782
6186
  id: "reasoning",
4783
6187
  value: "xhigh"
6188
+ },
6189
+ {
6190
+ id: "fast",
6191
+ value: "false"
4784
6192
  }
4785
6193
  ],
4786
- displayName: "GPT-5.4 Mini"
4787
- }
4788
- ]
4789
- },
4790
- {
4791
- id: "gpt-5.4-nano",
4792
- displayName: "GPT-5.4 Nano",
4793
- aliases: [
4794
- "gpt-nano-latest",
4795
- "gpt-nano"
4796
- ],
4797
- parameters: [
6194
+ displayName: "GPT-5.6 Sol"
6195
+ },
4798
6196
  {
4799
- id: "reasoning",
4800
- displayName: "Reasoning",
4801
- values: [
6197
+ params: [
4802
6198
  {
4803
- value: "none",
4804
- displayName: "None"
6199
+ id: "context",
6200
+ value: "272k"
4805
6201
  },
4806
6202
  {
4807
- value: "low",
4808
- displayName: "Low"
6203
+ id: "reasoning",
6204
+ value: "xhigh"
4809
6205
  },
4810
6206
  {
4811
- value: "medium",
4812
- displayName: "Medium"
6207
+ id: "fast",
6208
+ value: "true"
6209
+ }
6210
+ ],
6211
+ displayName: "GPT-5.6 Sol"
6212
+ },
6213
+ {
6214
+ params: [
6215
+ {
6216
+ id: "context",
6217
+ value: "272k"
6218
+ },
6219
+ {
6220
+ id: "reasoning",
6221
+ value: "max"
6222
+ },
6223
+ {
6224
+ id: "fast",
6225
+ value: "false"
6226
+ }
6227
+ ],
6228
+ displayName: "GPT-5.6 Sol"
6229
+ },
6230
+ {
6231
+ params: [
6232
+ {
6233
+ id: "context",
6234
+ value: "272k"
4813
6235
  },
4814
6236
  {
4815
- value: "high",
4816
- displayName: "High"
6237
+ id: "reasoning",
6238
+ value: "max"
4817
6239
  },
4818
6240
  {
4819
- value: "xhigh",
4820
- displayName: "Extra High"
6241
+ id: "fast",
6242
+ value: "true"
4821
6243
  }
4822
- ]
4823
- }
4824
- ],
4825
- variants: [
6244
+ ],
6245
+ displayName: "GPT-5.6 Sol"
6246
+ },
4826
6247
  {
4827
6248
  params: [
6249
+ {
6250
+ id: "context",
6251
+ value: "1m"
6252
+ },
4828
6253
  {
4829
6254
  id: "reasoning",
4830
6255
  value: "none"
6256
+ },
6257
+ {
6258
+ id: "fast",
6259
+ value: "false"
4831
6260
  }
4832
6261
  ],
4833
- displayName: "GPT-5.4 Nano"
6262
+ displayName: "GPT-5.6 Sol"
4834
6263
  },
4835
6264
  {
4836
6265
  params: [
6266
+ {
6267
+ id: "context",
6268
+ value: "1m"
6269
+ },
4837
6270
  {
4838
6271
  id: "reasoning",
4839
6272
  value: "low"
6273
+ },
6274
+ {
6275
+ id: "fast",
6276
+ value: "false"
4840
6277
  }
4841
6278
  ],
4842
- displayName: "GPT-5.4 Nano"
6279
+ displayName: "GPT-5.6 Sol"
4843
6280
  },
4844
6281
  {
4845
6282
  params: [
6283
+ {
6284
+ id: "context",
6285
+ value: "1m"
6286
+ },
4846
6287
  {
4847
6288
  id: "reasoning",
4848
6289
  value: "medium"
6290
+ },
6291
+ {
6292
+ id: "fast",
6293
+ value: "false"
4849
6294
  }
4850
6295
  ],
4851
- displayName: "GPT-5.4 Nano",
6296
+ displayName: "GPT-5.6 Sol",
4852
6297
  isDefault: true
4853
6298
  },
4854
6299
  {
4855
6300
  params: [
6301
+ {
6302
+ id: "context",
6303
+ value: "1m"
6304
+ },
4856
6305
  {
4857
6306
  id: "reasoning",
4858
6307
  value: "high"
6308
+ },
6309
+ {
6310
+ id: "fast",
6311
+ value: "false"
4859
6312
  }
4860
6313
  ],
4861
- displayName: "GPT-5.4 Nano"
6314
+ displayName: "GPT-5.6 Sol"
4862
6315
  },
4863
6316
  {
4864
6317
  params: [
6318
+ {
6319
+ id: "context",
6320
+ value: "1m"
6321
+ },
4865
6322
  {
4866
6323
  id: "reasoning",
4867
6324
  value: "xhigh"
6325
+ },
6326
+ {
6327
+ id: "fast",
6328
+ value: "false"
4868
6329
  }
4869
6330
  ],
4870
- displayName: "GPT-5.4 Nano"
6331
+ displayName: "GPT-5.6 Sol"
6332
+ },
6333
+ {
6334
+ params: [
6335
+ {
6336
+ id: "context",
6337
+ value: "1m"
6338
+ },
6339
+ {
6340
+ id: "reasoning",
6341
+ value: "max"
6342
+ },
6343
+ {
6344
+ id: "fast",
6345
+ value: "false"
6346
+ }
6347
+ ],
6348
+ displayName: "GPT-5.6 Sol"
4871
6349
  }
4872
6350
  ]
4873
6351
  },
4874
6352
  {
4875
- id: "gpt-5.5",
4876
- displayName: "GPT-5.5",
6353
+ id: "gpt-5.6-terra",
6354
+ displayName: "GPT-5.6 Terra",
4877
6355
  aliases: [
4878
- "gpt-latest",
4879
- "gpt",
4880
- "gpt-5-5"
6356
+ "gpt-5-6-terra"
4881
6357
  ],
4882
6358
  parameters: [
4883
6359
  {
@@ -4915,8 +6391,12 @@ export const FALLBACK_MODEL_ITEMS = [
4915
6391
  displayName: "High"
4916
6392
  },
4917
6393
  {
4918
- value: "extra-high",
6394
+ value: "xhigh",
4919
6395
  displayName: "Extra High"
6396
+ },
6397
+ {
6398
+ value: "max",
6399
+ displayName: "Max"
4920
6400
  }
4921
6401
  ]
4922
6402
  },
@@ -4950,7 +6430,7 @@ export const FALLBACK_MODEL_ITEMS = [
4950
6430
  value: "false"
4951
6431
  }
4952
6432
  ],
4953
- displayName: "GPT-5.5"
6433
+ displayName: "GPT-5.6 Terra"
4954
6434
  },
4955
6435
  {
4956
6436
  params: [
@@ -4967,7 +6447,7 @@ export const FALLBACK_MODEL_ITEMS = [
4967
6447
  value: "true"
4968
6448
  }
4969
6449
  ],
4970
- displayName: "GPT-5.5"
6450
+ displayName: "GPT-5.6 Terra"
4971
6451
  },
4972
6452
  {
4973
6453
  params: [
@@ -4984,7 +6464,7 @@ export const FALLBACK_MODEL_ITEMS = [
4984
6464
  value: "false"
4985
6465
  }
4986
6466
  ],
4987
- displayName: "GPT-5.5"
6467
+ displayName: "GPT-5.6 Terra"
4988
6468
  },
4989
6469
  {
4990
6470
  params: [
@@ -5001,7 +6481,7 @@ export const FALLBACK_MODEL_ITEMS = [
5001
6481
  value: "true"
5002
6482
  }
5003
6483
  ],
5004
- displayName: "GPT-5.5"
6484
+ displayName: "GPT-5.6 Terra"
5005
6485
  },
5006
6486
  {
5007
6487
  params: [
@@ -5018,7 +6498,7 @@ export const FALLBACK_MODEL_ITEMS = [
5018
6498
  value: "false"
5019
6499
  }
5020
6500
  ],
5021
- displayName: "GPT-5.5"
6501
+ displayName: "GPT-5.6 Terra"
5022
6502
  },
5023
6503
  {
5024
6504
  params: [
@@ -5035,7 +6515,7 @@ export const FALLBACK_MODEL_ITEMS = [
5035
6515
  value: "true"
5036
6516
  }
5037
6517
  ],
5038
- displayName: "GPT-5.5"
6518
+ displayName: "GPT-5.6 Terra"
5039
6519
  },
5040
6520
  {
5041
6521
  params: [
@@ -5052,7 +6532,7 @@ export const FALLBACK_MODEL_ITEMS = [
5052
6532
  value: "false"
5053
6533
  }
5054
6534
  ],
5055
- displayName: "GPT-5.5"
6535
+ displayName: "GPT-5.6 Terra"
5056
6536
  },
5057
6537
  {
5058
6538
  params: [
@@ -5069,7 +6549,7 @@ export const FALLBACK_MODEL_ITEMS = [
5069
6549
  value: "true"
5070
6550
  }
5071
6551
  ],
5072
- displayName: "GPT-5.5"
6552
+ displayName: "GPT-5.6 Terra"
5073
6553
  },
5074
6554
  {
5075
6555
  params: [
@@ -5079,14 +6559,14 @@ export const FALLBACK_MODEL_ITEMS = [
5079
6559
  },
5080
6560
  {
5081
6561
  id: "reasoning",
5082
- value: "extra-high"
6562
+ value: "xhigh"
5083
6563
  },
5084
6564
  {
5085
6565
  id: "fast",
5086
6566
  value: "false"
5087
6567
  }
5088
6568
  ],
5089
- displayName: "GPT-5.5"
6569
+ displayName: "GPT-5.6 Terra"
5090
6570
  },
5091
6571
  {
5092
6572
  params: [
@@ -5096,14 +6576,48 @@ export const FALLBACK_MODEL_ITEMS = [
5096
6576
  },
5097
6577
  {
5098
6578
  id: "reasoning",
5099
- value: "extra-high"
6579
+ value: "xhigh"
5100
6580
  },
5101
6581
  {
5102
6582
  id: "fast",
5103
6583
  value: "true"
5104
6584
  }
5105
6585
  ],
5106
- displayName: "GPT-5.5"
6586
+ displayName: "GPT-5.6 Terra"
6587
+ },
6588
+ {
6589
+ params: [
6590
+ {
6591
+ id: "context",
6592
+ value: "272k"
6593
+ },
6594
+ {
6595
+ id: "reasoning",
6596
+ value: "max"
6597
+ },
6598
+ {
6599
+ id: "fast",
6600
+ value: "false"
6601
+ }
6602
+ ],
6603
+ displayName: "GPT-5.6 Terra"
6604
+ },
6605
+ {
6606
+ params: [
6607
+ {
6608
+ id: "context",
6609
+ value: "272k"
6610
+ },
6611
+ {
6612
+ id: "reasoning",
6613
+ value: "max"
6614
+ },
6615
+ {
6616
+ id: "fast",
6617
+ value: "true"
6618
+ }
6619
+ ],
6620
+ displayName: "GPT-5.6 Terra"
5107
6621
  },
5108
6622
  {
5109
6623
  params: [
@@ -5120,7 +6634,7 @@ export const FALLBACK_MODEL_ITEMS = [
5120
6634
  value: "false"
5121
6635
  }
5122
6636
  ],
5123
- displayName: "GPT-5.5"
6637
+ displayName: "GPT-5.6 Terra"
5124
6638
  },
5125
6639
  {
5126
6640
  params: [
@@ -5137,7 +6651,7 @@ export const FALLBACK_MODEL_ITEMS = [
5137
6651
  value: "false"
5138
6652
  }
5139
6653
  ],
5140
- displayName: "GPT-5.5"
6654
+ displayName: "GPT-5.6 Terra"
5141
6655
  },
5142
6656
  {
5143
6657
  params: [
@@ -5154,7 +6668,7 @@ export const FALLBACK_MODEL_ITEMS = [
5154
6668
  value: "false"
5155
6669
  }
5156
6670
  ],
5157
- displayName: "GPT-5.5",
6671
+ displayName: "GPT-5.6 Terra",
5158
6672
  isDefault: true
5159
6673
  },
5160
6674
  {
@@ -5172,7 +6686,7 @@ export const FALLBACK_MODEL_ITEMS = [
5172
6686
  value: "false"
5173
6687
  }
5174
6688
  ],
5175
- displayName: "GPT-5.5"
6689
+ displayName: "GPT-5.6 Terra"
5176
6690
  },
5177
6691
  {
5178
6692
  params: [
@@ -5182,36 +6696,66 @@ export const FALLBACK_MODEL_ITEMS = [
5182
6696
  },
5183
6697
  {
5184
6698
  id: "reasoning",
5185
- value: "extra-high"
6699
+ value: "xhigh"
5186
6700
  },
5187
6701
  {
5188
6702
  id: "fast",
5189
6703
  value: "false"
5190
6704
  }
5191
6705
  ],
5192
- displayName: "GPT-5.5"
6706
+ displayName: "GPT-5.6 Terra"
6707
+ },
6708
+ {
6709
+ params: [
6710
+ {
6711
+ id: "context",
6712
+ value: "1m"
6713
+ },
6714
+ {
6715
+ id: "reasoning",
6716
+ value: "max"
6717
+ },
6718
+ {
6719
+ id: "fast",
6720
+ value: "false"
6721
+ }
6722
+ ],
6723
+ displayName: "GPT-5.6 Terra"
5193
6724
  }
5194
6725
  ]
5195
6726
  },
5196
6727
  {
5197
- id: "grok-4.3",
5198
- displayName: "Grok 4.3",
5199
- aliases: [
5200
- "grok-latest",
5201
- "grok"
5202
- ],
6728
+ id: "grok-4.5",
6729
+ displayName: "Cursor Grok 4.5",
5203
6730
  parameters: [
5204
6731
  {
5205
- id: "context",
5206
- displayName: "Context",
6732
+ id: "effort",
6733
+ displayName: "Effort",
5207
6734
  values: [
5208
6735
  {
5209
- value: "200k",
5210
- displayName: "200K"
6736
+ value: "low",
6737
+ displayName: "Low"
5211
6738
  },
5212
6739
  {
5213
- value: "1m",
5214
- displayName: "1M"
6740
+ value: "medium",
6741
+ displayName: "Medium"
6742
+ },
6743
+ {
6744
+ value: "high",
6745
+ displayName: "High"
6746
+ }
6747
+ ]
6748
+ },
6749
+ {
6750
+ id: "fast",
6751
+ displayName: "Fast",
6752
+ values: [
6753
+ {
6754
+ value: "false"
6755
+ },
6756
+ {
6757
+ value: "true",
6758
+ displayName: "Fast​"
5215
6759
  }
5216
6760
  ]
5217
6761
  }
@@ -5220,71 +6764,87 @@ export const FALLBACK_MODEL_ITEMS = [
5220
6764
  {
5221
6765
  params: [
5222
6766
  {
5223
- id: "context",
5224
- value: "200k"
6767
+ id: "effort",
6768
+ value: "low"
6769
+ },
6770
+ {
6771
+ id: "fast",
6772
+ value: "false"
5225
6773
  }
5226
6774
  ],
5227
- displayName: "Grok 4.3"
6775
+ displayName: "Cursor Grok 4.5"
5228
6776
  },
5229
6777
  {
5230
6778
  params: [
5231
6779
  {
5232
- id: "context",
5233
- value: "1m"
6780
+ id: "effort",
6781
+ value: "low"
6782
+ },
6783
+ {
6784
+ id: "fast",
6785
+ value: "true"
5234
6786
  }
5235
6787
  ],
5236
- displayName: "Grok 4.3",
5237
- isDefault: true
5238
- }
5239
- ]
5240
- },
5241
- {
5242
- id: "grok-build-0.1",
5243
- displayName: "Grok Build 0.1",
5244
- aliases: [
5245
- "grok-build"
5246
- ],
5247
- parameters: [
6788
+ displayName: "Cursor Grok 4.5"
6789
+ },
5248
6790
  {
5249
- id: "context",
5250
- displayName: "Context",
5251
- values: [
6791
+ params: [
5252
6792
  {
5253
- value: "200k",
5254
- displayName: "200K"
6793
+ id: "effort",
6794
+ value: "medium"
5255
6795
  },
5256
6796
  {
5257
- value: "1m",
5258
- displayName: "1M"
6797
+ id: "fast",
6798
+ value: "false"
5259
6799
  }
5260
- ]
5261
- }
5262
- ],
5263
- variants: [
6800
+ ],
6801
+ displayName: "Cursor Grok 4.5"
6802
+ },
5264
6803
  {
5265
6804
  params: [
5266
6805
  {
5267
- id: "context",
5268
- value: "200k"
6806
+ id: "effort",
6807
+ value: "medium"
6808
+ },
6809
+ {
6810
+ id: "fast",
6811
+ value: "true"
5269
6812
  }
5270
6813
  ],
5271
- displayName: "Grok Build 0.1"
6814
+ displayName: "Cursor Grok 4.5"
5272
6815
  },
5273
6816
  {
5274
6817
  params: [
5275
6818
  {
5276
- id: "context",
5277
- value: "1m"
6819
+ id: "effort",
6820
+ value: "high"
6821
+ },
6822
+ {
6823
+ id: "fast",
6824
+ value: "false"
6825
+ }
6826
+ ],
6827
+ displayName: "Cursor Grok 4.5"
6828
+ },
6829
+ {
6830
+ params: [
6831
+ {
6832
+ id: "effort",
6833
+ value: "high"
6834
+ },
6835
+ {
6836
+ id: "fast",
6837
+ value: "true"
5278
6838
  }
5279
6839
  ],
5280
- displayName: "Grok Build 0.1",
6840
+ displayName: "Cursor Grok 4.5",
5281
6841
  isDefault: true
5282
6842
  }
5283
6843
  ]
5284
6844
  },
5285
6845
  {
5286
- id: "kimi-k2.5",
5287
- displayName: "Kimi K2.5",
6846
+ id: "kimi-k2.7-code",
6847
+ displayName: "Kimi K2.7 Code",
5288
6848
  aliases: [
5289
6849
  "kimi-latest",
5290
6850
  "kimi"
@@ -5292,7 +6852,7 @@ export const FALLBACK_MODEL_ITEMS = [
5292
6852
  variants: [
5293
6853
  {
5294
6854
  params: [],
5295
- displayName: "Kimi K2.5",
6855
+ displayName: "Kimi K2.7 Code",
5296
6856
  isDefault: true
5297
6857
  }
5298
6858
  ]