mirror of
https://github.com/hwchase17/langchain
synced 2024-10-31 15:20:26 +00:00
02430e25b6
- **Description**: [BagelDB](bageldb.ai) a collaborative vector database. Integrated the bageldb PyPi package with langchain with related tests and code. - **Issue**: Not applicable. - **Dependencies**: `betabageldb` PyPi package. - **Tag maintainer**: @rlancemartin, @eyurtsev, @baskaryan - **Twitter handle**: bageldb_ai (https://twitter.com/BagelDB_ai) We ran `make format`, `make lint` and `make test` locally. Followed the contribution guideline thoroughly https://github.com/hwchase17/langchain/blob/master/.github/CONTRIBUTING.md --------- Co-authored-by: Towhid1 <nurulaktertowhid@gmail.com>
22 lines
542 B
Plaintext
22 lines
542 B
Plaintext
# BagelDB
|
|
|
|
> [BagelDB](https://www.bageldb.ai/) (`Open Vector Database for AI`), is like GitHub for AI data.
|
|
It is a collaborative platform where users can create,
|
|
share, and manage vector datasets. It can support private projects for independent developers,
|
|
internal collaborations for enterprises, and public contributions for data DAOs.
|
|
|
|
## Installation and Setup
|
|
|
|
```bash
|
|
pip install betabageldb
|
|
```
|
|
|
|
|
|
## VectorStore
|
|
|
|
See a [usage example](/docs/integrations/vectorstores/bageldb).
|
|
|
|
```python
|
|
from langchain.vectorstores import Bagel
|
|
```
|