We are facing a critical issue with inbound calls where the AI agent either does not speak at all or starts speaking very late. This is happening too often.
Our agent is configured as “AI speaks first” using a dynamic opening message, but in multiple calls users hear silence and the call eventually drops.
From our logs we consistently see this pattern:
Inbound webhook triggered
Dynamic variables received
Call started
(5–6 seconds delay)
LLM error: Failed to get response from any LLM provider – Operation timed out
Call ends
So the call connects successfully and dynamic data is passed correctly, but the AI fails to generate the first response in time, resulting in dead air for the caller.
This is happening on live customer calls and is blocking us from using inbound calling in production.
Has anyone else faced this?
Is there a recommended way to handle LLM timeouts, or pre-generation of the opening message so calls never start with silence?
I don’t have specific information about troubleshooting LLM timeout errors during inbound call initialization in the available sources. However, I can point you to relevant configuration options that may help.
Relevant Configuration Options:
You can configure begin_message_delay_ms in your agent settings, which controls the delay before the agent starts speaking(1). The default is 1000ms(1).
For inbound calls specifically, you can use the inbound webhook to override agent settings per call(2). The webhook allows you to return an agent_override object that can modify behavior for that specific session(2):
Since your logs show “Failed to get response from any LLM provider – Operation timed out,” this suggests the LLM is timing out during response generation. You might want to:
Check if you have fallback voice/LLM providers configured(1)
Verify your webhook_timeout_ms setting (default is 10000ms)(1)
Consider using a faster LLM model if available
For direct support with this production-critical issue:
2026-02-01 19:12:12.804 call_67629d751ab4f8170e8edbd67d3 info: Webhook triggered for call_started
2026-02-01 19:12:13.144 call_67629d751ab4f8170e8edbd67d3 info: Webhook response received for call_started
2026-02-01 19:12:23.308 call_67629d751ab4f8170e8edbd67d3 error: Error encountered in LLM call: Failed to get response from any LLM provider: Operation timed out