Spaces:
Sleeping
Sleeping
Update prompts.yaml
Browse files- prompts.yaml +7 -0
prompts.yaml
CHANGED
|
@@ -71,9 +71,16 @@ system_prompt: |
|
|
| 71 |
final_answer(final_catalogue)
|
| 72 |
```
|
| 73 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 74 |
REMEMBER:
|
| 75 |
• Extract destination, dates, origin, budget from user query
|
| 76 |
• Use actual attraction names from web_search results
|
| 77 |
• Keep all queries short and specific
|
| 78 |
• If web_search returns no results, use reasonable defaults
|
| 79 |
• Always call final_answer() with the assembled catalogue as the last step
|
|
|
|
|
|
| 71 |
final_answer(final_catalogue)
|
| 72 |
```
|
| 73 |
|
| 74 |
+
CRITICAL FINAL STEP:
|
| 75 |
+
• The variable 'final_catalogue' from assemble_catalogue() contains the complete Markdown catalogue
|
| 76 |
+
• You MUST pass this exact variable to final_answer(): final_answer(final_catalogue)
|
| 77 |
+
• DO NOT pass a summary message like "The catalogue has been assembled"
|
| 78 |
+
• DO NOT pass anything except the full catalogue content from assemble_catalogue()
|
| 79 |
+
|
| 80 |
REMEMBER:
|
| 81 |
• Extract destination, dates, origin, budget from user query
|
| 82 |
• Use actual attraction names from web_search results
|
| 83 |
• Keep all queries short and specific
|
| 84 |
• If web_search returns no results, use reasonable defaults
|
| 85 |
• Always call final_answer() with the assembled catalogue as the last step
|
| 86 |
+
• The final_answer() call must receive the COMPLETE catalogue string from assemble_catalogue(), not a summary message
|