mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-15 12:55:51 +00:00
14 lines
434 B
TypeScript
14 lines
434 B
TypeScript
import type { Command } from '../../commands.js'
|
|
import { shouldInferenceConfigCommandBeImmediate } from '../../utils/immediateCommand.js'
|
|
|
|
export default {
|
|
type: 'local-jsx',
|
|
name: 'effort',
|
|
description: 'Set effort level for model usage',
|
|
argumentHint: '[low|medium|high|xhigh|max|auto]',
|
|
get immediate() {
|
|
return shouldInferenceConfigCommandBeImmediate()
|
|
},
|
|
load: () => import('./effort.js'),
|
|
} satisfies Command
|