Michael Hu
Migrate existing STT providers to infrastructure layer
1be582a
raw
history blame
453 Bytes
"""STT provider implementations."""
from .whisper_provider import WhisperSTTProvider
from .parakeet_provider import ParakeetSTTProvider
from .provider_factory import STTProviderFactory, ASRFactory
from .legacy_compatibility import transcribe_audio, create_audio_content_from_file
__all__ = [
'WhisperSTTProvider',
'ParakeetSTTProvider',
'STTProviderFactory',
'ASRFactory',
'transcribe_audio',
'create_audio_content_from_file'
]