Vapi · Schema

ContextEngineeringPlanLastNMessages

AIVoiceAgentsRealtimeCPaaS

Properties

Name Type Description
type string
maxMessages number This is the maximum number of messages to include in the context engineering plan.
View JSON Schema on GitHub

JSON Schema

vapi-contextengineeringplanlastnmessages-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContextEngineeringPlanLastNMessages",
  "title": "ContextEngineeringPlanLastNMessages",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "lastNMessages"
      ]
    },
    "maxMessages": {
      "type": "number",
      "description": "This is the maximum number of messages to include in the context engineering plan.",
      "minimum": 0
    }
  },
  "required": [
    "type",
    "maxMessages"
  ]
}