Letta · Schema

AnthropicThinking

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
type string The type of thinking to use.
budget_tokens integer The maximum number of tokens the model can use for extended thinking.
View JSON Schema on GitHub

JSON Schema

letta-anthropicthinking-schema.json Raw ↑
{
  "$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"
}