File size: 141 Bytes
babeaf6
 
 
 
 
 
 
1
2
3
4
5
6
7
8
from abc import ABC, abstractmethod


class TextToSpeech(ABC):
    @abstractmethod
    async def stream(self, *args, **kwargs):
        pass