agent-client-protocol 1.1.0

Core protocol types and traits for the Agent Client Protocol
Documentation
1
2
3
4
5
6
7
8
9
//! JSON-RPC trait implementations for protocol-level (`$/`-prefixed) messages.

use crate::schema::v1::{CancelRequestNotification, ProtocolLevelNotification};

impl_jsonrpc_notification!(CancelRequestNotification, "$/cancel_request");

impl_jsonrpc_protocol_level_notification_enum!(ProtocolLevelNotification {
    CancelRequestNotification => "$/cancel_request",
});