gproxy-transform 2.6.3

Pairwise request/response/stream transforms between the OpenAI, Anthropic Claude, and Google Gemini APIs
Documentation
//! Mechanical helpers shared by pairwise transforms.
//!
//! This module must not become a unified provider IR. Keep provider-specific
//! field decisions in the pair module that owns the conversion.

pub mod claude_mid_conv_system;
pub mod errors;
pub mod metadata;
pub mod roles;
pub mod sse;
pub mod tools;
pub mod usage;
pub mod utf8;

pub use claude_mid_conv_system::*;
pub use errors::*;
pub use metadata::*;
pub use roles::*;
pub use sse::*;
pub use tools::*;
pub use usage::*;