livekit-plugins-clova 1.2.9__tar.gz → 1.2.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.
Potentially problematic release.
This version of livekit-plugins-clova might be problematic. Click here for more details.
- {livekit_plugins_clova-1.2.9 → livekit_plugins_clova-1.2.12}/PKG-INFO +2 -2
- {livekit_plugins_clova-1.2.9 → livekit_plugins_clova-1.2.12}/livekit/plugins/clova/stt.py +8 -0
- {livekit_plugins_clova-1.2.9 → livekit_plugins_clova-1.2.12}/livekit/plugins/clova/version.py +1 -1
- {livekit_plugins_clova-1.2.9 → livekit_plugins_clova-1.2.12}/pyproject.toml +1 -1
- {livekit_plugins_clova-1.2.9 → livekit_plugins_clova-1.2.12}/.gitignore +0 -0
- {livekit_plugins_clova-1.2.9 → livekit_plugins_clova-1.2.12}/README.md +0 -0
- {livekit_plugins_clova-1.2.9 → livekit_plugins_clova-1.2.12}/livekit/plugins/clova/__init__.py +0 -0
- {livekit_plugins_clova-1.2.9 → livekit_plugins_clova-1.2.12}/livekit/plugins/clova/common.py +0 -0
- {livekit_plugins_clova-1.2.9 → livekit_plugins_clova-1.2.12}/livekit/plugins/clova/constants.py +0 -0
- {livekit_plugins_clova-1.2.9 → livekit_plugins_clova-1.2.12}/livekit/plugins/clova/log.py +0 -0
- {livekit_plugins_clova-1.2.9 → livekit_plugins_clova-1.2.12}/livekit/plugins/clova/models.py +0 -0
- {livekit_plugins_clova-1.2.9 → livekit_plugins_clova-1.2.12}/livekit/plugins/clova/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: livekit-plugins-clova
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.12
|
|
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/
|
|
@@ -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.2.
|
|
21
|
+
Requires-Dist: livekit-agents>=1.2.12
|
|
22
22
|
Requires-Dist: pydub~=0.25.1
|
|
23
23
|
Description-Content-Type: text/markdown
|
|
24
24
|
|
|
@@ -75,6 +75,14 @@ class STT(stt.STT):
|
|
|
75
75
|
self._secret = clova_secret
|
|
76
76
|
self.threshold = threshold
|
|
77
77
|
|
|
78
|
+
@property
|
|
79
|
+
def model(self) -> str:
|
|
80
|
+
return "unknown"
|
|
81
|
+
|
|
82
|
+
@property
|
|
83
|
+
def provider(self) -> str:
|
|
84
|
+
return "Clova"
|
|
85
|
+
|
|
78
86
|
def update_options(self, *, language: NotGivenOr[str] = NOT_GIVEN) -> None:
|
|
79
87
|
if is_given(language):
|
|
80
88
|
self._language = clova_languages_mapping.get(language, language)
|
|
@@ -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.2.
|
|
25
|
+
dependencies = ["livekit-agents>=1.2.12", "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.9 → livekit_plugins_clova-1.2.12}/livekit/plugins/clova/__init__.py
RENAMED
|
File without changes
|
{livekit_plugins_clova-1.2.9 → livekit_plugins_clova-1.2.12}/livekit/plugins/clova/common.py
RENAMED
|
File without changes
|
{livekit_plugins_clova-1.2.9 → livekit_plugins_clova-1.2.12}/livekit/plugins/clova/constants.py
RENAMED
|
File without changes
|
|
File without changes
|
{livekit_plugins_clova-1.2.9 → livekit_plugins_clova-1.2.12}/livekit/plugins/clova/models.py
RENAMED
|
File without changes
|
|
File without changes
|