livekit-plugins-minimal 0.2.0.dev7__py3-none-any.whl → 0.2.1__py3-none-any.whl
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-minimal might be problematic. Click here for more details.
- livekit/plugins/minimal/__init__.py +2 -4
- livekit/plugins/minimal/log.py +3 -0
- livekit/plugins/minimal/version.py +1 -1
- {livekit_plugins_minimal-0.2.0.dev7.dist-info → livekit_plugins_minimal-0.2.1.dist-info}/METADATA +2 -2
- livekit_plugins_minimal-0.2.1.dist-info/RECORD +7 -0
- {livekit_plugins_minimal-0.2.0.dev7.dist-info → livekit_plugins_minimal-0.2.1.dist-info}/WHEEL +1 -1
- livekit_plugins_minimal-0.2.0.dev7.dist-info/RECORD +0 -6
- {livekit_plugins_minimal-0.2.0.dev7.dist-info → livekit_plugins_minimal-0.2.1.dist-info}/top_level.txt +0 -0
|
@@ -14,15 +14,13 @@
|
|
|
14
14
|
|
|
15
15
|
from livekit.agents import Plugin
|
|
16
16
|
|
|
17
|
+
from .log import logger
|
|
17
18
|
from .version import __version__
|
|
18
19
|
|
|
19
20
|
|
|
20
21
|
class MinimalPlugin(Plugin):
|
|
21
22
|
def __init__(self):
|
|
22
|
-
super().__init__(__name__, __version__, __package__)
|
|
23
|
-
|
|
24
|
-
def download_files(self):
|
|
25
|
-
pass
|
|
23
|
+
super().__init__(__name__, __version__, __package__, logger)
|
|
26
24
|
|
|
27
25
|
|
|
28
26
|
Plugin.register_plugin(MinimalPlugin())
|
{livekit_plugins_minimal-0.2.0.dev7.dist-info → livekit_plugins_minimal-0.2.1.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: livekit-plugins-minimal
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: Minimal plugin template for LiveKit Agents
|
|
5
5
|
Home-page: https://github.com/livekit/agents
|
|
6
6
|
License: Apache-2.0
|
|
@@ -19,7 +19,7 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
19
19
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
20
20
|
Requires-Python: >=3.9.0
|
|
21
21
|
Description-Content-Type: text/markdown
|
|
22
|
-
Requires-Dist: livekit-agents
|
|
22
|
+
Requires-Dist: livekit-agents>=0.11
|
|
23
23
|
|
|
24
24
|
# LiveKit Plugins Minimal
|
|
25
25
|
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
livekit/plugins/minimal/__init__.py,sha256=Y_C9_IjZIIdsSuuSR-MCkT90iX2FPCHMS6SA0HIhsr0,836
|
|
2
|
+
livekit/plugins/minimal/log.py,sha256=R79onaxt-SdxLujJ3yk5P-xnevz-vh_5RAY0uZ0ds-4,70
|
|
3
|
+
livekit/plugins/minimal/version.py,sha256=8lbEWAS0scW2HeMKy-v4qMrk1iVSyM8nU8XnDlXxHG4,599
|
|
4
|
+
livekit_plugins_minimal-0.2.1.dist-info/METADATA,sha256=fi0M8oCSfTQ6iqRXPxAxNYQrYx9_pfWVQy4J3XOI3nM,1354
|
|
5
|
+
livekit_plugins_minimal-0.2.1.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
6
|
+
livekit_plugins_minimal-0.2.1.dist-info/top_level.txt,sha256=OoDok3xUmXbZRvOrfvvXB-Juu4DX79dlq188E19YHoo,8
|
|
7
|
+
livekit_plugins_minimal-0.2.1.dist-info/RECORD,,
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
livekit/plugins/minimal/__init__.py,sha256=kPhTA82FPxWbPgrttn7xw-rsaJYN4DoFtz5u8Izte3A,848
|
|
2
|
-
livekit/plugins/minimal/version.py,sha256=_KR7rW4lSG8n6IRkcHHAmcTzviQqNUPcf2SIW0eQ6f0,605
|
|
3
|
-
livekit_plugins_minimal-0.2.0.dev7.dist-info/METADATA,sha256=SPwveaIeOwece_LBoRmetu1iAL5k_vfgA8IHb0OvCvs,1366
|
|
4
|
-
livekit_plugins_minimal-0.2.0.dev7.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91
|
|
5
|
-
livekit_plugins_minimal-0.2.0.dev7.dist-info/top_level.txt,sha256=OoDok3xUmXbZRvOrfvvXB-Juu4DX79dlq188E19YHoo,8
|
|
6
|
-
livekit_plugins_minimal-0.2.0.dev7.dist-info/RECORD,,
|
|
File without changes
|