livekit-plugins-resemble 1.0.18__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-resemble 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-resemble
3
- Version: 1.0.18
3
+ Version: 1.0.20
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,12 +18,14 @@ 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.0.18
21
+ Requires-Dist: livekit-agents>=1.0.20
22
22
  Description-Content-Type: text/markdown
23
23
 
24
- # LiveKit Plugins Resemble
24
+ # Resemble plugin for LiveKit Agents
25
25
 
26
- Agent Framework plugin for voice synthesis with the [Resemble AI](https://www.resemble.ai/) API, using both their REST API and WebSocket streaming interface.
26
+ Support for voice synthesis with the [Resemble AI](https://www.resemble.ai/) API, using both their REST API and WebSocket streaming interface.
27
+
28
+ See [https://docs.livekit.io/agents/integrations/tts/resemble/](https://docs.livekit.io/agents/integrations/tts/resemble/) for more information.
27
29
 
28
30
  ## Installation
29
31
 
@@ -1,6 +1,8 @@
1
- # LiveKit Plugins Resemble
1
+ # Resemble plugin for LiveKit Agents
2
2
 
3
- Agent Framework plugin for voice synthesis with the [Resemble AI](https://www.resemble.ai/) API, using both their REST API and WebSocket streaming interface.
3
+ Support for voice synthesis with the [Resemble AI](https://www.resemble.ai/) API, using both their REST API and WebSocket streaming interface.
4
+
5
+ See [https://docs.livekit.io/agents/integrations/tts/resemble/](https://docs.livekit.io/agents/integrations/tts/resemble/) for more information.
4
6
 
5
7
  ## Installation
6
8
 
@@ -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
+ """Resemble plugin for LiveKit Agents
16
+
17
+ See https://docs.livekit.io/agents/integrations/tts/resemble/ for more information.
18
+ """
19
+
15
20
  from .tts import TTS, ChunkedStream, SynthesizeStream
16
21
  from .version import __version__
17
22
 
@@ -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.18"
15
+ __version__ = "1.0.20"
@@ -23,7 +23,7 @@ classifiers = [
23
23
  "Programming Language :: Python :: 3 :: Only",
24
24
  ]
25
25
  dependencies = [
26
- "livekit-agents>=1.0.18",
26
+ "livekit-agents>=1.0.20",
27
27
  ]
28
28
 
29
29
  [project.urls]