dograh/evals/stt/providers/__init__.py
2026-01-06 15:26:07 +05:30

15 lines
463 B
Python

from .base import STTProvider, TranscriptionResult, Word
from .deepgram_provider import DeepgramProvider
from .deepgram_flux_provider import DeepgramFluxProvider
from .speechmatics_provider import SpeechmaticsProvider
from .local_smart_turn_provider import LocalSmartTurnProvider
__all__ = [
"STTProvider",
"TranscriptionResult",
"Word",
"DeepgramProvider",
"DeepgramFluxProvider",
"SpeechmaticsProvider",
"LocalSmartTurnProvider",
]