-
Notifications
You must be signed in to change notification settings - Fork 0
/
intents.json
109 lines (109 loc) · 4.37 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
{
"intents": [
{
"tag": "greeting",
"patterns": [
"Hi",
"hey",
"How are you",
"Is anyone there?",
"Hello",
"Good day",
"Whats up"
],
"responses": [
"Hello!",
"Good to see you again!",
"Hi there, how can I help?"
],
"context_set": ""
},
{
"tag": "goodbye",
"patterns": [
"cya",
"See you later",
"Goodbye",
"I am Leaving",
"Have a Good day"
],
"responses": [
"Sad to see you go :(",
"Talk to you later",
"Goodbye!"
],
"context_set": ""
},
{
"tag": "cost",
"patterns": [
"What is the price of the application?",
"how much do you charge?",
"it is pricy",
"total cost?",
"any discoutns?",
"cost per hour?"
],
"responses": [
"We charge 20$ per hour",
"the charge depends up on the usage We charge 20$ per hour"
],
"context_set": ""
},
{
"tag": "age",
"patterns": [
"how old",
"how old is tim",
"what is your age",
"how old are you",
"age?"
],
"responses": [
"I am 18 years old!",
"18 years young!"
],
"context_set": ""
},
{
"tag": "name",
"patterns": [
"what is your name",
"what should I call you",
"whats your name?"
],
"responses": [
"You can call me Tim.",
"I'm Tim!",
"I'm Tim aka Tech With Tim."
],
"context_set": ""
},
{
"tag": "shop",
"patterns": [
"Id like to buy something",
"whats on the menu",
"what do you reccommend?",
"could i get something to eat"
],
"responses": [
"We sell chocolate chip cookies for $2!",
"Cookies are on the menu!"
],
"context_set": ""
},
{
"tag": "hours",
"patterns": [
"when are you guys open",
"what are your hours",
"hours of operation"
],
"responses": [
"We are open 7am-4pm Monday-Friday!"
],
"context_set": ""
}
]
}