Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Kdb.ai documentation improvements #3

Closed
wants to merge 30 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
53ea241
KDB.AI vector store addition to LangChain.
bu2kx Aug 27, 2023
c171d68
Add filtered similarity search in the KDBAI vector store.
bu2kx Aug 28, 2023
b7b7234
Fix insertion of large batches of text.
bu2kx Sep 7, 2023
2c1855c
Fix KDB.AI vector store for small batch of texts.
bu2kx Sep 7, 2023
8286293
Add notebook to demonstrate KDB.AI vector store for Q&A against a doc…
bu2kx Sep 7, 2023
5ba7e1c
Update KDB.AI vector store notebook.
bu2kx Sep 8, 2023
ac92682
Fix bug related to the batching when inserting data.
bu2kx Sep 8, 2023
ee9bed5
Improve KDB.AI vector store.
bu2kx Oct 3, 2023
e7d5e32
Fix KDBAI import following rebase.
bu2kx Oct 11, 2023
e818ff8
Add kdbai_client dependency for the KDBAI vector store.
bu2kx Oct 13, 2023
5f1769a
Improve documentation for the KDB.AI vector store.
bu2kx Oct 23, 2023
b2c1816
Minor fix to libs/langchain/pyproject.toml related to KDB.AI vector s…
bu2kx Oct 23, 2023
25de715
Merge upstream master into KDB.AI branch.
bu2kx Nov 2, 2023
ed5834c
Minor fix following PR review.
bu2kx Nov 2, 2023
15d8918
Minor fix following PR review.
bu2kx Nov 2, 2023
0f1f691
Minor fix following PR review.
bu2kx Nov 2, 2023
7fd4977
Minor fix.
bu2kx Nov 2, 2023
fd587ce
Fix code linting.
bu2kx Nov 2, 2023
7784d7e
Fix KDBAI vector store to pass CI and fix sample notebook.
bu2kx Nov 3, 2023
6097489
Merge branch 'master' into KDB.AI
bu2kx Nov 3, 2023
009ce8f
Rebase and fix tests.
bu2kx Nov 3, 2023
11548d0
Merge branch 'master' into KDB.AI
cmccarthy1 Dec 13, 2023
819f984
Merge branch 'langchain-ai:master' into KDB.AI
nbyrneKX Jan 4, 2024
9c1b21a
Moved to langchain-community
nbyrneKX Jan 4, 2024
b5041e2
KDB.AI provider documentation
nbyrneKX Jan 4, 2024
9ee3276
Improve formatting of the KDB.AI LangChain documentation
jburrKX Jan 8, 2024
d5773be
Fix small grammatical error
jburrKX Jan 8, 2024
e8aacd9
Add missing link URL
jburrKX Jan 8, 2024
ecbfc53
Additional link URL fix
jburrKX Jan 8, 2024
25421a7
Update docs/docs/integrations/vectorstores/kdbai.ipynb
jburrKX Jan 8, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions docs/docs/integrations/providers/kdbai.mdx
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)
Loading