summaryrefslogtreecommitdiff
path: root/internal/llm
diff options
context:
space:
mode:
Diffstat (limited to 'internal/llm')
-rw-r--r--internal/llm/ollama.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/internal/llm/ollama.go b/internal/llm/ollama.go
index 50e9837..c465723 100644
--- a/internal/llm/ollama.go
+++ b/internal/llm/ollama.go
@@ -57,7 +57,6 @@ func newOllama(baseURL, model string, defaultTemp *float64) Client {
}
}
-// TODO: This function is too long and should be refactored for readability and maintainability.
func (c ollamaClient) Chat(ctx context.Context, messages []Message, opts ...RequestOption) (string, error) {
o := Options{Model: c.defaultModel}
for _, opt := range opts {