Letta · Schema

ChildToolRuleSchema

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
tool_name string
type string
children array
View JSON Schema on GitHub

JSON Schema

letta-childtoolruleschema-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ChildToolRuleSchema",
  "title": "ChildToolRuleSchema",
  "properties": {
    "tool_name": {
      "type": "string",
      "title": "Tool Name"
    },
    "type": {
      "type": "string",
      "title": "Type"
    },
    "children": {
      "items": {
        "type": "string"
      },
      "type": "array",
      "title": "Children"
    }
  },
  "type": "object",
  "required": [
    "tool_name",
    "type",
    "children"
  ]
}