{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AnthropicThinking",
"title": "AnthropicThinking",
"properties": {
"type": {
"type": "string",
"enum": [
"enabled",
"disabled"
],
"title": "Type",
"description": "The type of thinking to use.",
"default": "enabled"
},
"budget_tokens": {
"type": "integer",
"title": "Budget Tokens",
"description": "The maximum number of tokens the model can use for extended thinking.",
"default": 1024
}
},
"type": "object"
}