mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-03-18 10:23:07 +00:00
- Added support for Cursor models in the model resolver, allowing cursor-prefixed models to pass through unchanged. - Implemented logic to handle bare Cursor model IDs by adding the cursor- prefix. - Updated logging to provide detailed information on model resolution processes for both Claude and Cursor models. - Expanded unit tests to cover new Cursor model handling scenarios, ensuring robust validation of model resolution logic.
17 lines
352 B
TypeScript
17 lines
352 B
TypeScript
/**
|
|
* @automaker/model-resolver
|
|
* Model resolution utilities for AutoMaker
|
|
*/
|
|
|
|
// Re-export constants from types
|
|
export {
|
|
CLAUDE_MODEL_MAP,
|
|
CURSOR_MODEL_MAP,
|
|
DEFAULT_MODELS,
|
|
type ModelAlias,
|
|
type CursorModelId,
|
|
} from '@automaker/types';
|
|
|
|
// Export resolver functions
|
|
export { resolveModelString, getEffectiveModel } from './resolver.js';
|