livekit-plugins-minimal 0.2.0__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.

@@ -0,0 +1,28 @@
1
+ # Copyright 2023 LiveKit, Inc.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ from livekit.agents import Plugin
16
+
17
+ from .version import __version__
18
+
19
+
20
+ class MinimalPlugin(Plugin):
21
+ def __init__(self):
22
+ super().__init__(__name__, __version__, __package__)
23
+
24
+ def download_files(self):
25
+ pass
26
+
27
+
28
+ Plugin.register_plugin(MinimalPlugin())
@@ -0,0 +1,15 @@
1
+ # Copyright 2023 LiveKit, Inc.
2
+
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ __version__ = "0.2.0"
@@ -0,0 +1,37 @@
1
+ Metadata-Version: 2.1
2
+ Name: livekit-plugins-minimal
3
+ Version: 0.2.0
4
+ Summary: Minimal plugin template for LiveKit Agents
5
+ Home-page: https://github.com/livekit/agents
6
+ License: Apache-2.0
7
+ Project-URL: Documentation, https://docs.livekit.io
8
+ Project-URL: Website, https://livekit.io/
9
+ Project-URL: Source, https://github.com/livekit/agents
10
+ Keywords: webrtc,realtime,audio,video,livekit
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: Apache Software License
13
+ Classifier: Topic :: Multimedia :: Sound/Audio
14
+ Classifier: Topic :: Multimedia :: Video
15
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.9
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3 :: Only
20
+ Requires-Python: >=3.9.0
21
+ Description-Content-Type: text/markdown
22
+ Requires-Dist: livekit-agents >=0.8.0.dev0
23
+
24
+ # LiveKit Plugins Minimal
25
+
26
+ This is a minimal example of a LiveKit plugin for Agents.
27
+
28
+ ### Developer note
29
+
30
+ When copying this directory over to create a new `livekit-plugins` package, make sure it's nested within the `livekit-plugins` folder and that the `"name"` field in `package.json` follows the proper naming convention for CI:
31
+
32
+ ```json
33
+ {
34
+ "name": "livekit-plugins-<name>",
35
+ "private": true
36
+ }
37
+ ```
@@ -0,0 +1,6 @@
1
+ livekit/plugins/minimal/__init__.py,sha256=kPhTA82FPxWbPgrttn7xw-rsaJYN4DoFtz5u8Izte3A,848
2
+ livekit/plugins/minimal/version.py,sha256=Gm7_DQ6WeF0UrZ6w8944-tVR8-L4F7XuPyzI2JNzz20,599
3
+ livekit_plugins_minimal-0.2.0.dist-info/METADATA,sha256=Yd37h1W6JpKVyb1LmR5OHVwfUWwMkgC4JTl5ZuN0EUU,1361
4
+ livekit_plugins_minimal-0.2.0.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91
5
+ livekit_plugins_minimal-0.2.0.dist-info/top_level.txt,sha256=OoDok3xUmXbZRvOrfvvXB-Juu4DX79dlq188E19YHoo,8
6
+ livekit_plugins_minimal-0.2.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (71.1.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ livekit