Dataherald
This notebook goes over how to use the dataherald component.
First, you need to set up your Dataherald account and get your API KEY:
- Go to dataherald and sign up here
- Once you are logged in your Admin Console, create an API KEY
- pip install dataherald
Then we will need to set some environment variables:
- Save your API KEY into DATAHERALD_API_KEY env variable
pip install dataherald
import os
os.environ["DATAHERALD_API_KEY"] = ""
from langchain_community.utilities.dataherald import DataheraldAPIWrapper
API Reference:
dataherald = DataheraldAPIWrapper(db_connection_id="65fb766367dd22c99ce1a12d")
dataherald.run("How many employees are in the company?")
'select COUNT(*) from employees'