iron_runtime 0.4.0

Agent runtime with LLM request routing and translation
Documentation
1
2
3
4
5
6
7
8
9
10
//! Request/Response translation between OpenAI and Anthropic formats
//!
//! Enables using OpenAI client SDK with Claude models by translating
//! request/response formats transparently.

mod request;
mod response;

pub use request::translate_openai_to_anthropic;
pub use response::translate_anthropic_to_openai;