silenceTimeoutSeconds not available in Vapi TS SDK...
# support
s
I am trying to set silenceTimeoutSeconds using Vapi TS SDK but no such option is present in it
s
Hi, thanks for reaching out.
The silenceTimeoutSeconds property is set on the assistant object, not as a standalone call parameter. Here's how to use it:
On the assistant directly:
Copy code
js
const assistant = await client.assistants.create({
      silenceTimeoutSeconds: 30,
      // ...other config
    });
Per-call via overrides:
Copy code
js
    const call = await client.calls.createPhone({
      assistantId: "your-assistant-id",
      assistantOverrides: {
        silenceTimeoutSeconds: 30
      },
      customer: { number: "+1234567890" }
    });