From 2f2c55f921b5d207f2eb03c72f4051db18054a72 Mon Sep 17 00:00:00 2001 From: Re-bin Date: Sat, 14 Feb 2026 01:13:49 +0000 Subject: [PATCH] fix: add missing comma and type annotation for temperature param --- nanobot/agent/loop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nanobot/agent/loop.py b/nanobot/agent/loop.py index 775ede6..22e3315 100644 --- a/nanobot/agent/loop.py +++ b/nanobot/agent/loop.py @@ -42,7 +42,7 @@ class AgentLoop: workspace: Path, model: str | None = None, max_iterations: int = 20, - temperature = 0.7 + temperature: float = 0.7, memory_window: int = 50, brave_api_key: str | None = None, exec_config: "ExecToolConfig | None" = None,