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