summaryrefslogtreecommitdiff
path: root/internal/llm
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-05-01 15:11:21 +0300
committerPaul Buetow <paul@buetow.org>2026-05-01 15:11:21 +0300
commitd9184a5bfdc39d40232cb0d66a350daffcd7a326 (patch)
treea7cd8054eccf8c497f06d0b551077a2d90906b8c /internal/llm
parent7fcd1f38a344e1c55dbd65c5afed9e94b6ab41b7 (diff)
Bump version to 0.38.3v0.38.3
Correct default Ollama Cloud model to gemma4:31b-cloud (bare gemma4 tag returns 404 on Ollama Cloud; the hosted cloud model requires the explicit :31b-cloud tag). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'internal/llm')
-rw-r--r--internal/llm/ollama.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/llm/ollama.go b/internal/llm/ollama.go
index d257ea2..98e5dce 100644
--- a/internal/llm/ollama.go
+++ b/internal/llm/ollama.go
@@ -73,7 +73,7 @@ func newOllamaWithTimeout(baseURL, model, apiKey string, defaultTemp *float64, t
baseURL = "https://ollama.com"
}
if strings.TrimSpace(model) == "" {
- model = "gemma4"
+ model = "gemma4:31b-cloud"
}
if timeoutSec <= 0 {
timeoutSec = 30