fix: add missing comma and type annotation for temperature param

This commit is contained in:
Re-bin 2026-02-14 01:13:49 +00:00
parent 9a83301ea6
commit 2f2c55f921

View File

@ -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,