langchain/libs/community/langchain_community/tools/you/__init__.py
Scott Nath b051bba1a9
community: Add you.com tool, add async to retriever, add async testing, add You tool doc (#18032)
- **Description:** finishes adding the you.com functionality including:
    - add async functions to utility and retriever
    - add the You.com Tool
    - add async testing for utility, retriever, and tool
    - add a tool integration notebook page
- **Dependencies:** any dependencies required for this change
- **Twitter handle:** @scottnath
2024-03-03 14:30:05 -08:00

9 lines
126 B
Python

"""You.com API toolkit."""
from langchain_community.tools.you.tool import YouSearchTool
__all__ = [
"YouSearchTool",
]