llm-dialect 0.1.2

Pure sans-I/O LLM dialect translation: Anthropic Messages / OpenAI Chat / OpenAI Responses wire formats ↔ a canonical model, plus SSE framer state machines. No runtime, no I/O, no wall clock.
Documentation
1
2
3
4
5
6
7
8
9
//! Inbound Anthropic Messages adapter: translates Anthropic wire format
//! (`POST /v1/messages`, `/v1/messages/count_tokens`) to/from the canonical
//! items model. This is the only Anthropic ingress path; the legacy
//! `anthropic_in.rs` module was deleted (its conformance tests live in
//! `stream.rs` / `out.rs`).

pub mod out;
pub mod req;
pub mod stream;