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

Add Couchbase vector store #1107

Open
wants to merge 31 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
1c41d14
added couchbase vector store and demo for graphrag
teetangh Sep 9, 2024
7c2061a
fixed typos and updated test file
teetangh Sep 10, 2024
bb4afe1
tests are working now
teetangh Sep 10, 2024
a40ac66
added fields in kwrags, loaaded env vars from .env file, sampled data…
teetangh Sep 11, 2024
be2b075
upgraded load documents
teetangh Sep 11, 2024
3c7c215
changed ANN to KNN
teetangh Sep 11, 2024
de65413
feat: added cluster options and updated logging statements in the demo
teetangh Sep 17, 2024
e386d21
feat: fixed the vector store and the demo
teetangh Sep 19, 2024
8cf8fed
feat: Update GraphRAG notebook with Couchbase setup instructions
teetangh Sep 19, 2024
30bbab9
feat: Update Couchbase connection options in test_couchbasedb.py
teetangh Sep 19, 2024
1ae19f6
feat: Update default Couchbase credentials in test_couchbasedb.py
teetangh Sep 19, 2024
a1d216a
edited documentation and removed filter by id and corresponding tests
teetangh Sep 19, 2024
7b7f664
feat: Refactor CouchbaseVectorStore document loading
teetangh Sep 19, 2024
da1cf77
updated documentation of graph RAG with Couchbase vector store
teetangh Sep 20, 2024
4b3a24e
Refactor GraphRAG notebook with updated Couchbase setup instructions
teetangh Sep 20, 2024
dee314b
Refactor GraphRAG notebook
teetangh Sep 20, 2024
25638bc
updated docs
teetangh Sep 20, 2024
ff16c60
updated docs
teetangh Sep 20, 2024
d238a90
updated docs
teetangh Sep 20, 2024
75de8ab
removed logging
teetangh Sep 20, 2024
e6826bc
removed logging
teetangh Sep 20, 2024
6c702af
updated docs
teetangh Sep 20, 2024
575f45a
updated vector store to support error handling
teetangh Sep 20, 2024
db27ac3
Merge branch 'main' into DA-539-couchbase-support-for-graphrag
teetangh Oct 23, 2024
a4b52b5
Merge branch 'main' into DA-539-couchbase-support-for-graphrag
deniswsrosa Oct 25, 2024
cfb9b88
Merge branch 'main' into DA-539-couchbase-support-for-graphrag
teetangh Nov 7, 2024
87b2c64
Merge branch 'main' into DA-539-couchbase-support-for-graphrag
teetangh Nov 27, 2024
a329a41
Add couchbase package version 4.3.4
teetangh Nov 27, 2024
1703177
Merge branch 'main' into DA-539-couchbase-support-for-graphrag
teetangh Dec 16, 2024
796ecc3
added poetry files
teetangh Dec 16, 2024
c6e2c96
Merge branch 'main' into DA-539-couchbase-support-for-graphrag
teetangh Dec 18, 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
10 changes: 10 additions & 0 deletions examples_notebooks/community_contrib/couchbase/.env.sample
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
INPUT_DIR=""
COUCHBASE_CONNECTION_STRING=""
COUCHBASE_USERNAME=""
COUCHBASE_PASSWORD=""
COUCHBASE_BUCKET_NAME=""
COUCHBASE_SCOPE_NAME=""
COUCHBASE_VECTOR_INDEX_NAME=""
OPENAI_API_KEY=""
LLM_MODEL=""
EMBEDDING_MODEL=""
Loading