Source code for intelligence_layer.evaluation.aggregation.hugging_face_aggregation_repository

from intelligence_layer.evaluation.aggregation.file_aggregation_repository import (
    FileSystemAggregationRepository,
)
from intelligence_layer.evaluation.infrastructure.hugging_face_repository import (
    HuggingFaceRepository,
)


[docs] class HuggingFaceAggregationRepository( FileSystemAggregationRepository, HuggingFaceRepository ): # this class inherits all its behavior from its parents pass