livekit-plugins-fal 0.2.4__tar.gz → 1.0.0.dev5__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.0.dev5/.gitignore +168 -0
- {livekit_plugins_fal-0.2.4 → livekit_plugins_fal-1.0.0.dev5}/PKG-INFO +11 -21
- {livekit_plugins_fal-0.2.4 → livekit_plugins_fal-1.0.0.dev5}/livekit/plugins/fal/stt.py +13 -21
- {livekit_plugins_fal-0.2.4 → livekit_plugins_fal-1.0.0.dev5}/livekit/plugins/fal/version.py +1 -1
- livekit_plugins_fal-1.0.0.dev5/pyproject.toml +39 -0
- livekit_plugins_fal-0.2.4/livekit_plugins_fal.egg-info/PKG-INFO +0 -47
- livekit_plugins_fal-0.2.4/livekit_plugins_fal.egg-info/SOURCES.txt +0 -13
- livekit_plugins_fal-0.2.4/livekit_plugins_fal.egg-info/dependency_links.txt +0 -1
- livekit_plugins_fal-0.2.4/livekit_plugins_fal.egg-info/requires.txt +0 -2
- livekit_plugins_fal-0.2.4/livekit_plugins_fal.egg-info/top_level.txt +0 -1
- livekit_plugins_fal-0.2.4/pyproject.toml +0 -3
- livekit_plugins_fal-0.2.4/setup.cfg +0 -4
- livekit_plugins_fal-0.2.4/setup.py +0 -57
- {livekit_plugins_fal-0.2.4 → livekit_plugins_fal-1.0.0.dev5}/README.md +0 -0
- {livekit_plugins_fal-0.2.4 → livekit_plugins_fal-1.0.0.dev5}/livekit/plugins/fal/__init__.py +0 -0
- {livekit_plugins_fal-0.2.4 → livekit_plugins_fal-1.0.0.dev5}/livekit/plugins/fal/log.py +0 -0
- {livekit_plugins_fal-0.2.4 → livekit_plugins_fal-1.0.0.dev5}/livekit/plugins/fal/py.typed +0 -0
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
**/.vscode
|
|
2
|
+
**/.DS_Store
|
|
3
|
+
|
|
4
|
+
# Byte-compiled / optimized / DLL files
|
|
5
|
+
__pycache__/
|
|
6
|
+
*.py[cod]
|
|
7
|
+
*$py.class
|
|
8
|
+
|
|
9
|
+
# C extensions
|
|
10
|
+
*.so
|
|
11
|
+
|
|
12
|
+
# Distribution / packaging
|
|
13
|
+
.Python
|
|
14
|
+
build/
|
|
15
|
+
develop-eggs/
|
|
16
|
+
dist/
|
|
17
|
+
downloads/
|
|
18
|
+
eggs/
|
|
19
|
+
.eggs/
|
|
20
|
+
lib/
|
|
21
|
+
lib64/
|
|
22
|
+
parts/
|
|
23
|
+
sdist/
|
|
24
|
+
var/
|
|
25
|
+
wheels/
|
|
26
|
+
share/python-wheels/
|
|
27
|
+
*.egg-info/
|
|
28
|
+
.installed.cfg
|
|
29
|
+
*.egg
|
|
30
|
+
MANIFEST
|
|
31
|
+
|
|
32
|
+
# PyInstaller
|
|
33
|
+
# Usually these files are written by a python script from a template
|
|
34
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
35
|
+
*.manifest
|
|
36
|
+
*.spec
|
|
37
|
+
|
|
38
|
+
# Installer logs
|
|
39
|
+
pip-log.txt
|
|
40
|
+
pip-delete-this-directory.txt
|
|
41
|
+
|
|
42
|
+
# Unit test / coverage reports
|
|
43
|
+
htmlcov/
|
|
44
|
+
.tox/
|
|
45
|
+
.nox/
|
|
46
|
+
.coverage
|
|
47
|
+
.coverage.*
|
|
48
|
+
.cache
|
|
49
|
+
nosetests.xml
|
|
50
|
+
coverage.xml
|
|
51
|
+
*.cover
|
|
52
|
+
*.py,cover
|
|
53
|
+
.hypothesis/
|
|
54
|
+
.pytest_cache/
|
|
55
|
+
cover/
|
|
56
|
+
|
|
57
|
+
# Translations
|
|
58
|
+
*.mo
|
|
59
|
+
*.pot
|
|
60
|
+
|
|
61
|
+
# Django stuff:
|
|
62
|
+
*.log
|
|
63
|
+
local_settings.py
|
|
64
|
+
db.sqlite3
|
|
65
|
+
db.sqlite3-journal
|
|
66
|
+
|
|
67
|
+
# Flask stuff:
|
|
68
|
+
instance/
|
|
69
|
+
.webassets-cache
|
|
70
|
+
|
|
71
|
+
# Scrapy stuff:
|
|
72
|
+
.scrapy
|
|
73
|
+
|
|
74
|
+
# Sphinx documentation
|
|
75
|
+
docs/_build/
|
|
76
|
+
|
|
77
|
+
# PyBuilder
|
|
78
|
+
.pybuilder/
|
|
79
|
+
target/
|
|
80
|
+
|
|
81
|
+
# Jupyter Notebook
|
|
82
|
+
.ipynb_checkpoints
|
|
83
|
+
|
|
84
|
+
# IPython
|
|
85
|
+
profile_default/
|
|
86
|
+
ipython_config.py
|
|
87
|
+
|
|
88
|
+
# pyenv
|
|
89
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
90
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
91
|
+
# .python-version
|
|
92
|
+
|
|
93
|
+
# pipenv
|
|
94
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
95
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
96
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
97
|
+
# install all needed dependencies.
|
|
98
|
+
#Pipfile.lock
|
|
99
|
+
|
|
100
|
+
# poetry
|
|
101
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
102
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
103
|
+
# commonly ignored for libraries.
|
|
104
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
105
|
+
#poetry.lock
|
|
106
|
+
|
|
107
|
+
# pdm
|
|
108
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
109
|
+
#pdm.lock
|
|
110
|
+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
|
111
|
+
# in version control.
|
|
112
|
+
# https://pdm.fming.dev/#use-with-ide
|
|
113
|
+
.pdm.toml
|
|
114
|
+
|
|
115
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
116
|
+
__pypackages__/
|
|
117
|
+
|
|
118
|
+
# Celery stuff
|
|
119
|
+
celerybeat-schedule
|
|
120
|
+
celerybeat.pid
|
|
121
|
+
|
|
122
|
+
# SageMath parsed files
|
|
123
|
+
*.sage.py
|
|
124
|
+
|
|
125
|
+
# Environments
|
|
126
|
+
.env
|
|
127
|
+
.venv
|
|
128
|
+
env/
|
|
129
|
+
venv/
|
|
130
|
+
ENV/
|
|
131
|
+
env.bak/
|
|
132
|
+
venv.bak/
|
|
133
|
+
|
|
134
|
+
# Spyder project settings
|
|
135
|
+
.spyderproject
|
|
136
|
+
.spyproject
|
|
137
|
+
|
|
138
|
+
# Rope project settings
|
|
139
|
+
.ropeproject
|
|
140
|
+
|
|
141
|
+
# mkdocs documentation
|
|
142
|
+
/site
|
|
143
|
+
|
|
144
|
+
# mypy
|
|
145
|
+
.mypy_cache/
|
|
146
|
+
.dmypy.json
|
|
147
|
+
dmypy.json
|
|
148
|
+
|
|
149
|
+
# Pyre type checker
|
|
150
|
+
.pyre/
|
|
151
|
+
|
|
152
|
+
# pytype static type analyzer
|
|
153
|
+
.pytype/
|
|
154
|
+
|
|
155
|
+
# Cython debug symbols
|
|
156
|
+
cython_debug/
|
|
157
|
+
|
|
158
|
+
# PyCharm
|
|
159
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
160
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
161
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
162
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
163
|
+
.idea/
|
|
164
|
+
|
|
165
|
+
node_modules
|
|
166
|
+
|
|
167
|
+
credentials.json
|
|
168
|
+
pyrightconfig.json
|
|
@@ -1,36 +1,26 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: livekit-plugins-fal
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 1.0.0.dev5
|
|
4
4
|
Summary: fal plugin template for LiveKit Agents
|
|
5
|
-
Home-page: https://github.com/livekit/agents
|
|
6
|
-
License: Apache-2.0
|
|
7
5
|
Project-URL: Documentation, https://docs.livekit.io
|
|
8
6
|
Project-URL: Website, https://livekit.io/
|
|
9
7
|
Project-URL: Source, https://github.com/livekit/agents
|
|
10
|
-
|
|
8
|
+
Author: LiveKit
|
|
9
|
+
License-Expression: Apache-2.0
|
|
10
|
+
Keywords: audio,livekit,realtime,video,webrtc
|
|
11
11
|
Classifier: Intended Audience :: Developers
|
|
12
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
13
|
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
17
15
|
Classifier: Programming Language :: Python :: 3.9
|
|
18
16
|
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
-
Classifier:
|
|
17
|
+
Classifier: Topic :: Multimedia :: Sound/Audio
|
|
18
|
+
Classifier: Topic :: Multimedia :: Video
|
|
19
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
20
20
|
Requires-Python: >=3.9.0
|
|
21
|
+
Requires-Dist: fal-client
|
|
22
|
+
Requires-Dist: livekit-agents>=1.0.0.dev5
|
|
21
23
|
Description-Content-Type: text/markdown
|
|
22
|
-
Requires-Dist: livekit-agents<1.0.0,>=0.12.16
|
|
23
|
-
Requires-Dist: fal_client
|
|
24
|
-
Dynamic: classifier
|
|
25
|
-
Dynamic: description
|
|
26
|
-
Dynamic: description-content-type
|
|
27
|
-
Dynamic: home-page
|
|
28
|
-
Dynamic: keywords
|
|
29
|
-
Dynamic: license
|
|
30
|
-
Dynamic: project-url
|
|
31
|
-
Dynamic: requires-dist
|
|
32
|
-
Dynamic: requires-python
|
|
33
|
-
Dynamic: summary
|
|
34
24
|
|
|
35
25
|
# LiveKit Plugins fal
|
|
36
26
|
|
|
@@ -3,15 +3,11 @@ from __future__ import annotations
|
|
|
3
3
|
import dataclasses
|
|
4
4
|
import os
|
|
5
5
|
from dataclasses import dataclass
|
|
6
|
-
from typing import Optional
|
|
7
6
|
|
|
8
7
|
import fal_client
|
|
8
|
+
|
|
9
9
|
from livekit import rtc
|
|
10
|
-
from livekit.agents import
|
|
11
|
-
APIConnectionError,
|
|
12
|
-
APIConnectOptions,
|
|
13
|
-
stt,
|
|
14
|
-
)
|
|
10
|
+
from livekit.agents import APIConnectionError, APIConnectOptions, stt
|
|
15
11
|
from livekit.agents.stt import SpeechEventType, STTCapabilities
|
|
16
12
|
from livekit.agents.utils import AudioBuffer
|
|
17
13
|
|
|
@@ -28,14 +24,12 @@ class WizperSTT(stt.STT):
|
|
|
28
24
|
def __init__(
|
|
29
25
|
self,
|
|
30
26
|
*,
|
|
31
|
-
language:
|
|
32
|
-
task:
|
|
33
|
-
chunk_level:
|
|
34
|
-
version:
|
|
27
|
+
language: str | None = "en",
|
|
28
|
+
task: str | None = "transcribe",
|
|
29
|
+
chunk_level: str | None = "segment",
|
|
30
|
+
version: str | None = "3",
|
|
35
31
|
):
|
|
36
|
-
super().__init__(
|
|
37
|
-
capabilities=STTCapabilities(streaming=False, interim_results=True)
|
|
38
|
-
)
|
|
32
|
+
super().__init__(capabilities=STTCapabilities(streaming=False, interim_results=True))
|
|
39
33
|
self._api_key = os.getenv("FAL_KEY")
|
|
40
34
|
self._opts = _STTOptions(
|
|
41
35
|
language=language or "en",
|
|
@@ -46,20 +40,18 @@ class WizperSTT(stt.STT):
|
|
|
46
40
|
self._fal_client = fal_client.AsyncClient()
|
|
47
41
|
|
|
48
42
|
if not self._api_key:
|
|
49
|
-
raise ValueError(
|
|
50
|
-
"fal AI API key is required. It should be set with env FAL_KEY"
|
|
51
|
-
)
|
|
43
|
+
raise ValueError("fal AI API key is required. It should be set with env FAL_KEY")
|
|
52
44
|
|
|
53
|
-
def update_options(self, *, language:
|
|
45
|
+
def update_options(self, *, language: str | None = None) -> None:
|
|
54
46
|
self._opts.language = language or self._opts.language
|
|
55
47
|
|
|
56
48
|
def _sanitize_options(
|
|
57
49
|
self,
|
|
58
50
|
*,
|
|
59
|
-
language:
|
|
60
|
-
task:
|
|
61
|
-
chunk_level:
|
|
62
|
-
version:
|
|
51
|
+
language: str | None = None,
|
|
52
|
+
task: str | None = None,
|
|
53
|
+
chunk_level: str | None = None,
|
|
54
|
+
version: str | None = None,
|
|
63
55
|
) -> _STTOptions:
|
|
64
56
|
config = dataclasses.replace(self._opts)
|
|
65
57
|
config.language = language or config.language
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "livekit-plugins-fal"
|
|
7
|
+
dynamic = ["version"]
|
|
8
|
+
description = "fal plugin template for LiveKit Agents"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "Apache-2.0"
|
|
11
|
+
requires-python = ">=3.9.0"
|
|
12
|
+
authors = [{ name = "LiveKit" }]
|
|
13
|
+
keywords = ["webrtc", "realtime", "audio", "video", "livekit"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Intended Audience :: Developers",
|
|
16
|
+
"License :: OSI Approved :: Apache Software License",
|
|
17
|
+
"Topic :: Multimedia :: Sound/Audio",
|
|
18
|
+
"Topic :: Multimedia :: Video",
|
|
19
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
"Programming Language :: Python :: 3.9",
|
|
22
|
+
"Programming Language :: Python :: 3.10",
|
|
23
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
24
|
+
]
|
|
25
|
+
dependencies = ["livekit-agents>=1.0.0.dev5", "fal_client"]
|
|
26
|
+
|
|
27
|
+
[project.urls]
|
|
28
|
+
Documentation = "https://docs.livekit.io"
|
|
29
|
+
Website = "https://livekit.io/"
|
|
30
|
+
Source = "https://github.com/livekit/agents"
|
|
31
|
+
|
|
32
|
+
[tool.hatch.version]
|
|
33
|
+
path = "livekit/plugins/fal/version.py"
|
|
34
|
+
|
|
35
|
+
[tool.hatch.build.targets.wheel]
|
|
36
|
+
packages = ["livekit"]
|
|
37
|
+
|
|
38
|
+
[tool.hatch.build.targets.sdist]
|
|
39
|
+
include = ["/livekit"]
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.2
|
|
2
|
-
Name: livekit-plugins-fal
|
|
3
|
-
Version: 0.2.4
|
|
4
|
-
Summary: fal 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<1.0.0,>=0.12.16
|
|
23
|
-
Requires-Dist: fal_client
|
|
24
|
-
Dynamic: classifier
|
|
25
|
-
Dynamic: description
|
|
26
|
-
Dynamic: description-content-type
|
|
27
|
-
Dynamic: home-page
|
|
28
|
-
Dynamic: keywords
|
|
29
|
-
Dynamic: license
|
|
30
|
-
Dynamic: project-url
|
|
31
|
-
Dynamic: requires-dist
|
|
32
|
-
Dynamic: requires-python
|
|
33
|
-
Dynamic: summary
|
|
34
|
-
|
|
35
|
-
# LiveKit Plugins fal
|
|
36
|
-
|
|
37
|
-
This plugin provides a simple way to integrate fal.ai models into the LiveKit Agent Framework. currently supports Wizper model for STT.
|
|
38
|
-
|
|
39
|
-
## Installation
|
|
40
|
-
|
|
41
|
-
```bash
|
|
42
|
-
pip install livekit-plugins-fal
|
|
43
|
-
```
|
|
44
|
-
|
|
45
|
-
## Pre-requisites
|
|
46
|
-
|
|
47
|
-
You'll need an API key from fal. It can be set as an environment variable: `FAL_KEY`
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
README.md
|
|
2
|
-
pyproject.toml
|
|
3
|
-
setup.py
|
|
4
|
-
livekit/plugins/fal/__init__.py
|
|
5
|
-
livekit/plugins/fal/log.py
|
|
6
|
-
livekit/plugins/fal/py.typed
|
|
7
|
-
livekit/plugins/fal/stt.py
|
|
8
|
-
livekit/plugins/fal/version.py
|
|
9
|
-
livekit_plugins_fal.egg-info/PKG-INFO
|
|
10
|
-
livekit_plugins_fal.egg-info/SOURCES.txt
|
|
11
|
-
livekit_plugins_fal.egg-info/dependency_links.txt
|
|
12
|
-
livekit_plugins_fal.egg-info/requires.txt
|
|
13
|
-
livekit_plugins_fal.egg-info/top_level.txt
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
livekit
|
|
@@ -1,57 +0,0 @@
|
|
|
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
|
-
import os
|
|
16
|
-
import pathlib
|
|
17
|
-
|
|
18
|
-
import setuptools
|
|
19
|
-
import setuptools.command.build_py
|
|
20
|
-
|
|
21
|
-
here = pathlib.Path(__file__).parent.resolve()
|
|
22
|
-
about = {}
|
|
23
|
-
with open(os.path.join(here, "livekit", "plugins", "fal", "version.py"), "r") as f:
|
|
24
|
-
exec(f.read(), about)
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
setuptools.setup(
|
|
28
|
-
name="livekit-plugins-fal",
|
|
29
|
-
version=about["__version__"],
|
|
30
|
-
description="fal plugin template for LiveKit Agents",
|
|
31
|
-
long_description=(here / "README.md").read_text(encoding="utf-8"),
|
|
32
|
-
long_description_content_type="text/markdown",
|
|
33
|
-
url="https://github.com/livekit/agents",
|
|
34
|
-
cmdclass={},
|
|
35
|
-
classifiers=[
|
|
36
|
-
"Intended Audience :: Developers",
|
|
37
|
-
"License :: OSI Approved :: Apache Software License",
|
|
38
|
-
"Topic :: Multimedia :: Sound/Audio",
|
|
39
|
-
"Topic :: Multimedia :: Video",
|
|
40
|
-
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
41
|
-
"Programming Language :: Python :: 3",
|
|
42
|
-
"Programming Language :: Python :: 3.9",
|
|
43
|
-
"Programming Language :: Python :: 3.10",
|
|
44
|
-
"Programming Language :: Python :: 3 :: Only",
|
|
45
|
-
],
|
|
46
|
-
keywords=["webrtc", "realtime", "audio", "video", "livekit"],
|
|
47
|
-
license="Apache-2.0",
|
|
48
|
-
packages=setuptools.find_namespace_packages(include=["livekit.*"]),
|
|
49
|
-
python_requires=">=3.9.0",
|
|
50
|
-
install_requires=["livekit-agents>=0.12.16,<1.0.0", "fal_client"],
|
|
51
|
-
package_data={"livekit.plugins.fal": ["py.typed"]},
|
|
52
|
-
project_urls={
|
|
53
|
-
"Documentation": "https://docs.livekit.io",
|
|
54
|
-
"Website": "https://livekit.io/",
|
|
55
|
-
"Source": "https://github.com/livekit/agents",
|
|
56
|
-
},
|
|
57
|
-
)
|
|
File without changes
|
{livekit_plugins_fal-0.2.4 → livekit_plugins_fal-1.0.0.dev5}/livekit/plugins/fal/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|