Spaces:
Sleeping
Sleeping
ekhatskevich commited on
Commit ·
4885711
1
Parent(s): e249a6b
fix: add type annotation
Browse files- prompts.yaml +1 -1
prompts.yaml
CHANGED
|
@@ -44,7 +44,7 @@
|
|
| 44 |
Thought: I will use python code to retrieve the location based on IP address provided in the request and then return the final answer using the `final_answer` tool
|
| 45 |
Code:
|
| 46 |
```py
|
| 47 |
-
public_ip = 8.8.8.8
|
| 48 |
result = show_internet_location(public_ip)
|
| 49 |
final_answer(result)
|
| 50 |
```<end_code>
|
|
|
|
| 44 |
Thought: I will use python code to retrieve the location based on IP address provided in the request and then return the final answer using the `final_answer` tool
|
| 45 |
Code:
|
| 46 |
```py
|
| 47 |
+
public_ip = "8.8.8.8"
|
| 48 |
result = show_internet_location(public_ip)
|
| 49 |
final_answer(result)
|
| 50 |
```<end_code>
|