Skip to content
This repository was archived by the owner on May 10, 2024. It is now read-only.
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions docs/embeddings/together-ai-embeddings.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
---

# Together Embeddings Endpoint.

Together AI Recently launched [embeddings endpoint](https://docs.together.ai/docs/embeddings-rest) and they offer really cheap yet fast inference endpoints, you can use them with Chroma using `TogetherAIEmbeddingFunction`.

A list of available embedding models can be seen [here](https://docs.together.ai/docs/embedding-models)

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

```