Skip to content

error

Unified error type for LLM HTTP, protocol, and serialization failures.

type LlmResult = Result<T, LlmError>;

Errors surfaced by [crate::LlmClient] and streaming helpers.

Variants

VariantDescription
Transport(protocol_transport_core::TransportError)
Protocol(protocol_transport_core::ProtocolError)
Serialization(serde_json::Error)
Config(String)