Skip to main content

llama_cpp_bindings/error/
sampling_error.rs

1/// Errors that can occur when creating a sampling configuration.
2#[derive(Debug, Eq, PartialEq, thiserror::Error)]
3pub enum SamplingError {
4    /// An integer value exceeded the allowed range
5    #[error("Integer overflow: {0}")]
6    IntegerOverflow(String),
7}