Construct a MongoDB Atlas Vector Search vector store
from a MongoDB connection URI.
from_connection_string(
cls,
connection_string: str,
namespace: str,
embedding: Embeddings,
**kwargs: Any = {}
) -> MongoDBAtlasVectorSearch| Name | Type | Description |
|---|---|---|
connection_string* | str | A valid MongoDB connection URI. |
namespace* | str | A valid MongoDB namespace (database and collection). |
embedding* | Embeddings | The text embedding model to use for the vector store. |