livekit-plugins-fal 0.2.3__tar.gz → 0.2.5__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-0.2.3 → livekit_plugins_fal-0.2.5}/PKG-INFO +6 -6
- livekit_plugins_fal-0.2.5/README.md +13 -0
- {livekit_plugins_fal-0.2.3 → livekit_plugins_fal-0.2.5}/livekit/plugins/fal/stt.py +1 -1
- {livekit_plugins_fal-0.2.3 → livekit_plugins_fal-0.2.5}/livekit/plugins/fal/version.py +1 -1
- {livekit_plugins_fal-0.2.3 → livekit_plugins_fal-0.2.5}/livekit_plugins_fal.egg-info/PKG-INFO +6 -6
- livekit_plugins_fal-0.2.5/livekit_plugins_fal.egg-info/requires.txt +2 -0
- {livekit_plugins_fal-0.2.3 → livekit_plugins_fal-0.2.5}/setup.py +1 -1
- livekit_plugins_fal-0.2.3/README.md +0 -13
- livekit_plugins_fal-0.2.3/livekit_plugins_fal.egg-info/requires.txt +0 -2
- {livekit_plugins_fal-0.2.3 → livekit_plugins_fal-0.2.5}/livekit/plugins/fal/__init__.py +0 -0
- {livekit_plugins_fal-0.2.3 → livekit_plugins_fal-0.2.5}/livekit/plugins/fal/log.py +0 -0
- {livekit_plugins_fal-0.2.3 → livekit_plugins_fal-0.2.5}/livekit/plugins/fal/py.typed +0 -0
- {livekit_plugins_fal-0.2.3 → livekit_plugins_fal-0.2.5}/livekit_plugins_fal.egg-info/SOURCES.txt +0 -0
- {livekit_plugins_fal-0.2.3 → livekit_plugins_fal-0.2.5}/livekit_plugins_fal.egg-info/dependency_links.txt +0 -0
- {livekit_plugins_fal-0.2.3 → livekit_plugins_fal-0.2.5}/livekit_plugins_fal.egg-info/top_level.txt +0 -0
- {livekit_plugins_fal-0.2.3 → livekit_plugins_fal-0.2.5}/pyproject.toml +0 -0
- {livekit_plugins_fal-0.2.3 → livekit_plugins_fal-0.2.5}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: livekit-plugins-fal
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.5
|
|
4
4
|
Summary: fal 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<1.0.0,>=0.12.20
|
|
23
23
|
Requires-Dist: fal_client
|
|
24
24
|
Dynamic: classifier
|
|
25
25
|
Dynamic: description
|
|
@@ -32,9 +32,9 @@ Dynamic: requires-dist
|
|
|
32
32
|
Dynamic: requires-python
|
|
33
33
|
Dynamic: summary
|
|
34
34
|
|
|
35
|
-
# LiveKit Plugins
|
|
35
|
+
# LiveKit Plugins fal
|
|
36
36
|
|
|
37
|
-
This plugin provides a simple way to integrate
|
|
37
|
+
This plugin provides a simple way to integrate fal.ai models into the LiveKit Agent Framework. currently supports Wizper model for STT.
|
|
38
38
|
|
|
39
39
|
## Installation
|
|
40
40
|
|
|
@@ -44,4 +44,4 @@ pip install livekit-plugins-fal
|
|
|
44
44
|
|
|
45
45
|
## Pre-requisites
|
|
46
46
|
|
|
47
|
-
You'll need an API key from
|
|
47
|
+
You'll need an API key from fal. It can be set as an environment variable: `FAL_KEY`
|
|
@@ -0,0 +1,13 @@
|
|
|
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`
|
|
@@ -47,7 +47,7 @@ class WizperSTT(stt.STT):
|
|
|
47
47
|
|
|
48
48
|
if not self._api_key:
|
|
49
49
|
raise ValueError(
|
|
50
|
-
"
|
|
50
|
+
"fal AI API key is required. It should be set with env FAL_KEY"
|
|
51
51
|
)
|
|
52
52
|
|
|
53
53
|
def update_options(self, *, language: Optional[str] = None) -> None:
|
{livekit_plugins_fal-0.2.3 → livekit_plugins_fal-0.2.5}/livekit_plugins_fal.egg-info/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: livekit-plugins-fal
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.5
|
|
4
4
|
Summary: fal 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<1.0.0,>=0.12.20
|
|
23
23
|
Requires-Dist: fal_client
|
|
24
24
|
Dynamic: classifier
|
|
25
25
|
Dynamic: description
|
|
@@ -32,9 +32,9 @@ Dynamic: requires-dist
|
|
|
32
32
|
Dynamic: requires-python
|
|
33
33
|
Dynamic: summary
|
|
34
34
|
|
|
35
|
-
# LiveKit Plugins
|
|
35
|
+
# LiveKit Plugins fal
|
|
36
36
|
|
|
37
|
-
This plugin provides a simple way to integrate
|
|
37
|
+
This plugin provides a simple way to integrate fal.ai models into the LiveKit Agent Framework. currently supports Wizper model for STT.
|
|
38
38
|
|
|
39
39
|
## Installation
|
|
40
40
|
|
|
@@ -44,4 +44,4 @@ pip install livekit-plugins-fal
|
|
|
44
44
|
|
|
45
45
|
## Pre-requisites
|
|
46
46
|
|
|
47
|
-
You'll need an API key from
|
|
47
|
+
You'll need an API key from fal. It can be set as an environment variable: `FAL_KEY`
|
|
@@ -47,7 +47,7 @@ setuptools.setup(
|
|
|
47
47
|
license="Apache-2.0",
|
|
48
48
|
packages=setuptools.find_namespace_packages(include=["livekit.*"]),
|
|
49
49
|
python_requires=">=3.9.0",
|
|
50
|
-
install_requires=["livekit-agents>=0.12.
|
|
50
|
+
install_requires=["livekit-agents>=0.12.20,<1.0.0", "fal_client"],
|
|
51
51
|
package_data={"livekit.plugins.fal": ["py.typed"]},
|
|
52
52
|
project_urls={
|
|
53
53
|
"Documentation": "https://docs.livekit.io",
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
# LiveKit Plugins Fal
|
|
2
|
-
|
|
3
|
-
This plugin provides a simple way to integrate FAL models into the LiveKit Agent Framework. currently supports Whizper 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
|
{livekit_plugins_fal-0.2.3 → livekit_plugins_fal-0.2.5}/livekit_plugins_fal.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{livekit_plugins_fal-0.2.3 → livekit_plugins_fal-0.2.5}/livekit_plugins_fal.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|