We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 351d477 commit cca5ebcCopy full SHA for cca5ebc
docs/user-guide/concepts/experimental/bidirectional-streaming/quickstart.md
@@ -198,8 +198,8 @@ async def main():
198
inputs=[audio_io.input()],
199
outputs=[audio_io.output()]
200
)
201
- except KeyboardInterrupt:
202
- print("\nConversation interrupted by user")
+ except asyncio.CancelledError:
+ print("\nConversation cancelled by user")
203
finally:
204
# stop() should only be called after run() exits
205
await agent.stop()
0 commit comments