Spaces:
Sleeping
Sleeping
File size: 332 Bytes
322603f 15e5535 322603f 15e5535 322603f 5348153 | 1 2 3 4 5 6 7 8 9 10 11 | # Create a CodeAgent with DuckDuckGo search capability
from smolagents import CodeAgent, DuckDuckGoSearchTool, GradioUI, InferenceClientModel
agent = CodeAgent(
tools=[DuckDuckGoSearchTool()],
model=InferenceClientModel(model_id="Qwen/Qwen2.5-Coder-32B-Instruct")
)
if __name__ == "__main__":
GradioUI(agent).launch()
|