systemprompt-agent 0.57.0

Agent-to-Agent (A2A) protocol for systemprompt.io AI governance: streaming, JSON-RPC models, task lifecycle, .well-known discovery, and governed agent orchestration.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! A2A protocol message types: streaming task-update events and the JSON-RPC
//! request/response set.
//!
//! Copyright (c) systemprompt.io — Business Source License 1.1.
//! See <https://systemprompt.io> for licensing details.

mod events;
mod requests;

pub use events::{TaskArtifactUpdateEvent, TaskStatusUpdateEvent};
pub use requests::{
    A2aJsonRpcRequest, A2aParseError, A2aRequest, A2aRequestParams, A2aResponse,
    CancelTaskResponse, GetAuthenticatedExtendedCardResponse, GetTaskResponse,
    MessageSendConfiguration, MessageSendParams, SendMessageResponse, SendStreamingMessageResponse,
    TaskIdParams, TaskNotCancelableError, TaskNotFoundError, TaskQueryParams,
    TaskResubscriptionRequest, UnsupportedOperationError,
};