livekit-plugins-fal 1.0.23__tar.gz → 1.1.0__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.23 → livekit_plugins_fal-1.1.0}/.gitignore +3 -0
- {livekit_plugins_fal-1.0.23 → livekit_plugins_fal-1.1.0}/PKG-INFO +2 -2
- {livekit_plugins_fal-1.0.23 → livekit_plugins_fal-1.1.0}/livekit/plugins/fal/__init__.py +1 -1
- {livekit_plugins_fal-1.0.23 → livekit_plugins_fal-1.1.0}/livekit/plugins/fal/stt.py +1 -1
- {livekit_plugins_fal-1.0.23 → livekit_plugins_fal-1.1.0}/livekit/plugins/fal/version.py +1 -1
- {livekit_plugins_fal-1.0.23 → livekit_plugins_fal-1.1.0}/pyproject.toml +1 -1
- {livekit_plugins_fal-1.0.23 → livekit_plugins_fal-1.1.0}/README.md +0 -0
- {livekit_plugins_fal-1.0.23 → livekit_plugins_fal-1.1.0}/livekit/plugins/fal/log.py +0 -0
- {livekit_plugins_fal-1.0.23 → livekit_plugins_fal-1.1.0}/livekit/plugins/fal/py.typed +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.1.0
|
|
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,7 +19,7 @@ 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.1.0
|
|
23
23
|
Description-Content-Type: text/markdown
|
|
24
24
|
|
|
25
25
|
# fal plugin for LiveKit Agents
|
|
@@ -34,7 +34,7 @@ class WizperSTT(stt.STT):
|
|
|
34
34
|
self._api_key = api_key if is_given(api_key) else os.getenv("FAL_KEY")
|
|
35
35
|
if not self._api_key:
|
|
36
36
|
raise ValueError("fal AI API key is required. It should be set with env FAL_KEY")
|
|
37
|
-
self._opts = _STTOptions(language=language)
|
|
37
|
+
self._opts = _STTOptions(language=language if is_given(language) else "en")
|
|
38
38
|
self._fal_client = fal_client.AsyncClient(key=self._api_key)
|
|
39
39
|
|
|
40
40
|
def update_options(self, *, language: NotGivenOr[str] = NOT_GIVEN) -> None:
|
|
@@ -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.1.0", "fal_client"]
|
|
26
26
|
|
|
27
27
|
[project.urls]
|
|
28
28
|
Documentation = "https://docs.livekit.io"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|