feat: Qdrant support (#1228)

* feat: Qdrant support

* Update private_gpt/components/vector_store/vector_store_component.py
This commit is contained in:
Anush 2023-11-14 01:53:26 +05:30 committed by GitHub
parent 86fc4781d8
commit 03d1ae6d70
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 320 additions and 18 deletions

View file

@ -15,6 +15,7 @@ pypdf = "^3.16.2"
llama-index = "0.8.67"
chromadb = "^0.4.13"
watchdog = "^3.0.0"
qdrant-client = {version = "^1.6.4", optional = true}
[tool.poetry.group.dev.dependencies]
black = "^22"
@ -42,6 +43,9 @@ sentence-transformers = "^2.2.2"
torch = ">=2.0.0, !=2.0.1, !=2.1.0"
transformers = "^4.34.0"
[tool.poetry.extras]
qdrant = ["qdrant-client"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"