Update bot to new discord API and add simple chatgpt module
This commit is contained in:
20
modules/chatgpt/index.js
Normal file
20
modules/chatgpt/index.js
Normal file
@@ -0,0 +1,20 @@
|
||||
let ChatGPTAPI = null;
|
||||
|
||||
module.exports = function (bot, api) {
|
||||
import("chatgpt").then((mod) => {
|
||||
ChatGPTAPI = mod.ChatGPTAPI;
|
||||
});
|
||||
api.registerCommand('chat', async (args, message) => {
|
||||
const response = await getChatGPTResponse(message.content.slice(6).trim());
|
||||
api.respond(message, response);
|
||||
});
|
||||
}
|
||||
|
||||
async function getChatGPTResponse(prompt) {
|
||||
const api = new ChatGPTAPI({
|
||||
apiKey: process.env.OPENAI_API_KEY
|
||||
})
|
||||
|
||||
const res = await api.sendMessage(prompt);
|
||||
return res.text;
|
||||
}
|
Reference in New Issue
Block a user