From b584dc85b0f3e3a3f9250413514167d5226f28a7 Mon Sep 17 00:00:00 2001 From: Shuchang Zheng Date: Sun, 13 Apr 2025 00:34:50 -0700 Subject: [PATCH] cua move action better reasoning (#2145) --- skyvern/webeye/actions/parse_actions.py | 1 + 1 file changed, 1 insertion(+) diff --git a/skyvern/webeye/actions/parse_actions.py b/skyvern/webeye/actions/parse_actions.py index 4017abd1..3ef46893 100644 --- a/skyvern/webeye/actions/parse_actions.py +++ b/skyvern/webeye/actions/parse_actions.py @@ -283,6 +283,7 @@ async def parse_cua_actions( intention=reasoning, ) case "move": + reasoning = reasoning or f"Move mouse to: ({cua_action.x}, {cua_action.y})" action = MoveAction( x=cua_action.x, y=cua_action.y,