Skip to main content

llama_cpp_bindings/error/
sampling_error.rs

1#[derive(Debug, Eq, PartialEq, thiserror::Error)]
2pub enum SamplingError {
3    #[error("Integer overflow: {0}")]
4    IntegerOverflow(String),
5}