CoolFace
Apppublic

nifty-coder/stemsplit-backend

sourceHugging Faceupdated 8mo agoView on Hugging Face
0likes
__init__.py14 linesDownload Raw Back to providers
1"""2Speech-to-text provider implementations for the voice control optimization system.3 4This package contains implementations of various STT providers that integrate5with the provider manager system.6"""7 8from .web_speech_provider import WebSpeechProvider9from .azure_speech_provider import AzureSpeechProvider10 11__all__ = [12    "WebSpeechProvider",13    "AzureSpeechProvider",14]