RohitKeswani/react_agent
0
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]