-
Notifications
You must be signed in to change notification settings - Fork 10
/
config-sample.json
93 lines (93 loc) · 1.59 KB
/
config-sample.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"$schema": "https://raw.githubusercontent.com/private-yusuke/botot2/master/config-schema.json",
"i": "!xxxxxxxxxxx",
"host": "misskey.xyz",
"timeline": "hybrid",
"connectionTimeout": 5000,
"intervalPost": true,
"intervalPostDuration": {
"value": 1,
"unit": "hour"
},
"postMaxCharacterCount": 1000,
"modules": [
"autoFollow",
"othelloRedirect",
"markovSpeaking",
"greeting",
"ping",
"admin",
"emojiList",
"dice",
"math",
"kakariukeGraph",
"sushi",
"randomChoice",
"suru"
],
"markovSpeaking": {
"allowLearn": true,
"allowLearnCW": true,
"allowLearnVisFollowers": true,
"blocked": [
],
"filtering": true,
"wordFilterURL": "http://monoroch.net/kinshi/housouKinshiYougo.xml",
"wordFilterFiles": [
"./filter.txt"
],
"wordFilterLog": true
},
"math": {
"size": 20
},
"op": [
],
"database": {
"path": "db/triplets_db.json",
"type": "onlyOne",
"saveFrequency": 5,
"saveDuration": {
"value": 30,
"unit": "minute"
},
"maxSize": 1e6,
"attenuationRate": 0.5
},
"sentenceLengthRange": {
"start": 1,
"end": 1
},
"mecab": {
"commandOptions": ""
},
"visibility": "home",
"cwStart": 600,
"delay": 2000,
"suru": {
"yes": [
"はい",
"いいよ",
"やれ",
"やりましょう",
"やろ",
"OK",
"いいですよ",
"今すぐやりなさい",
"しよう"
],
"no": [
"だめ",
"だ~め",
"いいえ",
"やるな",
"やってはいけません",
"NG",
"だめですよ",
"まだその時ではない",
"時期が悪い"
]
}
}