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
21 lines • 784 B
JavaScript
/**
* Enhanced Model Selection System - Public API
*
* Provides tier-based model selection with:
* - Quality tiers (economy, standard, premium, max-quality)
* - Provider abstraction (claude, openai, factory, etc.)
* - Hierarchical configuration (default < user < project < agent)
* - Backwards compatibility with v1 configs
*
* @implements @.aiwg/architecture/ADR-015-enhanced-model-selection.md
* @architecture @.aiwg/architecture/enhanced-model-selection-design.md
*
* @module models
*/
// Export ConfigLoader
export { ConfigLoader } from './config-loader.js';
// Export ModelResolver
export { ModelResolver } from './resolver.js';
// Export provider-neutral runtime tier routing primitive
export { routeModelTier } from './router.js';
//# sourceMappingURL=index.js.map