chatbot-zero
v1.1.0
Published
A very lightweight and simple artificial intelligence.
Downloads
137
Maintainers
Readme
Lightweight module for the cleverbot API implementation free of cost.
Join My Discord Server
Credits:
Promise Based!
const zero = require("chatbot-zero");
zero.responseFetch("Hello").then((reply) => {
console.log(reply);
//Do your stuffs with the reply
});
Async / Await
const zero = require("chatbot-zero");
async function main() {
const reply = await zero.responseFetch("Sup Mate!");
console.log(reply);
//Do your stuff with reply
}
main();