1//! Standard type system based on AI-Protocol standard_schema 2 3pub mod events; 4pub mod message; 5pub mod tool; 6 7pub use events::StreamingEvent; 8pub use message::{Message, MessageRole}; 9pub use tool::{ToolCall, ToolDefinition};