-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
discord.ts
419 lines (338 loc) Β· 11.1 KB
/
discord.ts
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
import {
Client,
TextChannel,
GatewayIntentBits,
Message,
ChannelType,
} from "discord.js";
import { getEnvironmentVariable } from "@langchain/core/utils/env";
import { Tool } from "@langchain/core/tools";
/**
* Base tool parameters for the Discord tools
*/
interface DiscordToolParams {
botToken?: string;
client?: Client;
}
/**
* Tool parameters for the DiscordGetMessagesTool
*/
interface DiscordGetMessagesToolParams extends DiscordToolParams {
messageLimit?: number;
}
/**
* Tool parameters for the DiscordSendMessageTool
*/
interface DiscordSendMessageToolParams extends DiscordToolParams {
channelId?: string;
}
/**
* Tool parameters for the DiscordChannelSearch
*/
interface DiscordChannelSearchParams extends DiscordToolParams {
channelId?: string;
}
/**
* A tool for retrieving messages from a discord channel using a bot.
* It extends the base Tool class and implements the _call method to
* perform the retrieve operation. Requires an bot token which can be set
* in the environment variables, and a limit on how many messages to retrieve.
* The _call method takes the discord channel ID as the input argument.
* The bot must have read permissions to the given channel. It returns the
* message content, author, and time the message was created for each message.
*/
export class DiscordGetMessagesTool extends Tool {
static lc_name() {
return "DiscordGetMessagesTool";
}
name = "discord-get-messages";
description = `A discord tool. useful for reading messages from a discord channel.
Input should be the discord channel ID. The bot should have read
permissions for the channel.`;
protected botToken: string;
protected messageLimit: number;
protected client: Client;
constructor(fields?: DiscordGetMessagesToolParams) {
super();
const {
botToken = getEnvironmentVariable("DISCORD_BOT_TOKEN"),
messageLimit = 10,
client,
} = fields ?? {};
if (!botToken) {
throw new Error(
"Environment variable DISCORD_BOT_TOKEN missing, but is required for DiscordGetMessagesTool."
);
}
this.client =
client ??
new Client({
intents: [GatewayIntentBits.Guilds, GatewayIntentBits.GuildMessages],
});
this.botToken = botToken;
this.messageLimit = messageLimit;
}
/** @ignore */
async _call(input: string): Promise<string> {
try {
await this.client.login(this.botToken);
const channel = (await this.client.channels.fetch(input)) as TextChannel;
if (!channel) {
return "Channel not found.";
}
const messages = await channel.messages.fetch({
limit: this.messageLimit,
});
await this.client.destroy();
const results =
messages.map((message: Message) => ({
author: message.author.tag,
content: message.content,
timestamp: message.createdAt,
})) ?? [];
return JSON.stringify(results);
} catch (err) {
await this.client.destroy();
return "Error getting messages.";
}
}
}
/**
* A tool for retrieving all servers a bot is a member of. It extends the
* base `Tool` class and implements the `_call` method to perform the retrieve
* operation. Requires a bot token which can be set in the environment
* variables.
*/
export class DiscordGetGuildsTool extends Tool {
static lc_name() {
return "DiscordGetGuildsTool";
}
name = "discord-get-guilds";
description = `A discord tool. Useful for getting a list of all servers/guilds the bot is a member of. No input required.`;
protected botToken: string;
protected client: Client;
constructor(fields?: DiscordToolParams) {
super();
const { botToken = getEnvironmentVariable("DISCORD_BOT_TOKEN"), client } =
fields ?? {};
if (!botToken) {
throw new Error(
"Environment variable DISCORD_BOT_TOKEN missing, but is required for DiscordGetGuildsTool."
);
}
this.client =
client ??
new Client({
intents: [GatewayIntentBits.Guilds],
});
this.botToken = botToken;
}
/** @ignore */
async _call(_input: string): Promise<string> {
try {
await this.client.login(this.botToken);
const guilds = await this.client.guilds.fetch();
await this.client.destroy();
const results =
guilds.map((guild) => ({
id: guild.id,
name: guild.name,
createdAt: guild.createdAt,
})) ?? [];
return JSON.stringify(results);
} catch (err) {
await this.client.destroy();
return "Error getting guilds.";
}
}
}
/**
* A tool for retrieving text channels within a server/guild a bot is a member
* of. It extends the base `Tool` class and implements the `_call` method to
* perform the retrieve operation. Requires a bot token which can be set in
* the environment variables. The `_call` method takes a server/guild ID
* to get its text channels.
*/
export class DiscordGetTextChannelsTool extends Tool {
static lc_name() {
return "DiscordGetTextChannelsTool";
}
name = "discord-get-text-channels";
description = `A discord tool. Useful for getting a list of all text channels in a server/guild. Input should be a discord server/guild ID.`;
protected botToken: string;
protected client: Client;
constructor(fields?: DiscordToolParams) {
super();
const { botToken = getEnvironmentVariable("DISCORD_BOT_TOKEN"), client } =
fields ?? {};
if (!botToken) {
throw new Error(
"Environment variable DISCORD_BOT_TOKEN missing, but is required for DiscordGetTextChannelsTool."
);
}
this.client =
client ??
new Client({
intents: [GatewayIntentBits.Guilds],
});
this.botToken = botToken;
}
/** @ignore */
async _call(input: string): Promise<string> {
try {
await this.client.login(this.botToken);
const guild = await this.client.guilds.fetch(input);
const channels = await guild.channels.fetch();
await this.client.destroy();
const results =
channels
.filter((channel) => channel?.type === ChannelType.GuildText)
.map((channel) => ({
id: channel?.id,
name: channel?.name,
createdAt: channel?.createdAt,
})) ?? [];
return JSON.stringify(results);
} catch (err) {
await this.client.destroy();
return "Error getting text channels.";
}
}
}
/**
* A tool for sending messages to a discord channel using a bot.
* It extends the base Tool class and implements the _call method to
* perform the retrieve operation. Requires a bot token and channelId which can be set
* in the environment variables. The _call method takes the message to be
* sent as the input argument.
*/
export class DiscordSendMessagesTool extends Tool {
static lc_name() {
return "DiscordSendMessagesTool";
}
name = "discord-send-messages";
description = `A discord tool useful for sending messages to a discod channel.
Input should be the discord channel message, since we will already have the channel ID.`;
protected botToken: string;
protected channelId: string;
protected client: Client;
constructor(fields?: DiscordSendMessageToolParams) {
super();
const {
botToken = getEnvironmentVariable("DISCORD_BOT_TOKEN"),
channelId = getEnvironmentVariable("DISCORD_CHANNEL_ID"),
client,
} = fields ?? {};
if (!botToken) {
throw new Error(
"Environment variable DISCORD_BOT_TOKEN missing, but is required for DiscordSendMessagesTool."
);
}
if (!channelId) {
throw new Error(
"Environment variable DISCORD_CHANNEL_ID missing, but is required for DiscordSendMessagesTool."
);
}
this.client =
client ??
new Client({
intents: [GatewayIntentBits.Guilds, GatewayIntentBits.GuildMessages],
});
this.botToken = botToken;
this.channelId = channelId;
}
/** @ignore */
async _call(message: string): Promise<string> {
try {
await this.client.login(this.botToken);
const channel = (await this.client.channels.fetch(
this.channelId
)) as TextChannel;
if (!channel) {
throw new Error("Channel not found");
}
if (!(channel.constructor === TextChannel)) {
throw new Error("Channel is not text channel, cannot send message");
}
await channel.send(message);
await this.client.destroy();
return "Message sent successfully.";
} catch (err) {
await this.client.destroy();
return "Error sending message.";
}
}
}
/**
* A tool for searching for messages within a discord channel using a bot.
* It extends the base Tool class and implements the _call method to
* perform the retrieve operation. Requires an bot token which can be set
* in the environment variables, and the discord channel ID of the channel.
* The _call method takes the search term as the input argument.
* The bot must have read permissions to the given channel. It returns the
* message content, author, and time the message was created for each message.
*/
export class DiscordChannelSearchTool extends Tool {
static lc_name() {
return "DiscordChannelSearchTool";
}
name = "discord_channel_search_tool";
description = `A discord toolkit. Useful for searching for messages
within a discord channel. Input should be the search term. The bot
should have read permissions for the channel.`;
protected botToken: string;
protected channelId: string;
protected client: Client;
constructor(fields?: DiscordChannelSearchParams) {
super();
const {
botToken = getEnvironmentVariable("DISCORD_BOT_TOKEN"),
channelId = getEnvironmentVariable("DISCORD_CHANNEL_ID"),
client,
} = fields ?? {};
if (!botToken) {
throw new Error(
"Environment variable DISCORD_BOT_TOKEN missing, but is required for DiscordChannelSearchTool."
);
}
if (!channelId) {
throw new Error(
"Environment variable DISCORD_CHANNEL_ID missing, but is required for DiscordChannelSearchTool."
);
}
this.client =
client ??
new Client({
intents: [GatewayIntentBits.Guilds, GatewayIntentBits.GuildMessages],
});
this.botToken = botToken;
this.channelId = channelId;
}
/** @ignore */
async _call(searchTerm: string): Promise<string> {
try {
await this.client.login(this.botToken);
const channel = (await this.client.channels.fetch(
this.channelId
)) as TextChannel;
if (!channel) {
return "Channel not found";
}
const messages = await channel.messages.fetch();
await this.client.destroy();
const filtered = messages.filter((message) =>
message.content.toLowerCase().includes(searchTerm.toLowerCase())
);
const results =
filtered.map((message) => ({
author: message.author.tag,
content: message.content,
timestamp: message.createdAt,
})) ?? [];
return JSON.stringify(results);
} catch (err) {
await this.client.destroy();
return "Error searching through channel.";
}
}
}