TouradAi commited on
Commit
90620ae
·
verified ·
1 Parent(s): 1e0d8ba

Update app.py

Browse files

Create a weather tool

Files changed (1) hide show
  1. app.py +18 -8
app.py CHANGED
@@ -7,17 +7,27 @@ from tools.final_answer import FinalAnswerTool
7
 
8
  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:
23
  """A tool that fetches the current local time in a specified timezone.
@@ -55,7 +65,7 @@ with open("prompts.yaml", 'r') as stream:
55
 
56
  agent = CodeAgent(
57
  model=model,
58
- tools=[final_answer, get_current_time_in_timezone, DuckDuckGoSearchTool(), image_generation_tool],
59
  max_steps=6,
60
  verbosity_level=1,
61
  grammar=None,
 
7
 
8
  from Gradio_UI import GradioUI
9
 
10
+
11
  @tool
12
+ def get_weather(city:str)-> str:
13
+ """ A tool that fetches the current weather for a given city.
 
14
  Args:
15
+ city (str): The name of the city (e.g., "Paris").
16
+ Returns:
17
+ str: A description of the weather.
18
  """
 
19
 
20
+ try:
21
+ url = f"https://wttr.in/{city}?format=3"
22
+ response = requests.get(url)
23
+ if response.status.code == 200:
24
+ return response.text.strip()
25
+ else:
26
+ return f"Error fetching weather for {city} (status: {response.status.code})"
27
+ except Exception as e:
28
+ return f"Error: {str(e)}"
29
+
30
+
31
  @tool
32
  def get_current_time_in_timezone(timezone: str) -> str:
33
  """A tool that fetches the current local time in a specified timezone.
 
65
 
66
  agent = CodeAgent(
67
  model=model,
68
+ tools=[final_answer, get_current_time_in_timezone, DuckDuckGoSearchTool(), image_generation_tool, get_weather],
69
  max_steps=6,
70
  verbosity_level=1,
71
  grammar=None,