mirror of
https://github.com/openai/codex.git
synced 2026-04-25 07:05:38 +00:00
schema regen
This commit is contained in:
@@ -12020,6 +12020,19 @@
|
||||
"TurnCompletedNotification": {
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"properties": {
|
||||
"completedAt": {
|
||||
"description": "Unix timestamp (in seconds) when the turn completed.",
|
||||
"format": "int64",
|
||||
"type": "integer"
|
||||
},
|
||||
"durationMs": {
|
||||
"description": "Duration between turn start and completion in milliseconds, if known.",
|
||||
"format": "int64",
|
||||
"type": [
|
||||
"integer",
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"threadId": {
|
||||
"type": "string"
|
||||
},
|
||||
@@ -12028,6 +12041,7 @@
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"completedAt",
|
||||
"threadId",
|
||||
"turn"
|
||||
],
|
||||
@@ -12296,6 +12310,11 @@
|
||||
"TurnStartedNotification": {
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"properties": {
|
||||
"createdAt": {
|
||||
"description": "Unix timestamp (in seconds) when the turn started.",
|
||||
"format": "int64",
|
||||
"type": "integer"
|
||||
},
|
||||
"threadId": {
|
||||
"type": "string"
|
||||
},
|
||||
@@ -12304,6 +12323,7 @@
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"createdAt",
|
||||
"threadId",
|
||||
"turn"
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user