llm_bridge_core/lib.rs
1//! llm-bridge-core: Protocol transform library for LLM API translation.
2//!
3//! Translates between Anthropic Messages and `OpenAI` Chat APIs with semantic
4//! fidelity for supported features and explicit lossy downgrade for
5//! unsupported ones.
6
7#![forbid(unsafe_code)]
8#![warn(rust_2024_compatibility, missing_debug_implementations)]
9#![warn(missing_docs)]
10// The missing_docs lint on enum variant fields is a known Rust bug; doc comments are correct above.
11#![allow(missing_docs)]
12
13pub mod model;
14pub mod stream;
15pub mod transform;