nifty-coder/stemsplit-backend
0
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]