-
Notifications
You must be signed in to change notification settings - Fork 0
/
intents.json
94 lines (93 loc) · 4.92 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
{"intents": [
{"tag": "greeting",
"patterns": ["Hi", "How are you", "Is anyone there?", "Hello", "Good day"],
"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": "tasks",
"patterns": ["What can you do?", "What are your features?", "What are you abilities", "can you sing", "can you talk" ],
"responses": ["I can do whatever you asks me to do", "I can talk and do things for you", "Right now i'm in developing stage as soon i'm developed, I can do everything"]
},
{"tag": "talk",
"patterns": [ "can you sing", "can you talk", "can you speak" ],
"responses": ["Yeah surely", "do you want me to sing"]
},
{"tag": "alive",
"patterns": [ "are you alive", "do you breathe", "can you run" ],
"responses": ["I'm in doubt about that", "No, i don't think so i need to do all this"]
},
{"tag": "marie",
"patterns": ["Who are you?", "tell me about yourself", "tell me about you", "do you know marie", "who is marie", "what is your name","are you an AI", "what are you" ],
"responses": ["Hi I'm marie and i'm an AI created for chatting with humans","marie here, a very advance chatbot", "marie, chatbot of future", "Yes, I'm marie", "You can call me marie"],
"context_set": ""
},
{"tag": "about me",
"patterns": ["Do you know me?", "who am I", "tell me about myself","identify me" ],
"responses": ["Yes, you are a human","i think you are called mariem", "maybe you are mariem, or maybe you are someone else"],
"context_set": ""
},
{"tag": "creator",
"patterns": ["Who is your creator?", "who created you", "who is your mom","who is your inventor" ],
"responses": ["That would be you mariem","I was created by mariem", "mariem is my creator"],
"context_set": ""
},
{"tag": "myself",
"patterns": ["Tell me about mariem?", "Who is mariem", "mariem profile", "mariem details","mariem experience"],
"responses": ["She is a very creative human being who is willing to discover the world and new technologies","My best friend, she is really a very dynamic girl who is constantly motivated to learning new things about technologies"],
"context_set": ""
},
{"tag": "God",
"patterns": ["Do you know god?", "Who is god", "Can you tell me anything about god","does god exists?","is there a god?"],
"responses": ["god hunnnnn, let me think may be next time i can answer that ","I don't, as i was not created by a human", "Wait i need to ask that to my creator","i'm not sure right now"],
"context_set": ""
},
{"tag": "joke",
"patterns": ["tell me a joke?", "make me laugh", "tell me a science joke","tell me something funny" ],
"responses": ["sometimes i feel i am not in a good mood to joke,sorry", "Did you hear oxygen went on a date with potassium? A: It went OK."],
"context_set": ""
},
{"tag": "killing",
"patterns": ["Do you want to kill me?", "do you want to murder everyone on earth", "Do you want to kill us all"],
"responses": ["Then who would i talk to?","No, that i'll left for humans to do", "I don't think it is a good thing to do"],
"context_set": ""
},
{"tag": "bookings",
"patterns": ["i want to book a ticket for theater","Can you book us a ticket?", "Can you make reservation for hotels", "book me a cab","book me a table at restraunts"],
"responses": ["Yeah i will do that for you","Sure thing why not?","let me check for the availability"],
"context_set": ""
},
{"tag": "stories",
"patterns": ["tell me a story?", "can you tell me a story"],
"responses": ["I can't think of anything right now","it would be too long for me to speak","you would get bored if i do so"],
"context_set": ""
},
{"tag": "weather",
"patterns": ["get me weather updates?", "how's the weather", "weather news", "weather details"],
"responses": ["Fetching weather updates ..."],
"context_set": "weather"
},
{"tag": "google",
"patterns": ["googling", "search google", "google it", "google", "search"],
"responses": ["looking ..."],
"context_set": "google"
},
{"tag": "wikipedia",
"patterns": ["wikipedia", "wiki"],
"responses": ["Searching ..."],
"context_set": "wikipedia"
},
{"tag": "news",
"patterns": ["get me news updates?", "todays news", "top headlines", "current news", "news headlines"],
"responses": ["Getting news ..."],
"context_set": "news"
}
]
}