5 lines
209 B
Python
5 lines
209 B
Python
|
|
from app.providers.tts.base import TTSProvider
|
||
|
|
|
||
|
|
class PiperTTSProvider(TTSProvider):
|
||
|
|
async def synthesize(self, text: str, voice: str | None = None, audio_format: str = "pcm") -> bytes:
|
||
|
|
return b""
|