Final_Assignment_Template / llm_only_agent.py
romain-fayoux's picture
Update llm_only_agent.py
7a26e4a verified
raw
history blame
366 Bytes
from smolagents import CodeAgent, HfApiModel, FinalAnswerTool
# Basic inference model
model = HfApiModel(
max_tokens=2096,
temperature=0.5,
model_id='Qwen/Qwen2.5-Coder-32B-Instruct',# it is possible that this model may be overloaded
custom_role_conversions=None,
)
# Code Agent
agent = CodeAgent(
model=model,
tools=[FinalAnswerTool()],
max_steps=2
)