Skip to content

Commit

Permalink
addressing sdk update
Browse files Browse the repository at this point in the history
  • Loading branch information
jayeshp19 committed Jan 11, 2025
1 parent 99c4fa7 commit 3911037
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ async def _main_task(self):
@utils.log_exceptions(logger=logger)
async def _send_task():
async for msg in self._send_ch:
await self._session.send(msg)
await self._session.send(input=msg)

await self._session.send(".", end_of_turn=True)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ async def _main_task(self):
@utils.log_exceptions(logger=logger)
async def _send_task():
async for msg in self._send_ch:
await self._session.send(msg)
await self._session.send(input=msg)

@utils.log_exceptions(logger=logger)
async def _recv_task():
Expand Down
2 changes: 1 addition & 1 deletion livekit-plugins/livekit-plugins-google/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"google-auth >= 2, < 3",
"google-cloud-speech >= 2, < 3",
"google-cloud-texttospeech >= 2, < 3",
"google-genai >= 0.3.0",
"google-genai == 0.4.0",
"livekit-agents>=0.12.3",
],
package_data={"livekit.plugins.google": ["py.typed"]},
Expand Down

0 comments on commit 3911037

Please sign in to comment.