From 8660f9911b41d5ddc4ce52d889db404098e45c10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9on=20Avic=20Simmons?= Date: Sun, 20 Sep 2026 13:39:37 -0400 Subject: [PATCH] docs: fix 2 issues in sandbox_agent.py --- os_computer_use/sandbox_agent.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/os_computer_use/sandbox_agent.py b/os_computer_use/sandbox_agent.py index 91e4bd0..da890b8 100644 --- a/os_computer_use/sandbox_agent.py +++ b/os_computer_use/sandbox_agent.py @@ -101,7 +101,7 @@ def run_background_command(self, command): @tool( description="Send a key or combination of keys to the system.", - params={"name": "Key or combination (e.g. 'Return', 'Ctl-C')"}, + params={"name": "Key or combination (e.g. 'Return', 'Ctrl-C')"}, ) def send_key(self, name): self.sandbox.press(name) @@ -121,7 +121,7 @@ def click_element(self, query, click_command, action_name="click"): position = grounding_model.call(query, self.latest_screenshot) dot_image = draw_big_dot(Image.open(self.latest_screenshot), position) filepath = self.save_image(dot_image, "location") - logger.log(f"{action_name} {filepath})", "gray") + logger.log(f"{action_name} {filepath}", "gray") x, y = position self.sandbox.move_mouse(x, y)