CoolFace
Apppublic

Israelbliz/Israel_Agent

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
app.py18 linesDownload Raw Back to root
1from smolagents import CodeAgent, DuckDuckGoSearchTool, InferenceClientModel2 3# Initialize the search tool4search_tool = DuckDuckGoSearchTool()5 6# Initialize the model7model = InferenceClientModel()8 9agent = CodeAgent(10    model=model,11    tools=[search_tool],12)13 14# Example usage15response = agent.run(16    "Search for luxury superhero-themed party ideas, including decorations, entertainment, and catering."17)18print(response)