mirror of
https://github.com/openai/codex.git
synced 2026-04-29 17:06:51 +00:00
Add realtime connection mode to app-server protocol
This commit is contained in:
@@ -2111,6 +2111,13 @@
|
||||
],
|
||||
"type": "string"
|
||||
},
|
||||
"RealtimeTranscriptUpdateKind": {
|
||||
"enum": [
|
||||
"delta",
|
||||
"done"
|
||||
],
|
||||
"type": "string"
|
||||
},
|
||||
"ReasoningEffort": {
|
||||
"description": "See https://platform.openai.com/docs/guides/reasoning?api-mode=responses#get-started-with-reasoning",
|
||||
"enum": [
|
||||
@@ -3385,22 +3392,27 @@
|
||||
"type": "object"
|
||||
},
|
||||
"ThreadRealtimeTranscriptUpdatedNotification": {
|
||||
"description": "EXPERIMENTAL - flat transcript delta emitted whenever realtime transcript text changes.",
|
||||
"description": "EXPERIMENTAL - flat transcript update emitted whenever realtime transcript text changes or completes.",
|
||||
"properties": {
|
||||
"role": {
|
||||
"type": "string"
|
||||
},
|
||||
"text": {
|
||||
"description": "Delta text for delta updates; final complete text for done updates.",
|
||||
"type": "string"
|
||||
},
|
||||
"threadId": {
|
||||
"type": "string"
|
||||
},
|
||||
"updateKind": {
|
||||
"$ref": "#/definitions/RealtimeTranscriptUpdateKind"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"role",
|
||||
"text",
|
||||
"threadId"
|
||||
"threadId",
|
||||
"updateKind"
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user