a2a-rs 0.4.0

Rust implementation of the Agent-to-Agent (A2A) Protocol
Documentation
1
2
3
4
5
6
7
8
9
10
//! Service layer for the A2A protocol
//!
//! Services provide application-level abstractions that orchestrate
//! between ports and adapters.

#[cfg(feature = "server")]
pub mod server;

#[cfg(feature = "server")]
pub use server::AgentInfoProvider;