deveshka commited on
Commit
26e4202
·
verified ·
1 Parent(s): 69e8b94

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -16,7 +16,7 @@ def my_weather_tool(location: str) -> str:
16
  location: Location name (e.g., 'New York') or lat,lon coordinates (e.g., '40.7128,-74.0060')
17
  """
18
  # Get API key from environment
19
- api_key = os.getenv("VYK6ASAfHq4z7TzyljTaZg5nICJKFmL8")
20
  if not api_key:
21
  return "Error: TOMORROW_API_KEY environment variable is not set. Please set it to use this tool."
22
 
 
16
  location: Location name (e.g., 'New York') or lat,lon coordinates (e.g., '40.7128,-74.0060')
17
  """
18
  # Get API key from environment
19
+ api_key = os.getenv("TOMORROW_API_KEY")
20
  if not api_key:
21
  return "Error: TOMORROW_API_KEY environment variable is not set. Please set it to use this tool."
22