CoolFace
Apppublic

RohitKeswani/react_agent

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
search_agent.py13 linesDownload Raw Back to root
1from typing import Literal2from langchain_core.tools import tool3from langchain_community.tools import DuckDuckGoSearchRun4 5@tool6def get_search_results(query: str) -> str:7    """Fetches search results from DuckDuckGo."""8    # Perform the search using DuckDuckGoSearchRun9    search_tool = DuckDuckGoSearchRun()10    results = search_tool.invoke(query)11    return results12    13tools = [get_search_results]