forked from notunderctrl/gpt-3.5-chat-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
70 lines (58 loc) · 2.05 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
67
68
69
70
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;
if (!message.content.startsWith("<@968419195769471026>")) return;
if (message.content.startsWith("<@968419195769471026> help")) {
message.reply(
`You can ask me anything you like, På Svenska or English, just start your message with my name and a space. For example, @${client.user.username} What is the meaning of life?`
);
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 (message.content.startsWith("!")) return;
if (!message.content.startsWith("<@968419195769471026>")) return;
if (msg.author.id !== client.user.id && message.author.bot) return;
if (msg.author.id !== message.author.id) return;
conversationLog.push({
role: "user",
content: msg.content,
});
});
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);