2023-08-23 03:28:11 +00:00
|
|
|
# Atlas
|
2023-02-27 06:11:38 +00:00
|
|
|
|
2023-08-23 03:28:11 +00:00
|
|
|
>[Nomic Atlas](https://docs.nomic.ai/index.html) is a platform for interacting with both
|
|
|
|
> small and internet scale unstructured datasets.
|
2023-02-27 06:11:38 +00:00
|
|
|
|
|
|
|
|
2023-08-23 03:28:11 +00:00
|
|
|
## Installation and Setup
|
2023-03-10 00:31:14 +00:00
|
|
|
|
2023-08-23 03:28:11 +00:00
|
|
|
- Install the Python package with `pip install nomic`
|
|
|
|
- `Nomic` is also included in langchains poetry extras `poetry install -E all`
|
2023-03-10 00:31:14 +00:00
|
|
|
|
2023-02-27 06:11:38 +00:00
|
|
|
|
2023-08-23 03:28:11 +00:00
|
|
|
## VectorStore
|
2023-02-27 06:11:38 +00:00
|
|
|
|
2023-08-23 03:28:11 +00:00
|
|
|
See a [usage example](/docs/integrations/vectorstores/atlas).
|
2023-02-27 06:11:38 +00:00
|
|
|
|
|
|
|
```python
|
|
|
|
from langchain.vectorstores import AtlasDB
|
2023-08-23 03:28:11 +00:00
|
|
|
```
|