Spaces:
Build error
Build error
from abc import ABC, abstractmethod | |
class TextToSpeech(ABC): | |
async def stream(self, *args, **kwargs): | |
pass | |
from abc import ABC, abstractmethod | |
class TextToSpeech(ABC): | |
async def stream(self, *args, **kwargs): | |
pass | |