I am building an agentic interviewer using Vapi. Some parts of the interview would require silence up to a few minutes. Upon testing on client side the call always times out after 30secs of silence. I can see that we have a server side config under the TransferAssistant (as shown below), but this config is only server side. I am wondering if Vapi would consider exposing this to the client or give us a way to configure this. Alternatively, I would be grateful if there is another workaround?
/**
* This is the number of seconds of silence to wait before ending the call. Defaults to 30.
*
* @default 30
* @min 10
* @max 3600
*/
silenceTimeoutSeconds?: number;
Many thanks