Files
Dorod-Sky/skyvern/forge/prompts/skyvern/check-evaluation-goal.j2
Asher Foa 39f0f364f0 Fix typos in prompts (#2855)
Co-authored-by: Shuchang Zheng <wintonzheng0325@gmail.com>
2025-09-04 21:31:03 -07:00

21 lines
800 B
Django/Jinja

You're provided with a user goal. You need to help analyzing 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 this 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 original date in the goal. Otherwise, return the original user goal.
}
User goal
```
{{ user_goal }}
```
Current datetime, ISO format:
```
{{ local_datetime }}
```