From e7d978e0273473a4c40b6245173fdad409c3416e Mon Sep 17 00:00:00 2001 From: zenobit Date: Wed, 1 Apr 2026 00:44:10 +0200 Subject: [PATCH] fix(chatCore): remove explicit any from comment to pass t11 budget check --- open-sse/handlers/chatCore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/open-sse/handlers/chatCore.ts b/open-sse/handlers/chatCore.ts index d8a46133d3..a090bf132b 100644 --- a/open-sse/handlers/chatCore.ts +++ b/open-sse/handlers/chatCore.ts @@ -712,7 +712,7 @@ export async function handleChatCore({ log?.debug?.("FORMAT", "native codex passthrough enabled"); } else if (isClaudePassthrough && preserveCacheControl) { // Pure passthrough: when preserveCacheControl is true, forward the body - // as-is without any normalization. The OpenAI round-trip would strip + // as-is without normalization. The OpenAI round-trip would strip // cache_control markers; even prepareClaudeRequest can alter structure. // Claude Code sends well-formed Messages API payloads — trust it. translatedBody = { ...body };