Skip to content
Closed
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
6 changes: 3 additions & 3 deletions notebooks/evals/Patronus_MongoDB.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@
"source": [
"# The Technical Guide on RAG Evaluation with Patronus and MongoDB\n",
"\n",
"## How to Query and Retrieve Results from Atlas Vector Store\n",
"## How to Query and Retrieve Results from MongoDB Vector Store\n",
"\n",
"To query and retrieve results from MongoDB Atlas vector store, follow these three steps:\n",
"To query and retrieve results from MongoDB MongoDB vector store, follow these three steps:\n",
"\n",
"### Set Up the Database on Atlas\n",
"First, you need to create an account on MongoDB Atlas. This involves signing in to your MongoDB Atlas account, creating a new cluster, and adding a database and collection. You can skip this step if you have already have your collection for vector search.\n",
"\n",
"### Create an Atlas Index\n",
"You can create an index either via code or using the Atlas UI. Here’s an example of how to create an index using the Atlas UI:\n",
"1. Navigate to your collection.\n",
"2. Click on “Atlas search” and then “Create Index”.\n",
"2. Click on “MongoDB Search” and then “Create Index”.\n",
"3. Define the index fields and type. \n",
"\n",
"Alternatively, you can create an index programmatically. The following index definition indexes the vector embeddings field (`fieldToIndex`) for performing vector search.\n"
Expand Down
Loading