Skip to content

Commit 30ddaa1

Browse files
authored
Support Deepgram TTS (#1201)
1 parent 57869fc commit 30ddaa1

File tree

4 files changed

+427
-2
lines changed

4 files changed

+427
-2
lines changed

.changeset/warm-pillows-grow.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"livekit-plugins-deepgram": patch
3+
---
4+
5+
Support Deepgram TTS

livekit-plugins/livekit-plugins-deepgram/livekit/plugins/deepgram/__init__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
from .stt import STT, AudioEnergyFilter, SpeechStream
2+
from .tts import TTS
23
from .version import __version__
34

4-
__all__ = ["STT", "SpeechStream", "AudioEnergyFilter", "__version__"]
5+
__all__ = ["STT", "SpeechStream", "AudioEnergyFilter", "__version__", "TTS"]
56

67

78
from livekit.agents import Plugin

0 commit comments

Comments
 (0)