From 443ffb73737607ecf3fc729a76fc30f64e65e69b Mon Sep 17 00:00:00 2001 From: Trevor Creech Date: Wed, 16 Apr 2025 10:44:19 -0700 Subject: [PATCH] update summary to auto (#1) --- codex-cli/src/utils/agent/agent-loop.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex-cli/src/utils/agent/agent-loop.ts b/codex-cli/src/utils/agent/agent-loop.ts index 5cd1d7b4..97fc4edc 100644 --- a/codex-cli/src/utils/agent/agent-loop.ts +++ b/codex-cli/src/utils/agent/agent-loop.ts @@ -488,7 +488,7 @@ export class AgentLoop { reasoning = { effort: "high" }; if (this.model === "o3-mini" || this.model === "o4-mini") { // @ts-expect-error waiting for API type update - reasoning.summary = "detailed"; + reasoning.summary = "auto"; } } const mergedInstructions = [prefix, this.instructions]