gproxy-transform 2.2.2

Pairwise request/response/stream transforms between the OpenAI, Anthropic Claude, and Google Gemini APIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! OpenAI -> Claude compact-content transforms.

mod input;
mod output;
mod request;
mod tools;
mod util;

const DEFAULT_COMPACT_MAX_TOKENS: u64 = 32_768;
const DEFAULT_MODEL: &str = "unknown";

pub use output::response;
pub use request::{request, request_headers};