I am trying to use deepgram for live calls but it is not very good at detecting when user stops speaking.
Below is my deepgram configuration.
const connection = deepgram.listen.live({
model: "nova-2",
language: "hi",
// hi-Latn, en-IN
smart_format: true,
encoding: "linear16",
sample_rate: 8000,
filler_words:true ,
interim_results: false,
profanity_filter: false,
channels: 1,
numerals: true,
endpointing: true
});