adk_managed/types/mod.rs
1//! Wire types for the managed agent runtime.
2//!
3//! All types in this module conform to CANON §3 wire shapes and are
4//! `#[non_exhaustive]` where polymorphic to allow additive evolution.
5
6pub mod agent_def;
7pub mod content;
8pub mod error;
9pub mod events;
10pub mod model_ref;
11pub mod session;
12pub mod tools;
13
14pub use agent_def::*;
15pub use content::*;
16pub use error::*;
17pub use events::{ConfirmationResult, SessionEvent, StopReason, UserEvent};
18pub use model_ref::*;
19pub use session::*;
20pub use tools::*;