Client
This module contains functionality related to the the client
module for embedding.vector_stores.qdrant
.
Client
QdrantClientFactory
Bases: SingletonFactory
Singleton factory for creating and managing Qdrant client instances.
This factory ensures that only one Qdrant client instance is created for each unique configuration, promoting resource efficiency.
Source code in src/embedding/vector_stores/qdrant/client.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 |
|