-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
84 lines (76 loc) · 2.66 KB
/
main.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*
* Nome: falastrao_bot
* Descrição: Simples chatbot pro Discord usando GPT-3
* Autor: Vico
* Versão: 1.0
* Dependências: discord.js e openai
*/
/* ---------------- DECLARAÇÕES ---------------- */
const { Client, GatewayIntentBits, Collection } = require('discord.js');
const { Configuration, OpenAIApi } = require("openai");
/* ----------------- VARIÁVEIS ----------------- */
const config = require('./config.json');
const client = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.MessageContent,
GatewayIntentBits.GuildMembers,
]
});
const configuration = new Configuration({
apiKey: config.openai.api_key,
});
const openai = new OpenAIApi(configuration);
// Armazenará a última resposta do bot para cada usuário (independentemente do canal)
const last_messages = new Collection();
/* ------------------ FUNÇÕES ------------------ */
// Função para enviar uma pergunta ao GPTGPT e obter uma resposta
async function openai_reply(user_id, username, message) {
let last_message = "";
if (last_messages.has(user_id))
{
last_message = last_messages.get(user_id)
}
else
{
last_message = "Esta é a primeira conversa com " + username;
}
let username_fixed = username.replace(/ /g,"_");
const completion = await openai.createChatCompletion({
model: "gpt-4",
messages: [
{role: "assistant", content: last_message},
{role: "system", content: config.openai.context},
{role: "user", name: username_fixed, content: message}
],
});
last_messages.set(user_id, completion.data.choices[0].message.content);
// console.log(last_messages);
return completion.data.choices[0].message;
}
/* ----------------- CALLBACKS ----------------- */
client.on('ready', () => {
console.log(`Conectado como ${client.user.tag}!`);
});
client.on('messageCreate', async (msg) => {
// Caso o autor seja um bot (ele mesmo incluído) não faz nada
if (msg.author.bot) return;
// Caso a mensagem venha por DM (IMPLEMENTAR POSTERIORMENTE ALGUMA ROTINA SOBRE ISSO)
if (!msg.guild) return;
// Responde a mensagem se ele for mencionado (e se for uma resposta com ping?)
if (msg.mentions.has(client.user.id))
{
// Verifica se a menção não inclui somente ou @everyone ou @here
if (!(msg.mentions.everyone && !msg.mentions.users.size && !msg.mentions.roles.size))
{
msg.channel.sendTyping(); // Inicie a simulação de digitação
let response = "";
response = await openai_reply(msg.author.id, msg.member.displayName, msg.cleanContent.replace(/@/g, ""));
msg.reply(response);
}
}
});
/* -------------- FLUXO PRINCIPAL -------------- */
// Loga no Discord
client.login(config.discord.bot_token);