starweaver-model 0.0.5

Provider-neutral model protocol and wire adapters for Starweaver
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! 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;