HaiderAUT commited on
Commit
20b4ab3
·
verified ·
1 Parent(s): 5dc704f

Update app.py

Browse files

modified it a little

Files changed (1) hide show
  1. app.py +71 -24
app.py CHANGED
@@ -1,14 +1,12 @@
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
 
11
- # Below is an example of a tool that does nothing. Amaze us with your creativity !
12
  @tool
13
  def my_custom_tool(arg1: str, arg2: int) -> str:
14
  """
@@ -54,46 +52,95 @@ def my_custom_tool(arg1: str, arg2: int) -> str:
54
  return "\n".join(messages)
55
 
56
 
57
-
58
-
59
  @tool
60
  def get_current_time_in_timezone(timezone: str) -> str:
61
- """A tool that fetches the current local time in a specified timezone.
 
 
62
  Args:
63
  timezone: A string representing a valid timezone (e.g., 'America/New_York').
64
  """
65
  try:
66
- # Create timezone object
67
  tz = pytz.timezone(timezone)
68
- # Get current time in that timezone
69
  local_time = datetime.datetime.now(tz).strftime("%Y-%m-%d %H:%M:%S")
70
  return f"The current local time in {timezone} is: {local_time}"
71
  except Exception as e:
72
  return f"Error fetching time for timezone '{timezone}': {str(e)}"
73
 
74
 
75
- final_answer = FinalAnswerTool()
 
76
 
77
- # 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:
78
- # model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
79
 
80
- model = HfApiModel(
81
- max_tokens=2096,
82
- temperature=0.5,
83
- model_id='Qwen/Qwen2.5-Coder-32B-Instruct',# it is possible that this model may be overloaded
84
- custom_role_conversions=None,
85
- )
86
 
 
 
87
 
88
- # Import tool from Hub
89
- image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)
 
 
 
 
 
90
 
 
91
  with open("prompts.yaml", 'r') as stream:
92
  prompt_templates = yaml.safe_load(stream)
93
-
 
94
  agent = CodeAgent(
95
  model=model,
96
- tools=[final_answer,my_custom_tool,get_current_time_in_timezone], ## add your tools here (don't remove final answer)
97
  max_steps=6,
98
  verbosity_level=1,
99
  grammar=None,
@@ -103,5 +150,5 @@ agent = CodeAgent(
103
  prompt_templates=prompt_templates
104
  )
105
 
106
-
107
- GradioUI(agent).launch()
 
1
+ from smolagents import CodeAgent, DuckDuckGoSearchTool, HfApiModel, load_tool, tool
2
  import datetime
 
3
  import pytz
4
  import yaml
5
  from tools.final_answer import FinalAnswerTool
 
6
  from Gradio_UI import GradioUI
7
 
8
+ # Existing tools...
9
 
 
10
  @tool
11
  def my_custom_tool(arg1: str, arg2: int) -> str:
12
  """
 
52
  return "\n".join(messages)
53
 
54
 
 
 
55
  @tool
56
  def get_current_time_in_timezone(timezone: str) -> str:
57
+ """
58
+ A tool that fetches the current local time in a specified timezone.
59
+
60
  Args:
61
  timezone: A string representing a valid timezone (e.g., 'America/New_York').
62
  """
63
  try:
 
64
  tz = pytz.timezone(timezone)
 
65
  local_time = datetime.datetime.now(tz).strftime("%Y-%m-%d %H:%M:%S")
66
  return f"The current local time in {timezone} is: {local_time}"
67
  except Exception as e:
68
  return f"Error fetching time for timezone '{timezone}': {str(e)}"
69
 
70
 
71
+ # Create the image generation tool from the hub.
72
+ image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)
73
 
74
+ # ── NEW TOOL: prompte_chakwal ──
75
+ @tool
76
+ def prompte_chakwal(custom_note: str = "", num_results: int = 3) -> str:
77
+ """
78
+ A tool that promotes Chakwal by retrieving real-time information and generating a promotional image.
79
+ It provides the current local time, live news about Chakwal from DuckDuckGo, and creates an image that
80
+ highlights the city's natural beauty and vibrant culture.
81
+
82
+ Args:
83
+ custom_note: A custom note to add a specific theme to the generated image.
84
+ num_results: The maximum number of real-time search results (news/information) to include.
85
+ """
86
+ output_lines = []
87
+
88
+ # 1. Add current local time in Chakwal (Asia/Karachi)
89
+ try:
90
+ tz = pytz.timezone("Asia/Karachi")
91
+ current_time = datetime.datetime.now(tz).strftime("%Y-%m-%d %H:%M:%S")
92
+ output_lines.append(f"Current local time in Chakwal: {current_time}")
93
+ except Exception as e:
94
+ output_lines.append("Error fetching current time in Chakwal.")
95
+
96
+ # 2. Fetch real-time information using DuckDuckGoSearchTool
97
+ duck_tool = DuckDuckGoSearchTool()
98
+ query = "Chakwal tourism investment news"
99
+ search_results = duck_tool.run(query)
100
+
101
+ if isinstance(search_results, list):
102
+ output_lines.append("\nReal-Time News and Information:")
103
+ for i, result in enumerate(search_results[:num_results]):
104
+ title = result.get("title", "No Title")
105
+ snippet = result.get("snippet", "No description available")
106
+ output_lines.append(f"{i+1}. {title}: {snippet}")
107
+ elif isinstance(search_results, str):
108
+ output_lines.append("\nReal-Time News and Information:")
109
+ output_lines.append(search_results)
110
+ else:
111
+ output_lines.append("\nNo real-time information available.")
112
+
113
+ # 3. Generate a promotional image using the image generation tool
114
+ image_prompt = "A breathtaking view of Chakwal showcasing its natural beauty, vibrant culture, and historical landmarks"
115
+ if custom_note:
116
+ image_prompt += f". Theme: {custom_note}"
117
+
118
+ generated_image = image_generation_tool(image_prompt)
119
+ output_lines.append("\nGenerated Promotional Image:")
120
+ output_lines.append(f"{generated_image}")
121
+
122
+ return "\n".join(output_lines)
123
 
 
 
 
 
 
 
124
 
125
+ # Set up the final answer tool.
126
+ final_answer = FinalAnswerTool()
127
 
128
+ # Define the model.
129
+ model = HfApiModel(
130
+ max_tokens=2096,
131
+ temperature=0.5,
132
+ model_id='Qwen/Qwen2.5-Coder-32B-Instruct',
133
+ custom_role_conversions=None,
134
+ )
135
 
136
+ # Load prompt templates from a YAML file.
137
  with open("prompts.yaml", 'r') as stream:
138
  prompt_templates = yaml.safe_load(stream)
139
+
140
+ # Create the CodeAgent including all our tools.
141
  agent = CodeAgent(
142
  model=model,
143
+ tools=[final_answer, my_custom_tool, get_current_time_in_timezone, prompte_chakwal, image_generation_tool],
144
  max_steps=6,
145
  verbosity_level=1,
146
  grammar=None,
 
150
  prompt_templates=prompt_templates
151
  )
152
 
153
+ # Launch the Gradio UI for interactive use.
154
+ GradioUI(agent).launch()