mirror of
https://github.com/zylon-ai/private-gpt.git
synced 2025-12-22 07:40:12 +01:00
feat: Qdrant support (#1228)
* feat: Qdrant support * Update private_gpt/components/vector_store/vector_store_component.py
This commit is contained in:
parent
86fc4781d8
commit
03d1ae6d70
6 changed files with 320 additions and 18 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue