Subscribe to partial recognition results.
Partial results are emitted in real time as the user speaks, providing intermediate text that may change as more audio is processed. Useful for displaying live transcription or tracking reading progress.
Called with the current partial text.
A function that removes the listener when called.
const unsubscribe = onPartialResult((text) => { console.log('Hearing:', text);}); Copy
const unsubscribe = onPartialResult((text) => { console.log('Hearing:', text);});
Subscribe to partial recognition results.
Partial results are emitted in real time as the user speaks, providing intermediate text that may change as more audio is processed. Useful for displaying live transcription or tracking reading progress.