Pipeline error
# support
b
I'm getting an error: An error occurred in this call: pipeline-error-azure-openai-llm-failed Call id: c880fb85-3c66-4785-bcc2-ab17d113c60a
v
@B170MMA#777 I'm sorry to hear that you're experiencing an issue with the Azure OpenAI LLM pipeline. To assist you better, could you please provide me with more details about the error? What were you trying to do when this error occurred?
You can continue this conversation by mentioning me in the message.
b
@Vapi i am placing and oubound call. as per call id example
v
@B170MMA#777 Thank you for providing the call ID. It seems there was a pipeline error with the Azure OpenAI LLM during your outbound call. To help resolve this, I would need to know more about the context of the call and the operations you were performing. However, if this is a recurring issue or if it's impacting your service significantly, it might be best to escalate this to our technical support team. Would you like me to guide you on how to contact technical support for further assistance, or is there any other information you can provide about the call that might help me assist you better?
b
let's escalate
s
Hey @B170MMA#777 your function schema is incorrect please fix it to resolve. > Invalid schema for function 'createGoogleCalendarEvent': In context=('properties', 'attendees'), array schema missing items
Copy code
json
"tools": [
    {
      "type": "function",
      "function": {
        "name": "createGoogleCalendarEvent",
        "description": "A tool to create a booking/event on Google Calendar",
        "parameters": {
          "type": "object",
          "properties": {
            "title": {
              "type": "string",
              "required": ["true"],
              "description": "The title of the event"
            },
            "endTime": {
              "type": "string",
              "required": ["true"],
              "description": "The end time of the event in ISO 8601 format"
            },
            "location": {
              "type": "string",
              "description": "Location of the event"
            },
            "attendees": {
              "type": "array",
              "description": "A list of email addresses of attendees"
            },
            "startTime": {
              "type": "string",
              "required": ["true"],
              "description": "The start time of the event in ISO 8601 format"
            },
            "description": {
              "type": "string",
              "description": "A description of the event"
            }
          }
        }
      }
    }
  ],
Define the missing property items.