clwuyang commited on
Commit
fa82021
·
verified ·
1 Parent(s): ae7a494

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -6
app.py CHANGED
@@ -9,14 +9,20 @@ 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 my_custom_tool(arg1:str, arg2:int)-> 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 does nothing yet
15
  Args:
16
- arg1: the first argument
17
- arg2: the second argument
18
  """
19
- return "What magic will you build ?"
 
 
 
 
 
 
 
20
 
21
  @tool
22
  def get_current_time_in_timezone(timezone: str) -> str:
 
9
 
10
  # Below is an example of a tool that does nothing. Amaze us with your creativity !
11
  @tool
12
+ def get_city_weather(city:str)-> str: #it's import to specify the return type
13
+
14
+ """A tool that fetches the weather of an specific city
15
  Args:
16
+ city: A string representing a valid city (e.g., 'Chicago')
 
17
  """
18
+ import requests
19
+ api_url = f"ttp://api.weatherapi.com/v1/current.json?key=21a4156f8e9e45299ab185723251203&q={city}&aqi=no"
20
+ response = requests.get(api_url)
21
+ if response.status_code == 200:
22
+ data = response.json()
23
+ return data.get("weather", "No weather information available")
24
+ else:
25
+ return "Error: Unable to fetch weather data."
26
 
27
  @tool
28
  def get_current_time_in_timezone(timezone: str) -> str: