Skip to main content

A2aClient

Struct A2aClient 

Source
pub struct A2aClient { /* private fields */ }
Expand description

HTTP client for the A2A protocol.

A2aClient wraps a reqwest::Client and provides typed methods for the four A2A JSON-RPC operations: message/send, message/stream, tasks/get, and tasks/cancel. Each call optionally accepts a bearer token for authentication.

§Security

Use with_security to harden the client for production deployments:

  • require_tls = true rejects any http:// endpoint before connecting.
  • ssrf_protection = true resolves the endpoint’s hostname via DNS and rejects addresses in private/loopback ranges (10/8, 172.16/12, 192.168/16, 127/8, etc.).

§Examples

use zeph_a2a::{A2aClient, SendMessageParams, Message};

let client = A2aClient::new(reqwest::Client::new())
    .with_security(true, true); // require HTTPS, block SSRF

let params = SendMessageParams {
    message: Message::user_text("Summarize this page."),
    configuration: None,
};
let task = client.send_message("https://agent.example.com/a2a", params, Some("tok")).await?;
println!("Task state: {:?}", task.status.state);

Implementations§

Source§

impl A2aClient

Source

pub fn new(client: Client) -> Self

Create a new A2aClient with no security restrictions.

Security features are disabled by default for local/dev usage. Enable them with with_security for production deployments.

Source

pub fn with_security(self, require_tls: bool, ssrf_protection: bool) -> Self

Configure TLS enforcement and SSRF protection for this client.

Both flags default to false. This method uses the builder pattern and can be chained directly after new.

  • require_tls: reject any endpoint that does not start with https://.
  • ssrf_protection: resolve the endpoint hostname via DNS and reject private IP ranges.
§Examples
use zeph_a2a::A2aClient;

let client = A2aClient::new(reqwest::Client::new())
    .with_security(true, true);
Source

pub async fn send_message( &self, endpoint: &str, params: SendMessageParams, token: Option<&str>, ) -> Result<Task, A2aError>

§Errors

Returns A2aError on network, JSON, or JSON-RPC errors.

Source

pub async fn stream_message( &self, endpoint: &str, params: SendMessageParams, token: Option<&str>, ) -> Result<TaskEventStream, A2aError>

§Errors

Returns A2aError on network failure or if the SSE connection cannot be established.

Source

pub async fn get_task( &self, endpoint: &str, params: TaskIdParams, token: Option<&str>, ) -> Result<Task, A2aError>

§Errors

Returns A2aError on network, JSON, or JSON-RPC errors.

Source

pub async fn cancel_task( &self, endpoint: &str, params: TaskIdParams, token: Option<&str>, ) -> Result<Task, A2aError>

§Errors

Returns A2aError on network, JSON, or JSON-RPC errors.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more