feat(chatgpt_codex): add gpt-5.5 to known models (#9292)

Signed-off-by: Michael Neale <michael.neale@gmail.com>
This commit is contained in:
Michael Neale
2026-05-18 11:17:12 +10:00
committed by GitHub
parent 7cfc4410a8
commit 027137ce59
+5 -1
View File
@@ -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"],