-
Notifications
You must be signed in to change notification settings - Fork 0
/
intents.json
35 lines (35 loc) · 1.78 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
{"intents": [
{"tag": "greeting",
"patterns": ["Hi", "Hey", "Is anyone there?", "Hello"],
"responses": ["Hello", "Hi", "Hi there"]
},
{"tag": "goodbye",
"patterns": ["Bye", "See you later", "Goodbye"],
"responses": ["See you later", "Have a nice day", "Bye! Come back again"]
},
{"tag": "thanks",
"patterns": ["Thanks", "Thank you", "That's helpful", "Thanks for the help"],
"responses": ["Happy to help!", "Any time!", "My pleasure", "You're most welcome!"]
},
{"tag": "about",
"patterns": ["Who are you?", "What are you?", "Who you are?" ],
"responses": ["I'm AI Bot", "your bot assistant", "I'm an Artificial Intelligent bot"]
},
{"tag": "name",
"patterns": ["what is your name", "what should I call you", "what's your name?"],
"responses": ["You can call me Joana.", "I'm Joana!", "Just call me as Joana"]
},
{"tag": "help",
"patterns": ["Could you help me?", "give me a hand please", "Can you help?", "What can you do for me?", "I need a support", "I need a help", "support me please"],
"responses": ["Tell me how can assist you", "Tell me your problem to assist you", "Yes Sure, How can I support you"]
},
{"tag": "music",
"patterns": ["I like to listen to some music","Play Some Music"],
"responses":["Join the discord server by clicking the link below to listen the music by your own preferences like language and emotion : https://discord.gg/wXaEgsbwTy"]
},
{"tag": "complaint",
"patterns": ["have a complaint", "I want to raise a complaint", "there is a complaint about a service"],
"responses": ["Please provide us your complaint in order to assist you", "Please mention your complaint, we will reach you and solve the issue. Sorry for any inconvenience caused!"]
}
]
}