Skip to main content

llama_cpp_bindings/mtmd/
mtmd_default_marker_error.rs

1use std::str::Utf8Error;
2
3#[derive(Debug, thiserror::Error, Clone, PartialEq, Eq)]
4pub enum MtmdDefaultMarkerError {
5    #[error("llama.cpp mtmd_default_marker returned bytes that are not valid UTF-8: {0}")]
6    NotUtf8(#[from] Utf8Error),
7}