This commit is contained in:
Lukian LEIZOUR 2022-12-05 22:54:16 +01:00
parent ba0ebec07d
commit a5a86747ad
3 changed files with 32 additions and 3 deletions

View file

@ -33,4 +33,28 @@ function generateImage(query, ctx, bot) {
})
}
module.exports = { generateImage };
function answerQuestion(query, ctx, bot) {
response = openai.createCompletion({
model: "text-davinci-003",
prompt: query,
max_tokens: 500,
temperature: 0.9,
}).catch((err) => {
console.log(err);
})
console.log("--> answering the question " + query);
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 };