/** * kosha-discovery — models.dev public-catalog seed. * * Translates the keyless models.dev catalog into normalized {@link ModelCard} * arrays per kosha provider. Same defensive posture as the LiteLLM seed: * strict ID charset, length cap, model-count cap, no spreading of arbitrary * fields into ModelCard. * * models.dev publishes pricing already in per-million-tokens, so the * conversion done by the LiteLLM seed is unnecessary here. * @module */ import type { ModelCard } from "../types.js"; /** * Build seed {@link ModelCard}s for the given kosha provider, sourced from * models.dev. Returns `[]` if the provider has no entries. */ export declare function getModelsDevSeed(providerId: string): Promise; //# sourceMappingURL=modelsdev-seed.d.ts.map