pub trait AfterExecute: Send + Sync {
// Required method
fn modify(
&self,
tool: &str,
toolkit: &str,
response: ToolExecutionResponse,
) -> ToolExecutionResponse;
}Expand description
Trait for after execute modifiers