Is anyone else having VAPI convert function parame...
# general-english
t
Is anyone else having VAPI convert function parameters to snake case? This is the input I gave the assistant for this function:
Copy code
json
{
  "type": "function",
  "function": {
    "name": "createEstimate-a1329",
    "description": "Create Estimate",
    "parameters": {
      "type": "object",
      "required": [],
      "properties": {
        "note": {
          "type": "string",
          "title": "Note"
        },
        "schedule": {
          "type": "object",
          "title": "Schedule",
          "required": [],
          "properties": {
            "endTime": {
              "type": "string",
              "title": "End Time"
            },
            "startTime": {
              "type": "string",
              "title": "Start Time"
            }
          }
        }
      }
    }
  }
}
This is taken directly from the response to an assistant request.
3 Views