Spaces:
Sleeping
Sleeping
ekhatskevich
commited on
Commit
·
e249a6b
1
Parent(s):
0daa221
fix: add type annotation
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ from tools.final_answer import FinalAnswerTool
|
|
8 |
from Gradio_UI import GradioUI
|
9 |
|
10 |
@tool
|
11 |
-
def show_internet_location(public_ip)-> str:
|
12 |
"""A tool that shows location based on IP address.
|
13 |
Args:
|
14 |
public_ip: IP address from user request
|
|
|
8 |
from Gradio_UI import GradioUI
|
9 |
|
10 |
@tool
|
11 |
+
def show_internet_location(public_ip: str)-> str:
|
12 |
"""A tool that shows location based on IP address.
|
13 |
Args:
|
14 |
public_ip: IP address from user request
|