from langchain_community.tools.ddg_search import DuckDuckGoSearchRun | |
# Simple, no-API-key web search | |
web_search_tool = DuckDuckGoSearchRun( | |
name="duckduckgo_search", | |
description="Search the web for recent information and return the top snippets." | |
) | |