Co-authored-by: Eugene Yurtsev <eyurtsev@gmail.com>
2.3 KiB
Integration Reference
Besides the installation of this python package, you will also need to install packages and set environment variables depending on which chains you want to use.
Note: the reason these packages are not included in the dependencies by default is that as we imagine scaling this package, we do not want to force dependencies that are not needed.
The following use cases require specific installs and api keys:
- OpenAI:
- Install requirements with
pip install openai
- Get an OpenAI api key and either set it as an environment variable (
OPENAI_API_KEY
) or pass it to the LLM constructor asopenai_api_key
.
- Install requirements with
- Cohere:
- Install requirements with
pip install cohere
- Get a Cohere api key and either set it as an environment variable (
COHERE_API_KEY
) or pass it to the LLM constructor ascohere_api_key
.
- Install requirements with
- HuggingFace Hub
- Install requirements with
pip install huggingface_hub
- Get a HuggingFace Hub api token and either set it as an environment variable (
HUGGINGFACEHUB_API_TOKEN
) or pass it to the LLM constructor ashuggingfacehub_api_token
.
- Install requirements with
- SerpAPI:
- Install requirements with
pip install google-search-results
- Get a SerpAPI api key and either set it as an environment variable (
SERPAPI_API_KEY
) or pass it to the LLM constructor asserpapi_api_key
.
- Install requirements with
- NatBot:
- Install requirements with
pip install playwright
- Install requirements with
- Wikipedia:
- Install requirements with
pip install wikipedia
- Install requirements with
- Elasticsearch:
- Install requirements with
pip install elasticsearch
- Set up Elasticsearch backend. If you want to do locally, this is a good guide.
- Install requirements with
- FAISS:
- Install requirements with
pip install faiss
for Python 3.7 andpip install faiss-cpu
for Python 3.10+.
- Install requirements with
- Manifest:
- Install requirements with
pip install manifest-ml
(Note: this is only available in Python 3.8+ currently).
- Install requirements with
If you are using the NLTKTextSplitter
or the SpacyTextSplitter
, you will also need to install the appropriate models. For example, if you want to use the SpacyTextSplitter
, you will need to install the en_core_web_sm
model with python -m spacy download en_core_web_sm
. Similarly, if you want to use the NLTKTextSplitter
, you will need to install the punkt
model with python -m nltk.downloader punkt
.