Vector_store
This module contains functionality related to the the vector_store
module for embedding.vector_stores.chroma
.
Vector_store
ChromaVectorStoreFactory
Bases: SingletonFactory
Factory for creating configured Chroma vector stores.
This singleton factory creates and manages ChromaVectorStore instances based on the provided configuration. It ensures that only one instance is created for each unique configuration.
Source code in src/embedding/vector_stores/chroma/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 |
|