Hi,
Trying to interrupt the Multimodal Live voice output (by sending a voice input when the modal is generating a voice output). However, the model seem not to recognise the interruption and does not set the “interrupted” flag as part of the received “server_content” dict.
Here is how I am trying to check for the interruption:
async for message in self.session.receive():
** if message.server_content and message.server_content.interrupted:**
But the received message never seem to have the “interrupted” Bool flag set. Please let me know if I am missing something here? Using the python google.genai library.
Thanks!