Skip to main content

Together Embeddings Endpoint.

Together AI Recently launched embeddings inference endpoints, you can use them with Chroma using TogetherAIEmbeddingFunction.

A list of available embedding models can be seen here You can get your API Keys from here

import chromadb.utils.embedding_functions as embedding_functions
together_embedding = embedding_functions.TogetherAIEmbeddingFunction(
api_key=api_key, model=model_name)