mirror of
https://github.com/hwchase17/langchain
synced 2024-10-29 17:07:25 +00:00
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
|
||
|
```
|
||
|
|