Clearer wording and examples

f8a55d51d2b79dc6984439f08276c11df646f6b2

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

1 files changed, +5 -5Showing whitespace changes
public/scripts/slash-commands.js+5 -5
@@ -332,7 +332,7 @@ export function initDefaultSlashCommands() {
332332 namedArgumentList: [
333333 new SlashCommandNamedArgument(
334334 'await',
335335 'Whether to await for the continued generation before continuingproceeding',
336336 [ARGUMENT_TYPE.BOOLEAN],
337337 false,
338338 false,
@@ -349,18 +349,18 @@ export function initDefaultSlashCommands() {
349349 Continues the last message in the chat, with an optional additional prompt.
350350 </div>
351351 <div>
352352 If <code>await=true</code> named argument is passed, the command will await for the continued generation before continuingproceeding.
353353 </div>
354354 <div>
355355 <strong>Example:</strong>
356356 <ul>
357357 <li>
358358 <pre><code>/continue</code></pre>
359359 Continues the chat with no additional prompt and immediately proceeds to the next command.
360360 </li>
361361 <li>
362362 <pre><code>/continue await=true Let's explore this further...</code></pre>
363363 Continues the chat with the provided prompt and waits for the generation to finish.
364364 </li>
365365 </ul>
366366 </div>