(Public Preview) Indicates whether the model was interrupted by the client. An interruption occurs when the client sends a message before the model finishes it's turn. This is undefined if the model was not interrupted.
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Indicates whether the model was interrupted by the client. An interruption occurs when the client sends a message before the model finishes it's turn. This is undefined if the model was not interrupted.
Signature:
interrupted?:boolean;
LiveServerContent.modelTurn
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
The content that the model has generated as part of the current conversation with the user.
Signature:
modelTurn?:Content;
LiveServerContent.turnComplete
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Indicates whether the turn is complete. This is undefined if the turn is not complete.
Signature:
turnComplete?:boolean;
LiveServerContent.type
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-28 UTC."],[],[],null,["\u003e This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.\n\nAn incremental content update from the model.\n\n**Signature:** \n\n export interface LiveServerContent \n\nProperties\n\n| Property | Type | Description |\n|-------------------------------------------------------------------------|----------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| [interrupted](./ai.liveservercontent.md#liveservercontentinterrupted) | boolean | ***(Public Preview)*** Indicates whether the model was interrupted by the client. An interruption occurs when the client sends a message before the model finishes it's turn. This is `undefined` if the model was not interrupted. |\n| [modelTurn](./ai.liveservercontent.md#liveservercontentmodelturn) | [Content](./ai.content.md#content_interface) | ***(Public Preview)*** The content that the model has generated as part of the current conversation with the user. |\n| [turnComplete](./ai.liveservercontent.md#liveservercontentturncomplete) | boolean | ***(Public Preview)*** Indicates whether the turn is complete. This is `undefined` if the turn is not complete. |\n| [type](./ai.liveservercontent.md#liveservercontenttype) | 'serverContent' | ***(Public Preview)*** |\n\nLiveServerContent.interrupted This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.\n\nIndicates whether the model was interrupted by the client. An interruption occurs when the client sends a message before the model finishes it's turn. This is `undefined` if the model was not interrupted.\n\n**Signature:** \n\n interrupted?: boolean;\n\nLiveServerContent.modelTurn This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.\n\nThe content that the model has generated as part of the current conversation with the user.\n\n**Signature:** \n\n modelTurn?: Content;\n\nLiveServerContent.turnComplete This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.\n\nIndicates whether the turn is complete. This is `undefined` if the turn is not complete.\n\n**Signature:** \n\n turnComplete?: boolean;\n\nLiveServerContent.type This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.\n\n**Signature:** \n\n type: 'serverContent';"]]