Skip to main content

Provider

Struct Provider 

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

One provider: a backend, its concurrency budget, and the two pieces of run-scoped state that belong to it.

The limiter is per provider rather than per process because the slot represents in-flight backend work, and max_concurrent is configured per [[llm]] entry. A single shared limiter would apply the local model’s generous budget to a rate-limited cloud endpoint.

down and served live here rather than in vectors parallel to the provider list. Parallel vectors force a length invariant the type system cannot check, and make every reader defensive about an index that is structurally always valid — a mark_down that silently did nothing on an out-of-range index would be invisible.

The cache identity is computed once because it includes stable backend metadata such as the Codex CLI version. The model and display location stay on the backend so reporting cannot drift from the client that is used.

Implementations§

Source§

impl Provider

Source

pub fn model(&self) -> &str

The model this provider asks for.

Source

pub fn location(&self) -> &str

The backend-neutral location this provider talks to.

Source

pub fn limiter(&self) -> &Limiter

The concurrency budget for this provider’s backend.

Exposed because it is the only thing that can demonstrate the limiter works: wiremock never overlaps requests, so neither an in-flight counter nor wall-clock can tell a working limiter from a deleted one. Observing available() while the analysis runs can.

Source

pub fn served(&self) -> usize

How many files this provider answered.

Counted here rather than carried out through the analysis result and rejoined against the chain later: the chain already knows who answered, it is already shared for the whole process, and it already holds per-provider interior-mutable state. A cache hit counts — the answer still originated with that provider, and the user’s code was still reviewed by that model.

Source

pub fn is_down(&self) -> bool

Whether this provider has been demoted for the rest of the run.

Source

pub fn cache_key( &self, cache: &Cache, system_prompt: &str, user_content: &str, ) -> CacheKey

This provider’s cache key for one prompt.

The single definition of “which key belongs to which provider”. It lives here rather than at the call site so a test cannot compute the key a different way than production does - which is exactly how the endpoint went missing from it: the tests spelled out model and temperature by hand and agreed with the bug.

Trait Implementations§

Source§

impl Debug for Provider

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

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> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
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