From ca137ff1484118b5372ffc581f0608267ed6c08e Mon Sep 17 00:00:00 2001 From: Dev10us <112738649+melonmasteristaken@users.noreply.github.com> Date: Sat, 3 Aug 2024 12:17:35 +0800 Subject: [PATCH] Update systemBot.js --- js/bots/systemBot.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/bots/systemBot.js b/js/bots/systemBot.js index 3c3da7c..dfb9d94 100644 --- a/js/bots/systemBot.js +++ b/js/bots/systemBot.js @@ -73,7 +73,7 @@ function systemBot() { const question = message.slice('/ai ask'.length).trim(); var response; (async () => { - let response = await gpt.ask(question + ', try to keep your answer short and sweet, no need for markdown formatting. ' + context); + let response = await gpt.ask(question + ', no need for markdown formatting. ' + context); console.log('GPT Reply: ' + response); // you got it! mainChannel.message(`
System Bot: ${response}
`); })(); @@ -81,7 +81,7 @@ function systemBot() { const topic = message.slice('/ai story'.length).trim(); var response; (async () => { - let response = await gpt.ask(`Write a short story about ${topic}, , try to keep your answer short and sweet (less than 100 words?), no need for markdown formatting. ` + context); + let response = await gpt.ask(`Write a story about ${topic}, no need for markdown formatting. ` + context); console.log('GPT Reply: ' + response); // you got it! mainChannel.message(`System Bot: ${response}
`); })();