mirror of
https://github.com/openai/codex.git
synced 2026-04-28 08:34:54 +00:00
Expose transcript updates as flat threadId/role/text notifications, update the app-server emitter and v2 docs/test to match, and regenerate the protocol schema artifacts. Co-authored-by: Codex <noreply@openai.com>
22 lines
462 B
JSON
22 lines
462 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"description": "EXPERIMENTAL - flat transcript delta emitted whenever realtime transcript text changes.",
|
|
"properties": {
|
|
"role": {
|
|
"type": "string"
|
|
},
|
|
"text": {
|
|
"type": "string"
|
|
},
|
|
"threadId": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"role",
|
|
"text",
|
|
"threadId"
|
|
],
|
|
"title": "ThreadRealtimeTranscriptUpdatedNotification",
|
|
"type": "object"
|
|
} |