livekit-plugins-hume 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.

Potentially problematic release.


This version of livekit-plugins-hume might be problematic. Click here for more details.

@@ -166,3 +166,4 @@ node_modules
166
166
 
167
167
  credentials.json
168
168
  pyrightconfig.json
169
+ docs/
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: livekit-plugins-hume
3
- Version: 1.0.19
3
+ Version: 1.0.21
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.19
21
+ Requires-Dist: livekit-agents>=1.0.21
22
22
  Description-Content-Type: text/markdown
23
23
 
24
- # LiveKit Plugins Hume AI TTS
24
+ # Hume AI TTS plugin for LiveKit Agents
25
25
 
26
- LiveKit Agents Framework plugin for [Hume](https://www.hume.ai/) Text-to-Speech API.
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)
@@ -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
@@ -12,4 +12,4 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
 
15
- __version__ = "1.0.19"
15
+ __version__ = "1.0.21"
@@ -24,7 +24,7 @@ classifiers = [
24
24
  ]
25
25
  dependencies = [
26
26
  "aiohttp>=3.8.0",
27
- "livekit-agents>=1.0.19",
27
+ "livekit-agents>=1.0.21",
28
28
  "hume>=0.8.3"
29
29
  ]
30
30
 
@@ -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)