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