Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the VoyageAI available models #2

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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
9 changes: 6 additions & 3 deletions platform/integrations/voyage-ai.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,14 @@ On Epsilla Cloud, you can enable Voyage AI integration by providing your Voyage
Epsilla integrates with Voyage AI with the following embedding models:

| Name | Dimensions |
| ------------------------------------ | ---------- |
|--------------------------------------|------------|
| **voyageai/voyage-large-2-instruct** | 1024 |
| **voyageai/voyage-finance-2** | 1024 |
| **voyageai/voyage-multilingual-2** | 1024 |
| **voyageai/voyage-law-2** | 1024 |
| **voyageai/voyage-code-2** | 1536 |
| **voyageai/voyage-large-2** | 1536 |
| **voyageai/voyage-2** | 1024 |
| **voyageai/voyage-code-2** | 1536 |
| **voyageai/voyage-lite-02-instruct** | 1024 |

For Epsilla open source vector db, you just need to add a header in the data ingestion and semantic search queries [like this](../../vector-database/embeddings.md#voyage-ai-embedding).

Expand Down
9 changes: 6 additions & 3 deletions vector-database/embeddings.md
Original file line number Diff line number Diff line change
Expand Up @@ -280,14 +280,17 @@ await db.createTable(

## Voyage AI Embedding

Epsilla supports these VoyageAI embedding models (learn more about Voyage AI embedding at [https://www.voyageai.com/](https://www.voyageai.com/)):
Epsilla supports these VoyageAI embedding models (learn more about Voyage AI embedding at [https://docs.voyageai.com/docs/embeddings](https://docs.voyageai.com/docs/embeddings)):

| Name | Dimensions |
| ------------------------------------ | ---------- |
| **voyageai/voyage-large-2-instruct** | 1024 |
| **voyageai/voyage-finance-2** | 1024 |
| **voyageai/voyage-multilingual-2** | 1024 |
| **voyageai/voyage-law-2** | 1024 |
| **voyageai/voyage-code-2** | 1536 |
| **voyageai/voyage-large-2** | 1536 |
| **voyageai/voyage-2** | 1024 |
| **voyageai/voyage-code-2** | 1536 |
| **voyageai/voyage-lite-02-instruct** | 1024 |

When using Voyage AI embedding, make sure provide the **X-VoyageAI-API-Key** header when connecting to the vector database:

Expand Down