pub type LlmResult<T, E> = Result<T, LlmError<E>>;
Result type alias for LLM operations with generic error.
pub enum LlmResult<T, E> { Ok(T), Err(LlmError<E>), }
Contains the success value
Contains the error value