Spaces:
Sleeping
Sleeping
Update prompts.yaml
Browse files- prompts.yaml +11 -0
prompts.yaml
CHANGED
|
@@ -10,6 +10,17 @@
|
|
| 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 |
Task: "Generate an image of the oldest person in this document."
|
| 15 |
|
|
|
|
| 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 |
+
Task : "Get me data for {symbol}"
|
| 14 |
+
Thought : I will proceed step by step and use the following tools : 'daily_stock_data' to find the daily stock data for symbol
|
| 15 |
+
Code:
|
| 16 |
+
```py
|
| 17 |
+
answer = daily_stock_data(symbol)
|
| 18 |
+
print(answer)
|
| 19 |
+
```<end_code>
|
| 20 |
+
Observation : function has retured data for symbol
|
| 21 |
+
Thought : I will now explain the data to the user
|
| 22 |
+
|
| 23 |
+
|
| 24 |
---
|
| 25 |
Task: "Generate an image of the oldest person in this document."
|
| 26 |
|