pub type ToolHandler = Box<dyn Fn(Value) -> Pin<Box<dyn Future<Output = Result<Value>> + Send>> + Send + Sync>;
Async handler for a tool call.
pub struct ToolHandler(/* private fields */);