livekit-plugins-fal 1.0.19__tar.gz → 1.0.21__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-fal might be problematic. Click here for more details.
- {livekit_plugins_fal-1.0.19 → livekit_plugins_fal-1.0.21}/.gitignore +1 -0
- {livekit_plugins_fal-1.0.19 → livekit_plugins_fal-1.0.21}/PKG-INFO +6 -4
- livekit_plugins_fal-1.0.21/README.md +15 -0
- {livekit_plugins_fal-1.0.19 → livekit_plugins_fal-1.0.21}/livekit/plugins/fal/__init__.py +12 -13
- {livekit_plugins_fal-1.0.19 → livekit_plugins_fal-1.0.21}/livekit/plugins/fal/version.py +1 -1
- {livekit_plugins_fal-1.0.19 → livekit_plugins_fal-1.0.21}/pyproject.toml +1 -1
- livekit_plugins_fal-1.0.19/README.md +0 -13
- {livekit_plugins_fal-1.0.19 → livekit_plugins_fal-1.0.21}/livekit/plugins/fal/log.py +0 -0
- {livekit_plugins_fal-1.0.19 → livekit_plugins_fal-1.0.21}/livekit/plugins/fal/py.typed +0 -0
- {livekit_plugins_fal-1.0.19 → livekit_plugins_fal-1.0.21}/livekit/plugins/fal/stt.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: livekit-plugins-fal
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.21
|
|
4
4
|
Summary: fal plugin template for LiveKit Agents
|
|
5
5
|
Project-URL: Documentation, https://docs.livekit.io
|
|
6
6
|
Project-URL: Website, https://livekit.io/
|
|
@@ -19,12 +19,14 @@ Classifier: Topic :: Multimedia :: Video
|
|
|
19
19
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
20
20
|
Requires-Python: >=3.9.0
|
|
21
21
|
Requires-Dist: fal-client
|
|
22
|
-
Requires-Dist: livekit-agents>=1.0.
|
|
22
|
+
Requires-Dist: livekit-agents>=1.0.21
|
|
23
23
|
Description-Content-Type: text/markdown
|
|
24
24
|
|
|
25
|
-
# LiveKit
|
|
25
|
+
# fal plugin for LiveKit Agents
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
Support for speech-to-text with [fal.ai](https://fal.ai/).
|
|
28
|
+
|
|
29
|
+
See [https://docs.livekit.io/agents/integrations/stt/fal/](https://docs.livekit.io/agents/integrations/stt/fal/) for more information.
|
|
28
30
|
|
|
29
31
|
## Installation
|
|
30
32
|
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# fal plugin for LiveKit Agents
|
|
2
|
+
|
|
3
|
+
Support for speech-to-text with [fal.ai](https://fal.ai/).
|
|
4
|
+
|
|
5
|
+
See [https://docs.livekit.io/agents/integrations/stt/fal/](https://docs.livekit.io/agents/integrations/stt/fal/) for more information.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
pip install livekit-plugins-fal
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Pre-requisites
|
|
14
|
+
|
|
15
|
+
You'll need an API key from fal. It can be set as an environment variable: `FAL_KEY`
|
|
@@ -12,20 +12,10 @@
|
|
|
12
12
|
# See the License for the specific language governing permissions and
|
|
13
13
|
# limitations under the License.
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
#
|
|
17
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
18
|
-
# you may not use this file except in compliance with the License.
|
|
19
|
-
# You may obtain a copy of the License at
|
|
20
|
-
#
|
|
21
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
22
|
-
#
|
|
23
|
-
# Unless required by applicable law or agreed to in writing, software
|
|
24
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
25
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
26
|
-
# See the License for the specific language governing permissions and
|
|
27
|
-
# limitations under the License.
|
|
15
|
+
"""Fal plugin for LiveKit Agents
|
|
28
16
|
|
|
17
|
+
See https://docs.livekit.io/agents/integrations/stt/fal/ for more information.
|
|
18
|
+
"""
|
|
29
19
|
|
|
30
20
|
from .stt import WizperSTT
|
|
31
21
|
from .version import __version__
|
|
@@ -44,3 +34,12 @@ class FalPlugin(Plugin):
|
|
|
44
34
|
|
|
45
35
|
|
|
46
36
|
Plugin.register_plugin(FalPlugin())
|
|
37
|
+
|
|
38
|
+
# Cleanup docs of unexported modules
|
|
39
|
+
_module = dir()
|
|
40
|
+
NOT_IN_ALL = [m for m in _module if m not in __all__]
|
|
41
|
+
|
|
42
|
+
__pdoc__ = {}
|
|
43
|
+
|
|
44
|
+
for n in NOT_IN_ALL:
|
|
45
|
+
__pdoc__[n] = False
|
|
@@ -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.21", "fal_client"]
|
|
26
26
|
|
|
27
27
|
[project.urls]
|
|
28
28
|
Documentation = "https://docs.livekit.io"
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
# LiveKit Plugins fal
|
|
2
|
-
|
|
3
|
-
This plugin provides a simple way to integrate fal.ai models into the LiveKit Agent Framework. currently supports Wizper model for STT.
|
|
4
|
-
|
|
5
|
-
## Installation
|
|
6
|
-
|
|
7
|
-
```bash
|
|
8
|
-
pip install livekit-plugins-fal
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
## Pre-requisites
|
|
12
|
-
|
|
13
|
-
You'll need an API key from fal. It can be set as an environment variable: `FAL_KEY`
|
|
File without changes
|
|
File without changes
|
|
File without changes
|