Unit_AI/configs/chatbot.js
2024-06-01 16:31:55 -04:00

18 lines
No EOL
589 B
JavaScript

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.
AllowedChannels: ["🤖│ai-bot", "assisto2"],
// 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
};