ronnypg
11/18/2025, 9:23 PMconst deepgramTranscriber: Vapi.DeepgramTranscriber = {
provider: "deepgram",
model: "nova-3",
language: "en-US",
confidenceThreshold: 0.4, // I've also used 0.65
smartFormat: true,
numerals: true,
endpointing: 300,
}Vapi Support Bot
11/18/2025, 9:24 PM"sign" and `"minus"`:
js
// Example post-processing
const cleaned = transcript.replace(/\b(sign|minus)\b/gi, '');
This approach lets you tailor the transcription pipeline for emails and fix the special character issue directly in your server logic. [See the Vapi custom transcriber guide for setup details.](https://docs.vapi.ai/customization/custom-transcriber)
Source:
- [Custom transcriber | Vapi Docs](https://docs.vapi.ai/customization/custom-transcriber)Adrian
11/19/2025, 3:59 AMAdrian
11/19/2025, 3:59 AMronnypg
11/19/2025, 1:19 PMjon+call1@gmail.com.
Gmails can have a plus sign to create alias emails with. The main email would be jon@gmail.com and any email with jon+ would get sent to jon@gmail.comronnypg
11/19/2025, 1:24 PMronnypg
11/21/2025, 7:39 PMkyle
12/03/2025, 9:06 AM