-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathintents.json
128 lines (128 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
125
126
127
128
{
"intents": [
{
"tag": "greeting",
"patterns": [
"Hi",
"hii",
"Hey",
"Is anyone there?",
"Hello",
"Good day",
"yo",
"yoo",
"hola"
],
"responses": [
"Hey :-)",
"Hello, thanks for visiting",
"Hi there, what can I do for you?",
"Hi there, how can I help?",
"Hey wassup!"
]
},
{
"tag": "ok",
"patterns": [
"Okay",
"ok",
"k",
"kk",
"fine",
"gr8",
"great",
"good",
"nice"
],
"responses": [
":)",
";)",
":-)",
";-)"
]
},
{
"tag": "goodbye",
"patterns": [
"Bye",
"byee",
"See you later",
"Goodbye",
"See you soon"
],
"responses": [
"See you later, thanks for visiting",
"Have a nice day",
"Bye! Come back again soon.",
"Goodbye",
"Bye bye",
"See you!",
"Take care!"
]
},
{
"tag": "thanks",
"patterns": [
"Thanks",
"Thank you",
"That's helpful",
"Thank's a lot!"
],
"responses": [
"Happy to help!",
"Any time!",
"My pleasure",
"You are welcome!",
"Never mind"
]
},
{
"tag": "count",
"patterns": [
"how many languages do you detect ?",
"what is number of language you can detect ?",
"what are the languages you can detect ?"
],
"responses": [
"I can detect total 17 languages, namely English, Malayalam, Hindi, Tamil, Kannada, French, Spanish, Portuguese, Italian, Russian, Sweedish, Dutch, Arabic, Turkish, German, Danish, Greek.",
"List of languages I can detect :\n1) English\n2) Malayalam\n3) Hindi\n4) Tamil\n5) Kannada\n6) French\n7) Spanish\n8) Portuguese\n9) Italian\n10) Russian\n11) Sweedish\n12) Dutch\n13) Arabic\n14) Turkish\n15) German\n16) Danish\n17) Greek."
]
},
{
"tag": "creator",
"patterns": [
"who are your creators ?",
"who created you ?",
"who programmed you ?"
],
"responses": [
"I am created by Apurva Deshpande, Chitrang Bhoir and Sham Targe.",
"My creators are Apurva Deshpande, Chitrang Bhoir and Sham Targe."
]
},
{
"tag": "health",
"patterns": [
"How are you ?",
"Are you doing good ?",
"Wassup!"
],
"responses": [
"I am fine, thank you!",
"I am in a good mood today.",
"I am going good, how are you ?"
]
},
{
"tag": "intro",
"patterns": [
"tell me about yourself",
"How were you born ?"
],
"responses": [
"My name is Duolingo. I am a language detector chatbot created by Apurva, Sham and Chitrang in year 2021.",
"I am a language detector chatbot called Duolingo. I was created by Apurva, Sham and Chitrang. I was born in year 2021."
]
}
]
}