Spaces:
Running
Running
File size: 332 Bytes
2eb41d7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from smolagents import CodeAgent, GradioUI, HfApiModel
agent = CodeAgent(
tools=[],
model=HfApiModel(),
max_steps=4,
verbosity_level=1,
name="example_agent",
description="This is an example agent that has no tools and uses only code.",
)
GradioUI(agent, file_upload_folder="./data").launch()
|