summaryrefslogtreecommitdiff
path: root/internal/llm
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-08-19 21:28:49 +0300
committerPaul Buetow <paul@buetow.org>2025-08-19 21:28:49 +0300
commit041196eab701b7a7ac79baf486a7c11fc11913e3 (patch)
tree9e90d860eedae85a8d7030f1017844e5dcbba186 /internal/llm
parenta58afd061db45678fcf299c3d42f80656ce7e225 (diff)
chore: commit pending changes in status, LSP, and Ollama modules
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 {