From e5ba96d6aa2a08ad2238ef2d1f87e1bd22b99b8d Mon Sep 17 00:00:00 2001 From: splitclover Date: Sun, 16 Jun 2024 04:43:45 +0200 Subject: [PATCH] Clarify /setpromptentry descriptions --- public/scripts/slash-commands.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/scripts/slash-commands.js b/public/scripts/slash-commands.js index 96d16a4c5..5c8cbd701 100644 --- a/public/scripts/slash-commands.js +++ b/public/scripts/slash-commands.js @@ -1224,7 +1224,7 @@ SlashCommandParser.addCommandObject(SlashCommand.fromProps({ ), ], unnamedArgumentList: [ - SlashCommandArgument.fromProps({ description: 'Set entry/entries on or off', + SlashCommandArgument.fromProps({ description: 'Set entry/entries on, off or toggle current state', typeList: [ARGUMENT_TYPE.STRING], isRequired: true, acceptsMultiple: false, @@ -1232,7 +1232,7 @@ SlashCommandParser.addCommandObject(SlashCommand.fromProps({ enumList: ['on', 'off', 'toggle'], }), ], - helpString: 'Sets the model for the current API. Gets the current model name if no argument is provided.', + helpString: 'Sets or toggles individual chat completion prompt entries.', })); registerVariableCommands();