fix that thing

This commit is contained in:
Christopher Cookman 2024-04-09 16:27:35 -06:00
parent b43d1fc4c4
commit 910e061161
Signed by: ChrisChrome
GPG key ID: A023A26E42C33A42

View file

@ -198,7 +198,7 @@ client.on('messageCreate', async (message) => {
});
var userListPrompt = {
"role": "system",
"name": "Guild Member List",
"name": "member_list",
"content": JSON.stringify(users)
};
@ -215,14 +215,14 @@ client.on('messageCreate', async (message) => {
});
var channelListPrompt = {
"role": "system",
"name": "Channel List",
"name": "channel_list",
"content": JSON.stringify(channels)
};
// General info (about the guild)
var generalInfoPrompt = {
"role": "system",
"name": "Guild Info",
"name": "guild_info",
"content": JSON.stringify(message.guild)
};