From 52bd7f66607edfdb74da15e3c518cc4c8d55fa3e Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Mon, 11 Aug 2025 15:08:58 -0700 Subject: [PATCH 1/2] fix: change the model used with the GitHub action from o3 to gpt-5 (#2198) `gpt-5` has been a valid slug since https://github.com/openai/codex/pull/1942. --- .github/codex/home/config.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/codex/home/config.toml b/.github/codex/home/config.toml index bb1b362bb6..8e800ca068 100644 --- a/.github/codex/home/config.toml +++ b/.github/codex/home/config.toml @@ -1,3 +1,3 @@ -model = "o3" +model = "gpt-5" # Consider setting [mcp_servers] here! From a658bc29a75d1c440df4a1751b5c569350af27ad Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Mon, 11 Aug 2025 15:43:02 -0700 Subject: [PATCH 2/2] fix: remove unused import in release mode --- codex-rs/tui/src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex-rs/tui/src/app.rs b/codex-rs/tui/src/app.rs index 4a0adb8de7..e3290e10a8 100644 --- a/codex-rs/tui/src/app.rs +++ b/codex-rs/tui/src/app.rs @@ -11,7 +11,6 @@ use crate::slash_command::SlashCommand; use crate::tui; use codex_core::config::Config; use codex_core::protocol::Event; -use codex_core::protocol::EventMsg; use codex_core::protocol::Op; use color_eyre::eyre::Result; use crossterm::SynchronizedUpdate; @@ -383,6 +382,7 @@ impl App<'_> { } #[cfg(debug_assertions)] SlashCommand::TestApproval => { + use codex_core::protocol::EventMsg; use std::collections::HashMap; use codex_core::protocol::ApplyPatchApprovalRequestEvent;