pipecat-respeecher 0.1.0__tar.gz → 0.1.1__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.
- {pipecat_respeecher-0.1.0/src/pipecat_respeecher.egg-info → pipecat_respeecher-0.1.1}/PKG-INFO +13 -5
- {pipecat_respeecher-0.1.0 → pipecat_respeecher-0.1.1}/README.md +9 -1
- {pipecat_respeecher-0.1.0 → pipecat_respeecher-0.1.1}/pyproject.toml +4 -4
- {pipecat_respeecher-0.1.0 → pipecat_respeecher-0.1.1/src/pipecat_respeecher.egg-info}/PKG-INFO +13 -5
- {pipecat_respeecher-0.1.0 → pipecat_respeecher-0.1.1}/.gitignore +0 -0
- {pipecat_respeecher-0.1.0 → pipecat_respeecher-0.1.1}/.python-version +0 -0
- {pipecat_respeecher-0.1.0 → pipecat_respeecher-0.1.1}/LICENSE +0 -0
- {pipecat_respeecher-0.1.0 → pipecat_respeecher-0.1.1}/env.example +0 -0
- {pipecat_respeecher-0.1.0 → pipecat_respeecher-0.1.1}/example-ukrainian.py +0 -0
- {pipecat_respeecher-0.1.0 → pipecat_respeecher-0.1.1}/example.py +0 -0
- {pipecat_respeecher-0.1.0 → pipecat_respeecher-0.1.1}/setup.cfg +0 -0
- {pipecat_respeecher-0.1.0 → pipecat_respeecher-0.1.1}/src/pipecat_respeecher/__init__.py +0 -0
- {pipecat_respeecher-0.1.0 → pipecat_respeecher-0.1.1}/src/pipecat_respeecher/tts.py +0 -0
- {pipecat_respeecher-0.1.0 → pipecat_respeecher-0.1.1}/src/pipecat_respeecher.egg-info/SOURCES.txt +0 -0
- {pipecat_respeecher-0.1.0 → pipecat_respeecher-0.1.1}/src/pipecat_respeecher.egg-info/dependency_links.txt +0 -0
- {pipecat_respeecher-0.1.0 → pipecat_respeecher-0.1.1}/src/pipecat_respeecher.egg-info/requires.txt +0 -0
- {pipecat_respeecher-0.1.0 → pipecat_respeecher-0.1.1}/src/pipecat_respeecher.egg-info/top_level.txt +0 -0
- {pipecat_respeecher-0.1.0 → pipecat_respeecher-0.1.1}/uv.lock +0 -0
{pipecat_respeecher-0.1.0/src/pipecat_respeecher.egg-info → pipecat_respeecher-0.1.1}/PKG-INFO
RENAMED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pipecat-respeecher
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Respeecher real-time TTS plugin for Pipecat
|
|
5
5
|
Author-email: Respeecher <nv@respeecher.com>
|
|
6
6
|
Maintainer-email: Respeecher <nv@respeecher.com>
|
|
7
7
|
License-Expression: BSD-2-Clause
|
|
8
|
-
Project-URL:
|
|
9
|
-
Project-URL:
|
|
10
|
-
Project-URL:
|
|
8
|
+
Project-URL: Homepage, https://www.respeecher.com/real-time-tts-api
|
|
9
|
+
Project-URL: Documentation, https://space.respeecher.com/docs
|
|
10
|
+
Project-URL: Source, https://github.com/respeecher/pipecat-respeecher
|
|
11
11
|
Keywords: tts,pipecat-ai,pipecat
|
|
12
12
|
Classifier: Intended Audience :: Developers
|
|
13
13
|
Classifier: Operating System :: OS Independent
|
|
@@ -25,6 +25,8 @@ Dynamic: license-file
|
|
|
25
25
|
|
|
26
26
|
# Pipecat Respeecher Real-Time TTS Integration
|
|
27
27
|
|
|
28
|
+
[](https://pypi.python.org/pypi/respeecher)
|
|
29
|
+
|
|
28
30
|
This is an official Respeecher integration for [Pipecat](https://pipecat.ai).
|
|
29
31
|
|
|
30
32
|
[Learn more](https://www.respeecher.com/real-time-tts-api) about our real-time TTS API
|
|
@@ -34,7 +36,9 @@ This is an official Respeecher integration for [Pipecat](https://pipecat.ai).
|
|
|
34
36
|
|
|
35
37
|
## Installation
|
|
36
38
|
|
|
37
|
-
|
|
39
|
+
```
|
|
40
|
+
pip install pipecat-respeecher
|
|
41
|
+
```
|
|
38
42
|
|
|
39
43
|
## Running the Example
|
|
40
44
|
|
|
@@ -108,3 +112,7 @@ tts = RespeecherTTSService(
|
|
|
108
112
|
voice_id="olesia-conversation",
|
|
109
113
|
)
|
|
110
114
|
```
|
|
115
|
+
|
|
116
|
+
## Compatibility
|
|
117
|
+
|
|
118
|
+
This integration requires Pipecat v0.0.99 or newer and has been tested with v0.0.99.
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Pipecat Respeecher Real-Time TTS Integration
|
|
2
2
|
|
|
3
|
+
[](https://pypi.python.org/pypi/respeecher)
|
|
4
|
+
|
|
3
5
|
This is an official Respeecher integration for [Pipecat](https://pipecat.ai).
|
|
4
6
|
|
|
5
7
|
[Learn more](https://www.respeecher.com/real-time-tts-api) about our real-time TTS API
|
|
@@ -9,7 +11,9 @@ This is an official Respeecher integration for [Pipecat](https://pipecat.ai).
|
|
|
9
11
|
|
|
10
12
|
## Installation
|
|
11
13
|
|
|
12
|
-
|
|
14
|
+
```
|
|
15
|
+
pip install pipecat-respeecher
|
|
16
|
+
```
|
|
13
17
|
|
|
14
18
|
## Running the Example
|
|
15
19
|
|
|
@@ -83,3 +87,7 @@ tts = RespeecherTTSService(
|
|
|
83
87
|
voice_id="olesia-conversation",
|
|
84
88
|
)
|
|
85
89
|
```
|
|
90
|
+
|
|
91
|
+
## Compatibility
|
|
92
|
+
|
|
93
|
+
This integration requires Pipecat v0.0.99 or newer and has been tested with v0.0.99.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "pipecat-respeecher"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.1"
|
|
4
4
|
description = "Respeecher real-time TTS plugin for Pipecat"
|
|
5
5
|
license = "BSD-2-Clause"
|
|
6
6
|
license-files = ["LICENSE"]
|
|
@@ -35,9 +35,9 @@ dev = [
|
|
|
35
35
|
]
|
|
36
36
|
|
|
37
37
|
[project.urls]
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
38
|
+
Homepage = "https://www.respeecher.com/real-time-tts-api"
|
|
39
|
+
Documentation = "https://space.respeecher.com/docs"
|
|
40
|
+
Source = "https://github.com/respeecher/pipecat-respeecher"
|
|
41
41
|
|
|
42
42
|
[tool.ruff.lint]
|
|
43
43
|
ignore = ["E402"]
|
{pipecat_respeecher-0.1.0 → pipecat_respeecher-0.1.1/src/pipecat_respeecher.egg-info}/PKG-INFO
RENAMED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pipecat-respeecher
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Respeecher real-time TTS plugin for Pipecat
|
|
5
5
|
Author-email: Respeecher <nv@respeecher.com>
|
|
6
6
|
Maintainer-email: Respeecher <nv@respeecher.com>
|
|
7
7
|
License-Expression: BSD-2-Clause
|
|
8
|
-
Project-URL:
|
|
9
|
-
Project-URL:
|
|
10
|
-
Project-URL:
|
|
8
|
+
Project-URL: Homepage, https://www.respeecher.com/real-time-tts-api
|
|
9
|
+
Project-URL: Documentation, https://space.respeecher.com/docs
|
|
10
|
+
Project-URL: Source, https://github.com/respeecher/pipecat-respeecher
|
|
11
11
|
Keywords: tts,pipecat-ai,pipecat
|
|
12
12
|
Classifier: Intended Audience :: Developers
|
|
13
13
|
Classifier: Operating System :: OS Independent
|
|
@@ -25,6 +25,8 @@ Dynamic: license-file
|
|
|
25
25
|
|
|
26
26
|
# Pipecat Respeecher Real-Time TTS Integration
|
|
27
27
|
|
|
28
|
+
[](https://pypi.python.org/pypi/respeecher)
|
|
29
|
+
|
|
28
30
|
This is an official Respeecher integration for [Pipecat](https://pipecat.ai).
|
|
29
31
|
|
|
30
32
|
[Learn more](https://www.respeecher.com/real-time-tts-api) about our real-time TTS API
|
|
@@ -34,7 +36,9 @@ This is an official Respeecher integration for [Pipecat](https://pipecat.ai).
|
|
|
34
36
|
|
|
35
37
|
## Installation
|
|
36
38
|
|
|
37
|
-
|
|
39
|
+
```
|
|
40
|
+
pip install pipecat-respeecher
|
|
41
|
+
```
|
|
38
42
|
|
|
39
43
|
## Running the Example
|
|
40
44
|
|
|
@@ -108,3 +112,7 @@ tts = RespeecherTTSService(
|
|
|
108
112
|
voice_id="olesia-conversation",
|
|
109
113
|
)
|
|
110
114
|
```
|
|
115
|
+
|
|
116
|
+
## Compatibility
|
|
117
|
+
|
|
118
|
+
This integration requires Pipecat v0.0.99 or newer and has been tested with v0.0.99.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pipecat_respeecher-0.1.0 → pipecat_respeecher-0.1.1}/src/pipecat_respeecher.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{pipecat_respeecher-0.1.0 → pipecat_respeecher-0.1.1}/src/pipecat_respeecher.egg-info/requires.txt
RENAMED
|
File without changes
|
{pipecat_respeecher-0.1.0 → pipecat_respeecher-0.1.1}/src/pipecat_respeecher.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|