aboutsummaryrefslogtreecommitdiff
path: root/bot/src/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'bot/src/plugins')
-rw-r--r--bot/src/plugins/chatbot.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/bot/src/plugins/chatbot.js b/bot/src/plugins/chatbot.js
index efd2ff5..705f267 100644
--- a/bot/src/plugins/chatbot.js
+++ b/bot/src/plugins/chatbot.js
@@ -9,10 +9,9 @@ export async function ChatBot(msg, args) {
if (!guildSetting.ollamaEnabled) return;
if (!ollamaGlobal) return msg.reply('Sorry, the LLM chatbot feature has been turned off.');
+ const loadingMessage = await msg.reply('Thinking...');
try {
- const loadingMessage = await msg.reply('Thinking...');
-
const response = await ollama.chat({
model: process.env.OLLAMA_MODEL,
messages: [{ role: 'user', content: args }],
@@ -29,6 +28,6 @@ export async function ChatBot(msg, args) {
} catch (err) {
console.error(err);
- await msg.reply(`Something went wrong. [Submit an issue at the AleeBot repository.](<https://github.com/Alee14/AleeBot/issues>)\nMessage:\n\`\`\`${err.stack}\`\`\``);
+ await loadingMessage.edit(`Something went wrong. [Submit an issue at the AleeBot repository.](<https://github.com/Alee14/AleeBot/issues>)\nMessage:\n\`\`\`${err.stack}\`\`\``);
}
}