pub trait ExecutableTool: Send + Sync {
// Required methods
fn name(&self) -> &str;
fn description(&self) -> Option<&str>;
fn input_schema(&self) -> &Value;
fn execute<'life0, 'async_trait>(
&'life0 self,
input: Value,
) -> Pin<Box<dyn Future<Output = Result<String, Error>> + Send + 'async_trait>>
where 'life0: 'async_trait,
Self: 'async_trait;
}