Remove those for now
This commit is contained in:
parent
910e061161
commit
1a8f69e110
4
index.js
4
index.js
|
@ -230,13 +230,13 @@ client.on('messageCreate', async (message) => {
|
||||||
if (message.channel.nsfw) {
|
if (message.channel.nsfw) {
|
||||||
sessions[message.channelId] = {
|
sessions[message.channelId] = {
|
||||||
model: config.discord.authorized_channels[message.channelId] || config.discord.authorized_channels[message.channel.parentId],
|
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(),
|
started: new Date(),
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
sessions[message.channelId] = {
|
sessions[message.channelId] = {
|
||||||
model: config.discord.authorized_channels[message.channelId] || config.discord.authorized_channels[message.channel.parentId],
|
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(),
|
started: new Date(),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue