diff --git a/v2/anthropic/cache_test.go b/v2/anthropic/cache_test.go index 16d6439..c44c5cb 100644 --- a/v2/anthropic/cache_test.go +++ b/v2/anthropic/cache_test.go @@ -4,7 +4,6 @@ import ( "testing" "gitea.stevedudenhoeffer.com/steve/go-llm/v2/provider" - anth "github.com/liushuangls/go-anthropic/v2" ) // TestBuildRequest_MultiSystemUsedWhenSystemPresent verifies that after the @@ -79,6 +78,4 @@ func TestBuildRequest_NoSystemMessage(t *testing.T) { if anthReq.System != "" { t.Errorf("expected empty System string, got %q", anthReq.System) } - // Silences the unused import warning in this file until Task 5. - _ = anth.CacheControlTypeEphemeral }