{ "$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" ] }