forked from notunderctrl/gpt-3.5-chat-bot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
68 lines (55 loc) · 1.7 KB
/
index.js
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
require('dotenv/config');
const { Client, IntentsBitField } = require('discord.js');
const { Configuration, OpenAIApi } = require('openai');
const client = new Client({
intents: [
IntentsBitField.Flags.Guilds,
IntentsBitField.Flags.GuildMessages,
IntentsBitField.Flags.MessageContent,
],
});
client.on('ready', () => {
console.log('The bot is online!');
});
const configuration = new Configuration({
apiKey: process.env.API_KEY,
});
const openai = new OpenAIApi(configuration);
client.on('messageCreate', async (message) => {
if (message.author.bot) return;
if (message.channel.id !== process.env.CHANNEL_ID) return;
if (message.content.startsWith('!')) return;
let conversationLog = [
{ role: 'system', content: 'You are a friendly chatbot.' },
];
try {
await message.channel.sendTyping();
let prevMessages = await message.channel.messages.fetch({ limit: 15 });
prevMessages.reverse();
prevMessages.forEach((msg) => {
if (msg.content.startsWith('!')) return;
const role = msg.author.id === client.user.id ? 'assistant' : 'user';
const name = msg.author.username
.replace(/\s+/g, '_')
.replace(/[^\w\s]/gi, '');
conversationLog.push({
role: role,
content: msg.content,
name: name,
});
});
const result = await openai
.createChatCompletion({
model: 'gpt-3.5-turbo',
messages: conversationLog,
// max_tokens: 256, // limit token usage
})
.catch((error) => {
console.log(`OPENAI ERR: ${error}`);
});
message.reply(result.data.choices[0].message);
} catch (error) {
console.log(`ERR: ${error}`);
}
});
client.login(process.env.TOKEN);