//! # velocia
//!
//! A Rust framework for building production-ready AI agents using the ADK-Rust
//! engine, the A2A (Agent-to-Agent) protocol, and AWS DynamoDB session storage.
//!
//! ## Quick Start
//!
//! ```no_run
//! use velocia::agents::factory::AgentFactory;
//!
//! #[tokio::main]
//! async fn main() -> velocia::Result<()> {
//! let factory = AgentFactory::from_config("agent_config.yaml")?;
//! factory.run_server(8080).await
//! }
//! ```
pub use ;
pub use AgentFactory;