livekit-plugins-nltk 0.7.1__tar.gz → 0.7.4__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_nltk-0.7.1 → livekit_plugins_nltk-0.7.4}/PKG-INFO +14 -4
- {livekit_plugins_nltk-0.7.1 → livekit_plugins_nltk-0.7.4}/livekit/plugins/nltk/__init__.py +11 -2
- {livekit_plugins_nltk-0.7.1 → livekit_plugins_nltk-0.7.4}/livekit/plugins/nltk/version.py +1 -1
- {livekit_plugins_nltk-0.7.1 → livekit_plugins_nltk-0.7.4}/livekit_plugins_nltk.egg-info/PKG-INFO +14 -4
- livekit_plugins_nltk-0.7.4/livekit_plugins_nltk.egg-info/requires.txt +2 -0
- {livekit_plugins_nltk-0.7.1 → livekit_plugins_nltk-0.7.4}/setup.py +1 -1
- livekit_plugins_nltk-0.7.1/livekit_plugins_nltk.egg-info/requires.txt +0 -2
- {livekit_plugins_nltk-0.7.1 → livekit_plugins_nltk-0.7.4}/README.md +0 -0
- {livekit_plugins_nltk-0.7.1 → livekit_plugins_nltk-0.7.4}/livekit/plugins/nltk/log.py +0 -0
- {livekit_plugins_nltk-0.7.1 → livekit_plugins_nltk-0.7.4}/livekit/plugins/nltk/py.typed +0 -0
- {livekit_plugins_nltk-0.7.1 → livekit_plugins_nltk-0.7.4}/livekit/plugins/nltk/sentence_tokenizer.py +0 -0
- {livekit_plugins_nltk-0.7.1 → livekit_plugins_nltk-0.7.4}/livekit_plugins_nltk.egg-info/SOURCES.txt +0 -0
- {livekit_plugins_nltk-0.7.1 → livekit_plugins_nltk-0.7.4}/livekit_plugins_nltk.egg-info/dependency_links.txt +0 -0
- {livekit_plugins_nltk-0.7.1 → livekit_plugins_nltk-0.7.4}/livekit_plugins_nltk.egg-info/top_level.txt +0 -0
- {livekit_plugins_nltk-0.7.1 → livekit_plugins_nltk-0.7.4}/pyproject.toml +0 -0
- {livekit_plugins_nltk-0.7.1 → livekit_plugins_nltk-0.7.4}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.2
|
2
2
|
Name: livekit-plugins-nltk
|
3
|
-
Version: 0.7.
|
3
|
+
Version: 0.7.4
|
4
4
|
Summary: Agent Framework plugin for NLTK-based text processing.
|
5
5
|
Home-page: https://github.com/livekit/agents
|
6
6
|
License: Apache-2.0
|
@@ -18,8 +18,18 @@ Classifier: Programming Language :: Python :: 3.10
|
|
18
18
|
Classifier: Programming Language :: Python :: 3 :: Only
|
19
19
|
Requires-Python: >=3.9.0
|
20
20
|
Description-Content-Type: text/markdown
|
21
|
-
Requires-Dist: livekit-agents
|
22
|
-
Requires-Dist: nltk<4,>=3
|
21
|
+
Requires-Dist: livekit-agents<1.0.0,>=0.12.16
|
22
|
+
Requires-Dist: nltk<4,>=3.9.1
|
23
|
+
Dynamic: classifier
|
24
|
+
Dynamic: description
|
25
|
+
Dynamic: description-content-type
|
26
|
+
Dynamic: home-page
|
27
|
+
Dynamic: keywords
|
28
|
+
Dynamic: license
|
29
|
+
Dynamic: project-url
|
30
|
+
Dynamic: requires-dist
|
31
|
+
Dynamic: requires-python
|
32
|
+
Dynamic: summary
|
23
33
|
|
24
34
|
# LiveKit Plugins NLTK
|
25
35
|
|
@@ -32,9 +32,18 @@ class NltkPlugin(Plugin):
|
|
32
32
|
|
33
33
|
def download_files(self):
|
34
34
|
try:
|
35
|
-
_ = nltk.data.find("tokenizers/
|
35
|
+
_ = nltk.data.find("tokenizers/punkt_tab")
|
36
36
|
except LookupError:
|
37
|
-
nltk.download("
|
37
|
+
nltk.download("punkt_tab")
|
38
38
|
|
39
39
|
|
40
40
|
Plugin.register_plugin(NltkPlugin())
|
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
|
{livekit_plugins_nltk-0.7.1 → livekit_plugins_nltk-0.7.4}/livekit_plugins_nltk.egg-info/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.2
|
2
2
|
Name: livekit-plugins-nltk
|
3
|
-
Version: 0.7.
|
3
|
+
Version: 0.7.4
|
4
4
|
Summary: Agent Framework plugin for NLTK-based text processing.
|
5
5
|
Home-page: https://github.com/livekit/agents
|
6
6
|
License: Apache-2.0
|
@@ -18,8 +18,18 @@ Classifier: Programming Language :: Python :: 3.10
|
|
18
18
|
Classifier: Programming Language :: Python :: 3 :: Only
|
19
19
|
Requires-Python: >=3.9.0
|
20
20
|
Description-Content-Type: text/markdown
|
21
|
-
Requires-Dist: livekit-agents
|
22
|
-
Requires-Dist: nltk<4,>=3
|
21
|
+
Requires-Dist: livekit-agents<1.0.0,>=0.12.16
|
22
|
+
Requires-Dist: nltk<4,>=3.9.1
|
23
|
+
Dynamic: classifier
|
24
|
+
Dynamic: description
|
25
|
+
Dynamic: description-content-type
|
26
|
+
Dynamic: home-page
|
27
|
+
Dynamic: keywords
|
28
|
+
Dynamic: license
|
29
|
+
Dynamic: project-url
|
30
|
+
Dynamic: requires-dist
|
31
|
+
Dynamic: requires-python
|
32
|
+
Dynamic: summary
|
23
33
|
|
24
34
|
# LiveKit Plugins NLTK
|
25
35
|
|
@@ -46,7 +46,7 @@ setuptools.setup(
|
|
46
46
|
license="Apache-2.0",
|
47
47
|
packages=setuptools.find_namespace_packages(include=["livekit.*"]),
|
48
48
|
python_requires=">=3.9.0",
|
49
|
-
install_requires=["livekit-agents>=0.
|
49
|
+
install_requires=["livekit-agents>=0.12.16,<1.0.0", "nltk >= 3.9.1, < 4"],
|
50
50
|
package_data={"livekit.plugins.nltk": ["py.typed"]},
|
51
51
|
project_urls={
|
52
52
|
"Documentation": "https://docs.livekit.io",
|
File without changes
|
File without changes
|
File without changes
|
{livekit_plugins_nltk-0.7.1 → livekit_plugins_nltk-0.7.4}/livekit/plugins/nltk/sentence_tokenizer.py
RENAMED
File without changes
|
{livekit_plugins_nltk-0.7.1 → livekit_plugins_nltk-0.7.4}/livekit_plugins_nltk.egg-info/SOURCES.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|