a2a-rs 0.3.0

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

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

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

#[cfg(feature = "client")]
pub use client::{AsyncA2AClient, StreamItem};

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