Forward live realtime transcript updates

Emit transcript update notifications from realtime transcript deltas instead of waiting for handoff.

Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
Ahmed Ibrahim
2026-03-20 13:16:14 -07:00
parent 4125a6a05f
commit e30dfcac7b
16 changed files with 181 additions and 218 deletions

View File

@@ -0,0 +1,38 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"ThreadRealtimeTranscriptEntry": {
"properties": {
"role": {
"type": "string"
},
"text": {
"type": "string"
}
},
"required": [
"role",
"text"
],
"type": "object"
}
},
"description": "EXPERIMENTAL - flat transcript snapshot emitted whenever realtime transcript text changes.",
"properties": {
"threadId": {
"type": "string"
},
"transcript": {
"items": {
"$ref": "#/definitions/ThreadRealtimeTranscriptEntry"
},
"type": "array"
}
},
"required": [
"threadId",
"transcript"
],
"title": "ThreadRealtimeTranscriptUpdatedNotification",
"type": "object"
}