pawel_magdanski
09/16/2024, 1:49 PMVapi
09/16/2024, 1:51 PMautoEndCall or endCallAutomatically. You would set this property to true in the configuration object and then pass this object to the .start() method.
Here's an example of how you might configure this:
javascript
const assistantConfig = {
// ... other configuration properties ...
autoEndCall: true // This is a hypothetical property name
};
// Then you pass this configuration to the start method
assistant.start(assistantConfig);
Please note that the exact property name and method to enable this feature may vary depending on the specifics of the VAPI you are using. If you need the exact property name or method for VAPI, please ask support for more info on this.Vapi
09/16/2024, 1:51 PMVapi
09/16/2024, 1:51 PMShubham Bajaj
09/18/2024, 1:56 PM