Final_Assignment_Template / llm_only_agent.py
romain-fayoux's picture
Update llm_only_agent.py
2a9db71 verified
raw
history blame
796 Bytes
from smolagents import CodeAgent, HfApiModel, FinalAnswerTool
class LLMOnlyAgent:
def __init__(self):
# 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
)
print("BasicAgent initialized.")
def __call__(self, question: str) -> str:
print(f"Agent received question (first 50 chars): {question[:50]}...")
answer = agent.run(question)
print(f"Agent returning answer: {answer}")
return answer