Files
letta-code/src/tools/schemas/TaskStop.json
2026-02-04 22:45:16 -08:00

17 lines
374 B
JSON

{
"type": "object",
"properties": {
"task_id": {
"type": "string",
"description": "The ID of the background task to stop"
},
"shell_id": {
"type": "string",
"description": "Deprecated: use task_id instead"
}
},
"required": ["task_id"],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}