mirror of
https://github.com/openai/codex.git
synced 2026-04-26 15:45:02 +00:00
Add thread shellCommand support to tui app server
This commit is contained in:
@@ -291,6 +291,15 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
"CommandExecutionSource": {
|
||||
"enum": [
|
||||
"agent",
|
||||
"userShell",
|
||||
"unifiedExecStartup",
|
||||
"unifiedExecInteraction"
|
||||
],
|
||||
"type": "string"
|
||||
},
|
||||
"CommandExecutionStatus": {
|
||||
"enum": [
|
||||
"inProgress",
|
||||
@@ -997,6 +1006,11 @@
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"formattedOutput": {
|
||||
"default": "",
|
||||
"description": "The command's output after applying the model-facing formatter/truncation policy.",
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
@@ -1007,6 +1021,14 @@
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"source": {
|
||||
"allOf": [
|
||||
{
|
||||
"$ref": "#/definitions/CommandExecutionSource"
|
||||
}
|
||||
],
|
||||
"default": "agent"
|
||||
},
|
||||
"status": {
|
||||
"$ref": "#/definitions/CommandExecutionStatus"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user