Files
Dorod-Sky/skyvern/forge/prompts/skyvern/check-evaluation-goal.j2
2025-02-20 15:21:08 +08:00

21 lines
797 B
Django/Jinja

You're provided with a user goal. You need to help analysing the goal.
MAKE SURE YOU OUTPUT VALID JSON. No text before or after JSON, no trailing commas, no comments (//), no unnecessary quotes, etc.
Reply in JSON format with the following keys:
{
"thought": str, // Think step by step. Describe your thought in thi field.
"is_booking": bool, // True if the goal is to book something, including room, flight and so on.
"is_including_date": bool, // True if the goal includes date information.
"tweaked_user_goal": str, // If is_booking is True and is_including_date is True, repick a date within the next two months to replace the orignal date in the goal. Otherwise, return the orignal user goal.
}
User goal
```
{{ user_goal }}
```
Current datetime, ISO format:
```
{{ local_datetime }}
```