Spaces:
Sleeping
Sleeping
Stoyan Georgiev
commited on
Commit
·
7f9baa2
1
Parent(s):
226f3de
Updated the Space with new features
Browse files- prompts.yaml +10 -0
prompts.yaml
CHANGED
@@ -10,6 +10,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 |
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 |
+
|
14 |
+
---
|
15 |
+
Task: "What is the timezone in New York?"
|
16 |
+
|
17 |
+
Thought: I will proceed step by step and use the following tool: `get_current_time_in_timezone` to the current time in the given timezone. If the only a city is given, I will create a correct time zone, e.g from "New York" => "America/New York"
|
18 |
+
Code:
|
19 |
+
```py
|
20 |
+
answer = get_current_time_in_timezone(timezone = timezone)
|
21 |
+
```<end_code>
|
22 |
+
|
23 |
---
|
24 |
Task: "Generate an image of the oldest person in this document."
|
25 |
|