From d5ee8f3e554c9340dd243121b19ce30229571625 Mon Sep 17 00:00:00 2001 From: Devin <99658722+DeeJ4yNg@users.noreply.github.com> Date: Thu, 5 Feb 2026 10:45:36 +0800 Subject: [PATCH] Update context.py Add doc string. --- nanobot/agent/context.py | 1 + 1 file changed, 1 insertion(+) diff --git a/nanobot/agent/context.py b/nanobot/agent/context.py index 3c95b66..16c7769 100644 --- a/nanobot/agent/context.py +++ b/nanobot/agent/context.py @@ -106,6 +106,7 @@ Always be helpful, accurate, and concise. When using tools, explain what you're When remembering something, write to {workspace_path}/memory/MEMORY.md""" def _get_runtime_environment_summary(self) -> str: + """Get runtime environment information.""" system = platform.system() system_map = {"Darwin": "MacOS", "Windows": "Windows", "Linux": "Linux"} system_label = system_map.get(system, system)