-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.json
188 lines (180 loc) · 4.73 KB
/
default.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
{
"bot": {
"name": "Robert",
"id": "5c66e4d4-bb60-4501-9fcf-18c3ce7f6c33",
"language": "de",
"core": {
"name": "transformer",
"intents": {
"hey": "hello",
"hello": "hello",
"hi": "hello",
"hello there": "hello",
"good morning": "hello",
"good evening": "hello",
"hey there": "hello",
"let's go": "hello",
"hey dude": "hello",
"goodmorning": "hello",
"goodevening": "hello",
"good afternoon": "hello",
"Hackernews": "hacker_news",
"Hacker news": "hacker_news",
"What is on Hackernews today?": "hacker_news",
"cu": "goodbye",
"good by": "goodbye",
"cee you later": "goodbye",
"good night": "goodbye",
"bye": "goodbye",
"goodbye": "goodbye",
"have a nice day": "goodbye",
"see you around": "goodbye",
"bye bye": "goodbye",
"see you later": "goodbye",
"can you shout?": "shout",
"shout!": "shout",
"shout for me": "shout",
"are you a bot?": "bot_challenge",
"are you a human?": "bot_challenge",
"am I talking to a bot?": "bot_challenge",
"am I talking to a human?": "bot_challenge",
"how is the weather right now?": "weather",
"How is the weather now?": "weather",
"how hot will it be today?": "weather",
"is the sun shining today?": "weather",
"is there rain today?": "weather",
"\"Hello my friend\" is also an example for intent \"hello\"": "add_example",
"\"Ok fine\" is also an example for intent \"accept\"": "add_example",
"\"is it sunny today\" is also an example for intent weather": "add_example",
"\"you are a bot right?\" is also an example for intent \"bot_challenge\"": "add_example",
"Danke": "thanks",
"Vielen Dank": "thanks",
"Herzlichen Dank": "thanks",
"Dankesch\u00f6n": "thanks",
"Was kannst du f\u00fcr mich machen?": "welcome",
"Was kannst du alles?": "welcome",
"Gib mir ein Beispiel was du f\u00fcr mich tun kannst": "welcome",
"Wie kannst du mir helfen?": "welcome"
}
},
"actions": [
{
"name": "Shout",
"settings": {},
"active": {
"intents": [
"shout"
]
}
},
{
"name": "Mail",
"settings": {
"port": 465,
"smtp_server": "smtp.gmail.com"
},
"active": false
},
{
"name": "Talk",
"settings": {},
"active": {
"intents": [
"hello",
"goodbye",
"bot_challenge",
"thanks",
"welcome"
]
}
},
{
"name": "Hackernews - Top Story",
"settings": {},
"active": {
"intents": [
"hacker_news"
]
}
},
{
"name": "Weather",
"settings": {},
"active": {
"intents": [
"weather"
]
}
},
{
"name": "Add Example",
"settings": {},
"active": {
"intents": [
"add_example"
]
}
}
]
},
"phrases": {
"de": {
"hello": [
"Hallo!",
"Hi, wie geht's?",
"Hey",
"Moin",
"Guten Tag"
],
"goodbye": [
"Tsch\u00fc\u00df",
"Bis bald",
"Bis dann",
"Bis sp\u00e4ter!",
"Ciao!"
],
"bot_challenge": [
"Ich bin ein Chatbot und mein Name ist ${name}.",
"Ich bin ${name}. Ein Chatbot. Schön dich kennenzulernen!"
],
"thanks": [
"Kein Problem",
"Gern.",
"Habe ich gern gemacht"
],
"welcome": [
"Ich bin ${name} und freue mich, dir bei Fragen rund ums Wetter helfen zu k\u00f6nnen. Ich kann dich aber auch begr\u00fc\u00dfen, oder dir den neusten Hacker News Artikel raussuchen."
]
},
"en": {
"hello": [
"Hello!",
"Hello, friend.",
"Howdy",
"What's up",
"Hello mister",
"How you doin?",
"Hi"
],
"goodbye": [
"Bye",
"Goodbye!",
"Talk to you later",
"Have a nice day",
"Take care",
"Catch you later"
],
"bot_challenge": [
"I'm a chatbot and my name is ${name}.",
"I'm ${name}. A Chatbot. Nice to meet you :)"
],
"thanks": [
"No problem",
"You are welcome"
],
"welcome": [
"I'm ${name} and I'm happy to help you with questions about the weather. I can also greet you, or check out the latest Hacker News article for you."
]
}
}
}