diff --git a/public/scripts/slash-commands.js b/public/scripts/slash-commands.js index 5cc590942..90ca1246e 100644 --- a/public/scripts/slash-commands.js +++ b/public/scripts/slash-commands.js @@ -332,7 +332,7 @@ export function initDefaultSlashCommands() { namedArgumentList: [ new SlashCommandNamedArgument( 'await', - 'Whether to await for the continued generation before continuing', + 'Whether to await for the continued generation before proceeding', [ARGUMENT_TYPE.BOOLEAN], false, false, @@ -349,18 +349,18 @@ export function initDefaultSlashCommands() { Continues the last message in the chat, with an optional additional prompt.
await=true
named argument is passed, the command will await for the continued generation before continuing.
+ If await=true
named argument is passed, the command will await for the continued generation before proceeding.
/continue
- Continues the chat with no additional prompt.
+ Continues the chat with no additional prompt and immediately proceeds to the next command.
/continue Let's explore this further...
- Continues the chat with the provided prompt.
+ /continue await=true Let's explore this further...
+ Continues the chat with the provided prompt and waits for the generation to finish.