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

23 lines
528 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ThreadRealtimeTranscriptDoneNotification",
"description": "EXPERIMENTAL - final transcript text emitted when realtime completes a transcript part.",
"type": "object",
"required": [
"role",
"text",
"threadId"
],
"properties": {
"role": {
"type": "string"
},
"text": {
"description": "Final complete text for the transcript part.",
"type": "string"
},
"threadId": {
"type": "string"
}
}
}