//! OAuth-backed model provider integration.
mod codex_model;
mod headers;
mod http_client;
pub use codex_model::{
build_codex_model, build_codex_model_with_profile, codex_model_profile,
CodexOAuthResponsesModel,
};
pub use headers::{
build_codex_headers, build_session_headers, patch_codex_responses_body, CODEX_ORIGINATOR,
RESERVED_OAUTH_EXTRA_HEADERS,
};
pub use http_client::OAuthBearerHttpClient;