React Native Firebase
    Preparing search index...

    Interface LiveServerContentBeta

    An incremental content update from the model.

    interface LiveServerContent {
        inputTranscription?: Transcription;
        interrupted?: boolean;
        modelTurn?: Content;
        outputTranscription?: Transcription;
        turnComplete?: boolean;
        type: "serverContent";
    }
    Index

    Properties

    inputTranscription?: Transcription

    Transcription of the audio that was input to the model.

    interrupted?: boolean

    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.

    modelTurn?: Content

    The content that the model has generated as part of the current conversation with the user.

    outputTranscription?: Transcription

    Transcription of the audio output from the model.

    turnComplete?: boolean

    Indicates whether the turn is complete. This is undefined if the turn is not complete.

    type: "serverContent"