Fix video generation

This commit is contained in:
Cristiano Ferreira
2024-11-08 19:05:29 +00:00
parent a3ea91793e
commit b473b30a75
3 changed files with 12 additions and 11 deletions

View File

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