-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
503 lines (440 loc) · 17.5 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
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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
// Imports
import dotenv from 'dotenv';
dotenv.config();
import { Client, GatewayIntentBits, REST, Routes, Partials } from 'discord.js';
import axios from 'axios';
import chalk from 'chalk';
import figlet from 'figlet';
import gradient from 'gradient-string';
import admin from 'firebase-admin';
import express from 'express';
import cors from 'cors';
// Ignore the red squiggly lines, it works fine
import firebaseServiceAccount from './firebaseServiceAccountKey.json' assert { type: 'json' };
// Defines
let res; // ChatGPT Thread Identifier
const app = express(); // Express App
app.use(express.json());
app.use(cors());
// Discord Slash Commands Defines
const commands = [
{
name: 'ask-gpt',
description: 'Ask Anything with GPT!',
options: [
{
name: 'question',
description: 'Your question',
type: 3,
required: true,
},
],
},
{
name: 'ask-bing',
description: 'New! Ask Anything with Bing!',
options: [
{
name: 'question',
description: 'Your question',
type: 3,
required: true,
},
],
},
{
name: 'toggle-session',
description: 'Toggle Private or Public Chat Session',
},
{
name: 'reset-chat',
description: 'Start A Fresh Chat Session',
},
{
name: 'ping',
description: 'Check Websocket Heartbeat & Roundtrip Latency',
},
{
name: 'help',
description: 'Show what commands are available',
},
];
// Axios instance for ChatGPT Proxy
const api = axios.create({
baseURL: process.env.CHATGPT_PROXY_URL,
});
// Initialize OpenAI Session
async function initOpenAI() {
res = await api.post('/conversation', {
message: process.env.CHATGPT_INITIAL_PROMPT,
stream: false,
clientOptions: {
clientToUse: process.env.CLIENT_TO_USE,
},
});
console.log(chalk.greenBright(`Connected to OpenAI API - ${res.data.response}`));
}
// Initialize Discord Application Commands
async function initDiscordCommands() {
const rest = new REST({ version: '10' }).setToken(process.env.DISCORD_BOT_TOKEN);
console.log('[initDiscordCommands] - Started refreshing application commands (/)');
try {
const response = await rest.put(Routes.applicationCommands(process.env.DISCORD_CLIENT_ID), {
body: commands,
});
return response;
} catch (error) {
throw new Error(error);
}
}
async function initFirebaseAdmin() {
admin.initializeApp({
credential: admin.credential.cert(firebaseServiceAccount),
databaseURL: `https://${firebaseServiceAccount.project_id}.firebaseio.com`,
});
const db = admin.firestore();
db.settings({ ignoreUndefinedProperties: true });
console.log(chalk.greenBright('[initFirebaseAdmin] - Connected to Firebase Firestore'));
return db;
}
/////// Main Function (Execution Starts From Here)
async function main() {
if (process.env.UWU === 'true') {
console.log(
gradient.pastel.multiline(
figlet.textSync('Cervum-AI', {
font: 'Univers',
horizontalLayout: 'default',
verticalLayout: 'default',
width: 100,
whitespaceBreak: true,
}),
),
);
}
const db = await initFirebaseAdmin();
initDiscordCommands()
.then(() => {
console.log(
chalk.greenBright('[initDiscordCommands] - Initialized Discord Application Commands'),
);
})
.catch((e) => {
// Retry after 3 seconds
setTimeout(() => {
initDiscordCommands();
}, 3000);
console.log(chalk.red(`[initDiscordCommands] - ${e}`));
});
const client = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.GuildIntegrations,
GatewayIntentBits.DirectMessages,
GatewayIntentBits.DirectMessageTyping,
GatewayIntentBits.MessageContent,
],
partials: [Partials.Channel],
});
client.on('error', (e) => {
console.log(chalk.red(`[Discord on error] - ${e}`));
});
client.on('ready', () => {
console.log(`[Discord on ready] - Logged in as ${client.user.tag}!`);
console.log(chalk.greenBright('[Discord on ready] - Connected to Discord Gateway'));
console.log(`[Discord on ready] - ${new Date().toLocaleString()}`);
client.user.setStatus('online');
});
// Channel Message Handler
client.on('interactionCreate', async (interaction) => {
if (!interaction.isChatInputCommand()) return;
switch (interaction.commandName) {
case 'ask-gpt':
askInteractionHandler(interaction, 'chatgpt');
break;
case 'ask-bing': {
// askInteractionHandler(interaction, 'bing');'
const text =
'Sorry, our ask-bing is currently under maintenance. Please use ask-gpt instead.';
replyOnlyText(interaction, text);
break;
}
case 'toggle-session': {
toggleSessionInteractionHandler(interaction);
break;
}
case 'reset-chat':
resetChatInteractionHandler(interaction);
break;
case 'ping':
const text = `Websocket Heartbeat: ${client.ws.ping}ms\nRoundtrip Latency: ${
Date.now() - interaction.createdTimestamp
}ms`;
replyOnlyText(interaction, text);
break;
case 'help': {
const text =
"Here's a list of commands you can use with Cervum-AI:\n\n" +
'**/ask-gpt** - Ask Anything with GPT!\n' +
'**/ask-bing** - New! Ask Anything with Bing!\n' +
'**/toggle-session** - Toggle Private or Public Chat Session\n' +
'**/reset-chat** - Start A Fresh Chat Session\n' +
'**/ping** - Check Websocket Heartbeat & Roundtrip Latency\n' +
'**/help** - Show this message\n\n' +
'If you have any questions, please contact bot developer <@!' +
'323362522247856129' +
'>';
replyOnlyText(interaction, text);
break;
}
default:
await interaction.reply({ content: 'Command Not Found' });
}
});
client
.login(process.env.DISCORD_BOT_TOKEN)
.catch((e) => console.log(chalk.red(`[Discord login] - ${e}`)));
// console.log('Connecting to OpenAI API...');
// await initOpenAI().catch((e) => {
// console.log(chalk.red(e));
// });
async function toggleSessionInteractionHandler(interaction) {
try {
await interaction.deferReply({
fetchReply: true,
ephemeral: true,
});
const doc = await db.collection('chat-settings').doc(interaction.user.id).get();
if (!doc.exists) {
await db.collection('chat-settings').doc(interaction.user.id).set({
isPrivate: true,
});
await interaction.editReply('Session is now Private 🔒');
return;
}
const isPrivate = doc.data().isPrivate;
await db.collection('chat-settings').doc(interaction.user.id).update({
isPrivate: !isPrivate,
});
await interaction.editReply(`Session is now ${isPrivate ? 'Public 🔓' : 'Private 🔒'}`);
} catch (error) {
console.log(chalk.red(`[toggleSessionInteractionHandler] - ${error}`));
await interaction.editReply('Something Went Wrong ❌');
}
}
async function replyOnlyText(interaction, text) {
await interaction.deferReply({
fetchReply: true,
ephemeral: true,
});
await interaction.editReply(text);
}
async function resetChatInteractionHandler(interaction) {
try {
await interaction.deferReply({
fetchReply: true,
ephemeral: true,
});
const userRef = db.collection('users').doc(interaction.user.id);
const batch = db.batch();
const chatgptDocRef = userRef.collection('chatgpt').doc('conversation');
batch.delete(chatgptDocRef);
const bingDocRef = userRef.collection('bing').doc('conversation');
batch.delete(bingDocRef);
const [chatgptDoc, bingDoc] = await Promise.all([chatgptDocRef.get(), bingDocRef.get()]);
if (!chatgptDoc.exists && !bingDoc.exists) {
console.log('[resetChatInteractionHandler] - Chat Reset: Already Empty ✅');
await interaction.editReply('Chat Reset: Already Empty ✅');
} else {
await batch.commit();
console.log('[resetChatInteractionHandler] - Chat Reset: Successful ✅');
await interaction.editReply('Chat Reset: Successful ✅');
}
} catch (error) {
console.error(chalk.red(`[resetChatInteractionHandler] - ${error}`));
await interaction.editReply('Something Went Wrong ❌');
}
}
async function askInteractionHandler(interaction, clientToUse) {
const question = interaction.options.getString('question');
const { tag, id } = interaction.user;
console.log('----------Channel Message--------');
console.log('Date & Time : ' + new Date());
console.log('UserId : ' + id);
console.log('User : ' + tag);
console.log('Question : ' + question);
try {
const docRef = db.collection('chat-settings').doc(interaction.user.id);
const doc = await docRef.get();
let isPrivate = false;
if (!doc.exists) {
await docRef.set({
isPrivate,
});
} else {
isPrivate = doc.data().isPrivate;
}
await interaction.deferReply({
fetchReply: true,
ephemeral: isPrivate,
});
askQuestion(question, interaction, clientToUse, async (content) => {
const { response, details } = content?.data ?? {};
const { model, usage } = details ?? {};
const embed = {
content: '',
embeds: [
{
type: 'rich',
title: '',
color: 15386181,
description: `**Username**\n${tag}\n\n**Question**\n${question}\n\n**Answer**\n${response}`,
timestamp: null,
author: {
name: 'Cervum-AI',
url: '',
},
image: {
url: response?.match(/https?:\/\/\S+/g)?.[0],
},
thumbnail: {},
footer: {
text: `Model: ${model ?? 'bing'} • Token Usage: ${
usage?.total_tokens ?? '-'
}`,
},
fields: [],
},
],
};
console.log('Response : ' + response);
console.log('---------------End---------------');
if (response === undefined) {
await interaction.followUp({
content: 'Oops, something went wrong! (Undefined Response). Try again please.',
});
return;
}
if (response.length >= process.env.DISCORD_MAX_RESPONSE_LENGTH) {
await interaction.followUp({
content: "The answer to this question is very long, so I'll answer by DM.",
});
await interaction.user.send(embed);
} else {
await interaction.followUp(embed);
}
// Send to DB
const timeStamp = new Date();
const date = `${timeStamp.getUTCDate()}.${timeStamp.getUTCMonth()}.${timeStamp.getUTCFullYear()}`;
const time = `${timeStamp.getUTCHours()}:${timeStamp.getUTCMinutes()}:${timeStamp.getUTCSeconds()}`;
await db
.collection('chat-history')
.doc(id)
.collection(clientToUse)
.doc('conversation')
.collection(date)
.doc(time)
.set({
timeStamp: new Date(),
userID: id,
user: tag,
question: question,
answer: content.text,
parentMessageId: content.id,
});
});
} catch (e) {
console.error(chalk.red(`[askInteractionHandler] - ${e}`));
await interaction.followUp({
content: 'Oops, something went wrong! (Undefined Response). Try again please.',
});
}
}
async function askQuestion(question, interaction, clientToUse, cb) {
try {
const userRef = db.collection('users').doc(interaction.user.id);
const conversationRef = userRef.collection(clientToUse).doc('conversation');
const doc = await conversationRef.get();
let defaultPayload = {
message: question,
clientOptions: {
clientToUse,
},
};
let defaultSet = {
userID: interaction.user.id,
user: interaction.user.tag,
conversationId: null,
parentMessageId: null,
conversationSignature: null,
clientId: null,
invocationId: null,
};
if (!doc.exists) {
console.log('[askQuestion] - Conversation not found, creating new conversation...');
const response = await api.post('/conversation', defaultPayload);
defaultSet.conversationId = response.data.conversationId;
defaultSet.parentMessageId =
clientToUse === 'chatgpt' ? response.data.messageId : response.data.details.messageId;
if (clientToUse === 'bing') {
defaultSet.conversationSignature = response.data.conversationSignature;
defaultSet.clientId = response.data.clientId;
defaultSet.invocationId = response.data.invocationId;
}
await conversationRef.set(defaultSet);
cb(response);
} else {
console.log('[askQuestion] - Conversation found, sending message...');
const docData = doc.data();
defaultPayload.conversationId = docData.conversationId;
defaultPayload.parentMessageId = docData.parentMessageId;
if (clientToUse === 'bing') {
defaultPayload.conversationSignature = docData.conversationSignature;
defaultPayload.clientId = docData.clientId;
defaultPayload.invocationId = docData.invocationId;
}
const response = await api.post('/conversation', defaultPayload);
defaultSet.conversationId = response.data.conversationId;
defaultSet.parentMessageId =
clientToUse === 'chatgpt' ? response.data.messageId : response.data.details.messageId;
if (clientToUse === 'bing') {
defaultSet.conversationSignature = response.data.conversationSignature;
defaultSet.clientId = response.data.clientId;
defaultSet.invocationId = response.data.invocationId;
}
await conversationRef.set(defaultSet);
cb(response);
}
} catch (error) {
console.log(chalk.red(`[askQuestion] - ${error}`));
cb('Oops, something went wrong! (Error)');
}
}
// Discord bot announcement endpoint
app.post('/announcement', (req, res) => {
const { channelId, message } = req.body;
const channel = client.channels.cache.get(channelId);
if (channel && message) {
channel.send(message);
res.send({
status: 200,
message: 'Announcement sent',
});
} else {
res.status(400).send({
status: 400,
message: 'Missing channel ID or message',
});
}
});
app.get('/', async (req, res) => {
// Check health of the server
res.send('OK');
});
app.listen(process.env.PORT, () => {
console.log(`[Express] - Listening on port ${process.env.PORT}!`);
});
}
main(); // Call Main function
// ---End of Code---