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
11
12
13
//! Application services for the A2A protocol

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

#[cfg(feature = "server")]
pub use task_service::{TaskService, UpdateStream};
#[cfg(feature = "server")]
pub use task_status_broadcast::{
    HasPushNotifier, HasStreaming, HasTaskLifecycle, TaskStatusBroadcast,
};