Vector_store
This module contains functionality related to the the vector_store
module for embedding.vector_stores.pgvector
.
Vector_store
PGVectorStoreFactory
Bases: SingletonFactory
Factory for creating configured PostgreSQL vector store clients.
This factory creates and manages a singleton instance of PGVectorStore for vector similarity search using the pgvector extension.
Source code in src/embedding/vector_stores/pgvector/vector_store.py
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
|