Letta · Schema

ImportedAgentsResponse

Response model for imported agents

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
agent_ids array List of IDs of the imported agents
View JSON Schema on GitHub

JSON Schema

letta-importedagentsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ImportedAgentsResponse",
  "title": "ImportedAgentsResponse",
  "properties": {
    "agent_ids": {
      "items": {
        "type": "string"
      },
      "type": "array",
      "title": "Agent Ids",
      "description": "List of IDs of the imported agents"
    }
  },
  "type": "object",
  "required": [
    "agent_ids"
  ],
  "description": "Response model for imported agents"
}