Add realtime transport config (#17097)

Adds realtime.transport config with websocket as the default and webrtc
wired through the effective config.

Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
Ahmed Ibrahim
2026-04-08 09:53:53 -07:00
committed by GitHub
parent 18171b1931
commit 06d88b7e81
4 changed files with 26 additions and 0 deletions

View File

@@ -1497,6 +1497,9 @@
"RealtimeToml": {
"additionalProperties": false,
"properties": {
"transport": {
"$ref": "#/definitions/RealtimeTransport"
},
"type": {
"$ref": "#/definitions/RealtimeWsMode"
},
@@ -1506,6 +1509,13 @@
},
"type": "object"
},
"RealtimeTransport": {
"enum": [
"webrtc",
"websocket"
],
"type": "string"
},
"RealtimeWsMode": {
"enum": [
"conversational",