Skip to content

Commit

Permalink
Added missing comma in docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
caseyclements committed Feb 5, 2025
1 parent b42d29c commit 8f7b6ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/langchain-mongodb/langchain_mongodb/vectorstores.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class MongoDBAtlasVectorSearch(VectorStore):
from langchain_openai import OpenAIEmbeddings
vector_store = MongoDBAtlasVectorSearch.from_connection_string(
connection_string=os=MONGODB_ATLAS_CONNECTION_STRING
connection_string=os=MONGODB_ATLAS_CONNECTION_STRING,
namespace="db_name.collection_name",
embedding=OpenAIEmbeddings(),
index_name="vector_index",
Expand Down

0 comments on commit 8f7b6ca

Please sign in to comment.