Skip to main content

llama_cpp_bindings/error/
json_object_failure.rs

1#[derive(Debug, thiserror::Error)]
2pub enum JsonObjectFailure {
3    #[error("tool call body has malformed JSON: {message}")]
4    InvalidJson { message: String },
5}