dograh/evals/stt/providers/__init__.py
Abhishek 911c5ed416
fix: changes to update pipecat version to 0.0.100 (#122)
* feat: add stt evals

* add smart turn as provider

* chore: remove deprecations

* chore: format files

* fix: remove deprecated UserIdleProcessor

* fix: remove deprecated TranscriptProcessor

* chore: update pipecat submodule

* feat: add evals visualisation

* fix: trigger llm generation on client connected and pipeline started

* chore: update pipecat

* chore: update pipecat submodule

* Add tests

* fix: slow loading of workflow page

* chore: update pipecat submodule

* Show version after release

* Fixes #99

* fix: provider check for websocket connection

* Fixes #107

* Fix #96

* chore: fix documentation

* fix: cloudonix campaign call error

---------

Co-authored-by: Sabiha Khan <sabihak89@gmail.com>
2026-01-23 18:53:59 +05:30

16 lines
499 B
Python

from .base import EventCallback, 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__ = [
"EventCallback",
"STTProvider",
"TranscriptionResult",
"Word",
"DeepgramProvider",
"DeepgramFluxProvider",
"SpeechmaticsProvider",
"LocalSmartTurnProvider",
]