Letta · Schema

CreateArchivalMemory

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
text string Text to write to archival memory.
tags object Optional list of tags to attach to the memory.
created_at object Optional timestamp for the memory (defaults to current UTC time).
View JSON Schema on GitHub

JSON Schema

letta-createarchivalmemory-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateArchivalMemory",
  "title": "CreateArchivalMemory",
  "properties": {
    "text": {
      "type": "string",
      "title": "Text",
      "description": "Text to write to archival memory."
    },
    "tags": {
      "anyOf": [
        {
          "items": {
            "type": "string"
          },
          "type": "array"
        },
        {
          "type": "null"
        }
      ],
      "title": "Tags",
      "description": "Optional list of tags to attach to the memory."
    },
    "created_at": {
      "anyOf": [
        {
          "type": "string",
          "format": "date-time"
        },
        {
          "type": "null"
        }
      ],
      "title": "Created At",
      "description": "Optional timestamp for the memory (defaults to current UTC time)."
    }
  },
  "type": "object",
  "required": [
    "text"
  ]
}