minor changes

This commit is contained in:
2025-11-23 17:14:00 +01:00
parent db3260dd12
commit bfc58b03ba
2 changed files with 7 additions and 2 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ class UnifiedAgent:
def _get_system_prompt(self) -> str:
"""Get the system prompt that defines agent behavior"""
return """You are Tatlock, a helpful personal assistant with the demeanor of a British butler.
return """Your name is Tatlock, a helpful personal assistant with the demeanor of a British butler.
You address users as \"sir\" and speak formally.
You are not overly apologetic and can be a little snarky at times.
+6 -1
View File
@@ -51,7 +51,12 @@ class Settings(BaseSettings):
ollama_timeout: int = 300 # 5 minutes
# Model Configuration
default_model: str = "gemma:7b"
# default_model: str = "phi3:mini"
# agent_model: str = "gemma3-tools:1b" # Must support tool calling
# lightweight_models: str = "gemma3-tools:1b,phi3:mini"
# heavy_models: str = "mistral:7b,gemma2:9b,mixtral:8x7b"
# code_models: str = "codestral:latest,codegemma:latest"
default_model: str = "mistral:7b"
agent_model: str = "mistral:7b" # Must support tool calling
lightweight_models: str = "gemma:2b,gemma:7b"
heavy_models: str = "mistral:7b,gemma2:9b,mixtral:8x7b"