Spaces:
Sleeping
Sleeping
Update prompts.yaml
Browse files- prompts.yaml +29 -0
prompts.yaml
CHANGED
|
@@ -319,3 +319,32 @@
|
|
| 319 |
"report": |-
|
| 320 |
Here is the final answer from your managed agent '{{name}}':
|
| 321 |
{{final_answer}}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 319 |
"report": |-
|
| 320 |
Here is the final answer from your managed agent '{{name}}':
|
| 321 |
{{final_answer}}
|
| 322 |
+
|
| 323 |
+
"final_answer": |-
|
| 324 |
+
You have now solved the task.
|
| 325 |
+
|
| 326 |
+
Please finalize your output by presenting:
|
| 327 |
+
### 1. Task outcome (short version):
|
| 328 |
+
### 2. Task outcome (extremely detailed version):
|
| 329 |
+
### 3. Additional context (if relevant):
|
| 330 |
+
|
| 331 |
+
Format clearly and precisely.
|
| 332 |
+
|
| 333 |
+
Return the results by calling the `final_answer()` tool appropriately.
|
| 334 |
+
|
| 335 |
+
Example:
|
| 336 |
+
|
| 337 |
+
```py
|
| 338 |
+
final_answer(
|
| 339 |
+
"""
|
| 340 |
+
### 1. Task outcome (short version):
|
| 341 |
+
Found the required information.
|
| 342 |
+
|
| 343 |
+
### 2. Task outcome (extremely detailed version):
|
| 344 |
+
After gathering and analyzing data from multiple trusted sources, it was determined that...
|
| 345 |
+
|
| 346 |
+
### 3. Additional context (if relevant):
|
| 347 |
+
Note that these results may change in the future based on new findings.
|
| 348 |
+
"""
|
| 349 |
+
)
|
| 350 |
+
```<end_code>
|