livekit-plugins-clova 1.0.18__tar.gz → 1.0.20__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.0.18 → livekit_plugins_clova-1.0.20}/.gitignore +1 -0
- {livekit_plugins_clova-1.0.18 → livekit_plugins_clova-1.0.20}/PKG-INFO +6 -4
- {livekit_plugins_clova-1.0.18 → livekit_plugins_clova-1.0.20}/README.md +4 -2
- livekit_plugins_clova-1.0.20/livekit/plugins/clova/__init__.py +49 -0
- {livekit_plugins_clova-1.0.18 → livekit_plugins_clova-1.0.20}/livekit/plugins/clova/version.py +1 -1
- {livekit_plugins_clova-1.0.18 → livekit_plugins_clova-1.0.20}/pyproject.toml +1 -1
- livekit_plugins_clova-1.0.18/livekit/plugins/clova/__init__.py +0 -30
- {livekit_plugins_clova-1.0.18 → livekit_plugins_clova-1.0.20}/livekit/plugins/clova/common.py +0 -0
- {livekit_plugins_clova-1.0.18 → livekit_plugins_clova-1.0.20}/livekit/plugins/clova/constants.py +0 -0
- {livekit_plugins_clova-1.0.18 → livekit_plugins_clova-1.0.20}/livekit/plugins/clova/log.py +0 -0
- {livekit_plugins_clova-1.0.18 → livekit_plugins_clova-1.0.20}/livekit/plugins/clova/models.py +0 -0
- {livekit_plugins_clova-1.0.18 → livekit_plugins_clova-1.0.20}/livekit/plugins/clova/stt.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: livekit-plugins-clova
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.20
|
|
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,13 +18,15 @@ 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.0.
|
|
21
|
+
Requires-Dist: livekit-agents>=1.0.20
|
|
22
22
|
Requires-Dist: pydub~=0.25.1
|
|
23
23
|
Description-Content-Type: text/markdown
|
|
24
24
|
|
|
25
|
-
# LiveKit
|
|
25
|
+
# Clova plugin for LiveKit Agents
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
Support for speech-to-text with [Clova](https://api.ncloud-docs.com/docs/).
|
|
28
|
+
|
|
29
|
+
See https://docs.livekit.io/agents/integrations/stt/clova/ for more information.
|
|
28
30
|
|
|
29
31
|
## Installation
|
|
30
32
|
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
# LiveKit
|
|
1
|
+
# Clova plugin for LiveKit Agents
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Support for speech-to-text with [Clova](https://api.ncloud-docs.com/docs/).
|
|
4
|
+
|
|
5
|
+
See https://docs.livekit.io/agents/integrations/stt/clova/ for more information.
|
|
4
6
|
|
|
5
7
|
## Installation
|
|
6
8
|
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# Copyright 2025 LiveKit, Inc.
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
"""Clova plugin for LiveKit Agents
|
|
16
|
+
|
|
17
|
+
See https://docs.livekit.io/agents/integrations/stt/clova/ for more information.
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
from .stt import STT
|
|
21
|
+
from .version import __version__
|
|
22
|
+
|
|
23
|
+
__all__ = [
|
|
24
|
+
"STT",
|
|
25
|
+
"__version__",
|
|
26
|
+
]
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
from livekit.agents import Plugin
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
class ClovaSTTPlugin(Plugin):
|
|
33
|
+
def __init__(self):
|
|
34
|
+
super().__init__(__name__, __version__, __package__)
|
|
35
|
+
|
|
36
|
+
def download_files(self):
|
|
37
|
+
pass
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
Plugin.register_plugin(ClovaSTTPlugin())
|
|
41
|
+
|
|
42
|
+
# Cleanup docs of unexported modules
|
|
43
|
+
_module = dir()
|
|
44
|
+
NOT_IN_ALL = [m for m in _module if m not in __all__]
|
|
45
|
+
|
|
46
|
+
__pdoc__ = {}
|
|
47
|
+
|
|
48
|
+
for n in NOT_IN_ALL:
|
|
49
|
+
__pdoc__[n] = False
|
|
@@ -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.0.
|
|
25
|
+
dependencies = ["livekit-agents>=1.0.20", "pydub~=0.25.1"]
|
|
26
26
|
|
|
27
27
|
[project.urls]
|
|
28
28
|
Documentation = "https://docs.livekit.io"
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
from .stt import STT
|
|
2
|
-
from .version import __version__
|
|
3
|
-
|
|
4
|
-
__all__ = [
|
|
5
|
-
"STT",
|
|
6
|
-
"__version__",
|
|
7
|
-
]
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
from livekit.agents import Plugin
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
class ClovaSTTPlugin(Plugin):
|
|
14
|
-
def __init__(self):
|
|
15
|
-
super().__init__(__name__, __version__, __package__)
|
|
16
|
-
|
|
17
|
-
def download_files(self):
|
|
18
|
-
pass
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
Plugin.register_plugin(ClovaSTTPlugin())
|
|
22
|
-
|
|
23
|
-
# Cleanup docs of unexported modules
|
|
24
|
-
_module = dir()
|
|
25
|
-
NOT_IN_ALL = [m for m in _module if m not in __all__]
|
|
26
|
-
|
|
27
|
-
__pdoc__ = {}
|
|
28
|
-
|
|
29
|
-
for n in NOT_IN_ALL:
|
|
30
|
-
__pdoc__[n] = False
|
{livekit_plugins_clova-1.0.18 → livekit_plugins_clova-1.0.20}/livekit/plugins/clova/common.py
RENAMED
|
File without changes
|
{livekit_plugins_clova-1.0.18 → livekit_plugins_clova-1.0.20}/livekit/plugins/clova/constants.py
RENAMED
|
File without changes
|
|
File without changes
|
{livekit_plugins_clova-1.0.18 → livekit_plugins_clova-1.0.20}/livekit/plugins/clova/models.py
RENAMED
|
File without changes
|
|
File without changes
|