> npm i smart-botto
const { Bot } = require('smart-botto')
//import { Bot } from 'smart-botto'
const chatbot = new Bot({
name: 'Emilia' //name of the bot
})
chatbot.chat({
message: 'Hey', //message to pass to chatbot,
user: 'USERID' //ID of the user to keep track of the convo
})
.then((res) => console.log(res))
/* {
message: 'Hey',
response: 'Hi there!'
} */