forked from langchain-ai/langchain
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# KDB.AI | ||
|
||
>[KDB.AI](https://kdb.ai) is a powerful knowledge-based vector database and search engine that allows you to build scalable, reliable AI applications, using real-time data, by providing advanced search, recommendation and personalization. | ||
|
||
## Installation and Setup | ||
|
||
Install the Python SDK: | ||
|
||
```bash | ||
pip install kdbai-client | ||
``` | ||
|
||
|
||
## Vector store | ||
|
||
There exists a wrapper around KDB.AI indexes, allowing you to use it as a vectorstore, | ||
whether for semantic search or example selection. | ||
|
||
```python | ||
from langchain_community.vectorstores import KDBAI | ||
``` | ||
|
||
For a more detailed walkthrough of the KDB.AI vectorstore, see [this notebook](/docs/integrations/vectorstores/kdbai) |