Skip to main content

llama_cpp_bindings/error/
token_sampling_error.rs

1#[derive(Debug, Eq, PartialEq, thiserror::Error)]
2pub enum TokenSamplingError {
3    #[error("No token was selected by the sampler")]
4    NoTokenSelected,
5}