livekit-plugins-deepgram 1.0.10__tar.gz → 1.0.12__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {livekit_plugins_deepgram-1.0.10 → livekit_plugins_deepgram-1.0.12}/PKG-INFO +2 -2
- {livekit_plugins_deepgram-1.0.10 → livekit_plugins_deepgram-1.0.12}/livekit/plugins/deepgram/stt.py +3 -1
- {livekit_plugins_deepgram-1.0.10 → livekit_plugins_deepgram-1.0.12}/livekit/plugins/deepgram/version.py +1 -1
- {livekit_plugins_deepgram-1.0.10 → livekit_plugins_deepgram-1.0.12}/pyproject.toml +1 -1
- {livekit_plugins_deepgram-1.0.10 → livekit_plugins_deepgram-1.0.12}/.gitignore +0 -0
- {livekit_plugins_deepgram-1.0.10 → livekit_plugins_deepgram-1.0.12}/README.md +0 -0
- {livekit_plugins_deepgram-1.0.10 → livekit_plugins_deepgram-1.0.12}/livekit/plugins/deepgram/__init__.py +0 -0
- {livekit_plugins_deepgram-1.0.10 → livekit_plugins_deepgram-1.0.12}/livekit/plugins/deepgram/_utils.py +0 -0
- {livekit_plugins_deepgram-1.0.10 → livekit_plugins_deepgram-1.0.12}/livekit/plugins/deepgram/log.py +0 -0
- {livekit_plugins_deepgram-1.0.10 → livekit_plugins_deepgram-1.0.12}/livekit/plugins/deepgram/models.py +0 -0
- {livekit_plugins_deepgram-1.0.10 → livekit_plugins_deepgram-1.0.12}/livekit/plugins/deepgram/py.typed +0 -0
- {livekit_plugins_deepgram-1.0.10 → livekit_plugins_deepgram-1.0.12}/livekit/plugins/deepgram/tts.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: livekit-plugins-deepgram
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.12
|
4
4
|
Summary: Agent Framework plugin for services using Deepgram's API.
|
5
5
|
Project-URL: Documentation, https://docs.livekit.io
|
6
6
|
Project-URL: Website, https://livekit.io/
|
@@ -18,7 +18,7 @@ Classifier: Topic :: Multimedia :: Sound/Audio
|
|
18
18
|
Classifier: Topic :: Multimedia :: Video
|
19
19
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
20
20
|
Requires-Python: >=3.9.0
|
21
|
-
Requires-Dist: livekit-agents[codecs]>=1.0.
|
21
|
+
Requires-Dist: livekit-agents[codecs]>=1.0.12
|
22
22
|
Requires-Dist: numpy>=1.26
|
23
23
|
Description-Content-Type: text/markdown
|
24
24
|
|
{livekit_plugins_deepgram-1.0.10 → livekit_plugins_deepgram-1.0.12}/livekit/plugins/deepgram/stt.py
RENAMED
@@ -539,7 +539,9 @@ class SpeechStream(stt.SpeechStream):
|
|
539
539
|
aiohttp.WSMsgType.CLOSE,
|
540
540
|
aiohttp.WSMsgType.CLOSING,
|
541
541
|
):
|
542
|
-
|
542
|
+
# close is expected, see SpeechStream.aclose
|
543
|
+
# or when the agent session ends, the http session is closed
|
544
|
+
if closing_ws or self._session.closed:
|
543
545
|
return
|
544
546
|
|
545
547
|
# this will trigger a reconnection, see the _run loop
|
@@ -22,7 +22,7 @@ classifiers = [
|
|
22
22
|
"Programming Language :: Python :: 3.10",
|
23
23
|
"Programming Language :: Python :: 3 :: Only",
|
24
24
|
]
|
25
|
-
dependencies = ["livekit-agents[codecs]>=1.0.
|
25
|
+
dependencies = ["livekit-agents[codecs]>=1.0.12", "numpy>=1.26"]
|
26
26
|
|
27
27
|
[project.urls]
|
28
28
|
Documentation = "https://docs.livekit.io"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{livekit_plugins_deepgram-1.0.10 → livekit_plugins_deepgram-1.0.12}/livekit/plugins/deepgram/log.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{livekit_plugins_deepgram-1.0.10 → livekit_plugins_deepgram-1.0.12}/livekit/plugins/deepgram/tts.py
RENAMED
File without changes
|