From 926f30d044eef6c4a882aff8756084bf7749579e Mon Sep 17 00:00:00 2001 From: Kujtim Hoxha Date: Wed, 6 Aug 2025 12:14:30 +0200 Subject: [PATCH] chore: remove cache from prefix --- internal/llm/provider/anthropic.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/internal/llm/provider/anthropic.go b/internal/llm/provider/anthropic.go index 23fa331a0849940460b432d3c34d53fa9194e923..6b655f7f7741a658ea3e7108e1fba0032c95e563 100644 --- a/internal/llm/provider/anthropic.go +++ b/internal/llm/provider/anthropic.go @@ -253,9 +253,6 @@ func (a *anthropicClient) preparedMessages(messages []anthropic.MessageParam, to if a.providerOptions.systemPromptPrefix != "" { systemBlocks = append(systemBlocks, anthropic.TextBlockParam{ Text: a.providerOptions.systemPromptPrefix, - CacheControl: anthropic.CacheControlEphemeralParam{ - Type: "ephemeral", - }, }) }