feat: make interrupt state not final for multi-agents

This commit is contained in:
jif-oai
2026-03-07 11:33:56 +01:00
parent 5ceff6588e
commit 62884f4400
28 changed files with 142 additions and 9 deletions

View File

@@ -180,6 +180,13 @@
],
"type": "string"
},
{
"description": "Agent's current turn was interrupted and it may receive more input.",
"enum": [
"interrupted"
],
"type": "string"
},
{
"additionalProperties": false,
"description": "Agent is done. Contains the final assistant message.",
@@ -2199,6 +2206,7 @@
"enum": [
"pendingInit",
"running",
"interrupted",
"completed",
"errored",
"shutdown",
@@ -15326,4 +15334,4 @@
},
"title": "CodexAppServerProtocolV2",
"type": "object"
}
}