livekit-plugins-google 0.6.0.dev2__tar.gz → 0.6.0.dev7__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.
Files changed (17) hide show
  1. {livekit_plugins_google-0.6.0.dev2 → livekit_plugins_google-0.6.0.dev7}/PKG-INFO +2 -2
  2. {livekit_plugins_google-0.6.0.dev2 → livekit_plugins_google-0.6.0.dev7}/livekit/plugins/google/version.py +1 -1
  3. {livekit_plugins_google-0.6.0.dev2 → livekit_plugins_google-0.6.0.dev7}/livekit_plugins_google.egg-info/PKG-INFO +2 -2
  4. {livekit_plugins_google-0.6.0.dev2 → livekit_plugins_google-0.6.0.dev7}/livekit_plugins_google.egg-info/requires.txt +1 -1
  5. {livekit_plugins_google-0.6.0.dev2 → livekit_plugins_google-0.6.0.dev7}/setup.py +1 -1
  6. {livekit_plugins_google-0.6.0.dev2 → livekit_plugins_google-0.6.0.dev7}/README.md +0 -0
  7. {livekit_plugins_google-0.6.0.dev2 → livekit_plugins_google-0.6.0.dev7}/livekit/plugins/google/__init__.py +0 -0
  8. {livekit_plugins_google-0.6.0.dev2 → livekit_plugins_google-0.6.0.dev7}/livekit/plugins/google/log.py +0 -0
  9. {livekit_plugins_google-0.6.0.dev2 → livekit_plugins_google-0.6.0.dev7}/livekit/plugins/google/models.py +0 -0
  10. {livekit_plugins_google-0.6.0.dev2 → livekit_plugins_google-0.6.0.dev7}/livekit/plugins/google/py.typed +0 -0
  11. {livekit_plugins_google-0.6.0.dev2 → livekit_plugins_google-0.6.0.dev7}/livekit/plugins/google/stt.py +0 -0
  12. {livekit_plugins_google-0.6.0.dev2 → livekit_plugins_google-0.6.0.dev7}/livekit/plugins/google/tts.py +0 -0
  13. {livekit_plugins_google-0.6.0.dev2 → livekit_plugins_google-0.6.0.dev7}/livekit_plugins_google.egg-info/SOURCES.txt +0 -0
  14. {livekit_plugins_google-0.6.0.dev2 → livekit_plugins_google-0.6.0.dev7}/livekit_plugins_google.egg-info/dependency_links.txt +0 -0
  15. {livekit_plugins_google-0.6.0.dev2 → livekit_plugins_google-0.6.0.dev7}/livekit_plugins_google.egg-info/top_level.txt +0 -0
  16. {livekit_plugins_google-0.6.0.dev2 → livekit_plugins_google-0.6.0.dev7}/pyproject.toml +0 -0
  17. {livekit_plugins_google-0.6.0.dev2 → livekit_plugins_google-0.6.0.dev7}/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.dev2
3
+ Version: 0.6.0.dev7
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~=0.7
24
+ Requires-Dist: livekit-agents>=0.8.0.dev0
25
25
 
26
26
  # LiveKit Plugins Google
27
27
 
@@ -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__ = "0.6.0-dev.2"
15
+ __version__ = "0.6.0-dev.7"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: livekit-plugins-google
3
- Version: 0.6.0.dev2
3
+ Version: 0.6.0.dev7
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~=0.7
24
+ Requires-Dist: livekit-agents>=0.8.0.dev0
25
25
 
26
26
  # LiveKit Plugins Google
27
27
 
@@ -1,3 +1,3 @@
1
1
  google-cloud-speech<3,>=2
2
2
  google-cloud-texttospeech<3,>=2
3
- livekit-agents~=0.7
3
+ livekit-agents>=0.8.0.dev0
@@ -50,7 +50,7 @@ setuptools.setup(
50
50
  install_requires=[
51
51
  "google-cloud-speech >= 2, < 3",
52
52
  "google-cloud-texttospeech >= 2, < 3",
53
- "livekit-agents~=0.7",
53
+ "livekit-agents>=0.8.0.dev0",
54
54
  ],
55
55
  package_data={"livekit.plugins.google": ["py.typed"]},
56
56
  project_urls={