mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
e1f4f9ac3e
Added missed pages for `integrations/providers` from `vectorstores`. Updated several `vectorstores` notebooks.
19 lines
448 B
Plaintext
19 lines
448 B
Plaintext
# Atlas
|
|
|
|
>[Nomic Atlas](https://docs.nomic.ai/index.html) is a platform for interacting with both
|
|
> small and internet scale unstructured datasets.
|
|
|
|
|
|
## Installation and Setup
|
|
|
|
- Install the Python package with `pip install nomic`
|
|
- `Nomic` is also included in langchains poetry extras `poetry install -E all`
|
|
|
|
|
|
## VectorStore
|
|
|
|
See a [usage example](/docs/integrations/vectorstores/atlas).
|
|
|
|
```python
|
|
from langchain.vectorstores import AtlasDB
|
|
``` |