antman1p commited on
Commit
e64a814
·
verified ·
1 Parent(s): ddc5c49

Edited arg description

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -12,7 +12,7 @@ from Gradio_UI import GradioUI
12
  def get_weather(city:str)-> str:
13
  """A tool that fetches the current weather for a given city using the wttr.in API.
14
  Args:
15
- city: The name of the city (e.g., 'Berlin', 'New York').
16
  """
17
  try:
18
  url = f"https://wttr.in/{city}?format=3" # compact 'City: weather'
 
12
  def get_weather(city:str)-> str:
13
  """A tool that fetches the current weather for a given city using the wttr.in API.
14
  Args:
15
+ city: A string representing the name of a city (e.g., 'Berlin', 'New York').
16
  """
17
  try:
18
  url = f"https://wttr.in/{city}?format=3" # compact 'City: weather'