mirror of
https://github.com/openai/codex.git
synced 2026-04-23 22:24:57 +00:00
Adds WebRTC startup to the experimental app-server `thread/realtime/start` method with an optional transport enum. The websocket path remains the default; WebRTC offers create the realtime session through the shared start flow and emit the answer SDP via `thread/realtime/sdp`. --------- Co-authored-by: Codex <noreply@openai.com>
18 lines
376 B
JSON
18 lines
376 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"description": "EXPERIMENTAL - emitted with the remote SDP for a WebRTC realtime session.",
|
|
"properties": {
|
|
"sdp": {
|
|
"type": "string"
|
|
},
|
|
"threadId": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"sdp",
|
|
"threadId"
|
|
],
|
|
"title": "ThreadRealtimeSdpNotification",
|
|
"type": "object"
|
|
} |