index.ts
1 import type { Command } from '../../commands.js' 2 import { shouldInferenceConfigCommandBeImmediate } from '../../utils/immediateCommand.js' 3 4 export default { 5 type: 'local-jsx', 6 name: 'effort', 7 description: 'Set effort level for model usage', 8 argumentHint: '[low|medium|high|max|auto]', 9 get immediate() { 10 return shouldInferenceConfigCommandBeImmediate() 11 }, 12 load: () => import('./effort.js'), 13 } satisfies Command