mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-25 08:48:13 +02:00
11 lines
286 B
Python
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",
|
|
]
|