Add support for pgvector (#1675)

This commit is contained in:
Dev Khant
2024-08-13 00:15:08 +05:30
committed by GitHub
parent 629bb5bb63
commit 6cc4a31e91
8 changed files with 352 additions and 81 deletions

View File

@@ -13,7 +13,8 @@ class VectorStoreConfig(BaseModel):
_provider_configs: Dict[str, str] = {
"qdrant": "QdrantConfig",
"chroma": "ChromaDbConfig"
"chroma": "ChromaDbConfig",
"pgvector": "PGVectorConfig"
}
@model_validator(mode="after")