import type { ModelPricing } from '../utils/cost.js'; export interface VendorRates { /** Matched against `LLMProvider.id`. */ readonly providerId: string; /** * This driver bills nothing for a token, whatever the model — local * inference. Its runs are priced at zero, which is KNOWN-free and so * distinct from a model nobody has a rate for. */ readonly unmetered: boolean; /** Keyed by normalised model id. Empty when `unmetered`. */ readonly models: ReadonlyMap; } export declare const VENDOR_RATES: readonly VendorRates[]; //# sourceMappingURL=catalogue.generated.d.ts.map