rnrahate007 commited on
Commit
ebf826c
·
verified ·
1 Parent(s): dea33bc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +121 -43
app.py CHANGED
@@ -1,85 +1,163 @@
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
  import re
8
 
 
 
 
 
9
  from Gradio_UI import GradioUI
10
 
11
- # Below is an example of a tool that does nothing. Amaze us with your creativity !
 
 
 
 
12
  @tool
13
- def calculate_min_price(prices: list[float])-> str: #it's import to specify the return type
14
- """A tool that calculates the min price from list of product prices
 
 
15
  Args:
16
- prices: list of product prices of
17
  """
18
- min_price =min(prices)
19
- return f"The minimum price is {min_price}"
20
 
21
  @tool
22
  def extract_price_from_snippet(snippet: str) -> list[str]:
23
  """
24
- A simple function to extract prices from a text snippet using regex.
25
- You can enhance this function for more complex price extraction.
26
  Args:
27
- snippet: text of all prices
28
  """
29
- # A basic regular expression to detect common price formats like $29.99, 29.99 USD, etc.
30
- price_pattern = r'\$\d+(?:,\d{3})*(?:\.\d{2})?|\d+(?:,\d{3})*(?:\.\d{2})?\s*(USD|EUR|GBP|INR|AUD|CAD)?'
31
- matches = re.findall(price_pattern, snippet)
32
- matches = [str(x) for x in matches]
 
 
 
 
 
33
  return matches
34
 
35
 
36
  @tool
37
  def get_current_time_in_timezone(timezone: str) -> str:
38
- """A tool that fetches the current local time in a specified timezone.
 
 
39
  Args:
40
- timezone: A string representing a valid timezone (e.g., 'America/New_York').
41
  """
 
42
  try:
43
- # Create timezone object
44
  tz = pytz.timezone(timezone)
45
- # Get current time in that timezone
46
- local_time = datetime.datetime.now(tz).strftime("%Y-%m-%d %H:%M:%S")
47
- return f"The current local time in {timezone} is: {local_time}"
 
 
48
  except Exception as e:
49
- return f"Error fetching time for timezone '{timezone}': {str(e)}"
 
50
 
51
 
 
 
 
 
52
  final_answer = FinalAnswerTool()
53
 
54
- # 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:
55
- # model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56
 
57
  model = HfApiModel(
58
- max_tokens=2096,
59
- temperature=0.5,
60
- # model_id='Qwen/Qwen2.5-Coder-32B-Instruct',# it is possible that this model may be overloaded
61
- model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud',
62
- custom_role_conversions=None,
 
 
 
63
  )
64
 
 
 
 
65
 
66
- # Import tool from Hub
67
- image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)
68
 
69
- with open("prompts.yaml", 'r') as stream:
70
  prompt_templates = yaml.safe_load(stream)
71
-
 
 
 
 
72
  agent = CodeAgent(
 
73
  model=model,
74
- tools=[final_answer,DuckDuckGoSearchTool(),calculate_min_price,extract_price_from_snippet], ## add your tools here (don't remove final answer)
75
- max_steps=6,
76
- verbosity_level=1,
77
- grammar=None,
78
- planning_interval=None,
79
- name=None,
80
- description=None,
81
- prompt_templates=prompt_templates
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82
  )
83
 
 
 
 
84
 
85
- GradioUI(agent).launch()
 
 
 
1
+ from smolagents import (
2
+ CodeAgent,
3
+ HfApiModel,
4
+ load_tool,
5
+ tool,
6
+ )
7
+
8
  import datetime
 
9
  import pytz
10
  import yaml
 
11
  import re
12
 
13
+ from tools.final_answer import FinalAnswerTool
14
+ from tools.web_search import DuckDuckGoSearchTool
15
+ from tools.visit_webpage import VisitWebpageTool
16
+
17
  from Gradio_UI import GradioUI
18
 
19
+
20
+ # ==========================================================
21
+ # CUSTOM TOOLS
22
+ # ==========================================================
23
+
24
  @tool
25
+ def calculate_min_price(prices: list[float]) -> str:
26
+ """
27
+ Calculates the minimum value from a list of prices.
28
+
29
  Args:
30
+ prices: List of prices.
31
  """
32
+ return f"The minimum price is {min(prices)}"
33
+
34
 
35
  @tool
36
  def extract_price_from_snippet(snippet: str) -> list[str]:
37
  """
38
+ Extracts prices from a block of text.
39
+
40
  Args:
41
+ snippet: Text containing prices.
42
  """
43
+
44
+ pattern = (
45
+ r"\$\d+(?:,\d{3})*(?:\.\d{2})?"
46
+ r"|\d+(?:,\d{3})*(?:\.\d{2})?\s*"
47
+ r"(?:USD|EUR|GBP|INR|AUD|CAD)?"
48
+ )
49
+
50
+ matches = re.findall(pattern, snippet)
51
+
52
  return matches
53
 
54
 
55
  @tool
56
  def get_current_time_in_timezone(timezone: str) -> str:
57
+ """
58
+ Returns current local time.
59
+
60
  Args:
61
+ timezone: Valid pytz timezone.
62
  """
63
+
64
  try:
65
+
66
  tz = pytz.timezone(timezone)
67
+
68
+ now = datetime.datetime.now(tz)
69
+
70
+ return now.strftime("%Y-%m-%d %H:%M:%S")
71
+
72
  except Exception as e:
73
+
74
+ return str(e)
75
 
76
 
77
+ # ==========================================================
78
+ # REQUIRED FINAL ANSWER TOOL
79
+ # ==========================================================
80
+
81
  final_answer = FinalAnswerTool()
82
 
83
+ # ==========================================================
84
+ # WEB TOOLS
85
+ # ==========================================================
86
+
87
+ web_search = DuckDuckGoSearchTool()
88
+
89
+ visit_webpage = VisitWebpageTool()
90
+
91
+ # ==========================================================
92
+ # OPTIONAL IMAGE TOOL
93
+ # ==========================================================
94
+
95
+ image_generation_tool = load_tool(
96
+ "agents-course/text-to-image",
97
+ trust_remote_code=True,
98
+ )
99
+
100
+ # ==========================================================
101
+ # MODEL
102
+ # ==========================================================
103
 
104
  model = HfApiModel(
105
+
106
+ model_id="https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud",
107
+
108
+ max_tokens=2048,
109
+
110
+ temperature=0.1,
111
+
112
+ custom_role_conversions=None,
113
  )
114
 
115
+ # ==========================================================
116
+ # PROMPTS
117
+ # ==========================================================
118
 
119
+ with open("prompts.yaml", "r") as stream:
 
120
 
 
121
  prompt_templates = yaml.safe_load(stream)
122
+
123
+ # ==========================================================
124
+ # AGENT
125
+ # ==========================================================
126
+
127
  agent = CodeAgent(
128
+
129
  model=model,
130
+
131
+ tools=[
132
+
133
+ final_answer,
134
+
135
+ web_search,
136
+
137
+ visit_webpage,
138
+
139
+ calculate_min_price,
140
+
141
+ extract_price_from_snippet,
142
+
143
+ get_current_time_in_timezone,
144
+
145
+ ],
146
+
147
+ max_steps=12,
148
+
149
+ verbosity_level=2,
150
+
151
+ planning_interval=2,
152
+
153
+ prompt_templates=prompt_templates,
154
+
155
  )
156
 
157
+ # ==========================================================
158
+ # UI
159
+ # ==========================================================
160
 
161
+ GradioUI(agent).launch(
162
+ share=True
163
+ )