llm-unified 0.1.2

Unified LLM provider layer: one trait, many backends (OpenAI, Anthropic, DeepSeek, Qwen, ...)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! OpenAI Chat Completions protocol implementation.
//!
//! Implements `RawAdapter` for the OpenAI Chat Completions API.
//! Also serves as the base protocol for OpenAI-compatible providers
//! (DeepSeek, Qwen, Azure, local models, etc.).

mod protocol;

pub use protocol::OpenAiProtocol;

#[cfg(feature = "fuzzing")]
pub use protocol::fuzz_exports;