diff --git a/crates/goose/src/providers/chatgpt_codex.rs b/crates/goose/src/providers/chatgpt_codex.rs index 4bdc8c5802..3cbb68e31c 100644 --- a/crates/goose/src/providers/chatgpt_codex.rs +++ b/crates/goose/src/providers/chatgpt_codex.rs @@ -45,7 +45,7 @@ const OAUTH_TIMEOUT_SECS: u64 = 300; const HTML_AUTO_CLOSE_TIMEOUT_MS: u64 = 2000; const CHATGPT_CODEX_PROVIDER_NAME: &str = "chatgpt_codex"; -pub const CHATGPT_CODEX_DEFAULT_MODEL: &str = "gpt-5.3-codex"; +pub const CHATGPT_CODEX_DEFAULT_MODEL: &str = "gpt-5.5"; #[derive(Debug)] pub struct ChatGptCodexModelAttrs { @@ -54,6 +54,10 @@ pub struct ChatGptCodexModelAttrs { } pub const CHATGPT_CODEX_KNOWN_MODELS: &[ChatGptCodexModelAttrs] = &[ + ChatGptCodexModelAttrs { + name: "gpt-5.5", + reasoning_levels: &["low", "medium", "high", "xhigh"], + }, ChatGptCodexModelAttrs { name: "gpt-5.4", reasoning_levels: &["low", "medium", "high", "xhigh"],