starweaver-model 0.3.0

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::{
    CodexOAuthResponsesModel, build_codex_model, build_codex_model_with_profile,
    codex_model_profile,
};
pub use headers::{
    CODEX_ORIGINATOR, RESERVED_OAUTH_EXTRA_HEADERS, build_codex_headers, build_session_headers,
    patch_codex_responses_body,
};
pub use http_client::OAuthBearerHttpClient;