Vapi · Schema

AnthropicThinkingConfig

AIVoiceAgentsRealtimeCPaaS

Properties

Name Type Description
type string
budgetTokens number The maximum number of tokens to allocate for thinking. Must be between 1024 and 100000 tokens.
View JSON Schema on GitHub

JSON Schema

vapi-anthropicthinkingconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AnthropicThinkingConfig",
  "title": "AnthropicThinkingConfig",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "enabled"
      ]
    },
    "budgetTokens": {
      "type": "number",
      "description": "The maximum number of tokens to allocate for thinking.\nMust be between 1024 and 100000 tokens.",
      "minimum": 1024,
      "maximum": 100000
    }
  },
  "required": [
    "type",
    "budgetTokens"
  ]
}