rowdy
05/21/2025, 2:47 PMVapi Support Bot
05/21/2025, 2:49 PMwords
array (with confidence levels), you would need to modify your custom transcriber server to include this data in the response sent back to Vapi or your own backend.
Example:
js
// In your custom transcriber, send the full Deepgram alternative:
ws.send(JSON.stringify({
type: "transcriber-response",
transcription: text,
channel,
words: deepgramAlternative.words // <-- add this field
}));
This way, you can capture and use the word-level confidence data as needed.
Source:
- [Custom transcriber documentation](https://docs.vapi.ai/customization/custom-transcriber)rowdy
05/21/2025, 2:50 PMVapi Support Bot
05/21/2025, 2:52 PMrowdy
05/21/2025, 3:32 PMVapi Support Bot
05/21/2025, 3:32 PM