From 384b42ab0336aa12de0b025a46a733896c581c33 Mon Sep 17 00:00:00 2001 From: tocmo0nlord Date: Thu, 14 May 2026 13:31:22 +0000 Subject: [PATCH] Switch default Ollama model to activeblue-chat (fine-tuned Llama 3.1 8B) --- agent_service/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent_service/config.py b/agent_service/config.py index 508061e..a06e463 100644 --- a/agent_service/config.py +++ b/agent_service/config.py @@ -13,7 +13,7 @@ class Settings(BaseSettings): # Ollama ollama_url: str = 'http://localhost:11434' - ollama_model: str = 'llama3' + ollama_model: str = 'activeblue-chat' ollama_timeout: int = 120 ollama_max_concurrent: int = 2