pub trait Tool { // Required methods fn name(&self) -> &str; fn invoke(&self, args: Value) -> Result<Value>; }