Letta · Schema

ToolJSONSchema

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
name string
description string
parameters object
type object
required object
View JSON Schema on GitHub

JSON Schema

letta-tooljsonschema-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ToolJSONSchema",
  "title": "ToolJSONSchema",
  "properties": {
    "name": {
      "type": "string",
      "title": "Name"
    },
    "description": {
      "type": "string",
      "title": "Description"
    },
    "parameters": {
      "$ref": "#/components/schemas/ParametersSchema"
    },
    "type": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Type"
    },
    "required": {
      "anyOf": [
        {
          "items": {
            "type": "string"
          },
          "type": "array"
        },
        {
          "type": "null"
        }
      ],
      "title": "Required"
    }
  },
  "type": "object",
  "required": [
    "name",
    "description",
    "parameters"
  ]
}