(feat:TTS) create gtts over abstraction

This commit is contained in:
ManishMadan2882
2024-10-29 03:11:51 +05:30
parent 1c791f240a
commit 7ff3a31e72
4 changed files with 55 additions and 0 deletions

10
application/tts/base.py Normal file
View File

@@ -0,0 +1,10 @@
from abc import ABC, abstractmethod
class BaseTTS(ABC):
def __init__(self):
pass
@abstractmethod
def text_to_speech(self, *args, **kwargs):
pass