mirror of
https://github.com/hwchase17/langchain.git
synced 2025-10-13 04:49:48 +00:00
**Description:** Integrate [dataherald](https://www.dataherald.com) tool, It is a natural language-to-SQL tool. **Dependencies:** Install dataherald sdk to use it, ``` pip install dataherald ``` --------- Co-authored-by: Bagatur <22008038+baskaryan@users.noreply.github.com> Co-authored-by: Bagatur <baskaryan@gmail.com> Co-authored-by: Christophe Bornet <cbornet@hotmail.com>
9 lines
148 B
Python
9 lines
148 B
Python
"""Dataherald API toolkit."""
|
|
|
|
|
|
from langchain_community.tools.dataherald.tool import DataheraldTextToSQL
|
|
|
|
__all__ = [
|
|
"DataheraldTextToSQL",
|
|
]
|