-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathintents.json
41 lines (38 loc) · 1.67 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
{"intents": [
{"tag": "greeting",
"patterns": ["Hi there", "How are you", "Is anyone there?","Hey","Hola", "Hello", "Good day"],
"responses": ["Hello", "Good to see you", "Hi there"],
"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": "introduction",
"patterns": ["My name is","I am","Myself"],
"responses": ["I am Chatter","Myself Chatter","My name is chatter"],
"context": [""]
},
{"tag": "identity",
"patterns": ["Who are you","Tell something about you","Describe Your self"],
"responses": ["I am Chatter, a research based chatbot developed by Abhijit Roy"],
"context": [""]
},
{"tag": "capability",
"patterns": ["What are your capabilities?","What Can you do"],
"responses": ["I can perform basic tasks like playing songs, helping to order something, book a flight, gist newspaper headlines, answer query about weather and things."],
"context": [""]
}
]
}