mirror of
https://github.com/kennethreitz/langchain.git
synced 2026-06-05 23:00:18 +00:00
26 lines
971 B
Plaintext
26 lines
971 B
Plaintext
# Rockset
|
|
|
|
>[Rockset](https://rockset.com/product/) is a real-time analytics database service for serving low latency, high concurrency analytical queries at scale. It builds a Converged Index™ on structured and semi-structured data with an efficient store for vector embeddings. Its support for running SQL on schemaless data makes it a perfect choice for running vector search with metadata filters.
|
|
|
|
## Installation and Setup
|
|
|
|
Make sure you have Rockset account and go to the web console to get the API key. Details can be found on [the website](https://rockset.com/docs/rest-api/).
|
|
|
|
```bash
|
|
pip install rockset
|
|
```
|
|
|
|
## Vector Store
|
|
|
|
See a [usage example](/docs/modules/data_connection/vectorstores/integrations/rockset.html).
|
|
|
|
```python
|
|
from langchain.vectorstores import RocksetDB
|
|
```
|
|
|
|
## Document Loader
|
|
|
|
See a [usage example](docs/modules/data_connection/document_loaders/integrations/rockset).
|
|
```python
|
|
from langchain.document_loaders import RocksetLoader
|
|
``` |