claude-codex 0.3.1

Run Claude Code on your Claude and ChatGPT subscriptions at once, routed per model name
Documentation
1
2
3
4
5
6
7
8
9
pub mod error;
pub mod schema;
pub mod sse;

pub use self::error::{ErrorDetail, ErrorEnvelope, json_error};
pub use self::schema::{CountTokensResponse, Message, MessagesRequest};
pub use self::sse::{
    SseEvent, SseParseStats, encode_sse_event, parse_sse_events, parse_sse_events_with_stats,
};