//! Anthropic <-> OpenAI message/content mapping.
//!
//! Stateless conversion functions: `anthropic_to_openai_request` (forward translation),
//! `openai_to_anthropic_request` and `anthropic_to_openai_response` (reverse translation).
//! All functions are pure — no I/O, no side effects.
pub use anthropic_to_openai_request;
pub use openai_to_anthropic_response;
pub use ;