usejust_common::error::TransportError;usethiserror::Error;/// DeepSeek provider errors.
#[derive(Debug, Error)]pubenumError{/// Transport-layer error from the shared HTTP/SSE layer.
#[error(transparent)]
Transport(#[from] TransportError),/// The request shape was invalid for the selected client method.
#[error("invalid request: {0}")]
InvalidRequest(&'staticstr),}