forked from hihumanzone/Gemini-Discord-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommands.js
More file actions
74 lines (73 loc) · 1.59 KB
/
commands.js
File metadata and controls
74 lines (73 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
const commands = [
{
name: "respond_to_all",
description: "Ensures the bot always responds to all messages in this channel.",
options: [
{
name: "enabled",
description: "Set to true to enable, or false to disable.",
type: 5,
required: true
}
]
},
{
name: "clear_memory",
description: "Clears the conversation history."
},
{
name: "settings",
description: "Opens Up Settings."
},
{
name: "server_settings",
description: "Opens Up The Server Settings."
},
{
name: "blacklist",
description: "Blacklists a user from using certain interactions",
options: [
{
type: 6,
name: "user",
description: "The user to blacklist",
required: true
}
]
},
{
name: "whitelist",
description: "Removes a user from the blacklist",
options: [
{
type: 6,
name: "user",
description: "The user to whitelist",
required: true
}
]
},
{
name: "status",
description: "Displays bot CPU and RAM usage in detail."
},
{
name: "toggle_channel_chat_history",
description: "Ensures the bot shares the same chat history with everyone in the channel.",
options: [
{
name: "enabled",
description: "Set to true to enable chat wide history, or false to disable it.",
type: 5,
required: true
},
{
name: "instructions",
description: "Bot instructions for that channel.",
type: 3,
required: false
}
]
}
];
export { commands };