Update app.py
Browse files
app.py
CHANGED
@@ -1,12 +1,11 @@
|
|
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 |
# Below is an example of a tool that does nothing. Amaze us with your creativity !
|
11 |
@tool
|
12 |
def wooz(arg1:str, arg2:int)-> str: #it's import to specify the return type
|
@@ -37,21 +36,26 @@ def get_current_time_in_timezone(timezone: str) -> str:
|
|
37 |
final_answer = FinalAnswerTool()
|
38 |
|
39 |
# 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:
|
40 |
-
# model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
|
42 |
-
model =
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
custom_role_conversions=None,
|
47 |
)
|
48 |
|
49 |
# Import tool from Hub
|
50 |
image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)
|
51 |
-
|
52 |
-
with open("prompts.yaml", 'r') as stream:
|
53 |
prompt_templates = yaml.safe_load(stream)
|
54 |
-
|
55 |
agent = CodeAgent(
|
56 |
model=model,
|
57 |
tools=[wooz,get_current_time_in_timezone,final_answer], ## add your tools here (don't remove final answer)
|
@@ -64,5 +68,4 @@ agent = CodeAgent(
|
|
64 |
prompt_templates=prompt_templates
|
65 |
)
|
66 |
|
67 |
-
|
68 |
-
GradioUI(agent).launch()
|
|
|
1 |
from smolagents import CodeAgent,DuckDuckGoSearchTool, HfApiModel,load_tool,tool
|
2 |
+
from smolagents import TransformersModel
|
3 |
import datetime
|
4 |
import requests
|
5 |
import pytz
|
6 |
import yaml
|
7 |
from tools.final_answer import FinalAnswerTool
|
8 |
|
|
|
|
|
9 |
# Below is an example of a tool that does nothing. Amaze us with your creativity !
|
10 |
@tool
|
11 |
def wooz(arg1:str, arg2:int)-> str: #it's import to specify the return type
|
|
|
36 |
final_answer = FinalAnswerTool()
|
37 |
|
38 |
# 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:
|
39 |
+
# model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud'
|
40 |
+
|
41 |
+
# model = HfApiModel(
|
42 |
+
# max_tokens=2096,
|
43 |
+
# temperature=0.5,
|
44 |
+
# model_id='Qwen/Qwen2.5-Coder-32B-Instruct',# it is possible that this model may be overloaded
|
45 |
+
# custom_role_conversions=None,
|
46 |
+
# )
|
47 |
|
48 |
+
model = TransformersModel(
|
49 |
+
model_id="HuggingFaceTB/SmolLM-135M-Instruct",
|
50 |
+
max_new_tokens=2048,
|
51 |
+
device="auto",
|
|
|
52 |
)
|
53 |
|
54 |
# Import tool from Hub
|
55 |
image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)
|
56 |
+
with open("prompts.yaml", 'r') as stream:
|
|
|
57 |
prompt_templates = yaml.safe_load(stream)
|
58 |
+
|
59 |
agent = CodeAgent(
|
60 |
model=model,
|
61 |
tools=[wooz,get_current_time_in_timezone,final_answer], ## add your tools here (don't remove final answer)
|
|
|
68 |
prompt_templates=prompt_templates
|
69 |
)
|
70 |
|
71 |
+
agent.run("Search for the best music recommendations for a party at the Wayne's mansion.")
|
|