This event is triggered when the backend detected a number entity.
This event is triggered when the backend detected an ordinal entity.
Subscribe to Conversation onError
event.
This event is triggered when the backend send a final transcript.
The speaker_left
event is triggered when a speaker leaves, or more abruptly, closes its connection. This event is published after all remaining transcript events of this speaker have been published.
The words_decoded
event is triggered when the backend sends an interim transcript. Following words_decoded
events for the same audio are susceptible to be different, until a final transcript is sent with the segment_decoded
event.
Get the recording status of the conversation.
Subscribe to Conversation
onClose
event.const uhlive = new Uhlive("my-token"); const conversation = uhlive.join("test"); conversation.onClose((msg) => console.log(msg))