aiwg
Version:
Deployment tool and support utility for AI context. Copies agents, skills, commands, rules, and behaviors into the paths each AI platform reads (Claude Code, Codex, Copilot, Cursor, Warp, OpenClaw, and 6 more) so one source of truth works across 10 platfo
13 lines • 535 B
TypeScript
/**
* Provider-neutral model-tier routing primitive.
*
* This is deliberately a policy decision helper, not a provider switcher.
* Callers use it to decide whether a task stays on the current/default
* model, escalates to a capable work tier, or requires explicit premium
* confirmation before routing.
*
* @implements #1185
*/
import type { ModelRouteDecision, ModelRouteRequest } from './types.js';
export declare function routeModelTier(request?: ModelRouteRequest): ModelRouteDecision;
//# sourceMappingURL=router.d.ts.map