summaryrefslogtreecommitdiff
path: root/internal/llm
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-05-01 15:07:16 +0300
committerPaul Buetow <paul@buetow.org>2026-05-01 15:07:16 +0300
commit7fcd1f38a344e1c55dbd65c5afed9e94b6ab41b7 (patch)
treef126b0d4d4e457181fa595b6caa96d839ed794df /internal/llm
parenta7ff3cfce4eb8358b2b4ff02bc2d75f436194d08 (diff)
Bump version to 0.38.2v0.38.2
Switch default Ollama Cloud model from kimi-k2.6 to gemma4. 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 987a258..d257ea2 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 = "kimi-k2.6"
+ model = "gemma4"
}
if timeoutSec <= 0 {
timeoutSec = 30