livekit-plugins-clova 1.2.15__tar.gz → 1.3.11__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_clova-1.2.15 → livekit_plugins_clova-1.3.11}/PKG-INFO +3 -3
- {livekit_plugins_clova-1.2.15 → livekit_plugins_clova-1.3.11}/livekit/plugins/clova/stt.py +5 -1
- {livekit_plugins_clova-1.2.15 → livekit_plugins_clova-1.3.11}/livekit/plugins/clova/version.py +1 -1
- {livekit_plugins_clova-1.2.15 → livekit_plugins_clova-1.3.11}/pyproject.toml +2 -2
- {livekit_plugins_clova-1.2.15 → livekit_plugins_clova-1.3.11}/.gitignore +0 -0
- {livekit_plugins_clova-1.2.15 → livekit_plugins_clova-1.3.11}/README.md +0 -0
- {livekit_plugins_clova-1.2.15 → livekit_plugins_clova-1.3.11}/livekit/plugins/clova/__init__.py +0 -0
- {livekit_plugins_clova-1.2.15 → livekit_plugins_clova-1.3.11}/livekit/plugins/clova/common.py +0 -0
- {livekit_plugins_clova-1.2.15 → livekit_plugins_clova-1.3.11}/livekit/plugins/clova/constants.py +0 -0
- {livekit_plugins_clova-1.2.15 → livekit_plugins_clova-1.3.11}/livekit/plugins/clova/log.py +0 -0
- {livekit_plugins_clova-1.2.15 → livekit_plugins_clova-1.3.11}/livekit/plugins/clova/models.py +0 -0
- {livekit_plugins_clova-1.2.15 → livekit_plugins_clova-1.3.11}/livekit/plugins/clova/py.typed +0 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: livekit-plugins-clova
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.3.11
|
|
4
4
|
Summary: LiveKit Agents Plugin for LINE Clova STT
|
|
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
8
|
Author-email: LiveKit <hello@livekit.io>
|
|
9
9
|
License-Expression: Apache-2.0
|
|
10
|
-
Keywords: audio,livekit,realtime,video,webrtc
|
|
10
|
+
Keywords: ai,audio,livekit,realtime,video,voice,webrtc
|
|
11
11
|
Classifier: Intended Audience :: Developers
|
|
12
12
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
13
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -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>=1.
|
|
21
|
+
Requires-Dist: livekit-agents>=1.3.11
|
|
22
22
|
Requires-Dist: pydub~=0.25.1
|
|
23
23
|
Description-Content-Type: text/markdown
|
|
24
24
|
|
|
@@ -61,7 +61,11 @@ class STT(stt.STT):
|
|
|
61
61
|
``CLOVA_STT_SECRET_KEY`` and ``CLOVA_STT_INVOKE_URL`` environmental variables, respectively.
|
|
62
62
|
"""
|
|
63
63
|
|
|
64
|
-
super().__init__(
|
|
64
|
+
super().__init__(
|
|
65
|
+
capabilities=STTCapabilities(
|
|
66
|
+
streaming=False, interim_results=True, aligned_transcript=False
|
|
67
|
+
)
|
|
68
|
+
)
|
|
65
69
|
clova_secret = secret if is_given(secret) else os.environ.get("CLOVA_STT_SECRET_KEY")
|
|
66
70
|
self._invoke_url = (
|
|
67
71
|
invoke_url if is_given(invoke_url) else os.environ.get("CLOVA_STT_INVOKE_URL")
|
|
@@ -10,7 +10,7 @@ readme = "README.md"
|
|
|
10
10
|
license = "Apache-2.0"
|
|
11
11
|
requires-python = ">=3.9.0"
|
|
12
12
|
authors = [{ name = "LiveKit", email = "hello@livekit.io" }]
|
|
13
|
-
keywords = ["
|
|
13
|
+
keywords = ["voice", "ai", "realtime", "audio", "video", "livekit", "webrtc"]
|
|
14
14
|
classifiers = [
|
|
15
15
|
"Intended Audience :: Developers",
|
|
16
16
|
"License :: OSI Approved :: Apache Software License",
|
|
@@ -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>=1.
|
|
25
|
+
dependencies = ["livekit-agents>=1.3.11", "pydub~=0.25.1"]
|
|
26
26
|
|
|
27
27
|
[project.urls]
|
|
28
28
|
Documentation = "https://docs.livekit.io"
|
|
File without changes
|
|
File without changes
|
{livekit_plugins_clova-1.2.15 → livekit_plugins_clova-1.3.11}/livekit/plugins/clova/__init__.py
RENAMED
|
File without changes
|
{livekit_plugins_clova-1.2.15 → livekit_plugins_clova-1.3.11}/livekit/plugins/clova/common.py
RENAMED
|
File without changes
|
{livekit_plugins_clova-1.2.15 → livekit_plugins_clova-1.3.11}/livekit/plugins/clova/constants.py
RENAMED
|
File without changes
|
|
File without changes
|
{livekit_plugins_clova-1.2.15 → livekit_plugins_clova-1.3.11}/livekit/plugins/clova/models.py
RENAMED
|
File without changes
|
{livekit_plugins_clova-1.2.15 → livekit_plugins_clova-1.3.11}/livekit/plugins/clova/py.typed
RENAMED
|
File without changes
|