import * as z from "zod/v4"; export type AutoRouterPlugin = { /** * List of model patterns to filter which models the auto-router can route between. Supports wildcards (e.g., "anthropic/*" matches all Anthropic models). When not specified, uses the default supported models list. */ allowedModels?: Array | undefined; /** * Controls cost vs. quality routing tradeoff (0–10). 0 = pure quality (best model regardless of cost), 10 = maximize for cost (cheapest model wins). Intermediate values blend quality and cost signals continuously. Defaults to 7. */ costQualityTradeoff?: number | undefined; /** * Set to false to disable the auto-router plugin for this request. Defaults to true. */ enabled?: boolean | undefined; id: "auto-router"; }; /** @internal */ export type AutoRouterPlugin$Outbound = { allowed_models?: Array | undefined; cost_quality_tradeoff?: number | undefined; enabled?: boolean | undefined; id: "auto-router"; }; /** @internal */ export declare const AutoRouterPlugin$outboundSchema: z.ZodType; export declare function autoRouterPluginToJSON(autoRouterPlugin: AutoRouterPlugin): string; //# sourceMappingURL=autorouterplugin.d.ts.map