5 lines
190 B
Python
5 lines
190 B
Python
|
|
from abc import ABC, abstractmethod
|
||
|
|
|
||
|
|
class TTSProvider(ABC):
|
||
|
|
@abstractmethod
|
||
|
|
async def synthesize(self, text: str, voice: str | None = None, audio_format: str = "pcm") -> bytes: ...
|