/** * Builtin provider profile for OpenRouter. * * OpenRouter is a unified API gateway for 100+ LLM providers, accessible at * `https://openrouter.ai/api/v1`. It speaks the OpenAI chat completions wire * format. The CLEO-specific quirk is the Pareto router plugin block, which * selects the price-optimal provider for high-capability model requests. * * @task T9286 (W1d) * @epic T9261 (T-LLM-CRED-CENTRALIZATION Phase 3) */ import type { ProviderProfile } from '@cleocode/contracts'; /** * OpenRouter provider profile. * * Encodes the Pareto plugin routing block as a `buildExtraBody` hook. * The plugin is only injected for high-capability model tiers * (Sonnet, Opus, Grok, GPT-4) — cheaper models route without it. * * @task T9286 (W1d) */ export declare const openrouterProfile: ProviderProfile; //# sourceMappingURL=openrouter.d.ts.map