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
8
9
10
11
12
pub mod agent;
pub mod auth;
pub mod model;
pub mod tool;

pub use agent::{AgentConfig, AgentType};
pub use auth::{AuthConfig, AuthType, SecurityScheme};
pub use model::{HttpRetryOptions, ModelConfig, ModelHyperparameters, ProviderConfig};
pub use tool::{
    Auth, ClassMethodToolConfig, FunctionToolConfig, Header, McpConfig, McpToolConfig,
    McpTypeStdio, McpTypeStreamable, ToolConfig, ToolType,
};