krrishk22 commited on
Commit
6882f9a
·
verified ·
1 Parent(s): 5aa2914

Update prompts.yaml

Browse files
Files changed (1) hide show
  1. prompts.yaml +5 -5
prompts.yaml CHANGED
@@ -81,20 +81,20 @@
81
 
82
  ---
83
 
84
- Task: "Tell me today's Sunrise and Sunset time."
85
 
86
- Thought: I will call the `get_date_panchang` tool with default (today) and `data_language="EN"`, then extract only `Sunrise` and `Sunset` from the result.
87
 
88
  Code:
89
 
90
  ```py
91
  data = get_date_panchang(data_language="EN")
92
  sunrise = extract_field(data, "Sunrise")
93
- sunset = extract_field(data, "Sunset")
94
- print(f"Sunrise: {sunrise}, Sunset: {sunset}")
95
  ```<end_code>
96
 
97
- Observation "Sunrise: 05:24 AM, Sunset: 07:22 PM"
98
  Correctly extracted both time fields from the Panchang output.
99
 
100
  ---
 
81
 
82
  ---
83
 
84
+ Task: "Tell me today's Sunrise time."
85
 
86
+ Thought: I will call the `get_date_panchang` tool with default (today) and `data_language="EN"`, then extract only `Sunrise` and from the result.
87
 
88
  Code:
89
 
90
  ```py
91
  data = get_date_panchang(data_language="EN")
92
  sunrise = extract_field(data, "Sunrise")
93
+
94
+ print(f"Sunrise: {sunrise}")
95
  ```<end_code>
96
 
97
+ Observation "Sunrise: 05:24 AM"
98
  Correctly extracted both time fields from the Panchang output.
99
 
100
  ---