livekit-plugins-minimal 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.
Potentially problematic release.
This version of livekit-plugins-minimal might be problematic. Click here for more details.
- {livekit_plugins_minimal-1.0.19 → livekit_plugins_minimal-1.0.20}/.gitignore +1 -0
- {livekit_plugins_minimal-1.0.19 → livekit_plugins_minimal-1.0.20}/PKG-INFO +3 -3
- {livekit_plugins_minimal-1.0.19 → livekit_plugins_minimal-1.0.20}/README.md +1 -1
- {livekit_plugins_minimal-1.0.19 → livekit_plugins_minimal-1.0.20}/livekit/plugins/minimal/__init__.py +5 -0
- {livekit_plugins_minimal-1.0.19 → livekit_plugins_minimal-1.0.20}/livekit/plugins/minimal/version.py +1 -1
- {livekit_plugins_minimal-1.0.19 → livekit_plugins_minimal-1.0.20}/pyproject.toml +1 -1
- {livekit_plugins_minimal-1.0.19 → livekit_plugins_minimal-1.0.20}/livekit/plugins/minimal/log.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: livekit-plugins-minimal
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.20
|
|
4
4
|
Summary: Minimal plugin template for LiveKit Agents
|
|
5
5
|
Project-URL: Documentation, https://docs.livekit.io
|
|
6
6
|
Project-URL: Website, https://livekit.io/
|
|
@@ -18,10 +18,10 @@ 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
|
Description-Content-Type: text/markdown
|
|
23
23
|
|
|
24
|
-
# LiveKit
|
|
24
|
+
# Minimal example plugin for LiveKit Agents
|
|
25
25
|
|
|
26
26
|
This is a minimal example of a LiveKit plugin for Agents.
|
|
27
27
|
|
|
@@ -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
|
+
"""Minimal example plugin for LiveKit Agents
|
|
16
|
+
|
|
17
|
+
This is a stubbed example plugin.
|
|
18
|
+
"""
|
|
19
|
+
|
|
15
20
|
from livekit.agents import Plugin
|
|
16
21
|
|
|
17
22
|
from .log import logger
|
|
@@ -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"]
|
|
26
26
|
|
|
27
27
|
[project.urls]
|
|
28
28
|
Documentation = "https://docs.livekit.io"
|
{livekit_plugins_minimal-1.0.19 → livekit_plugins_minimal-1.0.20}/livekit/plugins/minimal/log.py
RENAMED
|
File without changes
|