From 1a8f69e110df2a0ada7d60caa6d1407b9f9e0fa8 Mon Sep 17 00:00:00 2001 From: ChrisChrome Date: Wed, 10 Apr 2024 15:01:15 -0600 Subject: [PATCH] Remove those for now --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 242ad0d..907ca75 100755 --- a/index.js +++ b/index.js @@ -230,13 +230,13 @@ client.on('messageCreate', async (message) => { if (message.channel.nsfw) { sessions[message.channelId] = { model: config.discord.authorized_channels[message.channelId] || config.discord.authorized_channels[message.channel.parentId], - messages: [basePrompt, generalInfoPrompt, userListPrompt, channelListPrompt, nsfwPrompt], + messages: [basePrompt, generalInfoPrompt, nsfwPrompt], started: new Date(), } } else { sessions[message.channelId] = { model: config.discord.authorized_channels[message.channelId] || config.discord.authorized_channels[message.channel.parentId], - messages: [basePrompt, generalInfoPrompt, userListPrompt, channelListPrompt], + messages: [basePrompt, generalInfoPrompt], started: new Date(), }; }