codex-convert-proxy 0.1.4

A high-performance proxy server that converts between different AI API formats
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Conversion between Responses API and Chat API.

pub mod context;
pub mod request; // Now a directory module (request/mod.rs)
pub mod response;
pub mod streaming;
pub mod util;

pub use context::ResponseRequestContext;
pub use request::*;
pub use response::*;
pub use streaming::*;