chore: remove cache from prefix

Kujtim Hoxha created

Change summary

internal/llm/provider/anthropic.go | 3 ---
1 file changed, 3 deletions(-)

Detailed changes

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",
-			},
 		})
 	}