livekit-plugins-nltk 1.0.23__tar.gz → 1.1.0__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.
@@ -146,6 +146,9 @@ venv.bak/
146
146
  .dmypy.json
147
147
  dmypy.json
148
148
 
149
+ # trunk
150
+ .trunk/
151
+
149
152
  # Pyre type checker
150
153
  .pyre/
151
154
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: livekit-plugins-nltk
3
- Version: 1.0.23
3
+ Version: 1.1.0
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,7 +17,7 @@ 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.23
20
+ Requires-Dist: livekit-agents>=1.1.0
21
21
  Requires-Dist: nltk<4,>=3.9.1
22
22
  Description-Content-Type: text/markdown
23
23
 
@@ -31,10 +31,10 @@ from .log import logger
31
31
 
32
32
 
33
33
  class NltkPlugin(Plugin):
34
- def __init__(self):
34
+ def __init__(self) -> None:
35
35
  super().__init__(__name__, __version__, __package__, logger)
36
36
 
37
- def download_files(self):
37
+ def download_files(self) -> None:
38
38
  try:
39
39
  _ = nltk.data.find("tokenizers/punkt_tab")
40
40
  except LookupError:
@@ -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.23"
15
+ __version__ = "1.1.0"
@@ -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.23", "nltk >= 3.9.1, < 4"]
24
+ dependencies = ["livekit-agents>=1.1.0", "nltk >= 3.9.1, < 4"]
25
25
 
26
26
  [project.urls]
27
27
  Documentation = "https://docs.livekit.io"