UNPKG
bostinho
Version:
latest (1.5.0)
1.5.0
1.4.3
1.4.2
1.4.1
1.4.0
1.3.3
1.3.2
1.3.1
1.3.0
a simple api for chatbots
github.com/lesimoes/bostinho
lesimoes/bostinho
bostinho
/
model
/
Bostinho.js
20 lines
(13 loc)
•
274 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class
Bostinho
{
constructor
(
){
this
.
engine
=
require
(
'../nlp/n-grams/ngrams'
)
this
.
setDatabse
(
'../../database/base'
); }
sendMsg
(
text
){
return
this
.
engine
(text) }
setDatabse
(
path
){
this
.
engine
.
database
= path; } }
module
.
exports
=
Bostinho