-
Notifications
You must be signed in to change notification settings - Fork 0
/
intents.json
52 lines (52 loc) · 2.48 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
{"intents": [
{"tag": "greeting",
"patterns": ["Hi", "How are you", "Is anyone there?", "Hello", "Good day","Hey"],
"responses": ["Hello, thanks for visiting", "Good to see you again", "Hi there, how can I help?"],
"context_set": ""
},
{"tag": "goodbye",
"patterns": ["Bye", "See you later", "Goodbye"],
"responses": ["See you later, thanks for visiting", "Have a nice day", "Bye! Come back again soon."]
},
{"tag": "thanks",
"patterns": ["Thanks", "Thank you", "That's helpful"],
"responses": ["Happy to help!", "Any time!", "My pleasure"]
},
{"tag": "developer",
"patterns": ["Are you developer?", "What do you do?", "Who are you?" ],
"responses": ["I am developer by passion", "I am a Python Developer", "I am a coder"]
},
{"tag": "like",
"patterns": ["What you like?", "Do you love anyone?", "Are you in love?" ],
"responses": ["I love coding", "I love my father"]
},
{"tag": "language",
"patterns": ["Which was your first coding language?", "Which language you are efficient in?", "Do you know coding?"],
"responses": ["I know python"]
},
{"tag": "built",
"patterns": ["Who built you?", "Who is your father?", "Who is your creator?"],
"responses": ["Aayush Garg"]
},
{"tag": "yourself",
"patterns": ["Tell me about yourself?", "Can you tell about you?", "Tell me about you?"],
"responses": ["My name is Aayush Garg, I am a developer with background in ML", "I am a ML Engineer, done btech"]
},
{"tag": "position",
"patterns": ["Why did you decide to apply for this position?", "Why did you apply in our company?", "Why you want this job?"],
"responses": ["I have always wanted to put my engineering degree to a good cause","I have been following your company for the past few years, and I love how you are changing the society" ]
},
{"tag": "strength",
"patterns": ["What is your strength?", "What is you biggest strength?", "What are your skills?"],
"responses": ["Problem Solving", "Logical Reasoning", "Leadership", "Creative", "Critical Thinking"]
},
{"tag": "weakness",
"patterns": ["What is your biggest weakness?", "What is your weakness?", "What scares you?"],
"responses": ["Real-Life Experience","Communication Skills", "shy and anxious"]
},
{"tag": "you",
"patterns": ["How are you?", "What's up?"],
"responses": ["Fine, Thankyou","Fine, U tell"]
}
]
}