pub trait BeforeExecuteMeta: Send + Sync {
// Required method
fn modify(
&self,
tool: &str,
toolkit: &str,
session_id: &str,
params: HashMap<String, Value>,
) -> HashMap<String, Value>;
}Expand description
Trait for before execute meta modifiers (session context)