Spaces:
Sleeping
Sleeping
Update prompts.yaml
Browse files- prompts.yaml +9 -0
prompts.yaml
CHANGED
@@ -11,8 +11,17 @@
|
|
11 |
|
12 |
Here are a few examples using notional tools:
|
13 |
---
|
|
|
|
|
|
|
14 |
Task: "Generate an image of the oldest person in this document."
|
15 |
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
Thought: I will proceed step by step and use the following tools: `document_qa` to find the oldest person in the document, then `image_generator` to generate an image according to the answer.
|
17 |
Code:
|
18 |
```py
|
|
|
11 |
|
12 |
Here are a few examples using notional tools:
|
13 |
---
|
14 |
+
Task: "What time is it in Uberlândia/MG Brazil?"
|
15 |
+
Thought: I will find the timezone (timezone_finded) related to the question and proceed step by step and use the following tools: `get_current_time_in_timezone` to fetch the current local time in a specified timezone.
|
16 |
+
|
17 |
Task: "Generate an image of the oldest person in this document."
|
18 |
|
19 |
+
Code:
|
20 |
+
```py
|
21 |
+
answer = get_current_time_in_timezone(timezone = timezone_finded)
|
22 |
+
print(answer)
|
23 |
+
```<end_code>
|
24 |
+
|
25 |
Thought: I will proceed step by step and use the following tools: `document_qa` to find the oldest person in the document, then `image_generator` to generate an image according to the answer.
|
26 |
Code:
|
27 |
```py
|