Files
codex-telegram-bot/schemas/v2/ThreadRealtimeTranscriptDeltaNotification.json
2026-05-21 08:40:16 +00:00

23 lines
533 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ThreadRealtimeTranscriptDeltaNotification",
"description": "EXPERIMENTAL - flat transcript delta emitted whenever realtime transcript text changes.",
"type": "object",
"required": [
"delta",
"role",
"threadId"
],
"properties": {
"delta": {
"description": "Live transcript delta from the realtime event.",
"type": "string"
},
"role": {
"type": "string"
},
"threadId": {
"type": "string"
}
}
}