mirror of
https://github.com/hwchase17/langchain
synced 2024-10-31 15:20:26 +00:00
e1f4f9ac3e
Added missed pages for `integrations/providers` from `vectorstores`. Updated several `vectorstores` notebooks.
25 lines
578 B
Plaintext
25 lines
578 B
Plaintext
# MongoDB Atlas
|
|
|
|
>[MongoDB Atlas](https://www.mongodb.com/docs/atlas/) is a fully-managed cloud
|
|
> database available in AWS, Azure, and GCP. It now has support for native
|
|
> Vector Search on the MongoDB document data.
|
|
|
|
## Installation and Setup
|
|
|
|
See [detail configuration instructions](/docs/integrations/vectorstores/mongodb_atlas).
|
|
|
|
We need to install `pymongo` python package.
|
|
|
|
```bash
|
|
pip install pymongo
|
|
```
|
|
|
|
## Vector Store
|
|
|
|
See a [usage example](/docs/integrations/vectorstores/mongodb_atlas).
|
|
|
|
```python
|
|
from langchain.vectorstores import MongoDBAtlasVectorSearch
|
|
```
|
|
|