Fix await usage in transcription timeout task

This commit is contained in:
kompfner
2026-01-23 11:15:16 -05:00
committed by GitHub
parent 8951442b8e
commit c861beb066

View File

@@ -1674,7 +1674,7 @@ class GeminiLiveLLMService(LLMService):
# start a timeout task to flush it later
if self._user_transcription_buffer:
self._transcription_timeout_task = self.create_task(
self._transcription_timeout_handler()
await self._transcription_timeout_handler()
)
async def _handle_msg_output_transcription(self, message: LiveServerMessage):