Skip to main content

inference_runtime_anthropic/
lib.rs

1//! # inference-runtime-anthropic
2//!
3//! Anthropic Messages API runtime. Doc §10.3. Same shape as
4//! `inference-runtime-openai`; per-provider differences live in
5//! `wire` and `error`.
6
7#![forbid(unsafe_code)]
8#![deny(rust_2018_idioms)]
9
10pub mod config;
11pub mod cost;
12pub mod error;
13pub mod runner;
14pub mod wire;
15
16pub use config::AnthropicConfig;
17pub use cost::AnthropicPricing;
18pub use error::classify_anthropic_error;
19pub use runner::AnthropicRunner;