mirror of
https://github.com/openai/codex.git
synced 2026-04-28 08:34:54 +00:00
Emit transcript update notifications from realtime transcript deltas instead of waiting for handoff. Co-authored-by: Codex <noreply@openai.com>
38 lines
802 B
JSON
38 lines
802 B
JSON
{
|
|
"$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"
|
|
} |