agent_1 / tools /search_tools.py
jojopp's picture
Fix circular import by moving DuckDuckGoSearchTool to separate module
77726b9
raw
history blame
278 Bytes
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)