krrishk22 commited on
Commit
1cd5788
·
verified ·
1 Parent(s): 435b8c2

Update prompts.yaml

Browse files
Files changed (1) hide show
  1. prompts.yaml +15 -0
prompts.yaml CHANGED
@@ -11,6 +11,21 @@
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.
 
11
 
12
  Here are a few examples using notional tools:
13
  ---
14
+ Task: "Get the horoscope details for Aries in English for today."
15
+
16
+ Thought: I will proceed step by step and use the following tools:
17
+ Use the get_horoscope tool to fetch today's horoscope for Aries.
18
+ The tool will automatically use today's real date and return the prediction.
19
+
20
+ Code:
21
+ ```py
22
+ answer = get_horoscope(sign="ARIES", language="EN", date="26-10-2025")
23
+ print(answer)
24
+ ```<end_code>
25
+ Observation: "Horoscope for Aries on 2025-10-26: Today is a good day to focus on your career goals. Stay calm and avoid unnecessary arguments. Health remains stable."
26
+ ---
27
+
28
+
29
  Task: "Generate an image of the oldest person in this document."
30
 
31
  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.