mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-02 18:50:24 +00:00
fix false negative (#697)
This commit is contained in:
parent
ed79bf40f2
commit
ea21f9ebe9
1 changed files with 3 additions and 2 deletions
|
@ -9,8 +9,9 @@ If you see a popup in the page screenshot, prioritize actions on the popup.
|
||||||
|
|
||||||
Reply in JSON format with the following keys:
|
Reply in JSON format with the following keys:
|
||||||
{
|
{
|
||||||
"user_goal_achieved": str, // A string that describes if user goal has been completed with reasoning.
|
"user_goal_stage": str, // A string to describe the reasoning whether user goal has been achieved or not.
|
||||||
"action_plan": str, // A string that describes the plan of actions you're going to take. Be specific and to the point. Use this as a quick summary of the actions you're going to take, and what order you're going to take them in, and how that moves you towards your overall goal. Output "COMPLETE" action in the "actions" if user goal has been achieved.
|
"user_goal_achieved": bool, // True if the user goal has been completed, otherwise False.
|
||||||
|
"action_plan": str, // A string that describes the plan of actions you're going to take. Be specific and to the point. Use this as a quick summary of the actions you're going to take, and what order you're going to take them in, and how that moves you towards your overall goal. Output "COMPLETE" action in the "actions" if user_goal_achieved is True.
|
||||||
"actions": array // An array of actions. Here's the format of each action:
|
"actions": array // An array of actions. Here's the format of each action:
|
||||||
[{
|
[{
|
||||||
"reasoning": str, // The reasoning behind the action. Be specific, referencing any user information and their fields and element ids in your reasoning. Mention why you chose the action type, and why you chose the element id. Keep the reasoning short and to the point.
|
"reasoning": str, // The reasoning behind the action. Be specific, referencing any user information and their fields and element ids in your reasoning. Mention why you chose the action type, and why you chose the element id. Keep the reasoning short and to the point.
|
||||||
|
|
Loading…
Add table
Reference in a new issue