Spaces:
Sleeping
Sleeping
File size: 812 Bytes
498ffec |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
USER_INSTRUCTION = """## User Instruction
{intent}
"""
TRAJECTORY = """## Trajectory
{trajectory}"""
AGENT_RESPONSE = """## Agent's Response
THOUGHT: {thought}
ACTION: {action}
"""
CHECKLIST = """## Checklist
{checklist}
"""
# Observation
CURRENT_URL = """### Current URL
{current_url}
"""
TEXT_OBSERVATION = """### AXTREE
Note: [bid] is the unique alpha-numeric identifier at the beginning of lines for each element in the AXTree. Always use bid to refer to elements in your actions.
{text_observation}
"""
SOM_IMAGE_OBSERVATION = """### SOM Image Screenshot
Here is a current image screenshot of the page, it is annotated with bounding boxes and corresponding bids:
<IMAGE_PLACEHOLDER>
"""
COORD_IMAGE_OBSERVATION = """### Raw Image Screenshot
Here is a screenshot of the page:
<IMAGE_PLACEHOLDER>
"""
|