Letta · Schema

UpdateSystemMessage

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
message_type string
content string The message content sent by the system (can be a string or an array of multi-modal content parts)
View JSON Schema on GitHub

JSON Schema

letta-updatesystemmessage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateSystemMessage",
  "title": "UpdateSystemMessage",
  "properties": {
    "message_type": {
      "type": "string",
      "const": "system_message",
      "title": "Message Type",
      "default": "system_message"
    },
    "content": {
      "type": "string",
      "title": "Content",
      "description": "The message content sent by the system (can be a string or an array of multi-modal content parts)"
    }
  },
  "type": "object",
  "required": [
    "content"
  ]
}