From 040ecee7154556924e3b66b4b52253a51afc731f Mon Sep 17 00:00:00 2001 From: jif-oai Date: Thu, 5 Feb 2026 13:51:53 +0000 Subject: [PATCH] Update explorer role default model (#10748) Summary - switch the explorer role in core agent configuration to use `gpt-5.1-codex-mini` as the default model override - leave other role defaults untouched Testing - Not run (not requested) --- codex-rs/core/src/agent/role.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex-rs/core/src/agent/role.rs b/codex-rs/core/src/agent/role.rs index 76e3a373e..74eca4179 100644 --- a/codex-rs/core/src/agent/role.rs +++ b/codex-rs/core/src/agent/role.rs @@ -8,7 +8,7 @@ use serde::Serialize; const ORCHESTRATOR_PROMPT: &str = include_str!("../../templates/agents/orchestrator.md"); /// Default model override used. // TODO(jif) update when we have something smarter. -const EXPLORER_MODEL: &str = "gpt-5.2-codex"; +const EXPLORER_MODEL: &str = "gpt-5.1-codex-mini"; /// Enumerated list of all supported agent roles. const ALL_ROLES: [AgentRole; 3] = [