pub type AiResult<T> = Result<T, AiError>;
Result type for inference operations.
pub enum AiResult<T> { Ok(T), Err(AiError), }
Contains the success value
Contains the error value