pycui's picture
Add RealChar deployment for HuggingFace (V0)
babeaf6
raw
history blame contribute delete
141 Bytes
from abc import ABC, abstractmethod
class TextToSpeech(ABC):
@abstractmethod
async def stream(self, *args, **kwargs):
pass