mirror of
https://github.com/openai/codex.git
synced 2026-09-05 15:18:41 +00:00
## What changed - Add `codexResponseHandoffMode` to `thread/realtime/start` for V3 sessions, with `thinking` as the default and `commentary` and `bemTags` routing modes. - Map BEM `analysis` and `commentary` output to the commentary channel and `final` output to the speakable channel, while preserving the original BEM envelope. Unrecognized output falls back to speakable. - Mark explicit speech appends as speakable and stop adding the legacy `"Agent Final Message"` prefix to V3 handoffs. V1 and V2 continue to ignore the new setting. ## Testing - Cover channel selection for every routing mode, streamed BEM header parsing, fallback behavior, explicit speech, and V1 compatibility. GitOrigin-RevId: 1974578257488f2914b252c9c1990ba38831c96b
35 lines
1.3 KiB
Rust
35 lines
1.3 KiB
Rust
pub(crate) mod compact;
|
|
pub(crate) mod images;
|
|
pub(crate) mod memories;
|
|
pub(crate) mod models;
|
|
pub(crate) mod realtime_call;
|
|
pub(crate) mod realtime_websocket;
|
|
pub(crate) mod responses;
|
|
pub(crate) mod responses_websocket;
|
|
pub(crate) mod search;
|
|
mod session;
|
|
|
|
pub use compact::CompactClient;
|
|
pub use images::ImagesClient;
|
|
pub use memories::MemoriesClient;
|
|
pub use models::ModelsClient;
|
|
pub use realtime_call::RealtimeCallClient;
|
|
pub use realtime_call::RealtimeCallResponse;
|
|
pub use realtime_websocket::RealtimeContextAppendChannel;
|
|
pub use realtime_websocket::RealtimeEventParser;
|
|
pub use realtime_websocket::RealtimeOutputModality;
|
|
pub use realtime_websocket::RealtimeSessionConfig;
|
|
pub use realtime_websocket::RealtimeSessionMode;
|
|
pub use realtime_websocket::RealtimeWebsocketClient;
|
|
pub use realtime_websocket::RealtimeWebsocketConnection;
|
|
pub use realtime_websocket::RealtimeWebsocketEvents;
|
|
pub use realtime_websocket::RealtimeWebsocketWriter;
|
|
pub use realtime_websocket::session_update_session_json;
|
|
pub use responses::ResponsesClient;
|
|
pub use responses::ResponsesOptions;
|
|
pub use responses_websocket::ResponsesWebsocketClient;
|
|
pub use responses_websocket::ResponsesWebsocketClose;
|
|
pub use responses_websocket::ResponsesWebsocketConnection;
|
|
pub use responses_websocket::ResponsesWebsocketProbe;
|
|
pub use search::SearchClient;
|