Spaces:
Sleeping
Sleeping
Update prompts.yaml
Browse files- prompts.yaml +6 -2
prompts.yaml
CHANGED
|
@@ -319,5 +319,9 @@
|
|
| 319 |
"report": |-
|
| 320 |
Here is the final answer from your managed agent '{{name}}':
|
| 321 |
{{final_answer}}
|
| 322 |
-
final_answer:
|
| 323 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 319 |
"report": |-
|
| 320 |
Here is the final answer from your managed agent '{{name}}':
|
| 321 |
{{final_answer}}
|
| 322 |
+
final_answer: # <--- This key now starts a dictionary
|
| 323 |
+
pre_messages: |- # <--- This is a required key INSIDE final_answer
|
| 324 |
+
You have successfully solved the task and obtained the final answer. Present the final answer below. # <--- Template text before the answer generation
|
| 325 |
+
|
| 326 |
+
template: |- # <--- This is likely another required key for the actual answer format
|
| 327 |
+
{{answer}} # <--- This is the template that formats the input to final_answer(...)
|