Letta · Schema

RoundRobinManagerUpdate

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
manager_type string
max_turns object
View JSON Schema on GitHub

JSON Schema

letta-roundrobinmanagerupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RoundRobinManagerUpdate",
  "title": "RoundRobinManagerUpdate",
  "properties": {
    "manager_type": {
      "type": "string",
      "const": "round_robin",
      "title": "Manager Type",
      "description": "",
      "default": "round_robin"
    },
    "max_turns": {
      "anyOf": [
        {
          "type": "integer"
        },
        {
          "type": "null"
        }
      ],
      "title": "Max Turns",
      "description": ""
    }
  },
  "type": "object"
}