Some stuff

This commit is contained in:
2024-02-13 14:15:27 +01:00
parent 3567b9dc75
commit e8121e3e8d
14 changed files with 229 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
from abc import ABC, abstractmethod
from ..BaseEngine import BaseEngine
class BaseTTSEngine(BaseEngine):
pass
@abstractmethod
def synthesize(self, text: str, path: str) -> str:
pass