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