Relaximus
10/23/2025, 8:51 AMVapi Support Bot
10/23/2025, 8:52 AMtimeoutSeconds property in your assistant's model configuration. For example:
json
{
"model": {
"provider": "custom-llm",
"timeoutSeconds": 120, // Set between 20 and 600 seconds as needed
"url": "your-endpoint"
}
}
This should help prevent timeouts during structured data extraction and reduce missed analyses.
For more details, see the documentation on the new timeoutSeconds property.
Source:
- [New timeoutSeconds Property in Custom LLM Model](https://docs.vapi.ai/changelog/2025/3/17)Relaximus
10/23/2025, 8:54 AMRelaximus
10/23/2025, 8:55 AMChiranjeet Mishra
10/24/2025, 6:41 PMhttps://api.vapi.ai/structured-output
2. **Headers**: Include Authorization with your API Key.
3. **Request Body**:
- `name`: Your output's name.
- `schema`: Define using JSON Schema specifications ([learn more](https://json-schema.org/)).
- Example Schema:
json
{
"name": "Support Ticket",
"schema": {
"type": "object",
"properties": {
"customer": {
"type": "object",
"properties": {
"name": {"type": "string", "description": "Customer full name"},
"email": {"type": "string", "format": "email", "description": "Customer email"}
},
"required": ["name"]
}
},
"required": ["customer"]
}
}
- For more detailed instructions, you can refer to the [API reference](https://docs.vapi.ai/api-reference/structured-outputs/structured-output-controller-create).
To Update a Structured Output
1. **API Endpoint**: PATCH https://api.vapi.ai/structured-output/{id}
2. **Headers**: Include Authorization with your API Key.
3. **Path Parameter**: id of the structured output you want to update.
4. **Query Parameter**: schemaOverride - new schema in JSON format.
5. For detailed steps, you may check the [update documentation](https://docs.vapi.ai/api-reference/structured-outputs/structured-output-controller-update).
These endpoints allow you to manage your structured outputs effectively. Feel free to explore additional real-world examples and quickstart guides for structured outputs to gain deeper insights and enhance your implementation.