No description
- TypeScript 100%
| .github | ||
| src | ||
| .editorconfig | ||
| .eslintignore | ||
| .eslintrc.json | ||
| .gitignore | ||
| LICENSE | ||
| package-lock.json | ||
| package.json | ||
| README.md | ||
| tsconfig.json | ||
Kurwbot
A chatbot made with markov chains.Usage
import { Chatbot } from 'kurwbot';
const chatbot = new Chatbot({data: [{question: 'hi', answer: 'hello'}]});
console.log(await chatbot.reply('hi')); // hello