livekit-plugins-google 0.11.3__tar.gz → 0.11.5__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-google might be problematic. Click here for more details.
- {livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/PKG-INFO +2 -2
- {livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/livekit/plugins/google/llm.py +2 -5
- {livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/livekit/plugins/google/version.py +1 -1
- {livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/livekit_plugins_google.egg-info/PKG-INFO +2 -2
- {livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/livekit_plugins_google.egg-info/requires.txt +1 -1
- {livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/setup.py +1 -1
- {livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/README.md +0 -0
- {livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/livekit/plugins/google/__init__.py +0 -0
- {livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/livekit/plugins/google/_utils.py +0 -0
- {livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/livekit/plugins/google/beta/__init__.py +0 -0
- {livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/livekit/plugins/google/beta/realtime/__init__.py +0 -0
- {livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/livekit/plugins/google/beta/realtime/api_proto.py +0 -0
- {livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/livekit/plugins/google/beta/realtime/realtime_api.py +0 -0
- {livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/livekit/plugins/google/beta/realtime/transcriber.py +0 -0
- {livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/livekit/plugins/google/log.py +0 -0
- {livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/livekit/plugins/google/models.py +0 -0
- {livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/livekit/plugins/google/py.typed +0 -0
- {livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/livekit/plugins/google/stt.py +0 -0
- {livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/livekit/plugins/google/tts.py +0 -0
- {livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/livekit_plugins_google.egg-info/SOURCES.txt +0 -0
- {livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/livekit_plugins_google.egg-info/dependency_links.txt +0 -0
- {livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/livekit_plugins_google.egg-info/top_level.txt +0 -0
- {livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/pyproject.toml +0 -0
- {livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: livekit-plugins-google
|
|
3
|
-
Version: 0.11.
|
|
3
|
+
Version: 0.11.5
|
|
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
|
|
@@ -23,7 +23,7 @@ Requires-Dist: google-auth<3,>=2
|
|
|
23
23
|
Requires-Dist: google-cloud-speech<3,>=2
|
|
24
24
|
Requires-Dist: google-cloud-texttospeech<3,>=2
|
|
25
25
|
Requires-Dist: google-genai==1.3.0
|
|
26
|
-
Requires-Dist: livekit-agents<1.0.0,>=0.12.
|
|
26
|
+
Requires-Dist: livekit-agents<1.0.0,>=0.12.20
|
|
27
27
|
Dynamic: classifier
|
|
28
28
|
Dynamic: description
|
|
29
29
|
Dynamic: description-content-type
|
{livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/livekit/plugins/google/llm.py
RENAMED
|
@@ -300,11 +300,8 @@ class LLMStream(llm.LLMStream):
|
|
|
300
300
|
or not response.candidates[0].content
|
|
301
301
|
or not response.candidates[0].content.parts
|
|
302
302
|
):
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
retryable=True,
|
|
306
|
-
request_id=request_id,
|
|
307
|
-
)
|
|
303
|
+
logger.warning(f"no candidates in the response: {response}")
|
|
304
|
+
continue
|
|
308
305
|
|
|
309
306
|
if len(response.candidates) > 1:
|
|
310
307
|
logger.warning(
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: livekit-plugins-google
|
|
3
|
-
Version: 0.11.
|
|
3
|
+
Version: 0.11.5
|
|
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
|
|
@@ -23,7 +23,7 @@ Requires-Dist: google-auth<3,>=2
|
|
|
23
23
|
Requires-Dist: google-cloud-speech<3,>=2
|
|
24
24
|
Requires-Dist: google-cloud-texttospeech<3,>=2
|
|
25
25
|
Requires-Dist: google-genai==1.3.0
|
|
26
|
-
Requires-Dist: livekit-agents<1.0.0,>=0.12.
|
|
26
|
+
Requires-Dist: livekit-agents<1.0.0,>=0.12.20
|
|
27
27
|
Dynamic: classifier
|
|
28
28
|
Dynamic: description
|
|
29
29
|
Dynamic: description-content-type
|
|
@@ -52,7 +52,7 @@ setuptools.setup(
|
|
|
52
52
|
"google-cloud-speech >= 2, < 3",
|
|
53
53
|
"google-cloud-texttospeech >= 2, < 3",
|
|
54
54
|
"google-genai == 1.3.0",
|
|
55
|
-
"livekit-agents>=0.12.
|
|
55
|
+
"livekit-agents>=0.12.20,<1.0.0",
|
|
56
56
|
],
|
|
57
57
|
package_data={"livekit.plugins.google": ["py.typed"]},
|
|
58
58
|
project_urls={
|
|
File without changes
|
{livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/livekit/plugins/google/__init__.py
RENAMED
|
File without changes
|
{livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/livekit/plugins/google/_utils.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/livekit/plugins/google/log.py
RENAMED
|
File without changes
|
{livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/livekit/plugins/google/models.py
RENAMED
|
File without changes
|
{livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/livekit/plugins/google/py.typed
RENAMED
|
File without changes
|
{livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/livekit/plugins/google/stt.py
RENAMED
|
File without changes
|
{livekit_plugins_google-0.11.3 → livekit_plugins_google-0.11.5}/livekit/plugins/google/tts.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|