Fix command argument definitions

2a904c4aea06ff2aeb9569b262e5a1116a76f434

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +3 -2Ignore whitespace
public/scripts/reasoning.js+3 -2
@@ -176,15 +176,16 @@ function registerReasoningSlashCommands() {
176176 SlashCommandNamedArgument.fromProps({
177177 name: 'regex',
178178 description: 'Whether to apply regex scripts to the reasoning content.',
179179 typeList: [ARGUMENT_TYPE.BOOLEAN],
180180 defaultValue: 'true',
181181 isRequired: false,
182+ enumProvider: commonEnumProviders.boolean('trueFalse'),
182183 }),
183184 ],
184185 unnamedArgumentList: [
185186 SlashCommandArgument.fromProps({
186187 description: 'input string',
187188 typeList: [ARGUMENT_TYPE.STRING],
188189 }),
189190 ],
190191 callback: (args, value) => {