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