dograh/evals/stt/providers/__init__.py
2026-01-06 13:18:13 +05:30

11 lines
286 B
Python

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