-
Notifications
You must be signed in to change notification settings - Fork 0
/
intents.json
115 lines (115 loc) · 2.58 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
{
"intents": [
{
"tag": "happy",
"patterns": [
"happy",
"glad",
"merry",
"cheerful",
"joyful",
"fortunate"
],
"responses": [
"🙂"
]
},
{
"tag": "sad",
"patterns": [
"sad",
"unhappy",
"miserable",
"low",
"down"
],
"responses": [
"☹️"
]
},
{
"tag": "excited",
"patterns": [
"excited",
"enthusiastic",
"eager"
],
"responses": [
"😃"
]
},
{
"tag": "shocked",
"patterns": [
"shocked",
"shook",
"shookt",
"baffled"
],
"responses": [
"😱"
]
},
{
"tag": "angry",
"patterns": [
"angry",
"annoyed"
],
"responses": [
"😡"
]
},
{
"tag": "relaxed",
"patterns": [
"relaxed",
"chill"
],
"responses": [
"😌"
]
},
{
"tag": "sleepy",
"patterns": [
"sleepy",
"tired"
],
"responses": [
"😴"
]
},
{
"tag": "save",
"patterns": [
"my favourite emoji is",
"my favourite is",
"save my favourite",
"save my favourite",
"store my favourite"
],
"responses": [
"Ok, saved."
]
},
{
"tag": "return_saved",
"patterns": [
"what is",
"what's my",
"display my",
"what is my favourite",
"what's my favourite",
"what's my favourite?",
"what is my favourite emoji?",
"what's my favourite emoji",
"what is my favourite emoji",
"show me my favourite emoji"
],
"responses": [
"Your favorite emoji is:"
]
}
]
}