Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -13,13 +13,14 @@ import requests # Import the requests library
|
|
13 |
from bs4 import BeautifulSoup #for parsing
|
14 |
|
15 |
@tool
|
16 |
-
def find_the_song(arg1:
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
20 |
"""
|
21 |
-
|
22 |
-
return "ffff"
|
23 |
|
24 |
@tool
|
25 |
def get_current_time_in_timezone(timezone: str) -> str:
|
|
|
13 |
from bs4 import BeautifulSoup #for parsing
|
14 |
|
15 |
@tool
|
16 |
+
def find_the_song(arg1:str, arg2:int)-> str: #it's import to specify the return type
|
17 |
+
#Keep this format for the description / args / args description but feel free to modify the tool
|
18 |
+
"""A tool that does nothing yet
|
19 |
+
Args:
|
20 |
+
arg1: the first argument
|
21 |
+
arg2: the second argument
|
22 |
"""
|
23 |
+
return "What magic will you build ?"
|
|
|
24 |
|
25 |
@tool
|
26 |
def get_current_time_in_timezone(timezone: str) -> str:
|