SukhSidhu
05/27/2026, 12:03 PMChiranjeet Mishra
05/27/2026, 1:39 PMSukhSidhu
05/27/2026, 3:13 PMChiranjeet Mishra
05/28/2026, 6:19 AM019e6920-1ee1-7000-a6af-235013a20b89 - here's what we found:
This specific call actually performs well. The time from you finishing speaking to tool dispatch was about 1 second, not 15–25 seconds. So this call likely shows the filler issue (which you've since fixed) rather than the cold start delay.
Could you share a call ID where you experienced the actual 15–25 second delay? That will let us trace the real bottleneck.
Regarding your architecture questions:
For the multi-step tool chain narration issue, we'd recommend trying per-tool request-start messages as your next step:
{
"messages": [
{
"type": "request-start",
"content": "Pulling your latest YouTube video"
}
]
}
This lets you pre-script the exact narration per tool, bypassing whatever the LLM would generate. Set a different request-start message for each tool so each step narrates its specific action.
Best, Vapi SupportSukhSidhu
05/31/2026, 5:18 AMChiranjeet Mishra
06/01/2026, 7:41 AMfirstMessage instead of letting the LLM generate the greeting. If your assistant has a static greeting, hardcode it in the firstMessage field. This plays immediately without waiting for an LLM round trip.
2. Check your transcriber settings. If smartEndpointingEnabled is off and waitSeconds is 0.4, that's fine. But make sure there's no unnecessary delay before the assistant starts speaking.
3. Reduce system prompt size. A very long system prompt increases the LLM's time-to-first-token on the initial turn. If yours is large, consider trimming it or moving reference data into tools/knowledge base.
4. Pre-warm with `firstMessage`**.** The fastest possible startup is a hardcoded firstMessage that plays instantly while the LLM loads in the background. The user hears the greeting immediately and by the time they respond, the LLM is ready.
Could you share a call ID showing the 7-8 second startup so we can check where exactly the time is being spent?
Best, Vapi Support