| [ | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "click", | |
| "description": "Click on a specific location on the screen", | |
| "parameters": { | |
| "type": "object", | |
| "properties": { | |
| "x": { | |
| "type": "integer", | |
| "description": "Coordinate on the x axis to click." | |
| }, | |
| "y": { | |
| "type": "integer", | |
| "description": "Coordinate on the y axis to click." | |
| } | |
| }, | |
| "required": [ | |
| "x", | |
| "y" | |
| ] | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "long_press", | |
| "description": "Long press on a specific location on the screen.", | |
| "parameters": { | |
| "type": "object", | |
| "properties": { | |
| "x": { | |
| "type": "integer", | |
| "description": "Coordinate on the x axis to long press." | |
| }, | |
| "y": { | |
| "type": "integer", | |
| "description": "Coordinate on the y axis to long press." | |
| } | |
| }, | |
| "required": [ | |
| "x", | |
| "y" | |
| ] | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "input_text", | |
| "description": "Write text inside of an already selected text field, typically this is preceeded by a 'click' action that selects a field on the screen to type into.", | |
| "parameters": { | |
| "type": "object", | |
| "properties": { | |
| "text": { | |
| "type": "string", | |
| "description": "The text to input in the field." | |
| } | |
| }, | |
| "required": [ | |
| "text" | |
| ] | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "swipe", | |
| "description": "Apply a swipe gesture to the screen, based on the provided touch and lift coordinates.", | |
| "parameters": { | |
| "type": "object", | |
| "properties": { | |
| "touch_x": { | |
| "type": "integer", | |
| "description": "The x-coordinate where the swipe gesture starts." | |
| }, | |
| "touch_y": { | |
| "type": "integer", | |
| "description": "The y-coordinate where the swipe gesture starts." | |
| }, | |
| "lift_x": { | |
| "type": "integer", | |
| "description": "The x-coordinate where the swipe gesture ends." | |
| }, | |
| "lift_y": { | |
| "type": "integer", | |
| "description": "The y-coordinate where the swipe gesture ends." | |
| } | |
| }, | |
| "required": [ | |
| "touch_x", | |
| "touch_y", | |
| "lift_x", | |
| "lift_y" | |
| ] | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "navigate_home", | |
| "description": "Navigate to the home screen from the current screen you are on.", | |
| "parameters": { | |
| "type": "object", | |
| "properties": {} | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "navigate_back", | |
| "description": "Navigate back to the previous page.", | |
| "parameters": { | |
| "type": "object", | |
| "properties": {} | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "open_app", | |
| "description": "Open an application.", | |
| "parameters": { | |
| "type": "object", | |
| "properties": { | |
| "app_name": { | |
| "type": "string", | |
| "description": "The name of the application to open." | |
| } | |
| }, | |
| "required": [ | |
| "app_name" | |
| ] | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "wait", | |
| "description": "Wait for a fixed amount of time. This is useful when you need to 'await' the results of a page that is still loading.", | |
| "parameters": { | |
| "type": "object", | |
| "properties": {} | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "status", | |
| "description": "Once you have completed the work required to fulfill an instruction, report your status by calling this function with 'successful'. If you find that a task is impossible to complete, call this with 'infeasible' after finding that information.", | |
| "parameters": { | |
| "type": "object", | |
| "properties": { | |
| "goal_status": { | |
| "type": "string", | |
| "enum": [ | |
| "successful", | |
| "infeasible" | |
| ], | |
| "description": "The status of the completion of a instruction, either 'successful' or 'infeasible', called to conclude an episode." | |
| } | |
| }, | |
| "required": [ | |
| "goal_status" | |
| ] | |
| } | |
| } | |
| } | |
| ] | |