From 6a832bdf2a3abf0a16a1989d9be9177481d2b63f Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Thu, 30 May 2024 01:48:27 +0300 Subject: [PATCH] Fix summarize command return type --- public/scripts/extensions/memory/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/public/scripts/extensions/memory/index.js b/public/scripts/extensions/memory/index.js index a697f89da..2a2fa574d 100644 --- a/public/scripts/extensions/memory/index.js +++ b/public/scripts/extensions/memory/index.js @@ -926,5 +926,6 @@ jQuery(async function () { new SlashCommandArgument('text to summarize', [ARGUMENT_TYPE.STRING], false, false, ''), ], helpString: 'Summarizes the given text. If no text is provided, the current chat will be summarized. Can specify the source and the prompt to use.', + returns: ARGUMENT_TYPE.STRING, })); });