-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.js
427 lines (369 loc) · 16.3 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
/* eslint-disable complexity */
import { createBot, createProvider, createFlow, addKeyword, utils, EVENTS } from '@builderbot/bot'
import { MemoryDB as Database } from '@builderbot/bot'
import { BaileysProvider as Provider } from '@builderbot/provider-baileys'
import dotenv from 'dotenv-safe'
import { oraPromise } from 'ora'
import PQueue from 'p-queue'
import { processAudioToText, textToAudio } from './services/Huggingface.js'
import {
isAudio,
isImage,
isPdf,
isPdfWithCaption,
simulateTyping,
simulateEndPause,
formatTextWithLinks,
parseLinksWithText,
timeout,
divideTextInTokens,
filterText
} from './utils/index.js'
import { downloadMediaMessage } from '@whiskeysockets/baileys'
import BingAI from './services/BingAI.js'
import { pdfToText } from './services/PdfToText.js'
import { textToSpeech } from './services/TextToSpeech.js'
import languages from './languages.js'
dotenv.config({
allowEmptyValues: true,
})
const bingAI = new BingAI({
host: process.env.BING_AI_HOST ?? 'https://www.bing.com',
cookies: process.env.BING_AI_COOKIES,
genImage: process.env.BING_AI_GENERATE_IMAGE === 'true',
debug: process.env.BING_AI_DEBUG === 'true',
})
const bingAIMode = process.env.BING_AI_MODE ?? 'precise'
const languageBot = languages[process.env.BOT_LANGUAGE ?? 'es']
const systemMessage = process.env.BING_AI_SYSTEM_MESSAGE ?? '🤖'
const allMessagesWithAudio = process.env.BOT_ALL_MSG_WITH_AUDIO === 'true'
const maxTimeQueue = 600000
const queue = new PQueue({ concurrency: 3 })
const PORT = process.env.PORT ?? 3008
const flowBotImage = addKeyword(EVENTS.MEDIA).addAction(async (ctx, { gotoFlow }) => {
gotoFlow(flowBotWelcome)
})
const flowBotDoc = addKeyword(EVENTS.DOCUMENT).addAction(async (ctx, { gotoFlow }) => {
gotoFlow(flowBotWelcome)
})
const flowBotAudio = addKeyword(EVENTS.VOICE_NOTE).addAction(async (ctx, { gotoFlow }) => {
gotoFlow(flowBotWelcome)
})
const flowBotLocation = addKeyword(EVENTS.LOCATION).addAction(async (ctx, { flowDynamic }) => {
flowDynamic(languageBot.notAllowLocation)
})
const flowBotWelcome = addKeyword(EVENTS.WELCOME).addAction(
async (ctx, { fallBack, flowDynamic, endFlow, gotoFlow, provider, state }) => {
// Simulate typing
await simulateTyping(ctx, provider)
if (state.getMyState()?.finishedAnswer === false) {
flowDynamic(languageBot.oneMessageAtTime)
await fallBack()
return
}
let isAudioConversation = allMessagesWithAudio
let isPdfConversation = false
let messageBot = null
let messageBotTmp = ''
if (isAudio(ctx)) {
if (process.env.BOT_RECONGNIZE_AUDIO === 'true') {
isAudioConversation = true
// Process audio
await flowDynamic(languageBot.listeningToAudio)
const buffer = await downloadMediaMessage(ctx, 'buffer')
const response = await processAudioToText(buffer, ctx.key.id + '.ogg')
if (response.success) {
ctx.body = response.output.data[0]
} else {
await flowDynamic(languageBot.errorProcessingAudio)
await gotoFlow(flowBotWelcome)
return
}
} else {
await flowDynamic(languageBot.notAllowReconizeAudio)
await fallBack()
return
}
}
let imageBase64 = null
let context = state.getMyState()?.context ?? null
if (isImage(ctx)) {
if (process.env.BOT_RECONGNIZE_IMAGE === 'true') {
messageBot = await provider.vendor.sendMessage(
ctx?.key?.remoteJid,
{ text: '🔍🖼️⏳💭' },
{ quoted: ctx },
)
await simulateEndPause(ctx, provider)
await simulateTyping(ctx, provider)
const buffer = await downloadMediaMessage(ctx, 'buffer')
// Buffer to base64
imageBase64 = buffer.toString('base64')
ctx.body = ctx.message?.imageMessage?.caption ?? ''
} else {
await flowDynamic(languageBot.notAllowReconizeImage)
await fallBack()
return
}
}
if (isPdf(ctx)) {
if (process.env.BOT_RECONGNIZE_PDF === 'true') {
isPdfConversation = true
messageBot = await provider.vendor.sendMessage(
ctx?.key?.remoteJid,
{ text: '🔍📄⏳💭' },
{ quoted: ctx },
)
await simulateEndPause(ctx, provider)
await simulateTyping(ctx, provider)
const buffer = await downloadMediaMessage(ctx, 'buffer')
// Buffer to base64
ctx.body = languageBot.instructionsPdf
const pdfText = await pdfToText(buffer)
context = divideTextInTokens(pdfText, 10000)
context = context[0].substring(0, 10000)
state.update({
context,
})
} else {
await flowDynamic(languageBot.notAllowReconizePdf)
await fallBack()
return
}
}
if (isPdfWithCaption(ctx)) {
if (process.env.BOT_RECONGNIZE_PDF === 'true') {
messageBot = await provider.vendor.sendMessage(
ctx?.key?.remoteJid,
{ text: '🔍📄⏳💭' },
{ quoted: ctx },
)
await simulateEndPause(ctx, provider)
await simulateTyping(ctx, provider)
const buffer = await downloadMediaMessage(ctx, 'buffer')
// Buffer to base64
ctx.body =
ctx.message?.documentWithCaptionMessage?.message.documentMessage?.caption ??
languageBot.instructionsPdf
const pdfText = await pdfToText(buffer)
context = divideTextInTokens(pdfText, 10000)
context = context[0].substring(0, 10000)
} else {
await flowDynamic(languageBot.notAllowReconizePdf)
await fallBack()
return
}
}
if (messageBot === null) {
messageBot = await provider.vendor.sendMessage(ctx?.key?.remoteJid, { text: '🔍⏳💭' }, { quoted: ctx })
}
// Restart conversation fr, es, en, zh, it, pr
if (
ctx.body.toLowerCase().trim().includes('/reiniciar') ||
ctx.body.toLowerCase().trim().includes('/restart') ||
ctx.body.toLowerCase().trim().includes('/重新开始') ||
ctx.body.toLowerCase().trim().includes('/recommencer')
) {
state.update({
name: ctx.pushName ?? ctx.from,
conversationBot: null,
conversationNumber: 0,
finishedAnswer: true,
})
await flowDynamic(languageBot.restartConversation)
await simulateEndPause(ctx, provider)
await endFlow()
return
}
if (!state?.getMyState()?.conversationBot) {
const prompt = ctx.body.trim()
try {
const response = await queue.add(async () => {
try {
return await Promise.race([
oraPromise(
bingAI.sendMessage(prompt, {
jailbreakConversationId: true,
toneStyle: isPdfConversation ? 'creative' : bingAIMode, // Values [creative, precise, fast] default: balanced
plugins: [],
persona: process.env.BING_AI_PERSONA ?? '',
...(context && { context }),
...(imageBase64 && { imageBase64 }),
systemMessage,
onProgress(token) {
if (process.env.BOT_MESSAGE_ON_PROCESS === 'true') {
if (token.includes('iframe')) {
return // Skip iframes
}
messageBotTmp += token
provider.vendor.sendMessage(ctx?.key?.remoteJid, {
edit: messageBot.key,
text: formatTextWithLinks(messageBotTmp),
})
}
},
}),
{
text: `[${ctx.from}] - ${languageBot.waitResponse}: ` + prompt,
},
),
timeout(maxTimeQueue),
])
} catch (error) {
console.error(error)
}
})
await provider.vendor.sendMessage(ctx?.key?.remoteJid, {
edit: messageBot.key,
text: parseLinksWithText(response?.response) ?? 'Error',
})
if (isAudioConversation && process.env.BOT_TEXT_TO_SPEECH === 'true') {
state.update({
finishedAnswer: true,
})
const audioBuffer = await textToSpeech(filterText(response.response))
await provider.vendor.sendMessage(
ctx?.key?.remoteJid,
{ audio: audioBuffer, ptt: true, mimetype: 'audio/mpeg' },
{ quoted: ctx },
)
}
const isImageResponse = await bingAI.detectImageInResponse(response)
if (isImageResponse?.srcs?.length > 0) {
const srcs = isImageResponse.srcs.map((src) => {
return src.replace('w=270&h=270', 'w=1024&h=1024')
})
let urls = ''
srcs.forEach(async (src, index) => {
// If image not have w=1024&h=1024 continue
if (!src.includes('w=1024&h=1024')) {
return
}
await provider.vendor.sendMessage(ctx?.key?.remoteJid, {
image: {
url: src,
},
})
urls += isImageResponse.urls[index] + '\n'
})
await flowDynamic(urls)
}
state.update({
conversationBot: response,
conversationNumber: 1,
finishedAnswer: true,
})
} catch (error) {
state.update({ finishedAnswer: true })
await flowDynamic('Error')
await endFlow()
}
// Stop typing
await simulateEndPause(ctx, provider)
return
}
if (state.getMyState()?.conversationBot?.conversationId) {
const prompt = ctx.body.trim()
state.update({
finishedAnswer: false,
})
try {
const response = await queue.add(async () => {
try {
return await Promise.race([
oraPromise(
bingAI.sendMessage(prompt, {
jailbreakConversationId:
state.getMyState()?.conversationBot.jailbreakConversationId,
parentMessageId: state.getMyState()?.conversationBot.messageId,
toneStyle: isPdfConversation ? 'creative' : bingAIMode, // VAlues or [creative, precise, fast] default: balanced
plugins: [],
...(context && { context }),
...(imageBase64 && { imageBase64 }),
onProgress(token) {
if (process.env.BOT_MESSAGE_ON_PROCESS === 'true') {
if (token.includes('iframe')) {
return // Skip iframes
}
messageBotTmp += token
provider.vendor.sendMessage(ctx?.key?.remoteJid, {
edit: messageBot.key,
text: formatTextWithLinks(messageBotTmp),
})
}
},
}),
{
text: `[${ctx.from}] - ${languageBot.waitResponse}: ` + prompt,
},
),
timeout(maxTimeQueue),
])
} catch (error) {
console.error(`${languageBot.errorInBot}:`, error)
}
})
if (isAudioConversation) {
state.update({
finishedAnswer: true,
})
const audioBuffer = await textToSpeech(filterText(response.response))
await provider.vendor.sendMessage(
ctx?.key?.remoteJid,
{ audio: audioBuffer, ptt: true, mimetype: 'audio/mpeg' },
{ quoted: ctx },
)
}
const isImageResponse = await bingAI.detectImageInResponse(response)
if (isImageResponse?.srcs?.length > 0) {
const srcs = isImageResponse.srcs.map((src) => {
return src.replace('w=270&h=270', 'w=1024&h=1024')
})
let urls = ''
srcs.forEach(async (src, index) => {
if (!src.includes('w=1024&h=1024')) {
return
}
await provider.vendor.sendMessage(ctx?.key?.remoteJid, {
image: {
url: src,
},
})
urls += isImageResponse.urls[index] + '\n'
})
await flowDynamic(urls)
}
await provider.vendor.sendMessage(ctx?.key?.remoteJid, {
edit: messageBot.key,
text: parseLinksWithText(response?.response) ?? 'Error',
})
state.update({
name: ctx.pushName ?? ctx.from,
conversationBot: response,
// eslint-disable-next-line no-unsafe-optional-chaining
conversationNumber: state.getMyState()?.conversationNumber + 1,
finishedAnswer: true,
})
} catch (error) {
console.error(error)
state.update({ finishedAnswer: true })
await flowDynamic('Error')
}
await simulateEndPause(ctx, provider)
}
},
)
const main = async () => {
const adapterFlow = createFlow([flowBotWelcome, flowBotImage, flowBotDoc, flowBotAudio, flowBotLocation])
const adapterProvider = createProvider(Provider, {
useBaileysStore: false,
})
const adapterDB = new Database()
const { httpServer } = await createBot({
flow: adapterFlow,
provider: adapterProvider,
database: adapterDB,
})
httpServer(+PORT)
}
main()