Embedchain supports several embedding models from the following providers:
To use OpenAI embedding function, you have to set the OPENAI_API_KEY
environment variable. You can obtain the OpenAI API key from the OpenAI Platform.
Once you have obtained the key, you can use it like this:
text-embedding-3-small
and text-embedding-3-large
. Embedchain supports both these models. Below you can find YAML config for both:To use Google AI embedding function, you have to set the GOOGLE_API_KEY
environment variable. You can obtain the Google API key from the Google Maker Suite
For more details regarding the Google AI embedding model, please refer to the Google AI documentation.
To use Azure OpenAI embedding model, you have to set some of the azure openai related environment variables as given in the code block below:
You can find the list of models and deployment name on the Azure OpenAI Platform.
GPT4All supports generating high quality embeddings of arbitrary length documents of text using a CPU optimized contrastively trained Sentence Transformer.
Hugging Face supports generating embeddings of arbitrary length documents of text using Sentence Transformer library. Example of how to generate embeddings using hugging face is given below:
Embedchain supports Googleโs VertexAI embeddings model through a simple interface. You just have to pass the model_name
in the config yaml and it would work out of the box.
NVIDIA AI Foundation Endpoints let you quickly use NVIDIAโs AI models, such as Mixtral 8x7B, Llama 2 etc, through our API. These models are available in the NVIDIA NGC catalog, fully optimized and ready to use on NVIDIAโs AI platform. They are designed for high speed and easy customization, ensuring smooth performance on any accelerated setup.
In order to use embedding models and LLMs from NVIDIA AI, create an account on NVIDIA NGC Service.
Generate an API key from their dashboard. Set the API key as NVIDIA_API_KEY
environment variable. Note that the NVIDIA_API_KEY
will start with nvapi-
.
Below is an example of how to use LLM model and embedding model from NVIDIA AI: