Transcript are coming in chunks , Need to know supporeted parameterin output_audio_transcription = {} , which will give complete transcription

config` = {"response_modalities": ["AUDIO"],
       "output_audio_transcription": {},
      "input_audio_transcription":{}

The transcription is working, but we are receiving the transcript in chunks (partial segments) rather than as a complete, final transcript.

Is there a specific parameter or setting we can use to get the full transcript as a single, finalized output instead of incremental partial transcriptions?

Thanks in advance for your help!

Hi @Vikram_Raj , Welcome to the forum.

Currently, the live.connect() method streams transcriptions in partial segments by design. There is not a specific parameter to receive a single, finalized transcript, but you can concatenate the partial outputs on your end to reconstruct the full transcription.

Thanks