CoolFace
Apppublic

efeperro/AI-Agentic

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
web_search_tool.py26 linesDownload Raw Back to tools
1# tools/web_search_tool.py2 3from agents import WebSearchTool4from openai import OpenAI5#from agents import SearchTool6 7def get_web_search_tool():8    """9    Retorna una instancia del WebSearchTool que permite al agente buscar en la web.10    """11    return WebSearchTool()12 13 14 15# def get_search_tool(client):16    17#     search_tool = SearchTool(18#         client=client,19#         name="web_search",20#         description="Useful for up-to-date web lookups"21#     )22 23#     return search_tool24 25 26