from huggingface_hub import HfApi from src.huggingface.get_environments import get_environments from src.huggingface.get_files import get_mp4_paths class HuggingFaceClient: def __init__(self) -> None: self.hf_api = HfApi() self.environments = get_environments(self.hf_api) self.mp4_paths = get_mp4_paths(environments=self.environments)