Letta · Schema

ArchivalMemorySearchResponse

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
results array List of search results matching the query
count integer Total number of results returned
View JSON Schema on GitHub

JSON Schema

letta-archivalmemorysearchresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ArchivalMemorySearchResponse",
  "title": "ArchivalMemorySearchResponse",
  "properties": {
    "results": {
      "items": {
        "$ref": "#/components/schemas/ArchivalMemorySearchResult"
      },
      "type": "array",
      "title": "Results",
      "description": "List of search results matching the query"
    },
    "count": {
      "type": "integer",
      "title": "Count",
      "description": "Total number of results returned"
    }
  },
  "type": "object",
  "required": [
    "results",
    "count"
  ]
}