mirror of
https://github.com/kennethreitz/langchain.git
synced 2026-06-05 23:00:18 +00:00
29 lines
499 B
Markdown
29 lines
499 B
Markdown
# AwaDB
|
|
|
|
>[AwaDB](https://github.com/awa-ai/awadb) is an AI Native database for the search and storage of embedding vectors used by LLM Applications.
|
|
|
|
## Installation and Setup
|
|
|
|
```bash
|
|
pip install awadb
|
|
```
|
|
|
|
|
|
## Vector Store
|
|
|
|
|
|
```python
|
|
from langchain.vectorstores import AwaDB
|
|
```
|
|
|
|
See a [usage example](/docs/integrations/vectorstores/awadb).
|
|
|
|
|
|
## Text Embedding Model
|
|
|
|
```python
|
|
from langchain.embeddings import AwaEmbeddings
|
|
```
|
|
|
|
See a [usage example](/docs/integrations/text_embedding/awadb).
|