mirror of
https://github.com/hwchase17/langchain
synced 2024-11-04 06:00:26 +00:00
b051bba1a9
- **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
9 lines
126 B
Python
9 lines
126 B
Python
"""You.com API toolkit."""
|
|
|
|
|
|
from langchain_community.tools.you.tool import YouSearchTool
|
|
|
|
__all__ = [
|
|
"YouSearchTool",
|
|
]
|