livekit-plugins-nltk 1.0.19__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.
@@ -166,3 +166,4 @@ node_modules
166
166
 
167
167
  credentials.json
168
168
  pyrightconfig.json
169
+ docs/
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: livekit-plugins-nltk
3
- Version: 1.0.19
3
+ Version: 1.0.20
4
4
  Summary: Agent Framework plugin for NLTK-based text processing.
5
5
  Project-URL: Documentation, https://docs.livekit.io
6
6
  Project-URL: Website, https://livekit.io/
@@ -17,13 +17,13 @@ Classifier: Topic :: Multimedia :: Sound/Audio
17
17
  Classifier: Topic :: Multimedia :: Video
18
18
  Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
19
19
  Requires-Python: >=3.9.0
20
- Requires-Dist: livekit-agents>=1.0.19
20
+ Requires-Dist: livekit-agents>=1.0.20
21
21
  Requires-Dist: nltk<4,>=3.9.1
22
22
  Description-Content-Type: text/markdown
23
23
 
24
- # LiveKit Plugins NLTK
24
+ # NLTK plugin for LiveKit Agents
25
25
 
26
- Agent Framework plugin for [NLTK](https://www.nltk.org/)-based text processing. Currently featuring a `SentenceTokenizer`.
26
+ Support for [NLTK](https://www.nltk.org/)-based text processing. Currently featuring a `SentenceTokenizer`.
27
27
 
28
28
  ## Installation
29
29
 
@@ -0,0 +1,9 @@
1
+ # NLTK plugin for LiveKit Agents
2
+
3
+ Support for [NLTK](https://www.nltk.org/)-based text processing. Currently featuring a `SentenceTokenizer`.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pip install livekit-plugins-nltk
9
+ ```
@@ -12,6 +12,11 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
 
15
+ """NLTK plugin for LiveKit Agents
16
+
17
+ Support for [NLTK](https://www.nltk.org/)-based text processing.
18
+ Currently featuring a `SentenceTokenizer`.
19
+ """
15
20
 
16
21
  from .sentence_tokenizer import SentenceTokenizer
17
22
  from .version import __version__
@@ -12,4 +12,4 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
 
15
- __version__ = "1.0.19"
15
+ __version__ = "1.0.20"
@@ -21,7 +21,7 @@ classifiers = [
21
21
  "Programming Language :: Python :: 3.10",
22
22
  "Programming Language :: Python :: 3 :: Only",
23
23
  ]
24
- dependencies = ["livekit-agents>=1.0.19", "nltk >= 3.9.1, < 4"]
24
+ dependencies = ["livekit-agents>=1.0.20", "nltk >= 3.9.1, < 4"]
25
25
 
26
26
  [project.urls]
27
27
  Documentation = "https://docs.livekit.io"
@@ -1,9 +0,0 @@
1
- # LiveKit Plugins NLTK
2
-
3
- Agent Framework plugin for [NLTK](https://www.nltk.org/)-based text processing. Currently featuring a `SentenceTokenizer`.
4
-
5
- ## Installation
6
-
7
- ```bash
8
- pip install livekit-plugins-nltk
9
- ```