calm-train-17221
08/13/2025, 2:21 PMtranscript_confidence
value returned by the transcript for the Amazon Transcribe model is always 0 for every user message (while it has the normal expected range [0, 1] for other models, like Deepgram). Is there any known issue about this?tall-airline-16756
08/13/2025, 2:21 PMtall-airline-16756
08/13/2025, 2:21 PMcalm-train-17221
08/13/2025, 2:22 PMtall-airline-16756
08/13/2025, 2:23 PMSpeechEvent
objects from the plugin. These events give you all the useful info like the transcribed text, start and end times, confidence scores, and even speaker identification if it’s available.
Here’s how you can get to those results:
• First, set up an event listener in your app to catch those transcription events.
• The plugin sends out two main event types: INTERIM_TRANSCRIPT
for partial, in-progress results, and FINAL_TRANSCRIPT
for the completed transcriptions.
• Each event includes handy details like text
, start_time
, end_time
, confidence
, and speaker_id
.
If you want a hand setting up the listener or working with these events, just give me a shout—I’m happy to help!
Sources: AI voice agents | LiveKit Docs | uv.lock