Letta · Schema

SearchCacheWarmResponse

Response for internal search cache warming.

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
collection string
status string
warmed boolean
View JSON Schema on GitHub

JSON Schema

letta-searchcachewarmresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SearchCacheWarmResponse",
  "title": "SearchCacheWarmResponse",
  "properties": {
    "collection": {
      "type": "string",
      "const": "messages",
      "title": "Collection"
    },
    "status": {
      "type": "string",
      "title": "Status"
    },
    "warmed": {
      "type": "boolean",
      "title": "Warmed"
    }
  },
  "type": "object",
  "required": [
    "collection",
    "status",
    "warmed"
  ],
  "description": "Response for internal search cache warming."
}