Add message phase to agent message thread item (#12072)

This commit is contained in:
Jack Mousseau
2026-02-17 20:46:53 -08:00
committed by GitHub
parent edacbf7b6e
commit 486e60bb55
21 changed files with 351 additions and 8 deletions

View File

@@ -350,6 +350,13 @@
],
"type": "string"
},
"MessagePhase": {
"enum": [
"commentary",
"finalAnswer"
],
"type": "string"
},
"PatchApplyStatus": {
"enum": [
"inProgress",
@@ -474,6 +481,17 @@
"id": {
"type": "string"
},
"phase": {
"anyOf": [
{
"$ref": "#/definitions/MessagePhase"
},
{
"type": "null"
}
],
"default": null
},
"text": {
"type": "string"
},