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() {
332 namedArgumentList: [332 namedArgumentList: [
333 new SlashCommandNamedArgument(333 new SlashCommandNamedArgument(
334 'await',334 'await',
335 'Whether to await for the continued generation before continuing',335 'Whether to await for the continued generation before proceeding',
336 [ARGUMENT_TYPE.BOOLEAN],336 [ARGUMENT_TYPE.BOOLEAN],
337 false,337 false,
338 false,338 false,
@@ -349,18 +349,18 @@ export function initDefaultSlashCommands() {
349 Continues the last message in the chat, with an optional additional prompt.349 Continues the last message in the chat, with an optional additional prompt.
350 </div>350 </div>
351 <div>351 <div>
352 If <code>await=true</code> named argument is passed, the command will await for the continued generation before continuing.352 If <code>await=true</code> named argument is passed, the command will await for the continued generation before proceeding.
353 </div>353 </div>
354 <div>354 <div>
355 <strong>Example:</strong>355 <strong>Example:</strong>
356 <ul>356 <ul>
357 <li>357 <li>
358 <pre><code>/continue</code></pre>358 <pre><code>/continue</code></pre>
359 Continues the chat with no additional prompt.359 Continues the chat with no additional prompt and immediately proceeds to the next command.
360 </li>360 </li>
361 <li>361 <li>
362 <pre><code>/continue Let's explore this further...</code></pre>362 <pre><code>/continue await=true Let's explore this further...</code></pre>
363 Continues the chat with the provided prompt.363 Continues the chat with the provided prompt and waits for the generation to finish.
364 </li>364 </li>
365 </ul>365 </ul>
366 </div>366 </div>