livekit-plugins-resemble 1.2.11__tar.gz → 1.2.12__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-resemble might be problematic. Click here for more details.
- {livekit_plugins_resemble-1.2.11 → livekit_plugins_resemble-1.2.12}/PKG-INFO +2 -2
- {livekit_plugins_resemble-1.2.11 → livekit_plugins_resemble-1.2.12}/livekit/plugins/resemble/tts.py +8 -0
- {livekit_plugins_resemble-1.2.11 → livekit_plugins_resemble-1.2.12}/livekit/plugins/resemble/version.py +1 -1
- {livekit_plugins_resemble-1.2.11 → livekit_plugins_resemble-1.2.12}/pyproject.toml +1 -1
- {livekit_plugins_resemble-1.2.11 → livekit_plugins_resemble-1.2.12}/.gitignore +0 -0
- {livekit_plugins_resemble-1.2.11 → livekit_plugins_resemble-1.2.12}/README.md +0 -0
- {livekit_plugins_resemble-1.2.11 → livekit_plugins_resemble-1.2.12}/livekit/plugins/resemble/__init__.py +0 -0
- {livekit_plugins_resemble-1.2.11 → livekit_plugins_resemble-1.2.12}/livekit/plugins/resemble/log.py +0 -0
- {livekit_plugins_resemble-1.2.11 → livekit_plugins_resemble-1.2.12}/livekit/plugins/resemble/models.py +0 -0
- {livekit_plugins_resemble-1.2.11 → livekit_plugins_resemble-1.2.12}/livekit/plugins/resemble/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: livekit-plugins-resemble
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.12
|
|
4
4
|
Summary: LiveKit Agents Plugin for Resemble AI
|
|
5
5
|
Project-URL: Documentation, https://docs.livekit.io
|
|
6
6
|
Project-URL: Website, https://livekit.io/
|
|
@@ -18,7 +18,7 @@ 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.2.
|
|
21
|
+
Requires-Dist: livekit-agents>=1.2.12
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
|
|
24
24
|
# Resemble plugin for LiveKit Agents
|
{livekit_plugins_resemble-1.2.11 → livekit_plugins_resemble-1.2.12}/livekit/plugins/resemble/tts.py
RENAMED
|
@@ -106,6 +106,14 @@ class TTS(tts.TTS):
|
|
|
106
106
|
close_cb=self._close_ws,
|
|
107
107
|
)
|
|
108
108
|
|
|
109
|
+
@property
|
|
110
|
+
def model(self) -> str:
|
|
111
|
+
return "unknown"
|
|
112
|
+
|
|
113
|
+
@property
|
|
114
|
+
def provider(self) -> str:
|
|
115
|
+
return "Resemble"
|
|
116
|
+
|
|
109
117
|
async def _connect_ws(self, timeout: float) -> aiohttp.ClientWebSocketResponse:
|
|
110
118
|
return await asyncio.wait_for(
|
|
111
119
|
self._ensure_session().ws_connect(
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{livekit_plugins_resemble-1.2.11 → livekit_plugins_resemble-1.2.12}/livekit/plugins/resemble/log.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|