//! Agent composition primitives — Sequential, Parallel, Loop.
//!
//! These implement the Agent trait and compose sub-agents in different patterns.
//! They work at the InvocationContext level, passing the context to sub-agents.
// Auto-generated agent definitions from ADK-JS transpiler.
// Run `cargo run -p adk-transpiler -- transpile --source <path> --output crates/rs-adk/src/agents/generated.rs`
// to regenerate.
pub use LoopAgent;
pub use ParallelAgent;
pub use SequentialAgent;