chatbot 0.0.3
Install from the command line:
Learn more about npm packages
$ npm install @persian-caesar/chatbot@0.0.3
Install via package.json:
"@persian-caesar/chatbot": "0.0.3"
About this version
A custom chat bot package free for all.
const { Database, default: ChatBot } = require("@persian-caesar/chatbot");
const { QuickDB, JSONDriver } = require("quick.db");
const database = new Database(new QuickDB({ driver: new JSONDriver() }));
const chatBot = new ChatBot(database, "1");
const answer = chatBot.handleMessage("hello");
console.log(answer);