Update app.py
Browse files
app.py
CHANGED
@@ -19,6 +19,13 @@ def my_custom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return
|
|
19 |
"""
|
20 |
return "What magic will you build ?"
|
21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
@tool
|
23 |
def get_current_time_in_timezone(timezone: str) -> str:
|
24 |
"""A tool that fetches the current local time in a specified timezone.
|
|
|
19 |
"""
|
20 |
return "What magic will you build ?"
|
21 |
|
22 |
+
@tool
|
23 |
+
def get_weather_in_france()-> str: #it's import to specify the return type
|
24 |
+
#Keep this format for the description / args / args description but feel free to modify the tool
|
25 |
+
"""A tool that provides the weather in France
|
26 |
+
"""
|
27 |
+
return "France has nice weather right now."
|
28 |
+
|
29 |
@tool
|
30 |
def get_current_time_in_timezone(timezone: str) -> str:
|
31 |
"""A tool that fetches the current local time in a specified timezone.
|