pub type BeforeRunCallback = Box<dyn Fn(Arc<dyn InvocationContext>) -> Pin<Box<dyn Future<Output = Result<Option<Content>, AdkError>> + Send>> + Send + Sync>;Available on crate feature
plugin only.Expand description
Callback invoked before the agent run starts.
Can perform setup, validation, or early exit.
Return Ok(Some(content)) to skip the run and return this content.
Return Ok(None) to continue with the run.
Aliased Typeยง
pub struct BeforeRunCallback(/* private fields */);