Spaces:
Paused
Paused
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
|
9 |
+
@tool
|
10 |
+
def my_custom_tool(arg1:str, arg2:int)-> str: # it's important to specify the return type
|
11 |
+
# Keep this format for the tool description / args description but feel free to modify the tool
|
12 |
+
"""A tool that does nothing yet
|
13 |
+
Args:
|
14 |
+
arg1: the first argument
|
15 |
+
arg2: the second argument
|
16 |
+
"""
|
17 |
+
return "What magic will you build ?"
|
18 |
+
|
19 |
+
@tool
|
20 |
+
def get_current_time_in_timezone(timezone: str) -> str:
|
21 |
+
"""A tool that fetches the current local time in a specified timezone.
|
22 |
+
Args:
|
23 |
+
timezone: A string representing a valid timezone (e.g., 'America/New_York').
|
24 |
+
"""
|
25 |
+
try:
|
26 |
+
# Create timezone object
|
27 |
+
tz = pytz.timezone(timezone)
|
28 |
+
# Get current time in that timezone
|
29 |
+
local_time = datetime.datetime.now(tz).strftime("%Y-%m-%d %H:%M:%S")
|
30 |
+
return f"The current local time in {timezone} is: {local_time}"
|
31 |
+
except Exception as e:
|
32 |
+
return f"Error fetching time for timezone '{timezone}': {str(e)}"
|
33 |
+
|
34 |
+
final_answer = FinalAnswerTool()
|
35 |
+
model = HfApiModel(
|
36 |
+
max_tokens=2096,
|
37 |
+
temperature=0.5,
|
38 |
+
model_id='Qwen/Qwen2.5-Coder-32B-Instruct',
|
39 |
+
custom_role_conversions=None,
|
40 |
+
)
|
41 |
+
|
42 |
+
|
43 |
+
# Import tool from Hub
|
44 |
+
image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)
|
45 |
+
|
46 |
+
with open("prompts.yaml", 'r') as stream:
|
47 |
+
prompt_templates = yaml.safe_load(stream)
|
48 |
+
|
49 |
+
agent = CodeAgent(
|
50 |
+
model=model,
|
51 |
+
tools=[final_answer], # add your tools here (don't remove final_answer)
|
52 |
+
max_steps=6,
|
53 |
+
verbosity_level=1,
|
54 |
+
grammar=None,
|
55 |
+
planning_interval=None,
|
56 |
+
name=None,
|
57 |
+
description=None,
|
58 |
+
prompt_templates=prompt_templates
|
59 |
+
)
|
60 |
+
|
61 |
+
|
62 |
+
GradioUI(agent).launch()
|