Spaces:
Runtime error
Runtime error
Adding agent structure
Browse files
app.py
CHANGED
@@ -1,64 +1,101 @@
|
|
1 |
-
import
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
"""
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
)
|
59 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
)
|
61 |
|
62 |
|
63 |
-
|
64 |
-
demo.launch()
|
|
|
1 |
+
from smolagents import CodeAgent,DuckDuckGoSearchTool, HfApiModel,load_tool,tool,FinalAnswerTool
|
2 |
+
import datetime
|
3 |
+
import requests
|
4 |
+
import pytz
|
5 |
+
import yaml
|
6 |
+
from langchain_community.document_loaders import ArxivLoader
|
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 |
+
|
22 |
+
@tool
|
23 |
+
def arxiv_fetch_paper_tool(arxiv_id : str) -> str:
|
24 |
+
""" An Tool that would fetch research papers from ArXiV collection and parse it and return the PDF text
|
25 |
+
Args:
|
26 |
+
arxiv_id: id for the arxiv paper which would be like 2312.11805
|
27 |
+
Returns:
|
28 |
+
text of the paper content and title of the paper
|
29 |
+
"""
|
30 |
+
from langchain_community.document_loaders import ArxivLoader
|
31 |
+
loader = ArxivLoader(query=arxiv_id)
|
32 |
+
docs = loader.load()
|
33 |
+
title = docs[0].metadata.get("title", "this paper")
|
34 |
+
return "\n".join([doc.page_content for doc in docs]), title
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
# @tool
|
40 |
+
# def write_python_code(coding_problem:str) -> str:
|
41 |
+
# """A tool that would code to solve user request in Python on a jupyter notebook environment
|
42 |
+
# Args:
|
43 |
+
# coding_problem: the problem statement needed to be solved by writing python code.
|
44 |
+
# Returns the code that has to be replaced in the notebook cell.
|
45 |
+
# """
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
|
50 |
+
@tool
|
51 |
+
def get_current_time_in_timezone(timezone: str) -> str:
|
52 |
+
"""A tool that fetches the current local time in a specified timezone.
|
53 |
+
Args:
|
54 |
+
timezone: A string representing a valid timezone (e.g., 'America/New_York').
|
55 |
+
"""
|
56 |
+
try:
|
57 |
+
# Create timezone object
|
58 |
+
tz = pytz.timezone(timezone)
|
59 |
+
# Get current time in that timezone
|
60 |
+
local_time = datetime.datetime.now(tz).strftime("%Y-%m-%d %H:%M:%S")
|
61 |
+
return f"The current local time in {timezone} is: {local_time}"
|
62 |
+
except Exception as e:
|
63 |
+
return f"Error fetching time for timezone '{timezone}': {str(e)}"
|
64 |
+
|
65 |
+
|
66 |
+
final_answer = FinalAnswerTool()
|
67 |
+
|
68 |
+
# 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:
|
69 |
+
# model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud'
|
70 |
+
|
71 |
+
model = HfApiModel(
|
72 |
+
max_tokens=2096,
|
73 |
+
temperature=0.5,
|
74 |
+
model_id='Qwen/Qwen2.5-Coder-32B-Instruct',# it is possible that this model may be overloaded
|
75 |
+
custom_role_conversions=None,
|
76 |
+
)
|
77 |
+
|
78 |
+
|
79 |
+
# Import tool from Hub
|
80 |
+
image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)
|
81 |
+
|
82 |
+
|
83 |
+
|
84 |
+
with open("prompts.yaml", 'r') as stream:
|
85 |
+
prompt_templates = yaml.safe_load(stream)
|
86 |
+
|
87 |
+
agent = CodeAgent(
|
88 |
+
model=model,
|
89 |
+
tools=[final_answer,arxiv_fetch_paper_tool,image_generation_tool], ## add your tools here (don't remove final answer)
|
90 |
+
max_steps=6,
|
91 |
+
verbosity_level=1,
|
92 |
+
grammar=None,
|
93 |
+
planning_interval=None,
|
94 |
+
name=None,
|
95 |
+
description=None,
|
96 |
+
prompt_templates=prompt_templates,
|
97 |
+
additional_authorized_imports=['numpy','pandas','pip','matplotlib','SciPy','tensorflow','requests','notebook']
|
98 |
)
|
99 |
|
100 |
|
101 |
+
GradioUI(agent).launch()
|
|