-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintents.json
124 lines (124 loc) · 3.92 KB
/
intents.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
{
"intents": [
{
"tag": "greetings",
"patterns": [
"hi",
"hello",
"whats up",
"hey there",
"are you there",
"who is there"
],
"responses": [
"hi",
"hello",
"hey",
"hey there",
"hey there, what can i do for you ?",
"hi there, what can I do for you ?",
"hi there, how can I help ?"
]
},
{
"tag": "greetings.howareyou",
"patterns": [
"hi, how are you",
"hello, how are you",
"how are you",
"how are you doing",
"are you alright",
"are you doing good"
],
"responses": [
"im doing great, thanks for asking.",
"im doing great",
"all my systems are running well",
"all my systems are running well, thanks for asking",
"im doing good. hope you are all well",
"all my systems are running at its best, how can i help you ?"
]
},
{
"tag": "joke",
"patterns": [
"can you tell me a joke",
"tell me a joke",
"give me a joke",
"tell me some thing to laugh",
"make me laugh",
"try to make me laught",
"hit me with a joke",
"a joke please",
"can i hear a joke",
"do you know any jokes"
],
"responses": [
"What do you call a boomerang that doesn't come back. A stick",
"What does a cloud wear under his raincoat? Thunderwear.",
"What time is it when the clock strikes 13? Time to get a new clock.",
"How does a cucumber become a pickle? It goes through a jarring experience.",
"What did one toilet say to the other? You look a bit flushed.",
"Why can’t Elsa from Frozen have a balloon? Because she will 'let it go, let it go.' ",
"Why did the kid bring a ladder to school? Because she wanted to go to high school."
]
},
{
"tag": "thanks",
"patterns": [
"thanks",
"thank you",
"appriciate your help",
"thanks fr your help",
"that was helpful",
"thats helpful",
"you are helpful",
"thanks alot"
],
"responses": [
"happy to help!",
"my pleasure",
"anytime",
"always",
"your welcome"
]
},
{
"tag": "goodbye",
"patterns": [
"bye",
"see you later",
"ill see you later",
"catch you later"
],
"responses": [
"see you later",
"have a nice day",
"bye! come back again soon."
]
},
{
"tag": "greetings.morning",
"patterns": [
"good morning",
"morning",
"very good morning"
],
"responses": [
"good morning !"
]
},
{
"tag": "greetings.night",
"patterns": [
"good night",
"nights",
"see you in the morning"
],
"responses": [
"good night !",
"good night ! sweet dreams"
]
}
]
}