uncleMehrzad commited on
Commit
3ca0572
·
verified ·
1 Parent(s): f3ff113

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -6
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: str) -> str:
17
- """A tool that finds the song name, artist, Spotify URL, and lyrics based on a given verse.
18
- Args:
19
- arg1: a verse of a song or words that are refrencing a song.
 
 
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: