livekit-plugins-google 0.5.0__tar.gz → 0.5.dev0__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.
- {livekit_plugins_google-0.5.0 → livekit_plugins_google-0.5.dev0}/PKG-INFO +2 -2
- {livekit_plugins_google-0.5.0 → livekit_plugins_google-0.5.dev0}/livekit/plugins/google/tts.py +1 -3
- {livekit_plugins_google-0.5.0 → livekit_plugins_google-0.5.dev0}/livekit/plugins/google/version.py +1 -1
- {livekit_plugins_google-0.5.0 → livekit_plugins_google-0.5.dev0}/livekit_plugins_google.egg-info/PKG-INFO +2 -2
- {livekit_plugins_google-0.5.0 → livekit_plugins_google-0.5.dev0}/livekit_plugins_google.egg-info/requires.txt +1 -1
- {livekit_plugins_google-0.5.0 → livekit_plugins_google-0.5.dev0}/setup.py +1 -1
- {livekit_plugins_google-0.5.0 → livekit_plugins_google-0.5.dev0}/README.md +0 -0
- {livekit_plugins_google-0.5.0 → livekit_plugins_google-0.5.dev0}/livekit/plugins/google/__init__.py +0 -0
- {livekit_plugins_google-0.5.0 → livekit_plugins_google-0.5.dev0}/livekit/plugins/google/log.py +0 -0
- {livekit_plugins_google-0.5.0 → livekit_plugins_google-0.5.dev0}/livekit/plugins/google/models.py +0 -0
- {livekit_plugins_google-0.5.0 → livekit_plugins_google-0.5.dev0}/livekit/plugins/google/py.typed +0 -0
- {livekit_plugins_google-0.5.0 → livekit_plugins_google-0.5.dev0}/livekit/plugins/google/stt.py +0 -0
- {livekit_plugins_google-0.5.0 → livekit_plugins_google-0.5.dev0}/livekit_plugins_google.egg-info/SOURCES.txt +0 -0
- {livekit_plugins_google-0.5.0 → livekit_plugins_google-0.5.dev0}/livekit_plugins_google.egg-info/dependency_links.txt +0 -0
- {livekit_plugins_google-0.5.0 → livekit_plugins_google-0.5.dev0}/livekit_plugins_google.egg-info/top_level.txt +0 -0
- {livekit_plugins_google-0.5.0 → livekit_plugins_google-0.5.dev0}/pyproject.toml +0 -0
- {livekit_plugins_google-0.5.0 → livekit_plugins_google-0.5.dev0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: livekit-plugins-google
|
3
|
-
Version: 0.5.
|
3
|
+
Version: 0.5.dev0
|
4
4
|
Summary: Agent Framework plugin for services from Google Cloud
|
5
5
|
Home-page: https://github.com/livekit/agents
|
6
6
|
License: Apache-2.0
|
@@ -30,7 +30,7 @@ Requires-Dist: google-cloud-texttospeech<3,>=2
|
|
30
30
|
Requires-Dist: google-cloud-translate<4,>=3
|
31
31
|
Requires-Dist: googleapis-common-protos<2,>=1
|
32
32
|
Requires-Dist: livekit~=0.11
|
33
|
-
Requires-Dist: livekit-agents~=0.7.
|
33
|
+
Requires-Dist: livekit-agents~=0.7.dev0
|
34
34
|
|
35
35
|
# LiveKit Plugins Google
|
36
36
|
|
{livekit_plugins_google-0.5.0 → livekit_plugins_google-0.5.dev0}/livekit/plugins/google/tts.py
RENAMED
@@ -146,9 +146,7 @@ class ChunkedStream(tts.ChunkedStream):
|
|
146
146
|
decoder = codecs.Mp3StreamDecoder()
|
147
147
|
frames = decoder.decode_chunk(data)
|
148
148
|
for frame in frames:
|
149
|
-
self._queue.put_nowait(
|
150
|
-
tts.SynthesizedAudio(text=self._text, data=frame)
|
151
|
-
)
|
149
|
+
self._queue.put_nowait(tts.SynthesizedAudio(text="", data=frame))
|
152
150
|
else:
|
153
151
|
self._queue.put_nowait(
|
154
152
|
tts.SynthesizedAudio(
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: livekit-plugins-google
|
3
|
-
Version: 0.5.
|
3
|
+
Version: 0.5.dev0
|
4
4
|
Summary: Agent Framework plugin for services from Google Cloud
|
5
5
|
Home-page: https://github.com/livekit/agents
|
6
6
|
License: Apache-2.0
|
@@ -30,7 +30,7 @@ Requires-Dist: google-cloud-texttospeech<3,>=2
|
|
30
30
|
Requires-Dist: google-cloud-translate<4,>=3
|
31
31
|
Requires-Dist: googleapis-common-protos<2,>=1
|
32
32
|
Requires-Dist: livekit~=0.11
|
33
|
-
Requires-Dist: livekit-agents~=0.7.
|
33
|
+
Requires-Dist: livekit-agents~=0.7.dev0
|
34
34
|
|
35
35
|
# LiveKit Plugins Google
|
36
36
|
|
File without changes
|
{livekit_plugins_google-0.5.0 → livekit_plugins_google-0.5.dev0}/livekit/plugins/google/__init__.py
RENAMED
File without changes
|
{livekit_plugins_google-0.5.0 → livekit_plugins_google-0.5.dev0}/livekit/plugins/google/log.py
RENAMED
File without changes
|
{livekit_plugins_google-0.5.0 → livekit_plugins_google-0.5.dev0}/livekit/plugins/google/models.py
RENAMED
File without changes
|
{livekit_plugins_google-0.5.0 → livekit_plugins_google-0.5.dev0}/livekit/plugins/google/py.typed
RENAMED
File without changes
|
{livekit_plugins_google-0.5.0 → livekit_plugins_google-0.5.dev0}/livekit/plugins/google/stt.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|