pub trait Tool<Deps>: Send + Sync {
// Required methods
fn definition(&self) -> ToolDefinition;
fn call<'life0, 'async_trait>(
&'life0 self,
ctx: RunContext<Deps>,
args: Value,
) -> Pin<Box<dyn Future<Output = Result<Value, ToolError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}