Files
codex/codex-rs/app-server-protocol/schema/json/v2/ThreadRealtimeTranscriptUpdatedNotification.json
Ahmed Ibrahim e5f3fd76a4 codex: flatten realtime transcript notification
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>
2026-03-20 14:19:47 -07:00

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"
}