Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,85 +1,163 @@
|
|
| 1 |
-
from smolagents import
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
@tool
|
| 13 |
-
def calculate_min_price(prices: list[float])-> str:
|
| 14 |
-
"""
|
|
|
|
|
|
|
| 15 |
Args:
|
| 16 |
-
prices:
|
| 17 |
"""
|
| 18 |
-
|
| 19 |
-
|
| 20 |
|
| 21 |
@tool
|
| 22 |
def extract_price_from_snippet(snippet: str) -> list[str]:
|
| 23 |
"""
|
| 24 |
-
|
| 25 |
-
|
| 26 |
Args:
|
| 27 |
-
snippet:
|
| 28 |
"""
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
return matches
|
| 34 |
|
| 35 |
|
| 36 |
@tool
|
| 37 |
def get_current_time_in_timezone(timezone: str) -> str:
|
| 38 |
-
"""
|
|
|
|
|
|
|
| 39 |
Args:
|
| 40 |
-
timezone:
|
| 41 |
"""
|
|
|
|
| 42 |
try:
|
| 43 |
-
|
| 44 |
tz = pytz.timezone(timezone)
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
|
|
|
|
|
|
| 48 |
except Exception as e:
|
| 49 |
-
|
|
|
|
| 50 |
|
| 51 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
final_answer = FinalAnswerTool()
|
| 53 |
|
| 54 |
-
#
|
| 55 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 56 |
|
| 57 |
model = HfApiModel(
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
|
|
|
|
|
|
|
|
|
|
| 63 |
)
|
| 64 |
|
|
|
|
|
|
|
|
|
|
| 65 |
|
| 66 |
-
|
| 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 |
-
|
| 75 |
-
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
|
| 81 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
)
|