mirror of
https://github.com/openai/codex.git
synced 2026-04-29 17:06:51 +00:00
Adds WebRTC startup to the experimental app-server `thread/realtime/start` method with an optional transport enum. The websocket path remains the default; WebRTC offers create the realtime session through the shared start flow and emit the answer SDP via `thread/realtime/sdp`. --------- Co-authored-by: Codex <noreply@openai.com>
18 lines
501 B
Rust
18 lines
501 B
Rust
pub(crate) mod methods;
|
|
mod methods_common;
|
|
mod methods_v1;
|
|
mod methods_v2;
|
|
pub(crate) mod protocol;
|
|
mod protocol_common;
|
|
mod protocol_v1;
|
|
mod protocol_v2;
|
|
|
|
pub use methods::RealtimeWebsocketClient;
|
|
pub use methods::RealtimeWebsocketConnection;
|
|
pub use methods::RealtimeWebsocketEvents;
|
|
pub use methods::RealtimeWebsocketWriter;
|
|
pub use methods_common::session_update_session_json;
|
|
pub use protocol::RealtimeEventParser;
|
|
pub use protocol::RealtimeSessionConfig;
|
|
pub use protocol::RealtimeSessionMode;
|