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