//!
//! Format conversion modules for OpenAI and Anthropic API compatibility.
//!
//! Handles bidirectional conversion between OpenAI and Anthropic/Vertex AI formats.
//! Each converter follows Single Responsibility Principle and focuses on a specific
//! conversion direction.
//!
//! Authors:
//! Jaro <yarenty@gmail.com>
//!
//! Copyright (c) 2026 SkyCorp
/* --- modules --------------------------------------------------------------------------------- */
/* --- start of code -------------------------------------------------------------------------- */
pub use AnthropicToOpenAiConverter;
pub use OpenAiToAnthropicConverter;