mirror of
https://github.com/openai/codex.git
synced 2026-05-03 12:52:11 +03:00
feat: annotate experimental fields in app server protocol
This commit is contained in:
@@ -0,0 +1,55 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"definitions": {
|
||||
"TurnPlanStep": {
|
||||
"properties": {
|
||||
"status": {
|
||||
"$ref": "#/definitions/TurnPlanStepStatus"
|
||||
},
|
||||
"step": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"status",
|
||||
"step"
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"TurnPlanStepStatus": {
|
||||
"enum": [
|
||||
"pending",
|
||||
"inProgress",
|
||||
"completed"
|
||||
],
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"properties": {
|
||||
"explanation": {
|
||||
"type": [
|
||||
"string",
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"plan": {
|
||||
"items": {
|
||||
"$ref": "#/definitions/TurnPlanStep"
|
||||
},
|
||||
"type": "array"
|
||||
},
|
||||
"threadId": {
|
||||
"type": "string"
|
||||
},
|
||||
"turnId": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"plan",
|
||||
"threadId",
|
||||
"turnId"
|
||||
],
|
||||
"title": "TurnPlanUpdatedNotification",
|
||||
"type": "object"
|
||||
}
|
||||
Reference in New Issue
Block a user