Letta · Schema

RedactedReasoningContent

Sent via the Anthropic Messages API

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
type string Indicates this is a redacted thinking step.
data string The redacted or filtered intermediate reasoning content.
View JSON Schema on GitHub

JSON Schema

letta-redactedreasoningcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RedactedReasoningContent",
  "title": "RedactedReasoningContent",
  "properties": {
    "type": {
      "type": "string",
      "const": "redacted_reasoning",
      "title": "Type",
      "description": "Indicates this is a redacted thinking step.",
      "default": "redacted_reasoning"
    },
    "data": {
      "type": "string",
      "title": "Data",
      "description": "The redacted or filtered intermediate reasoning content."
    }
  },
  "type": "object",
  "required": [
    "data"
  ],
  "description": "Sent via the Anthropic Messages API"
}