pub trait ToolRuntime:
Send
+ Sync
+ Debug {
// Required method
fn execute<'life0, 'async_trait>(
&'life0 self,
args: Value,
) -> Pin<Box<dyn Future<Output = Result<Value, ToolCallError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}