Skip to main content

Client

Struct Client 

Source
pub struct Client {
    pub endpoint: Endpoint,
    pub request_count: AtomicU32,
    /* private fields */
}

Fields§

§endpoint: Endpoint§request_count: AtomicU32

Every request the run has made, for the report’s request ledger.

Atomic rather than Cell so a probe future stays Send. What the atomic buys is the ability to await this engine from a multi-threaded runtime — an embedder’s request handler cannot hold a !Send future — and, since RunConfig::concurrency, correctness under genuinely simultaneous probes.

Implementations§

Source§

impl Client

Source

pub fn new(endpoint: Endpoint) -> Result<Self>

Source

pub fn with_http(endpoint: Endpoint, http: Client) -> Self

Build on a caller-supplied HTTP client.

An embedder generally already has one, configured for its own network: a proxy it must egress through, a connection pool it wants shared, a root store it pins. Rebuilding that here would either duplicate the configuration or quietly ignore it.

The caller owns the timeout and the redirect policy that come with the client it passes. Both matter to what the probes mean — a client that follows redirects can be bounced to a different host mid-run without the report saying so — so a caller that has no strong opinion should use Client::new.

Source

pub fn with_limit(self, permits: usize) -> Self

Cap how many requests this client may have in flight at once.

§Why the cap lives here and not in the scheduler

Concurrency has two units in this crate and only one of them is worth bounding. The scheduler’s unit is the step, and steps are wildly uneven — the capability battery is a dozen requests, stop_sequence is one — so “four steps at a time” says almost nothing about how much traffic is actually in the air. The unit that matters to whoever is answering is the request, and every request in the suite passes through this type.

That matters most to the caller this exists for: one probing somebody else’s endpoint, where the far end has a concurrency budget of its own that it did not agree to spend on being examined. Overrun it and the endpoint starts refusing — and a refusal is indistinguishable, from here, from the endpoint being broken. A run that saturates its subject measures the saturation.

Source

pub fn requests(&self) -> u32

Requests issued so far.

Source

pub async fn post_raw( &self, path: &str, body: &Value, opts: &RequestOpts, ) -> Result<RawResponse>

POST a JSON body and return the raw response without interpreting it.

Source

pub async fn get_raw( &self, path: &str, opts: &RequestOpts, ) -> Result<RawResponse>

Source

pub async fn chat( &self, req: &ChatRequest, ) -> Result<(ChatResponse, RawResponse)>

Send a chat request and parse it. Returns both the parsed view and the raw response, because several probes assert on headers and status.

Source

pub async fn chat_with( &self, req: &ChatRequest, opts: &RequestOpts, ) -> Result<(ChatResponse, RawResponse)>

Source

pub async fn stream(&self, req: &ChatRequest) -> Result<StreamResult>

Stream a chat request, timing the first content-bearing event.

Source

pub async fn count_tokens(&self, req: &ChatRequest) -> Option<Result<u32>>

Anthropic’s authoritative token counter. None when the protocol has no such route; Err when the route exists but the endpoint refused.

Source

pub async fn list_models(&self) -> Result<Vec<String>>

Auto Trait Implementations§

§

impl !Freeze for Client

§

impl !RefUnwindSafe for Client

§

impl !UnwindSafe for Client

§

impl Send for Client

§

impl Sync for Client

§

impl Unpin for Client

§

impl UnsafeUnpin for Client

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: Sized + 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: Sized + 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