mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-19 08:28:10 +02:00
15 lines
463 B
Python
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",
|
|
]
|