From 027137ce591e216cbb45c9208945c409d5d3c2f8 Mon Sep 17 00:00:00 2001 From: Michael Neale Date: Mon, 18 May 2026 11:17:12 +1000 Subject: [PATCH] feat(chatgpt_codex): add gpt-5.5 to known models (#9292) Signed-off-by: Michael Neale --- crates/goose/src/providers/chatgpt_codex.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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"],