Vapi · Schema

ChatEvalAssistantMessageMockToolCall

AIVoiceAgentsRealtimeCPaaS

Properties

Name Type Description
name string This is the name of the tool that will be called. It should be one of the tools created in the organization.
arguments object This is the arguments that will be passed to the tool call.
View JSON Schema on GitHub

JSON Schema

vapi-chatevalassistantmessagemocktoolcall-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ChatEvalAssistantMessageMockToolCall",
  "title": "ChatEvalAssistantMessageMockToolCall",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "This is the name of the tool that will be called.\nIt should be one of the tools created in the organization.",
      "example": "get_weather",
      "maxLength": 100
    },
    "arguments": {
      "type": "object",
      "description": "This is the arguments that will be passed to the tool call.",
      "example": "\"{\"city\": \"San Francisco\"}\""
    }
  },
  "required": [
    "name"
  ]
}