mirror of
https://github.com/hwchase17/langchain.git
synced 2026-04-25 01:16:55 +00:00
- **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",
|
|
]
|