openai_realtime/
lib.rs

1mod agent;
2mod api;
3mod config;
4mod error;
5mod event;
6mod session;
7mod websocket;
8
9pub use agent::*;
10pub use api::{model::*, response::ResponseCreateEvent, session::*, voice::*};
11pub use config::ApiKeyRef;
12pub use error::RealtimeError;
13pub use session::{SessionConfig, create_ephemeral_token, create_session};
14pub use websocket::{RealtimeSession, config::WebsocketConfig, connect};