mirror of
https://github.com/openai/codex.git
synced 2026-04-24 14:45:27 +00:00
Add experimental `thread/realtime/*` v2 requests and notifications, then route app-server realtime events through that thread-scoped surface with integration coverage. --------- Co-authored-by: Codex <noreply@openai.com>
16 lines
358 B
JSON
16 lines
358 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"description": "EXPERIMENTAL - raw non-audio thread realtime item emitted by the backend.",
|
|
"properties": {
|
|
"item": true,
|
|
"threadId": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"item",
|
|
"threadId"
|
|
],
|
|
"title": "ThreadRealtimeItemAddedNotification",
|
|
"type": "object"
|
|
} |