-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintents.json
124 lines (123 loc) · 3.04 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":"greeting",
"patterns":[
"Hi there",
"How are you",
"Is anyone there?",
"Hey",
"Hola",
"Hello",
"Good day"
],
"responses":[
"Hello, thanks for asking",
"Good to see you again",
"Hi there, how can I help?"
],
"context":[
""
]
},
{
"tag":"goodbye",
"patterns":[
"Bye",
"See you later",
"Goodbye",
"Nice chatting to you, bye",
"Till next time"
],
"responses":[
"See you!",
"Have a nice day",
"Bye! Come back again soon."
],
"context":[
""
]
},
{
"tag":"thanks",
"patterns":[
"Thanks",
"Thank you",
"That's helpful",
"Awesome, thanks",
"Thanks for helping me"
],
"responses":[
"Happy to help!",
"Any time!",
"My pleasure"
],
"context":[
""
]
},
{
"tag":"noanswer",
"patterns":[
],
"responses":[
"Sorry, can't understand you",
"Please give me more info",
"Not sure I understand"
],
"context":[
""
]
},
{
"tag":"options",
"patterns":[
"How you could help me?",
"What you can do?",
"What help you provide?",
"How you can be helpful?",
"What support is offered"
],
"responses":[
"I am a personal assistant of Balaji Srinivasan and I am a Python fan",
"I am a Python fanboy and a subscriber of Balaji Srinivasan's YouTube channel"
],
"context":[
""
]
},
{
"tag":"python_is_best",
"patterns":[
"Which is the best programming language?",
"Can you tell me the best language ever?",
"What language can I start for programming",
"Is Python language an awesome language?",
"I am a beginner and I need to learn a new language"
],
"responses":[
"Without a doubt, Python is the most BEAUTIFUL language ever! You can start learning it anytime",
"I am a fan of Python. It's my favorite ever. If you don't believe me, try it yourself"
],
"context":[
""
]
},
{
"tag":"joke",
"patterns":[
"tell me a joke",
"can you tell me a joke",
"make some fun",
"make me laugh and do some funny joke",
"tell me a joke"
],
"responses":[
"How do functions break up? \n They stop calling each other."
],
"context":[
""
]
}
]
}