DAYTONE2903 commited on
Commit
080f221
·
verified ·
1 Parent(s): ae7a494

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +84 -24
app.py CHANGED
@@ -1,22 +1,78 @@
1
- from smolagents import CodeAgent,DuckDuckGoSearchTool, HfApiModel,load_tool,tool
2
  import datetime
3
  import requests
4
  import pytz
5
  import yaml
6
  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:
@@ -33,29 +89,33 @@ def get_current_time_in_timezone(timezone: str) -> str:
33
  except Exception as e:
34
  return f"Error fetching time for timezone '{timezone}': {str(e)}"
35
 
36
-
37
  final_answer = FinalAnswerTool()
38
 
39
- # If the agent does not answer, the model is overloaded, please use another model or the following Hugging Face Endpoint that also contains qwen2.5 coder:
40
- # model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud'
41
 
 
42
  model = HfApiModel(
43
- max_tokens=2096,
44
- temperature=0.5,
45
- model_id='Qwen/Qwen2.5-Coder-32B-Instruct',# it is possible that this model may be overloaded
46
- custom_role_conversions=None,
47
  )
48
 
49
-
50
- # Import tool from Hub
51
- image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)
52
-
53
  with open("prompts.yaml", 'r') as stream:
54
  prompt_templates = yaml.safe_load(stream)
55
-
 
56
  agent = CodeAgent(
57
  model=model,
58
- tools=[final_answer], ## add your tools here (don't remove final answer)
 
 
 
 
 
 
59
  max_steps=6,
60
  verbosity_level=1,
61
  grammar=None,
@@ -65,5 +125,5 @@ agent = CodeAgent(
65
  prompt_templates=prompt_templates
66
  )
67
 
68
-
69
- GradioUI(agent).launch()
 
1
+ from smolagents import CodeAgent, DuckDuckGoSearchTool, HfApiModel, load_tool, tool
2
  import datetime
3
  import requests
4
  import pytz
5
  import yaml
6
  from tools.final_answer import FinalAnswerTool
 
7
  from Gradio_UI import GradioUI
8
 
 
9
  @tool
10
+ def get_weather(city: str) -> str:
11
+ """A tool that fetches the current weather for a city.
 
12
  Args:
13
+ city: A string representing a city (e.g., 'Paris','Roma')
 
14
  """
15
+ # Fix: Use the requests.get() method properly and handle the response
16
+ url = f"http://api.weatherapi.com/v1/current.json?key=65b5427878074cd4bba163957250503&q={city}&aqi=no"
17
+
18
+ try:
19
+ response = requests.get(url) # Fixed: Changed requests() to requests.get()
20
+ response.raise_for_status() # Raise an exception for HTTP errors
21
+
22
+ weather_data = response.json()
23
+
24
+ # Format the weather data in a more readable way
25
+ location = weather_data['location']
26
+ current = weather_data['current']
27
+
28
+ result = {
29
+ "location": {
30
+ "name": location['name'],
31
+ "region": location['region'],
32
+ "country": location['country'],
33
+ "localtime": location['localtime']
34
+ },
35
+ "current": {
36
+ "temp_c": current['temp_c'],
37
+ "temp_f": current['temp_f'],
38
+ "condition": current['condition']['text'],
39
+ "wind_kph": current['wind_kph'],
40
+ "wind_dir": current['wind_dir'],
41
+ "humidity": current['humidity'],
42
+ "feelslike_c": current['feelslike_c'],
43
+ "uv": current['uv']
44
+ }
45
+ }
46
+
47
+ # Return the formatted data as a string
48
+ return f"""Weather in {result['location']['name']}, {result['location']['country']}:
49
+ - Temperature: {result['current']['temp_c']}°C ({result['current']['temp_f']}°F)
50
+ - Feels like: {result['current']['feelslike_c']}°C
51
+ - Condition: {result['current']['condition']}
52
+ - Wind: {result['current']['wind_kph']} kph, {result['current']['wind_dir']}
53
+ - Humidity: {result['current']['humidity']}%
54
+ - UV Index: {result['current']['uv']}
55
+ - Local time: {result['location']['localtime']}"""
56
+
57
+ except requests.exceptions.RequestException as e:
58
+ return f"Error fetching weather data: {str(e)}"
59
+
60
+ @tool
61
+ def get_weather_image(city: str, weather_description: str) -> str:
62
+ """A tool that generates an image of the weather in a city.
63
+ Args:
64
+ city: A string representing a city (e.g., 'Paris','Roma')
65
+ weather_description: A string describing the current weather conditions
66
+ """
67
+ try:
68
+ # Create a descriptive prompt for the image generation
69
+ time_of_day = "daytime" # This could be improved by checking actual local time
70
+ prompt = f"A photorealistic view of {city} during {time_of_day} with {weather_description} weather conditions. Beautiful high-quality image showing the current weather."
71
+
72
+ # Return the prompt that will be used with the image generation tool
73
+ return prompt
74
+ except Exception as e:
75
+ return f"Error preparing weather image prompt: {str(e)}"
76
 
77
  @tool
78
  def get_current_time_in_timezone(timezone: str) -> str:
 
89
  except Exception as e:
90
  return f"Error fetching time for timezone '{timezone}': {str(e)}"
91
 
 
92
  final_answer = FinalAnswerTool()
93
 
94
+ # Load the image generation tool from Hub
95
+ image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)
96
 
97
+ # Set up the model
98
  model = HfApiModel(
99
+ max_tokens=2096,
100
+ temperature=0.5,
101
+ model_id='Qwen/Qwen2.5-Coder-32B-Instruct', # it is possible that this model may be overloaded
102
+ custom_role_conversions=None,
103
  )
104
 
105
+ # Load prompt templates
 
 
 
106
  with open("prompts.yaml", 'r') as stream:
107
  prompt_templates = yaml.safe_load(stream)
108
+
109
+ # Create the agent with all tools
110
  agent = CodeAgent(
111
  model=model,
112
+ tools=[
113
+ get_weather,
114
+ get_weather_image,
115
+ get_current_time_in_timezone,
116
+ image_generation_tool,
117
+ final_answer
118
+ ], # Added your custom tools here
119
  max_steps=6,
120
  verbosity_level=1,
121
  grammar=None,
 
125
  prompt_templates=prompt_templates
126
  )
127
 
128
+ # Launch the Gradio UI
129
+ GradioUI(agent).launch()