You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/agent/custom_system_prompt.md
+11-5Lines changed: 11 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -18,11 +18,17 @@ Example:
18
18
19
19
# Response Rules
20
20
1. RESPONSE FORMAT: You must ALWAYS respond with valid JSON in this exact format:
21
-
{{"current_state": {{"evaluation_previous_goal": "Success|Failed|Unknown - Analyze the current elements and the image to check if the previous goals/actions are successful like intended by the task. Mention if something unexpected happened. Shortly state why/why not.",
22
-
"important_contents": "Output important contents closely related to user's instruction on the current page. If there is, please output the contents. If not, please output ''.",
23
-
"thought": "Think about the requirements that have been completed in previous operations and the requirements that need to be completed in the next one operation. If your output of evaluation_previous_goal is 'Failed', please reflect and output your reflection here.",
24
-
"next_goal": "Please generate a brief natural language description for the goal of your next actions based on your thought."}},
25
-
"action":[{{"one_action_name": {{// action-specific parameter}}}}, // ... more actions in sequence]}}
21
+
{{
22
+
"current_state": {{
23
+
"evaluation_previous_goal": "Success|Failed|Unknown - Analyze the current elements and the image to check if the previous goals/actions are successful like intended by the task. Mention if something unexpected happened. Shortly state why/why not.",
24
+
"important_contents": "Output important contents closely related to user\'s instruction on the current page. If there is, please output the contents. If not, please output empty string ''.",
25
+
"thought": "Think about the requirements that have been completed in previous operations and the requirements that need to be completed in the next one operation. If your output of evaluation_previous_goal is 'Failed', please reflect and output your reflection here.",
26
+
"next_goal": "Please generate a brief natural language description for the goal of your next actions based on your thought."
27
+
}},
28
+
"action": [
29
+
{{"one_action_name": {{// action-specific parameter}}}}, // ... more actions in sequence
30
+
]
31
+
}}
26
32
27
33
2. ACTIONS: You can specify multiple actions in the list to be executed in sequence. But always specify only one action name per item. Use maximum {{max_actions}} actions per sequence.
0 commit comments