fix(chatCore): remove explicit any from comment to pass t11 budget check

This commit is contained in:
zenobit
2026-04-01 00:44:10 +02:00
parent b6d4442800
commit e7d978e027

View File

@@ -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 };