Spaces:
Build error
Build error
from smol_agent import SmolAgent | |
# Define a basic agent with commonly useful tools | |
tools = ["search", "calculator", "python", "code"] | |
agent = SmolAgent(tools=tools) | |
def run_agent(question): | |
return agent.run(question) | |