From 6ad9dd66ea299c57f38e3b193fc2a6b1dc2b91ae Mon Sep 17 00:00:00 2001 From: jif-oai Date: Sun, 25 Jan 2026 17:40:11 +0100 Subject: [PATCH] chore: half max number of sub-agents --- codex-rs/core/src/config/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex-rs/core/src/config/mod.rs b/codex-rs/core/src/config/mod.rs index 02fc0121f6f..ca3ccc1ffd0 100644 --- a/codex-rs/core/src/config/mod.rs +++ b/codex-rs/core/src/config/mod.rs @@ -89,7 +89,7 @@ pub use codex_git::GhostSnapshotConfig; /// files are *silently truncated* to this size so we do not take up too much of /// the context window. pub(crate) const PROJECT_DOC_MAX_BYTES: usize = 32 * 1024; // 32 KiB -pub(crate) const DEFAULT_AGENT_MAX_THREADS: Option = Some(12); +pub(crate) const DEFAULT_AGENT_MAX_THREADS: Option = Some(6); pub const CONFIG_TOML_FILE: &str = "config.toml";