2024-06-01 21:24:36 +01:00
|
|
|
module.exports.chatbot = {
|
|
|
|
// true: Enable the chatbot model.
|
|
|
|
// false: Disable the chatbot model.
|
|
|
|
State: true,
|
|
|
|
// ChatBot's channel ID. It could be a text, announcement, voice, thread or post channel ID.
|
2024-06-01 21:31:55 +01:00
|
|
|
AllowedChannels: ["🤖│ai-bot", "assisto2"],
|
2024-06-01 21:24:36 +01:00
|
|
|
// A list of user IDs that the bot ignores messages from them.
|
|
|
|
IgnoredUsers: [
|
|
|
|
"1199858077655126188",
|
|
|
|
"1111111111111111111",
|
|
|
|
"2222222222222222222"
|
|
|
|
],
|
|
|
|
|
|
|
|
// true: Enable the chatbot to reply in DMs.
|
|
|
|
// false: Disable the chatbot from replying in DMs.
|
|
|
|
ReplyInDMs: true
|
|
|
|
|
|
|
|
};
|