Letta · Schema

ArchiveUpdateRequest

Request model for updating an archive (partial). Supports updating only name and description.

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
name object
description object
View JSON Schema on GitHub

JSON Schema

letta-archiveupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ArchiveUpdateRequest",
  "title": "ArchiveUpdateRequest",
  "properties": {
    "name": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Name"
    },
    "description": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Description"
    }
  },
  "type": "object",
  "description": "Request model for updating an archive (partial).\n\nSupports updating only name and description."
}