myatsu commited on
Commit
c6c1507
·
verified ·
1 Parent(s): 420c4a8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -9,10 +9,11 @@ from Gradio_UI import GradioUI
9
 
10
  # Below is an example of a tool that does nothing. Amaze us with your creativity !
11
  @tool
12
- def get_weather(city: str)-> str: #it's import to specify the return type
13
  #Keep this format for the description / args / args description but feel free to modify the tool
14
  """A tool that retrives weather from a specified city
15
- city : the name of the city you want to know the weather
 
16
  """
17
  try:
18
  api_url = f"https://api.weather.com/v1/location/{city}"
 
9
 
10
  # Below is an example of a tool that does nothing. Amaze us with your creativity !
11
  @tool
12
+ def get_weather(city: str) -> str: #it's import to specify the return type
13
  #Keep this format for the description / args / args description but feel free to modify the tool
14
  """A tool that retrives weather from a specified city
15
+ Args:
16
+ city (str): the name of the city you want to know the weather
17
  """
18
  try:
19
  api_url = f"https://api.weather.com/v1/location/{city}"