fix: lower default temperature from 0.7 to 0.1

This commit is contained in:
Re-bin
2026-02-23 08:24:53 +00:00
parent e69ff8ac0e
commit 491739223d
2 changed files with 2 additions and 2 deletions

View File

@@ -50,7 +50,7 @@ class AgentLoop:
workspace: Path, workspace: Path,
model: str | None = None, model: str | None = None,
max_iterations: int = 20, max_iterations: int = 20,
temperature: float = 0.7, temperature: float = 0.1,
max_tokens: int = 4096, max_tokens: int = 4096,
memory_window: int = 50, memory_window: int = 50,
brave_api_key: str | None = None, brave_api_key: str | None = None,

View File

@@ -187,7 +187,7 @@ class AgentDefaults(Base):
workspace: str = "~/.nanobot/workspace" workspace: str = "~/.nanobot/workspace"
model: str = "anthropic/claude-opus-4-5" model: str = "anthropic/claude-opus-4-5"
max_tokens: int = 8192 max_tokens: int = 8192
temperature: float = 0.7 temperature: float = 0.1
max_tool_iterations: int = 20 max_tool_iterations: int = 20
memory_window: int = 50 memory_window: int = 50