Alberto
11/13/2025, 10:36 PMAlberto
11/13/2025, 10:36 PMVapi Support Bot
11/13/2025, 10:37 PM// Ensure endpointing is enabled and configured
// (Pseudo-config, adjust for your setup)
{
"endpointing": {
"enabled": true
}
}
If endpointing is misconfigured, the LLM may not be triggered as expected.
See more in the orchestration/endpointing section of the documentation.
Source:
- [How Vapi Works](https://docs.vapi.ai/how-vapi-works)Alberto
11/16/2025, 9:08 PMAlberto
11/16/2025, 9:09 PMAlberto
11/16/2025, 10:08 PMAlberto
11/16/2025, 10:10 PMChiranjeet Mishra
11/17/2025, 9:26 PM{
"transcriber": {
"provider": "deepgram",
"model": "flux-general-en",
"eotThreshold": 0.5, // Lower from default 0.7 for better responsiveness
"eagerEotThreshold": 0.35, // Helps prepare responses earlier
"eotTimeoutMs": 2500, // Force EOT after 2.5s of silence
"language": "en"
}
}Alberto
11/18/2025, 2:35 AMAlberto
11/18/2025, 2:35 AMAlberto
11/18/2025, 2:46 AMChiranjeet Mishra
11/20/2025, 1:54 AMend_of_turn signal at 22:59:46
- But its confidence was 0.6875, just below the configured threshold
- Flux kept streaming partial transcripts afterward
- Each partial update reset the silence timer
- The system stayed stuck in agent_turn, waiting for a stronger signal
- Later user speech was detected but ignored because the agent was still speaking
Why this caused the problem
Because confidence didn’t reach the 0.7–0.8 expected range, the system didn’t accept the turn ending, so it never handed control back to the LLM.
Suggested settings to fix this
json
{
"transcriber": {
"eotThreshold": 0.65, // Accept the 0.6875 signal
"eotTimeoutMs": 3000 // Force turn closure after silence
}
In short
That 0.6875 confidence was just below your threshold, so the turn never ended and Flux kept streaming partials indefinitely.Alberto
11/22/2025, 1:49 AMAlberto
11/22/2025, 1:55 AMAlberto
11/22/2025, 1:56 AMAlberto
11/22/2025, 2:03 AMAlberto
11/22/2025, 2:04 AMAlberto
11/23/2025, 1:03 AMAlberto
11/24/2025, 8:51 PMChiranjeet Mishra
11/25/2025, 10:58 PM019aa913-07cb-7229-81f3-2b007c1e3ce5 the confidence for the speech at the end of the call was rated 0.394 which is below the 0.4 confidenceThreshold.
🔵 01:03:36:814 Ignoring low confidence transcript (0.394 < 0.4) Yeah. I understand. Like, for your assistance. But I'm at it. Correct. So we'll go through the paperwork, uh, find out where I'm going, uh, go through my height requirements, like, you know, there are height requirements, height restrictions, road restrictions. So I will follow that, uh, according to my length and weight of the truck, and I will plan how many kilometers I need to travel, uh, before I can start my break. Uh, more particularly, like, I have on BFM. So, like, you know, for first five hours, I will drive, um, I So after getting the paperwork, I will go go through the truck, do a pre start inspection, go around the truck, check all the lights, uh, indicators, and, uh, and check the tires are okay. Um, the weight is properly loaded. Uh, if it is not, we'll get it, uh, done, verify the hook hook up of the trailers are, uh, perfectly fine for the road. And once it is done, I will start this, uh, truck up. I will inspect that it's good, like, all the oil labels and all the truck warnings are okay, uh, to go ahead. After doing that, like, you know, my work has already started, so I willChiranjeet Mishra
11/25/2025, 11:18 PM019aaa96-869f-7446-ae87-417bb738fc71, "No" was not detected or transcribed and after "nothing today" the end of turn timeout kicked in which allowed the assistant to respond.
🔵 08:07:55:242 `user` Flux final Transcript - EndOfTurn : Nothing today.: 0.9839
🔵 08:07:55:243 EndpointingBuffer: Transcriber detected EOT. Processing data.
Flux is great, but does require a bit of fine-tuning. If livekit was working well for you already, you can switch back.Alberto
11/26/2025, 10:03 PMAlberto
11/29/2025, 12:10 AMAlberto
11/29/2025, 12:14 AMAlberto
11/29/2025, 12:15 AMAlberto
11/29/2025, 1:12 AMAlberto
12/03/2025, 10:27 PMAlberto
12/03/2025, 10:28 PMAlberto
12/03/2025, 10:33 PMAlberto
12/03/2025, 10:59 PMAlberto
12/04/2025, 2:45 AMChiranjeet Mishra
12/16/2025, 11:00 AM