mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-29 16:43:16 +00:00
10 lines
175 B
Python
10 lines
175 B
Python
from abc import ABC, abstractmethod
|
|
|
|
|
|
class BaseTTS(ABC):
|
|
def __init__(self):
|
|
pass
|
|
|
|
@abstractmethod
|
|
def text_to_speech(self, *args, **kwargs):
|
|
pass |