1
0
mirror of https://github.com/ijaric/voice_assistant.git synced 2025-05-24 14:33:26 +00:00

fix: [#47] voice_models must be declared

This commit is contained in:
ksieuk 2023-10-13 14:23:34 +03:00
parent d7528028ce
commit 881c611650

View File

@ -12,7 +12,7 @@ class TTSBaseRepository(abc.ABC):
@property
@abc.abstractmethod
def voice_models(self) -> models.LIST_VOICE_MODELS_TYPE:
...
raise NotImplementedError
@abc.abstractmethod
def get_audio_as_bytes(self, request: models.TTSCreateRequestModel) -> models.TTSCreateResponseModel: