chore: verify claude-code v1 closure

This commit is contained in:
Andrey Avtomonov 2026-05-15 16:36:24 +02:00
parent daca268fa8
commit 7b602d3117

View file

@ -11,7 +11,8 @@ export function ignoredClaudeCodePromptCachingFields(config: KtxProjectLlmConfig
if (config.provider.backend !== 'claude-code' || !config.promptCaching) {
return [];
}
return CLAUDE_CODE_IGNORED_PROMPT_CACHING_FIELDS.filter((key) => key in config.promptCaching).map(
const promptCaching = config.promptCaching;
return CLAUDE_CODE_IGNORED_PROMPT_CACHING_FIELDS.filter((key) => key in promptCaching).map(
(key) => `llm.promptCaching.${key}`,
);
}