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