Letta · Schema

BaseToolRuleSchema

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

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

JSON Schema

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