Letta · Schema

SummarizedReasoningContentPart

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
index integer The index of the summary part.
text string The text of the summary part.
View JSON Schema on GitHub

JSON Schema

letta-summarizedreasoningcontentpart-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SummarizedReasoningContentPart",
  "title": "SummarizedReasoningContentPart",
  "properties": {
    "index": {
      "type": "integer",
      "title": "Index",
      "description": "The index of the summary part."
    },
    "text": {
      "type": "string",
      "title": "Text",
      "description": "The text of the summary part."
    }
  },
  "type": "object",
  "required": [
    "index",
    "text"
  ]
}