codeAgent / app.py
djunaim's picture
Update app.py
5eb56d4 verified
raw
history blame contribute delete
273 Bytes
from huggingface_hub import login
from smolagents import CodeAgent, DuckDuckGoSearchTool, HfApiModel
login()
agent = CodeAgent(tools=[DuckDuckGoSearchTool()], model=HfApiModel())
agent.run("Search for the best music recommendations for a party at the Wayne's mansion.")