from abc import ABC, abstractmethod from app.configs.constants import AvatarEnum class IVideoGeneratorService(ABC): @abstractmethod async def create_video(self, text: str, avatar: str): pass