lotalop
12/21/2025, 11:00 PMChiranjeet Mishra
12/21/2025, 11:00 PMVapi Support Bot
12/21/2025, 11:01 PMkeywords parameter in your transcriber configuration to boost their detection. Here’s an example of how to add "mhmm" as a boosted keyword in your Vapi assistant setup:
json
"transcriber": {
"provider": "deepgram",
"model": "nova-2",
"language": "en",
"keywords": ["mhmm:5"]
}
This increases the likelihood that "mhmm" will be transcribed correctly. For best results, use the correct spelling and moderate the boost value as needed.
(See the [Deepgram keyword boosting documentation](https://docs.vapi.ai/customization/custom-keywords) for more details.)
Source:
- [Deepgram Keywords and Keyterm Prompting](https://docs.vapi.ai/customization/custom-keywords)Chiranjeet Mishra
12/22/2025, 3:02 PMkeywords (single words) or keyterm (multi‑word phrases). Example in the assistant transcriber config:
json
"transcriber": {
"provider": "deepgram",
"model": "nova-2",
"language": "en",
"keywords": ["mhmm:5", "hmm:3", "mmhmm:4"]
}
Notes and tips:
- Use single tokens (no spaces) in `keywords`; use keyterm for phrases. See docs: https://docs.vapi.ai/customization/custom-keywords
- Start with moderate integer intensifiers (e.g., 3–5) to boost detection without causing false positives.
- Provide the exact spelling/casing variants you want recognized (e.g., mhmm, mmhmm, hmm).
- If you need realtime/dynamic injection of many tokens, that’s not currently supported — you must update the assistant config via the API.
- If still not detected, try model variants (e.g., Nova vs Enhanced) or consider custom model training for robust filler-word handling.