You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First, let's download the dataset for our lab. We'll use a subset of our technical documentation as the source data for our documentation chatbot.
3
+
First, let's download the dataset for the lab. We'll use a subset of MongoDB's technical documentation as the source data for the documentation chatbot.
4
4
5
5
Run all the cells under the **Step 2: Load the dataset** section in the notebook to load the articles as a list of Python objects consisting of the content and relevant metadata.
Copy file name to clipboardExpand all lines: docs/40-prepare-the-data/3-embed-data.mdx
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# 👐 Generate embeddings
2
2
3
-
To perform vector search on our data, we need to embed it (i.e. generate embedding vectors) before ingesting it into MongoDB.
3
+
To perform vector search on the data, we need to embed it (i.e. generate embedding vectors) before ingesting it into MongoDB.
4
4
5
5
Fill in any `<CODE_BLOCK_N>` placeholders and run the cells under the **Step 4: Generate embeddings** section in the notebook to embed the chunked articles.
Copy file name to clipboardExpand all lines: docs/40-prepare-the-data/4-ingest-data.mdx
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ import Screenshot from "@site/src/components/Screenshot";
2
2
3
3
# 👐 Ingest data into MongoDB
4
4
5
-
The final step to build a MongoDB vector store for our chatbot is to ingest the embedded article chunks into MongoDB.
5
+
The final step to build a MongoDB vector store for the chatbot is to ingest the embedded article chunks into MongoDB.
6
6
7
7
Fill in any `<CODE_BLOCK_N>` placeholders and run the cells under the **Step 5: Ingest data into MongoDB** section in the notebook to ingest the embedded documents into MongoDB.
Copy file name to clipboardExpand all lines: docs/50-perform-semantic-search/3-vector-search.mdx
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# 👐 Perform semantic search
2
2
3
-
Now let's run some vector search queries against our data present in MongoDB.
3
+
Now let's run some vector search queries against the data present in MongoDB.
4
4
5
5
Fill in any `<CODE_BLOCK_N>` placeholders and run the cells under the **Step 7: Perform semantic search on your data** section in the notebook to run vector search queries against your data.
0 commit comments