mirror of
https://github.com/openai/codex.git
synced 2026-04-23 22:24:57 +00:00
- Add outputModality to thread/realtime/start and wire text/audio output selection through app-server, core, API, and TUI.\n- Rename the realtime transcript delta notification and add a separate transcript done notification that forwards final text from item done without correlating it with deltas.
23 lines
533 B
JSON
23 lines
533 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"description": "EXPERIMENTAL - flat transcript delta emitted whenever realtime transcript text changes.",
|
|
"properties": {
|
|
"delta": {
|
|
"description": "Live transcript delta from the realtime event.",
|
|
"type": "string"
|
|
},
|
|
"role": {
|
|
"type": "string"
|
|
},
|
|
"threadId": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"delta",
|
|
"role",
|
|
"threadId"
|
|
],
|
|
"title": "ThreadRealtimeTranscriptDeltaNotification",
|
|
"type": "object"
|
|
} |