diff options
Diffstat (limited to 'internal/llm/ollama.go')
| -rw-r--r-- | internal/llm/ollama.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/llm/ollama.go b/internal/llm/ollama.go index 83823bc..92fece8 100644 --- a/internal/llm/ollama.go +++ b/internal/llm/ollama.go @@ -28,7 +28,8 @@ type ollamaClient struct { defaultTemperature *float64 } -// Ensure ollamaClient implements Client and Streamer. +// Ensure ollamaClient implements Client and Streamer. All of its methods use +// value receivers, so the assertions use a zero-value struct (not a pointer). var ( _ Client = ollamaClient{} _ Streamer = ollamaClient{} |
