Duplicated from agents-course/First_agent_template
77726b9
1
2
3
4
5
6
7
8
9
10
from smolagents import DuckDuckGoSearchTool def get_search_tool(max_results=3): """Returns a configured DuckDuckGo search tool instance Args: max_results: Maximum number of results to return """ return DuckDuckGoSearchTool(max_results=max_results)