code/embedding-function/utilities/helpers/config/embedding_config.py (24 lines of code) (raw):

from ..document_loading_helper import LoadingSettings from ..document_chunking_helper import ChunkingSettings class EmbeddingConfig(ChunkingSettings, LoadingSettings): def __init__( self, document_type: str, chunking: ChunkingSettings | None, loading: LoadingSettings | None, use_advanced_image_processing: bool, ): self.document_type = document_type self.chunking = chunking self.loading = loading self.use_advanced_image_processing = use_advanced_image_processing def __eq__(self, other): if isinstance(self, other.__class__): return ( self.document_type == other.document_type and self.chunking == other.chunking and self.loading == other.loading and self.use_advanced_image_processing == other.use_advanced_image_processing ) return False