From 738582d958c3da9372881116091874b67dd66465 Mon Sep 17 00:00:00 2001 From: Trevor Creech Date: Wed, 16 Apr 2025 09:58:44 -0700 Subject: [PATCH] update summary to auto --- 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 a0f746a4291..3d6a3209806 100644 --- a/codex-cli/src/utils/agent/agent-loop.ts +++ b/codex-cli/src/utils/agent/agent-loop.ts @@ -490,7 +490,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]