Spaces:
Sleeping
Sleeping
Update prompts.yaml
Browse files- prompts.yaml +5 -5
prompts.yaml
CHANGED
@@ -81,20 +81,20 @@
|
|
81 |
|
82 |
---
|
83 |
|
84 |
-
Task: "Tell me today's Sunrise
|
85 |
|
86 |
-
Thought: I will call the `get_date_panchang` tool with default (today) and `data_language="EN"`, then extract only `Sunrise` and
|
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 |
---
|
|
|
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 |
---
|