Renamed action from mouse_move to mouse

This commit is contained in:
Dillon DuPont
2025-07-29 15:05:45 -04:00
parent c981d5d264
commit 6e28da7213

View File

@@ -326,13 +326,13 @@ def _convert_responses_items_to_completion_messages(messages: Messages) -> List[
"text": "+".join(action.get("keys", []))
}
})
elif action_type == "mouse_move":
elif action_type in ["mouse_move", "move"]:
# Input:
# {
# "type": "computer_call",
# "call_id": "call_1",
# "action": {
# "type": "mouse_move",
# "type": "move",
# "x": 150,
# "y": 250
# }