livekit-plugins-hume 1.2.11__tar.gz → 1.2.13__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.2.11 → livekit_plugins_hume-1.2.13}/PKG-INFO +2 -2
- {livekit_plugins_hume-1.2.11 → livekit_plugins_hume-1.2.13}/livekit/plugins/hume/tts.py +8 -0
- {livekit_plugins_hume-1.2.11 → livekit_plugins_hume-1.2.13}/livekit/plugins/hume/version.py +1 -1
- {livekit_plugins_hume-1.2.11 → livekit_plugins_hume-1.2.13}/pyproject.toml +1 -1
- {livekit_plugins_hume-1.2.11 → livekit_plugins_hume-1.2.13}/.gitignore +0 -0
- {livekit_plugins_hume-1.2.11 → livekit_plugins_hume-1.2.13}/README.md +0 -0
- {livekit_plugins_hume-1.2.11 → livekit_plugins_hume-1.2.13}/livekit/plugins/hume/__init__.py +0 -0
- {livekit_plugins_hume-1.2.11 → livekit_plugins_hume-1.2.13}/livekit/plugins/hume/log.py +0 -0
- {livekit_plugins_hume-1.2.11 → livekit_plugins_hume-1.2.13}/livekit/plugins/hume/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: livekit-plugins-hume
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.13
|
|
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/
|
|
@@ -17,7 +17,7 @@ Classifier: Topic :: Multimedia :: Sound/Audio
|
|
|
17
17
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
18
18
|
Requires-Python: >=3.9.0
|
|
19
19
|
Requires-Dist: aiohttp>=3.8.0
|
|
20
|
-
Requires-Dist: livekit-agents>=1.2.
|
|
20
|
+
Requires-Dist: livekit-agents>=1.2.13
|
|
21
21
|
Description-Content-Type: text/markdown
|
|
22
22
|
|
|
23
23
|
# Hume AI TTS plugin for LiveKit Agents
|
|
@@ -167,6 +167,14 @@ class TTS(tts.TTS):
|
|
|
167
167
|
)
|
|
168
168
|
self._session = http_session
|
|
169
169
|
|
|
170
|
+
@property
|
|
171
|
+
def model(self) -> str:
|
|
172
|
+
return "Octave"
|
|
173
|
+
|
|
174
|
+
@property
|
|
175
|
+
def provider(self) -> str:
|
|
176
|
+
return "Hume"
|
|
177
|
+
|
|
170
178
|
def _ensure_session(self) -> aiohttp.ClientSession:
|
|
171
179
|
if not self._session:
|
|
172
180
|
self._session = utils.http_context.http_session()
|
|
File without changes
|
|
File without changes
|
{livekit_plugins_hume-1.2.11 → livekit_plugins_hume-1.2.13}/livekit/plugins/hume/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|