-
Notifications
You must be signed in to change notification settings - Fork 15.5k
[codex] Flush trailing realtime transcript tail #29918
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -70,6 +70,10 @@ pub struct ThreadRealtimeStartParams { | |
| /// them automatically. Defaults to false. | ||
| #[ts(optional = nullable)] | ||
| pub client_managed_handoffs: Option<bool>, | ||
| /// Routes any transcript tail remaining at session end through Codex. Defaults to false. | ||
| /// TODO: Remove this rollout knob once transcript-tail flushing is always enabled. | ||
| #[ts(optional = nullable)] | ||
| pub flush_transcript_tail_on_session_end: Option<bool>, | ||
|
Comment on lines
72
to
+76
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This new client-to-server v2 boolean is interpreted with AGENTS.md reference: AGENTS.md:L289-L294 Useful? React with 👍 / 👎. |
||
| /// Sends automatic Codex responses as realtime conversation items instead of handoff appends. | ||
| #[ts(optional = nullable)] | ||
| pub codex_responses_as_items: Option<bool>, | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This adds a client-visible
thread/realtime/startparameter, but the app-server API docs for that method still do not mentionflushTranscriptTailOnSessionEnd, so experimental clients cannot discover the opt-in behavior or its default from the documented API surface. Please updateapp-server/README.mdalongside this protocol change.AGENTS.md reference: AGENTS.md:L298-L303
Useful? React with 👍 / 👎.