person9601 commited on
Commit
295f62e
·
verified ·
1 Parent(s): 1bef7c7

ok arg used in def needs to be described in description Args

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -32,8 +32,7 @@ load_dotenv()
32
  def my_custom_get_weather_info(city: str) -> str:
33
  """A tool that fetches current weather information for a specified city.
34
  Args:
35
- location: City name or location (e.g., 'New York', 'London,UK', 'London,ON', 'London,Canada')
36
- units: Temperature unit system - 'metric' (Celsius) and 'imperial' (Fahrenheit)
37
  """
38
  try:
39
  # Get API key from environment variables
 
32
  def my_custom_get_weather_info(city: str) -> str:
33
  """A tool that fetches current weather information for a specified city.
34
  Args:
35
+ city: City name or location (e.g., 'New York', 'Buffalo,NY', 'London,UK', 'London,ON', 'London,Canada')
 
36
  """
37
  try:
38
  # Get API key from environment variables