llama-cpp-bindings 0.7.0

llama.cpp bindings for Rust
Documentation
/// Text input configuration
///
/// # Examples
///
/// ```
/// use llama_cpp_bindings::mtmd::MtmdInputText;
///
/// let input = MtmdInputText {
///     text: "Describe this image.".to_string(),
///     add_special: true,
///     parse_special: true,
/// };
/// ```
#[derive(Debug, Clone)]
pub struct MtmdInputText {
    /// The input text string
    pub text: String,
    /// Whether to add special tokens
    pub add_special: bool,
    /// Whether to parse special tokens
    pub parse_special: bool,
}