velocia 0.3.5

velocia – production-ready AI agent framework using ADK-Rust, A2A protocol, and AWS DynamoDB
1
2
3
4
5
6
7
pub mod dynamodb;
pub mod types;

pub use dynamodb::InMemorySessionService;
#[cfg(feature = "dynamodb")]
pub use dynamodb::DynamoDbSessionService;
pub use types::{SessionItem, SessionRecord};