summaryrefslogtreecommitdiff
path: root/internal/llm/provider_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/llm/provider_test.go')
-rw-r--r--internal/llm/provider_test.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/internal/llm/provider_test.go b/internal/llm/provider_test.go
index 2c0d69c..8c5d2cb 100644
--- a/internal/llm/provider_test.go
+++ b/internal/llm/provider_test.go
@@ -1,7 +1,6 @@
package llm
import (
- "context"
"testing"
)
@@ -20,10 +19,3 @@ func TestNewFromConfig_DefaultsAndErrors(t *testing.T) {
}
}
-type fakeClientMin struct{}
-
-func (fakeClientMin) Chat(context.Context, []Message, ...RequestOption) (string, error) {
- return "", nil
-}
-func (fakeClientMin) Name() string { return "x" }
-func (fakeClientMin) DefaultModel() string { return "m" }