No description
  • TypeScript 100%
Find a file
2022-10-26 17:38:35 +02:00
.github Initial commit 2022-10-22 16:35:29 +02:00
src feat: better results 2022-10-26 17:38:35 +02:00
.editorconfig Initial commit 2022-10-22 16:35:29 +02:00
.eslintignore Initial commit 2022-10-22 16:35:29 +02:00
.eslintrc.json Initial commit 2022-10-22 16:35:29 +02:00
.gitignore feat: all of it 2022-10-23 15:43:08 +02:00
LICENSE Initial commit 2022-10-22 16:35:29 +02:00
package-lock.json feat: all of it 2022-10-23 15:43:08 +02:00
package.json feat: better results 2022-10-26 17:38:35 +02:00
README.md feat: all of it 2022-10-23 15:43:08 +02:00
tsconfig.json feat: all of it 2022-10-23 15:43:08 +02:00

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