Agent Maturity Compass API - v1.2.0
    Preparing search index...

    Interface PinnedRoute

    One resolved route, captured for the life of one call.

    Frozen, and holding the adapter instance itself. Nothing here is re-read.

    interface PinnedRoute {
        adapter: LlmAdapter;
        adapterId: string;
        adapterVersion: number;
        baseUrl: string;
        capabilities: ProviderCapabilities | null;
        credentialRef: CredentialRef | null;
        encoderId: string;
        encoderVersion: number;
        generation: number;
        headers: Readonly<Record<string, string>>;
        model: string;
        providerId: string;
        registrationId: string;
        retryPolicy: ResolvedRetryPolicy;
    }
    Index
    adapter: LlmAdapter
    adapterId: string
    adapterVersion: number
    baseUrl: string
    capabilities: ProviderCapabilities | null
    credentialRef: CredentialRef | null
    encoderId: string
    encoderVersion: number
    generation: number

    Registry generation at pin time.

    headers: Readonly<Record<string, string>>
    model: string
    providerId: string
    registrationId: string

    Unique per register call — distinguishes a replacement from the original.

    retryPolicy: ResolvedRetryPolicy

    Frozen when the route registered, so a policy edit cannot reach this call.