livekit-plugins-hume 1.0.19__tar.gz → 1.0.20__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-hume might be problematic. Click here for more details.
- {livekit_plugins_hume-1.0.19 → livekit_plugins_hume-1.0.20}/.gitignore +1 -0
- {livekit_plugins_hume-1.0.19 → livekit_plugins_hume-1.0.20}/PKG-INFO +6 -4
- livekit_plugins_hume-1.0.20/README.md +13 -0
- {livekit_plugins_hume-1.0.19 → livekit_plugins_hume-1.0.20}/livekit/plugins/hume/__init__.py +14 -0
- {livekit_plugins_hume-1.0.19 → livekit_plugins_hume-1.0.20}/livekit/plugins/hume/version.py +1 -1
- {livekit_plugins_hume-1.0.19 → livekit_plugins_hume-1.0.20}/pyproject.toml +1 -1
- livekit_plugins_hume-1.0.19/README.md +0 -11
- {livekit_plugins_hume-1.0.19 → livekit_plugins_hume-1.0.20}/livekit/plugins/hume/log.py +0 -0
- {livekit_plugins_hume-1.0.19 → livekit_plugins_hume-1.0.20}/livekit/plugins/hume/models.py +0 -0
- {livekit_plugins_hume-1.0.19 → livekit_plugins_hume-1.0.20}/livekit/plugins/hume/py.typed +0 -0
- {livekit_plugins_hume-1.0.19 → livekit_plugins_hume-1.0.20}/livekit/plugins/hume/tts.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: livekit-plugins-hume
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.20
|
|
4
4
|
Summary: Hume TTS plugin for LiveKit agents
|
|
5
5
|
Project-URL: Documentation, https://docs.livekit.io
|
|
6
6
|
Project-URL: Website, https://livekit.io/
|
|
@@ -18,12 +18,14 @@ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
|
18
18
|
Requires-Python: >=3.9.0
|
|
19
19
|
Requires-Dist: aiohttp>=3.8.0
|
|
20
20
|
Requires-Dist: hume>=0.8.3
|
|
21
|
-
Requires-Dist: livekit-agents>=1.0.
|
|
21
|
+
Requires-Dist: livekit-agents>=1.0.20
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
|
|
24
|
-
#
|
|
24
|
+
# Hume AI TTS plugin for LiveKit Agents
|
|
25
25
|
|
|
26
|
-
|
|
26
|
+
Support for text-to-speech with [Hume](https://www.hume.ai/).
|
|
27
|
+
|
|
28
|
+
See [https://docs.livekit.io/agents/integrations/tts/hume/](https://docs.livekit.io/agents/integrations/tts/hume/) for more information.
|
|
27
29
|
|
|
28
30
|
## Installation
|
|
29
31
|
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Hume AI TTS plugin for LiveKit Agents
|
|
2
|
+
|
|
3
|
+
Support for text-to-speech with [Hume](https://www.hume.ai/).
|
|
4
|
+
|
|
5
|
+
See [https://docs.livekit.io/agents/integrations/tts/hume/](https://docs.livekit.io/agents/integrations/tts/hume/) for more information.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
pip install livekit-plugins-hume
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
You will need an API Key from Hume, it can be set as an environment variable: `HUME_API_KEY`. You can get it from [here](https://platform.hume.ai/settings/keys)
|
{livekit_plugins_hume-1.0.19 → livekit_plugins_hume-1.0.20}/livekit/plugins/hume/__init__.py
RENAMED
|
@@ -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
|
+
"""Hume AI TTS plugin for LiveKit Agents
|
|
16
|
+
|
|
17
|
+
See https://docs.livekit.io/agents/integrations/tts/hume/ for more information.
|
|
18
|
+
"""
|
|
19
|
+
|
|
15
20
|
from __future__ import annotations
|
|
16
21
|
|
|
17
22
|
__version__ = "1.0.0"
|
|
@@ -50,3 +55,12 @@ __pdoc__ = {}
|
|
|
50
55
|
|
|
51
56
|
for n in NOT_IN_ALL:
|
|
52
57
|
__pdoc__[n] = False
|
|
58
|
+
|
|
59
|
+
# Cleanup docs of unexported modules
|
|
60
|
+
_module = dir()
|
|
61
|
+
NOT_IN_ALL = [m for m in _module if m not in __all__]
|
|
62
|
+
|
|
63
|
+
__pdoc__ = {}
|
|
64
|
+
|
|
65
|
+
for n in NOT_IN_ALL:
|
|
66
|
+
__pdoc__[n] = False
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
# LiveKit Plugins Hume AI TTS
|
|
2
|
-
|
|
3
|
-
LiveKit Agents Framework plugin for [Hume](https://www.hume.ai/) Text-to-Speech API.
|
|
4
|
-
|
|
5
|
-
## Installation
|
|
6
|
-
|
|
7
|
-
```bash
|
|
8
|
-
pip install livekit-plugins-hume
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
You will need an API Key from Hume, it can be set as an environment variable: `HUME_API_KEY`. You can get it from [here](https://platform.hume.ai/settings/keys)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|