mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-13 08:15:14 +02:00
chore: verify claude-code v1 closure
This commit is contained in:
parent
daca268fa8
commit
7b602d3117
1 changed files with 2 additions and 1 deletions
|
|
@ -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}`,
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue