livekit-plugins-google 0.6.0__tar.gz → 0.6.0.dev1__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.6.0 → livekit_plugins_google-0.6.0.dev1}/PKG-INFO +2 -2
- {livekit_plugins_google-0.6.0 → livekit_plugins_google-0.6.0.dev1}/livekit/plugins/google/version.py +1 -1
- {livekit_plugins_google-0.6.0 → livekit_plugins_google-0.6.0.dev1}/livekit_plugins_google.egg-info/PKG-INFO +2 -2
- {livekit_plugins_google-0.6.0 → livekit_plugins_google-0.6.0.dev1}/livekit_plugins_google.egg-info/requires.txt +1 -1
- {livekit_plugins_google-0.6.0 → livekit_plugins_google-0.6.0.dev1}/setup.py +1 -1
- {livekit_plugins_google-0.6.0 → livekit_plugins_google-0.6.0.dev1}/README.md +0 -0
- {livekit_plugins_google-0.6.0 → livekit_plugins_google-0.6.0.dev1}/livekit/plugins/google/__init__.py +0 -0
- {livekit_plugins_google-0.6.0 → livekit_plugins_google-0.6.0.dev1}/livekit/plugins/google/log.py +0 -0
- {livekit_plugins_google-0.6.0 → livekit_plugins_google-0.6.0.dev1}/livekit/plugins/google/models.py +0 -0
- {livekit_plugins_google-0.6.0 → livekit_plugins_google-0.6.0.dev1}/livekit/plugins/google/py.typed +0 -0
- {livekit_plugins_google-0.6.0 → livekit_plugins_google-0.6.0.dev1}/livekit/plugins/google/stt.py +1 -1
- {livekit_plugins_google-0.6.0 → livekit_plugins_google-0.6.0.dev1}/livekit/plugins/google/tts.py +0 -0
- {livekit_plugins_google-0.6.0 → livekit_plugins_google-0.6.0.dev1}/livekit_plugins_google.egg-info/SOURCES.txt +0 -0
- {livekit_plugins_google-0.6.0 → livekit_plugins_google-0.6.0.dev1}/livekit_plugins_google.egg-info/dependency_links.txt +0 -0
- {livekit_plugins_google-0.6.0 → livekit_plugins_google-0.6.0.dev1}/livekit_plugins_google.egg-info/top_level.txt +0 -0
- {livekit_plugins_google-0.6.0 → livekit_plugins_google-0.6.0.dev1}/pyproject.toml +0 -0
- {livekit_plugins_google-0.6.0 → livekit_plugins_google-0.6.0.dev1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: livekit-plugins-google
|
3
|
-
Version: 0.6.0
|
3
|
+
Version: 0.6.0.dev1
|
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
|
@@ -21,7 +21,7 @@ Requires-Python: >=3.9.0
|
|
21
21
|
Description-Content-Type: text/markdown
|
22
22
|
Requires-Dist: google-cloud-speech<3,>=2
|
23
23
|
Requires-Dist: google-cloud-texttospeech<3,>=2
|
24
|
-
Requires-Dist: livekit-agents
|
24
|
+
Requires-Dist: livekit-agents~=0.7
|
25
25
|
|
26
26
|
# LiveKit Plugins Google
|
27
27
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: livekit-plugins-google
|
3
|
-
Version: 0.6.0
|
3
|
+
Version: 0.6.0.dev1
|
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
|
@@ -21,7 +21,7 @@ Requires-Python: >=3.9.0
|
|
21
21
|
Description-Content-Type: text/markdown
|
22
22
|
Requires-Dist: google-cloud-speech<3,>=2
|
23
23
|
Requires-Dist: google-cloud-texttospeech<3,>=2
|
24
|
-
Requires-Dist: livekit-agents
|
24
|
+
Requires-Dist: livekit-agents~=0.7
|
25
25
|
|
26
26
|
# LiveKit Plugins Google
|
27
27
|
|
File without changes
|
File without changes
|
{livekit_plugins_google-0.6.0 → livekit_plugins_google-0.6.0.dev1}/livekit/plugins/google/log.py
RENAMED
File without changes
|
{livekit_plugins_google-0.6.0 → livekit_plugins_google-0.6.0.dev1}/livekit/plugins/google/models.py
RENAMED
File without changes
|
{livekit_plugins_google-0.6.0 → livekit_plugins_google-0.6.0.dev1}/livekit/plugins/google/py.typed
RENAMED
File without changes
|
{livekit_plugins_google-0.6.0 → livekit_plugins_google-0.6.0.dev1}/livekit/plugins/google/stt.py
RENAMED
@@ -131,8 +131,8 @@ class STT(stt.STT):
|
|
131
131
|
|
132
132
|
async def recognize(
|
133
133
|
self,
|
134
|
-
buffer: utils.AudioBuffer,
|
135
134
|
*,
|
135
|
+
buffer: utils.AudioBuffer,
|
136
136
|
language: SpeechLanguages | str | None = None,
|
137
137
|
) -> stt.SpeechEvent:
|
138
138
|
config = self._sanitize_options(language=language)
|
{livekit_plugins_google-0.6.0 → livekit_plugins_google-0.6.0.dev1}/livekit/plugins/google/tts.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|