mirror of
https://github.com/openai/codex.git
synced 2026-04-23 14:14:50 +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
528 B
JSON
23 lines
528 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"description": "EXPERIMENTAL - final transcript text emitted when realtime completes a transcript part.",
|
|
"properties": {
|
|
"role": {
|
|
"type": "string"
|
|
},
|
|
"text": {
|
|
"description": "Final complete text for the transcript part.",
|
|
"type": "string"
|
|
},
|
|
"threadId": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"role",
|
|
"text",
|
|
"threadId"
|
|
],
|
|
"title": "ThreadRealtimeTranscriptDoneNotification",
|
|
"type": "object"
|
|
} |