From bdebcc9090c9e9468686f1a73bde1b52649e9819 Mon Sep 17 00:00:00 2001 From: richard Date: Wed, 14 Jan 2026 13:02:40 -0800 Subject: [PATCH] fix undefined variable in cli app --- gui_agents/s3/cli_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui_agents/s3/cli_app.py b/gui_agents/s3/cli_app.py index ccfe880b..12ee623b 100644 --- a/gui_agents/s3/cli_app.py +++ b/gui_agents/s3/cli_app.py @@ -378,7 +378,7 @@ def main(): # handle query from command line if isinstance(task, str) and task.strip(): agent.reset() - run_agent(agent, query, scaled_width, scaled_height) + run_agent(agent, task, scaled_width, scaled_height) return while True: