Chroma provides a convenient wrapper around OpenAI’s embedding API. This embedding function runs remotely on OpenAI’s servers, and requires an API key. You can get an API key by signing up for an account at OpenAI. The following OpenAI Embedding Models are supported:Documentation Index
Fetch the complete documentation index at: https://docs.trychroma.com/llms.txt
Use this file to discover all available pages before exploring further.
text-embedding-ada-002text-embedding-3-smalltext-embedding-3-large
Visit OpenAI Embeddings documentation for more information.
- Python
- TypeScript
This embedding function relies on the To use the OpenAI embedding models on other platforms such as Azure, you can use the
openai python package, which you can install with pip install openai.You can pass in an optional model_name argument, which lets you choose which OpenAI embeddings model to use. By default, Chroma uses text-embedding-ada-002.api_base and api_type parameters: