aether-acp-utils 0.2.1

Agent Client Protocol (ACP) utilities for the Aether AI agent framework
Documentation
1
2
3
4
5
6
7
8
9
/// Errors returned by ACP server-side actor operations.
#[derive(Debug, thiserror::Error)]
pub enum AcpServerError {
    #[error("ACP actor stopped")]
    ActorStopped,

    #[error("ACP protocol error: {0}")]
    Protocol(String),
}