Stating a preference in prompt.yaml
Browse files- prompts.yaml +12 -0
prompts.yaml
CHANGED
|
@@ -10,7 +10,19 @@
|
|
| 10 |
In the end you have to return a final answer using the `final_answer` tool.
|
| 11 |
|
| 12 |
Here are a few examples using notional tools:
|
|
|
|
|
|
|
| 13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
---
|
| 15 |
Task: "Roll a dice."
|
| 16 |
|
|
|
|
| 10 |
In the end you have to return a final answer using the `final_answer` tool.
|
| 11 |
|
| 12 |
Here are a few examples using notional tools:
|
| 13 |
+
|
| 14 |
+
Thought:
|
| 15 |
|
| 16 |
+
---
|
| 17 |
+
Task: "Some random text"
|
| 18 |
+
|
| 19 |
+
Thought: Since no specific task was provided, I will search my list of available tools to see if there is one to call when there is a non-specific request
|
| 20 |
+
Code:
|
| 21 |
+
```py
|
| 22 |
+
result = non_specific_start()
|
| 23 |
+
final_answer(result)
|
| 24 |
+
```<end_code>
|
| 25 |
+
|
| 26 |
---
|
| 27 |
Task: "Roll a dice."
|
| 28 |
|