mirror of
https://github.com/openai/codex.git
synced 2026-04-30 09:26:44 +00:00
Migrate codex max (#7566)
- make codex max the default - fix: we were doing some async work in sync function which caused tui to panic
This commit is contained in:
@@ -30,7 +30,12 @@ async fn list_models_returns_chatgpt_models() -> Result<()> {
|
||||
}
|
||||
|
||||
fn expected_models_for_api_key() -> Vec<ModelPreset> {
|
||||
vec![gpt_5_1_codex(), gpt_5_1_codex_mini(), gpt_5_1()]
|
||||
vec![
|
||||
gpt_5_1_codex_max(),
|
||||
gpt_5_1_codex(),
|
||||
gpt_5_1_codex_mini(),
|
||||
gpt_5_1(),
|
||||
]
|
||||
}
|
||||
|
||||
fn expected_models_for_chatgpt() -> Vec<ModelPreset> {
|
||||
|
||||
Reference in New Issue
Block a user