Prince
05/13/2024, 9:58 PMVapi Support
05/13/2024, 9:58 PMVapi Support
05/13/2024, 9:58 PMpipeline-error-azure-openai-llm-failed
, indicates a failure within the Azure OpenAI LLM pipeline. This is a known issue that has been discussed in community forums and may be related to specific function call configurations [(1)]() .
Here are a few steps you can take:
1. **Check Your Function Configuration**: Ensure that the function schema is correctly defined. A common issue is having an invalid schema for a function, which can lead to this error. For example:
json
{
"name": "sendEmail",
"description": "Used to send an email to a client.",
"parameters": {
"type": "object",
"properties": {
"emailAddress": { "type": "string" }
},
"required": ["emailAddress"]
}
}
Vapi Support
05/13/2024, 9:58 PMPrince
05/14/2024, 11:41 AMSahil
05/14/2024, 11:42 AMSahil
05/14/2024, 11:42 AMPrince
05/14/2024, 11:43 AMPrince
05/14/2024, 11:43 AMPrince
05/14/2024, 12:14 PM