Files
viralfactory/src/engines/TTSEngine/BaseTTSEngine.py

11 lines
205 B
Python
Raw Normal View History

2024-02-13 14:15:27 +01:00
from abc import ABC, abstractmethod
from ..BaseEngine import BaseEngine
class BaseTTSEngine(BaseEngine):
pass
@abstractmethod
def synthesize(self, text: str, path: str) -> str:
2024-02-14 17:49:51 +01:00
pass