Letta · Schema

CancelAgentRunRequest

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
run_ids object Optional list of run IDs to cancel
View JSON Schema on GitHub

JSON Schema

letta-cancelagentrunrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CancelAgentRunRequest",
  "title": "CancelAgentRunRequest",
  "properties": {
    "run_ids": {
      "anyOf": [
        {
          "items": {
            "type": "string"
          },
          "type": "array"
        },
        {
          "type": "null"
        }
      ],
      "title": "Run Ids",
      "description": "Optional list of run IDs to cancel"
    }
  },
  "type": "object"
}