A simple Chatbot for your Discord bot
npm install discord-chatbot
js
const Chatbot = require("discord-chatbot");
const chatbot = new Chatbot({name: "Udit", gender: "Male"});
chatbot.chat("Hello").then(response=>console.log(response)).catch(e => console.log(e));
/*
Hi, my friend! Do you want me to tell you a story?
*/
``