Update rag_llamaindex.py
Browse files- rag_llamaindex.py +1 -1
rag_llamaindex.py
CHANGED
@@ -73,7 +73,7 @@ class LlamaIndexRAG(BaseRAG):
|
|
73 |
def get_vector_store(self):
|
74 |
return MongoDBAtlasVectorSearch(
|
75 |
MongoClient(self.MONGODB_ATLAS_CLUSTER_URI),
|
76 |
-
db_name = MONGODB_DB_NAME,
|
77 |
collection_name = self.MONGODB_COLLECTION_NAME,
|
78 |
index_name = self.MONGODB_INDEX_NAME
|
79 |
)
|
|
|
73 |
def get_vector_store(self):
|
74 |
return MongoDBAtlasVectorSearch(
|
75 |
MongoClient(self.MONGODB_ATLAS_CLUSTER_URI),
|
76 |
+
db_name = self.MONGODB_DB_NAME,
|
77 |
collection_name = self.MONGODB_COLLECTION_NAME,
|
78 |
index_name = self.MONGODB_INDEX_NAME
|
79 |
)
|