Letta · Schema

PassageBatchCreateRequest

Request model for creating multiple passages in an archive.

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
passages array Passages to create in the archive
View JSON Schema on GitHub

JSON Schema

letta-passagebatchcreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PassageBatchCreateRequest",
  "title": "PassageBatchCreateRequest",
  "properties": {
    "passages": {
      "items": {
        "$ref": "#/components/schemas/PassageCreateRequest"
      },
      "type": "array",
      "title": "Passages",
      "description": "Passages to create in the archive"
    }
  },
  "type": "object",
  "required": [
    "passages"
  ],
  "description": "Request model for creating multiple passages in an archive."
}