Skip to content

Commit 67b957c

Browse files
committed
update voyage models
1 parent d10e6dd commit 67b957c

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

ai-integrations/langchain-memory-semantic-cache.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@
6666
"from langchain_mongodb import MongoDBAtlasVectorSearch\n",
6767
"from langchain_voyageai import VoyageAIEmbeddings\n",
6868
"\n",
69-
"# Use the voyage-3 embedding model\n",
70-
"embedding_model = VoyageAIEmbeddings(model=\"voyage-3\")\n",
69+
"# Use the voyage-3-large embedding model\n",
70+
"embedding_model = VoyageAIEmbeddings(model=\"voyage-3-large\")\n",
7171
"\n",
7272
"# Create the vector store\n",
7373
"vector_store = MongoDBAtlasVectorSearch.from_connection_string(\n",

create-embeddings/voyage-existing-data.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"source": [
1414
"This notebook is a companion to the [Create Embeddings](https://www.mongodb.com/docs/atlas/atlas-vector-search/create-embeddings/) page. Refer to the page for set-up instructions and detailed explanations.\n",
1515
"\n",
16-
"This notebook takes you through how to generate embeddings from **existing data in Atlas** by using the ``voyage-3`` model from Voyage AI.\n",
16+
"This notebook takes you through how to generate embeddings from **existing data in Atlas** by using the ``voyage-3-large`` model from Voyage AI.\n",
1717
"\n",
1818
"<a target=\"_blank\" href=\"https://colab.research.google.com/github/mongodb/docs-notebooks/blob/main/create-embeddings/voyage-existing-data.ipynb\">\n",
1919
" <img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/>\n",
@@ -55,7 +55,7 @@
5555
"\n",
5656
"# Specify your Voyage API key and embedding model\n",
5757
"os.environ[\"VOYAGE_API_KEY\"] = \"<api-key>\"\n",
58-
"model = \"voyage-3\"\n",
58+
"model = \"voyage-3-large\"\n",
5959
"vo = voyageai.Client()\n",
6060
"\n",
6161
"# Define a function to generate embeddings\n",

create-embeddings/voyage-new-data.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"source": [
1414
"This notebook is a companion to the [Create Embeddings](https://www.mongodb.com/docs/atlas/atlas-vector-search/create-embeddings/) page. Refer to the page for set-up instructions and detailed explanations.\n",
1515
"\n",
16-
"This notebook takes you through how to generate embeddings from **new data** by using the ``voyage-3`` model from Voyage AI.\n",
16+
"This notebook takes you through how to generate embeddings from **new data** by using the ``voyage-3-large`` model from Voyage AI.\n",
1717
"\n",
1818
"<a target=\"_blank\" href=\"https://colab.research.google.com/github/mongodb/docs-notebooks/blob/main/create-embeddings/voyage-new-data.ipynb\">\n",
1919
" <img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/>\n",
@@ -55,7 +55,7 @@
5555
"\n",
5656
"# Specify your Voyage API key and embedding model\n",
5757
"os.environ[\"VOYAGE_API_KEY\"] = \"<api-key>\"\n",
58-
"model = \"voyage-3\"\n",
58+
"model = \"voyage-3-large\"\n",
5959
"vo = voyageai.Client()\n",
6060
"\n",
6161
"# Define a function to generate embeddings\n",

use-cases/rag-with-voyage.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"source": [
1414
"This notebook is a companion to the [Retrieval-Augmented Generation (RAG)](https://www.mongodb.com/docs/atlas/atlas-vector-search/rag/#get-started) tutorial. Refer to the page for set-up instructions and detailed explanations.\n",
1515
"\n",
16-
"This notebook takes you through how to implement RAG with Atlas Vector Search by using the ``voyage-3`` embedding model from Voyage AI and an open-source generative model from Hugging Face.\n",
16+
"This notebook takes you through how to implement RAG with Atlas Vector Search by using the ``voyage-3-large`` embedding model from Voyage AI and an open-source generative model from Hugging Face.\n",
1717
"\n",
1818
"<a target=\"_blank\" href=\"https://colab.research.google.com/github/mongodb/docs-notebooks/blob/main/use-cases/rag-with-voyage.ipynb\">\n",
1919
" <img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/>\n",
@@ -55,7 +55,7 @@
5555
"import voyageai\n",
5656
"\n",
5757
"# Specify the Voyage AI embedding model\n",
58-
"model = \"voyage-3\"\n",
58+
"model = \"voyage-3-large\"\n",
5959
"vo = voyageai.Client()\n",
6060
"\n",
6161
"# Define a function to generate embeddings\n",

0 commit comments

Comments
 (0)