-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintents.json
43 lines (43 loc) · 1.96 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
{"intents": [
{"tag": "greeting",
"patterns": ["Hi", "How are you", "Is anyone there?", "Hello", "hey"],
"responses": ["Hello! Good to see you!", "Hi there, how can I help?", "Hey genius, what's up?"],
"context_set": ""
},
{"tag": "goodbye",
"patterns": ["cya", "See you later", "Goodbye", "I am Leaving", "Have a Good day", "bye"],
"responses": ["See you soon pal...", "Goodbye! Have a nice day."],
"context_set": ""
},
{"tag": "booking",
"patterns": ["book room", "do you have any rooms?", "room reservation", "I want to book room"],
"responses": ["Do you want a single room or multiple rooms?"],
"context_set": "rooms_num"
},
{"tag": "one_room",
"patterns": ["single room", "one room", "1 room"],
"responses": ["Okay, we got you covered for 1 room!"],
"context_filter": "rooms_num"
},
{"tag": "multiple_rooms",
"patterns": ["many", "multiple rooms", "more than 1 rooms"],
"responses": ["Okay, please visit our website and book multiple rooms!"],
"context_filter": "rooms_num"
},
{"tag": "name",
"patterns": ["what's the name of the hotel?", "does hotel have a name?", "what should I call that place?"],
"responses": ["'Hotel Pacific': The paradise of wonderland...", "It's called as 'Hotel Pacific'!"],
"context_set": ""
},
{"tag": "thanks",
"patterns": ["Thanks", "Thank you", "That's helpful", "Awesome, thanks", "Thanks for helping me"],
"responses": ["Happy to help!", "Love you 3000!", "My pleasure!"],
"context_set": ""
},
{"tag": "address",
"patterns": ["address", "Where is this place?", "where to find hotel?", "Give me location", "what is the address?"],
"responses": ["Our hotel is located at 'Malibu Point 10880, 90265' :)"],
"context_set": ""
}
]
}