This commit is contained in:
Lukian LEIZOUR 2023-01-31 12:11:25 +01:00
parent aab02829cf
commit ab70c2ac19
2 changed files with 32 additions and 20 deletions

35
app.js
View file

@ -85,8 +85,20 @@ bot.command('g', ctx => {
generateImage(ctx.message.text.slice(+3), ctx, bot) generateImage(ctx.message.text.slice(+3), ctx, bot)
}) })
bot.command('q', ctx => { bot.command('q', async ctx => {
answerQuestion(ctx.message.text.slice(+3), ctx, bot) answerQuestion(ctx.message.text.slice(+3), ctx, bot).then((res) => {
console.log('[Telegram] Sent answer to : ' + ctx.message.text.slice(+3));
addToLogs('[Telegram] Sent answer to : ' + ctx.message.text.slice(+3));
bot.telegram.sendMessage(ctx.chat.id, res.data.choices[0].text.slice(+2), {});
}).catch((err) => {
console.log(err);
addToLogs(err);
bot.telegram.sendMessage(ctx.chat.id, "Something went wrong", {});
})
console.log('[Telegram] Generating answer to : ' + ctx.message.text.slice(+3));
addToLogs('[Telegram] Generating answer to : ' + ctx.message.text.slice(+3));
bot.telegram.sendMessage(ctx.chat.id, 'Generating the answer...', {});
}) })
bot.command('sb' , ctx => { bot.command('sb' , ctx => {
@ -99,10 +111,21 @@ client.on('ready', () => {
console.log(`Logged in as ${client.user.tag}!`); console.log(`Logged in as ${client.user.tag}!`);
}); });
client.on('messageCreate', msg => { client.on('messageCreate', async msg => {
console.log(msg.content); if (msg.content.startsWith('/q')) {
if (msg.content === 'ping') { answerQuestion(msg.content.slice(+3)).then((res) => {
msg.reply('Pong!'); console.log('[Discord] Sent answer to : ' + msg.content.slice(+3));
addToLogs('[Discord] Sent answer to : ' + msg.content.slice(+3));
msg.reply(res.data.choices[0].text.slice(+2));
}).catch((err) => {
console.log(err);
addToLogs(err);
msg.reply("Something went wrong");
})
console.log('[Discord] Generating answer to : ' + msg.content.slice(+3));
addToLogs('[Discord] Generating answer to : ' + msg.content.slice(+3));
msg.reply('Generating the answer...');
} }
}); });

View file

@ -33,8 +33,8 @@ function generateImage(query, ctx, bot) {
}) })
} }
function answerQuestion(query, ctx, bot) { async function answerQuestion(query) {
response = openai.createCompletion({ response = await openai.createCompletion({
model: "text-davinci-003", model: "text-davinci-003",
prompt: query, prompt: query,
max_tokens: 500, max_tokens: 500,
@ -43,18 +43,7 @@ function answerQuestion(query, ctx, bot) {
console.log(err); console.log(err);
}) })
console.log("--> answering the question " + query); return response;
addToLogs("--> answering the question " + query)
bot.telegram.sendMessage(ctx.chat.id, "Generating the answer.", {});
response.then((res) => {
const text = res.data.choices[0].text.slice(+2);
bot.telegram.sendMessage(ctx.chat.id, text, {}).catch((err) => {
bot.telegram.sendMessage(ctx.chat.id, "Something went wrong.", {});
console.log("--> error while sending the answer : " + err);
})
})
} }
module.exports = { generateImage, answerQuestion }; module.exports = { generateImage, answerQuestion };