/ src / embeddings / types.py
types.py
 1  """Embedding model types."""
 2  from enum import Enum
 3  
 4  
 5  class EmbeddingModelType(str, Enum):
 6      """Embedding model type enumeration."""
 7  
 8      HUGGINGFACE = "huggingface"
 9      OPENAI = "openai"
10      GEMINI = "gemini"
11