livekit-plugins-deepgram 1.0.0rc4__tar.gz → 1.0.0rc6__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.0rc4 → livekit_plugins_deepgram-1.0.0rc6}/PKG-INFO +3 -3
- {livekit_plugins_deepgram-1.0.0rc4 → livekit_plugins_deepgram-1.0.0rc6}/livekit/plugins/deepgram/stt.py +5 -2
- {livekit_plugins_deepgram-1.0.0rc4 → livekit_plugins_deepgram-1.0.0rc6}/livekit/plugins/deepgram/version.py +1 -1
- {livekit_plugins_deepgram-1.0.0rc4 → livekit_plugins_deepgram-1.0.0rc6}/pyproject.toml +2 -2
- {livekit_plugins_deepgram-1.0.0rc4 → livekit_plugins_deepgram-1.0.0rc6}/.gitignore +0 -0
- {livekit_plugins_deepgram-1.0.0rc4 → livekit_plugins_deepgram-1.0.0rc6}/README.md +0 -0
- {livekit_plugins_deepgram-1.0.0rc4 → livekit_plugins_deepgram-1.0.0rc6}/livekit/plugins/deepgram/__init__.py +0 -0
- {livekit_plugins_deepgram-1.0.0rc4 → livekit_plugins_deepgram-1.0.0rc6}/livekit/plugins/deepgram/_utils.py +0 -0
- {livekit_plugins_deepgram-1.0.0rc4 → livekit_plugins_deepgram-1.0.0rc6}/livekit/plugins/deepgram/log.py +0 -0
- {livekit_plugins_deepgram-1.0.0rc4 → livekit_plugins_deepgram-1.0.0rc6}/livekit/plugins/deepgram/models.py +0 -0
- {livekit_plugins_deepgram-1.0.0rc4 → livekit_plugins_deepgram-1.0.0rc6}/livekit/plugins/deepgram/py.typed +0 -0
- {livekit_plugins_deepgram-1.0.0rc4 → livekit_plugins_deepgram-1.0.0rc6}/livekit/plugins/deepgram/tts.py +0 -0
@@ -1,11 +1,11 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: livekit-plugins-deepgram
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.0rc6
|
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/
|
7
7
|
Project-URL: Source, https://github.com/livekit/agents
|
8
|
-
Author-email: LiveKit <
|
8
|
+
Author-email: LiveKit <hello@livekit.io>
|
9
9
|
License-Expression: Apache-2.0
|
10
10
|
Keywords: audio,livekit,realtime,video,webrtc
|
11
11
|
Classifier: Intended Audience :: Developers
|
@@ -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.0.
|
21
|
+
Requires-Dist: livekit-agents[codecs]>=1.0.0.rc6
|
22
22
|
Requires-Dist: numpy>=1.26
|
23
23
|
Description-Content-Type: text/markdown
|
24
24
|
|
@@ -378,8 +378,11 @@ class SpeechStream(stt.SpeechStream):
|
|
378
378
|
) -> None:
|
379
379
|
super().__init__(stt=stt, conn_options=conn_options, sample_rate=opts.sample_rate)
|
380
380
|
|
381
|
-
if opts.detect_language
|
382
|
-
raise ValueError(
|
381
|
+
if opts.detect_language or opts.language is None:
|
382
|
+
raise ValueError(
|
383
|
+
"language detection is not supported in streaming mode, "
|
384
|
+
"please disable it and specify a language"
|
385
|
+
)
|
383
386
|
|
384
387
|
self._opts = opts
|
385
388
|
self._api_key = api_key
|
@@ -9,7 +9,7 @@ description = "Agent Framework plugin for services using Deepgram's API."
|
|
9
9
|
readme = "README.md"
|
10
10
|
license = "Apache-2.0"
|
11
11
|
requires-python = ">=3.9.0"
|
12
|
-
authors = [{ name = "LiveKit", email = "
|
12
|
+
authors = [{ name = "LiveKit", email = "hello@livekit.io" }]
|
13
13
|
keywords = ["webrtc", "realtime", "audio", "video", "livekit"]
|
14
14
|
classifiers = [
|
15
15
|
"Intended Audience :: Developers",
|
@@ -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.0.
|
25
|
+
dependencies = ["livekit-agents[codecs]>=1.0.0.rc6", "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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|