Remove those for now

This commit is contained in:
Christopher Cookman 2024-04-10 15:01:15 -06:00
parent 910e061161
commit 1a8f69e110
Signed by: ChrisChrome
GPG key ID: A023A26E42C33A42

View file

@ -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(),
};
}