livekit-plugins-cartesia 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.
- {livekit_plugins_cartesia-1.0.19 → livekit_plugins_cartesia-1.0.21}/.gitignore +1 -0
- {livekit_plugins_cartesia-1.0.19 → livekit_plugins_cartesia-1.0.21}/PKG-INFO +6 -4
- livekit_plugins_cartesia-1.0.21/README.md +15 -0
- {livekit_plugins_cartesia-1.0.19 → livekit_plugins_cartesia-1.0.21}/livekit/plugins/cartesia/__init__.py +5 -0
- {livekit_plugins_cartesia-1.0.19 → livekit_plugins_cartesia-1.0.21}/livekit/plugins/cartesia/tts.py +1 -1
- {livekit_plugins_cartesia-1.0.19 → livekit_plugins_cartesia-1.0.21}/livekit/plugins/cartesia/version.py +1 -1
- {livekit_plugins_cartesia-1.0.19 → livekit_plugins_cartesia-1.0.21}/pyproject.toml +1 -1
- livekit_plugins_cartesia-1.0.19/README.md +0 -13
- {livekit_plugins_cartesia-1.0.19 → livekit_plugins_cartesia-1.0.21}/livekit/plugins/cartesia/log.py +0 -0
- {livekit_plugins_cartesia-1.0.19 → livekit_plugins_cartesia-1.0.21}/livekit/plugins/cartesia/models.py +0 -0
- {livekit_plugins_cartesia-1.0.19 → livekit_plugins_cartesia-1.0.21}/livekit/plugins/cartesia/py.typed +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: livekit-plugins-cartesia
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.21
|
4
4
|
Summary: LiveKit Agents Plugin for Cartesia
|
5
5
|
Project-URL: Documentation, https://docs.livekit.io
|
6
6
|
Project-URL: Website, https://livekit.io/
|
@@ -18,12 +18,14 @@ Classifier: Topic :: Multimedia :: Sound/Audio
|
|
18
18
|
Classifier: Topic :: Multimedia :: Video
|
19
19
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
20
20
|
Requires-Python: >=3.9.0
|
21
|
-
Requires-Dist: livekit-agents>=1.0.
|
21
|
+
Requires-Dist: livekit-agents>=1.0.21
|
22
22
|
Description-Content-Type: text/markdown
|
23
23
|
|
24
|
-
# LiveKit
|
24
|
+
# Cartesia plugin for LiveKit Agents
|
25
25
|
|
26
|
-
|
26
|
+
Support for voice synthesis with [Cartesia](https://cartesia.ai/).
|
27
|
+
|
28
|
+
See https://docs.livekit.io/agents/integrations/tts/cartesia/ for more information.
|
27
29
|
|
28
30
|
## Installation
|
29
31
|
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# Cartesia plugin for LiveKit Agents
|
2
|
+
|
3
|
+
Support for voice synthesis with [Cartesia](https://cartesia.ai/).
|
4
|
+
|
5
|
+
See https://docs.livekit.io/agents/integrations/tts/cartesia/ for more information.
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
```bash
|
10
|
+
pip install livekit-plugins-cartesia
|
11
|
+
```
|
12
|
+
|
13
|
+
## Pre-requisites
|
14
|
+
|
15
|
+
You'll need an API key from Cartesia. It can be set as an environment variable: `CARTESIA_API_KEY`
|
@@ -12,6 +12,11 @@
|
|
12
12
|
# See the License for the specific language governing permissions and
|
13
13
|
# limitations under the License.
|
14
14
|
|
15
|
+
"""Cartesia plugin for LiveKit Agents
|
16
|
+
|
17
|
+
See https://docs.livekit.io/agents/integrations/tts/cartesia/ for more information.
|
18
|
+
"""
|
19
|
+
|
15
20
|
from .tts import TTS, ChunkedStream
|
16
21
|
from .version import __version__
|
17
22
|
|
@@ -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"]
|
26
26
|
|
27
27
|
[project.urls]
|
28
28
|
Documentation = "https://docs.livekit.io"
|
@@ -1,13 +0,0 @@
|
|
1
|
-
# LiveKit Plugins Cartesia
|
2
|
-
|
3
|
-
Agent Framework plugin for voice synthesis with [Cartesia](https://cartesia.ai/) API.
|
4
|
-
|
5
|
-
## Installation
|
6
|
-
|
7
|
-
```bash
|
8
|
-
pip install livekit-plugins-cartesia
|
9
|
-
```
|
10
|
-
|
11
|
-
## Pre-requisites
|
12
|
-
|
13
|
-
You'll need an API key from Cartesia. It can be set as an environment variable: `CARTESIA_API_KEY`
|
{livekit_plugins_cartesia-1.0.19 → livekit_plugins_cartesia-1.0.21}/livekit/plugins/cartesia/log.py
RENAMED
File without changes
|
File without changes
|
File without changes
|