mirror of
https://github.com/zylon-ai/private-gpt.git
synced 2025-12-22 07:40:12 +01:00
feat(Vector): support pgvector (#1624)
This commit is contained in:
parent
066ea5bf28
commit
cd40e3982b
6 changed files with 323 additions and 59 deletions
|
|
@ -16,6 +16,10 @@ llama-index = { extras = ["local_models"], version = "0.9.3" }
|
|||
watchdog = "^3.0.0"
|
||||
qdrant-client = "^1.6.9"
|
||||
chromadb = {version = "^0.4.13", optional = true}
|
||||
asyncpg = {version = "^0.29.0", optional = true}
|
||||
pgvector = {version = "^0.2.5", optional = true}
|
||||
psycopg2-binary = {version = "^2.9.9", optional = true}
|
||||
sqlalchemy = {version = "^2.0.27", optional = true}
|
||||
|
||||
[tool.poetry.group.dev.dependencies]
|
||||
black = "^22"
|
||||
|
|
@ -45,6 +49,7 @@ transformers = "^4.34.0"
|
|||
|
||||
[tool.poetry.extras]
|
||||
chroma = ["chromadb"]
|
||||
pgvector = ["sqlalchemy", "pgvector", "psycopg2-binary", "asyncpg"]
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core>=1.0.0"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue