From 0df382405142801e5380127f77c84c8c5e1510ea Mon Sep 17 00:00:00 2001 From: Octopus Date: Mon, 6 Apr 2026 12:16:03 +0800 Subject: [PATCH] fix: remove reasoning summary that requires OpenAI org verification (fixes #12030) The reasoning.summary: 'auto' parameter requires OpenAI organization verification to generate reasoning summaries. This caused a 400 error for users with unverified organizations when using o3 and other OpenAI reasoning models through the Responses API. --- core/llm/llms/OpenAI.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/core/llm/llms/OpenAI.ts b/core/llm/llms/OpenAI.ts index 179c6eef045..a11e6e20840 100644 --- a/core/llm/llms/OpenAI.ts +++ b/core/llm/llms/OpenAI.ts @@ -332,7 +332,6 @@ class OpenAI extends BaseLLM { top_p: options.topP ?? null, reasoning: { effort: "medium", - summary: "auto", }, include: ["reasoning.encrypted_content"], };