summaryrefslogtreecommitdiff
path: root/internal/llm
diff options
context:
space:
mode:
Diffstat (limited to 'internal/llm')
-rw-r--r--internal/llm/ollama.go7
-rw-r--r--internal/llm/provider.go2
2 files changed, 6 insertions, 3 deletions
diff --git a/internal/llm/ollama.go b/internal/llm/ollama.go
index 0916c06..987a258 100644
--- a/internal/llm/ollama.go
+++ b/internal/llm/ollama.go
@@ -66,11 +66,14 @@ func newOllama(baseURL, model string, defaultTemp *float64, apiKey string) Clien
}
func newOllamaWithTimeout(baseURL, model, apiKey string, defaultTemp *float64, timeoutSec int) Client {
+ // Defaults target Ollama Cloud (ollama.ai); a local server is opted into
+ // by setting base_url = "http://localhost:11434" (or HEXAI_OLLAMA_BASE_URL)
+ // and an appropriate model.
if strings.TrimSpace(baseURL) == "" {
- baseURL = "http://localhost:11434"
+ baseURL = "https://ollama.com"
}
if strings.TrimSpace(model) == "" {
- model = "qwen3-coder:30b-a3b-q4_K_M"
+ model = "kimi-k2.6"
}
if timeoutSec <= 0 {
timeoutSec = 30
diff --git a/internal/llm/provider.go b/internal/llm/provider.go
index 255297c..d1ff404 100644
--- a/internal/llm/provider.go
+++ b/internal/llm/provider.go
@@ -152,7 +152,7 @@ func RegisterAllProviders() {
func NewFromConfig(cfg Config, openAIAPIKey, openRouterAPIKey, anthropicAPIKey, ollamaAPIKey string) (Client, error) {
provider := normalizeProvider(cfg.Provider)
if provider == "" {
- provider = "openai"
+ provider = "ollama"
}
factory, ok := lookupProviderFactory(provider)