/ src / vector_stores / types.py
types.py
 1  """Vector store types."""
 2  from enum import Enum
 3  
 4  
 5  class VectorStoreType(str, Enum):
 6      """Vector store type enumeration."""
 7  
 8      CHROMADB = "chromadb"
 9      QDRANT = "qdrant"
10  
11