Letta · Schema

ToolCall

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
name string
arguments string
tool_call_id string
View JSON Schema on GitHub

JSON Schema

letta-toolcall-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ToolCall",
  "title": "ToolCall",
  "properties": {
    "name": {
      "type": "string",
      "title": "Name"
    },
    "arguments": {
      "type": "string",
      "title": "Arguments"
    },
    "tool_call_id": {
      "type": "string",
      "title": "Tool Call Id"
    }
  },
  "type": "object",
  "required": [
    "name",
    "arguments",
    "tool_call_id"
  ]
}