amin3141 commited on
Commit
90de1c1
2 Parent(s): 51b9b1f 22eea2d

Merge pull request #8 from amin3141/new_hotel

Browse files
Files changed (8) hide show
  1. .gitignore +4 -1
  2. actions/actions.py +3 -5
  3. config.yml +13 -1
  4. data/nlu.yml +765 -86
  5. data/rules.yml +541 -10
  6. data/stories.yml +1 -36
  7. domain.yml +409 -30
  8. reviews.db +0 -0
.gitignore CHANGED
@@ -1,4 +1,7 @@
1
  *.tar.gz
2
  *.pyc
3
  results/
4
- models/
 
 
 
 
1
  *.tar.gz
2
  *.pyc
3
  results/
4
+ models/
5
+ .cache/
6
+ .config/
7
+ .keras
actions/actions.py CHANGED
@@ -19,10 +19,10 @@ class ActionDefaultFallback(Action):
19
  of the dialogue"""
20
 
21
  customer_id = "1526022105"
22
- corpus_id = 40
23
  header = {
24
  "customer-id": customer_id,
25
- "x-api-key": "zqt_WvU_2atFHgqYxxT2sQswwIUgogI8K3QeWs0oqA"
26
  }
27
  con = None
28
 
@@ -64,8 +64,6 @@ class ActionDefaultFallback(Action):
64
  first_resp = parsed["responseSet"][0]["response"][0]
65
  last_resp = parsed["responseSet"][0]["response"][-1]
66
  textQuery = []
67
- print(last_resp["score"])
68
- print(first_resp["score"])
69
  if last_resp["score"] < 0.3 or first_resp["score"] < 0.3:
70
  textQuery.append(
71
  "I'm sorry, I don't have any information about that.")
@@ -99,7 +97,7 @@ def print_responses(response_set, sqlite_cursor):
99
  t = result["text"]
100
  text_list.append(f"{highlight(fulltext, t)}")
101
  text_list.append(
102
- "*" + f" > \"Jumeirah Hotels & Resorts\" reviewed on {date}" + " *")
103
  text_list.append("\n")
104
  break
105
  return text_list
 
19
  of the dialogue"""
20
 
21
  customer_id = "1526022105"
22
+ corpus_id = 64
23
  header = {
24
  "customer-id": customer_id,
25
+ "x-api-key": "zqt_WvU_2ZweWSRlgL9671UWkbvrVWxOjhJpT07dPw"
26
  }
27
  con = None
28
 
 
64
  first_resp = parsed["responseSet"][0]["response"][0]
65
  last_resp = parsed["responseSet"][0]["response"][-1]
66
  textQuery = []
 
 
67
  if last_resp["score"] < 0.3 or first_resp["score"] < 0.3:
68
  textQuery.append(
69
  "I'm sorry, I don't have any information about that.")
 
97
  t = result["text"]
98
  text_list.append(f"{highlight(fulltext, t)}")
99
  text_list.append(
100
+ "*" + f" > \"Atlantis, Dubai\" reviewed on {date}" + " *")
101
  text_list.append("\n")
102
  break
103
  return text_list
config.yml CHANGED
@@ -4,6 +4,8 @@ language: en
4
 
5
  pipeline:
6
  - name: SpacyNLP
 
 
7
  - name: SpacyTokenizer
8
  - name: SpacyFeaturizer
9
  - name: RegexFeaturizer
@@ -19,9 +21,19 @@ pipeline:
19
  - name: ResponseSelector
20
  epochs: 100
21
  - name: FallbackClassifier
22
- threshold: 0.6
23
  ambiguity_threshold: 0.1
24
 
25
  # Configuration for Rasa Core.
26
  # https://rasa.com/docs/rasa/core/policies/
27
  policies:
 
 
 
 
 
 
 
 
 
 
 
4
 
5
  pipeline:
6
  - name: SpacyNLP
7
+ model: "en_core_web_md"
8
+ case_sensitive: False
9
  - name: SpacyTokenizer
10
  - name: SpacyFeaturizer
11
  - name: RegexFeaturizer
 
21
  - name: ResponseSelector
22
  epochs: 100
23
  - name: FallbackClassifier
24
+ threshold: 0.8
25
  ambiguity_threshold: 0.1
26
 
27
  # Configuration for Rasa Core.
28
  # https://rasa.com/docs/rasa/core/policies/
29
  policies:
30
+ # # No configuration for policies was provided. The following default policies were used to train your model.
31
+ # # If you'd like to customize them, uncomment and adjust the policies.
32
+ # # See https://rasa.com/docs/rasa/policies for more information.
33
+ - name: MemoizationPolicy
34
+ max_history: 1
35
+ - name: RulePolicy
36
+ - name: TEDPolicy
37
+ max_history: 1
38
+ epochs: 200
39
+ constrain_similarities: true
data/nlu.yml CHANGED
@@ -1,95 +1,774 @@
1
- # NLU training data for the bot.
2
  # This file stores the expected queries from the user.
3
  # Whenever a user utters a message, it is always matched to an intent.
4
- # This match comes with a confidence number that can be used to identify
5
  # how much related the intent is to the uttered message.
6
- # Minumum number of examples are 2 for each intent.
7
  # When writing a new intent, update domain.yml as well.
8
  version: "2.0"
9
 
10
  nlu:
11
- - intent: greet
12
- examples: |
13
- - hey
14
- - hello
15
- - hi
16
- - hello there
17
- - good morning
18
- - good evening
19
- - moin
20
- - hey there
21
- - let's go
22
- - hey dude
23
- - goodmorning
24
- - goodevening
25
- - good afternoon
26
 
27
- - intent: goodbye
28
- examples: |
29
- - good afternoon
30
- - cu
31
- - good by
32
- - cee you later
33
- - good night
34
- - bye
35
- - goodbye
36
- - have a nice day
37
- - see you around
38
- - bye bye
39
- - see you later
40
 
41
- - intent: affirm
42
- examples: |
43
- - yes
44
- - y
45
- - indeed
46
- - of course
47
- - that sounds good
48
- - correct
49
-
50
- - intent: deny
51
- examples: |
52
- - no
53
- - n
54
- - never
55
- - I don't think so
56
- - don't like that
57
- - no way
58
- - not really
59
-
60
- - intent: jumeirah_living
61
- examples: |
62
- - What is Jumeirah Living?
63
- - Is Jumeirah Living a package?
64
- - What can yo tell of Jumeirah Living?
65
- - Jumeirah Living?
66
- - Jumeirah?
67
-
68
- - intent: jumeirah_one
69
- examples: |
70
- - What is Jumeirah One?
71
- - Is Jumeirah One a package?
72
- - What can yo tell of Jumeirah One?
73
- - Jumeirah One?
74
- - Jumeirah?
75
-
76
- - intent: lost_and_found
77
- examples: |
78
- - What is your policy on list and found items?
79
- - I lost something, can it be returned?
80
- - Luggage lost
81
- - Lost my phone.
82
- - Return a lost items?
83
-
84
- - intent: jumeirah
85
- examples: |
86
- - What is Jumeirah?
87
- - Is Jumeirah a hotel or a brand?
88
-
89
- - intent: reservations
90
- examples: |
91
- - How many rooms do you have?
92
- - i want to reserve rooms
93
- - Rooms available
94
- - Book a room
95
- - Need a place to stay for the night
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # NLU training data for the bot.
2
  # This file stores the expected queries from the user.
3
  # Whenever a user utters a message, it is always matched to an intent.
4
+ # This match comes with a confidence number that can be used to identify
5
  # how much related the intent is to the uttered message.
6
+ # Minumum number of examples are 2 for each intent.
7
  # When writing a new intent, update domain.yml as well.
8
  version: "2.0"
9
 
10
  nlu:
11
+ - intent: greet
12
+ examples: |
13
+ - hey
14
+ - hello
15
+ - hi
16
+ - hello there
17
+ - good morning
18
+ - good evening
19
+ - moin
20
+ - hey there
21
+ - let's go
22
+ - hey dude
23
+ - goodmorning
24
+ - goodevening
25
+ - good afternoon
26
 
27
+ - intent: goodbye
28
+ examples: |
29
+ - cu
30
+ - good by
31
+ - cee you later
32
+ - good night
33
+ - bye
34
+ - goodbye
35
+ - have a nice day
36
+ - see you around
37
+ - bye bye
38
+ - see you later
 
39
 
40
+ - intent: booking_1
41
+ examples: |
42
+ - Do I need to pay a security deposit at Atlantis Dubai?
43
+ - What is the amount of security to pay for Atlantis Dubai?
44
+ - How much security do i need to pay at the hotel stay?
45
+ - is there any security to party?
46
+ - Is there anything to pay at checking in?
47
+ - How much is the security deposit?
48
+ - intent: booking_2
49
+ examples: |
50
+ - What’s the minimum age requirement to check-in to Atlantis Dubai?
51
+ - Whats the minimum age for the hotel?
52
+ - Is there any age limitation to do a check-in in the hotel?
53
+ - Age restrictions for checking-in?
54
+ - Wat are the age limitations for checking in the hotel?
55
+ - Hotel age restrictions?
56
+ - Can under 18 do a check-in in the hotel?
57
+ - intent: booking_3
58
+ examples: |
59
+ - What time is check-in and check-out at Atlantis Dubai?
60
+ - Check in timings?
61
+ - What time should we come for check in?
62
+ - What is the check out time of the hotel?
63
+ - How late can we check out of the hotel?
64
+ - How late can we check in the hotel?
65
+ - Whats the check in and out time?
66
+ - intent: booking_4
67
+ examples: |
68
+ - How can I get an early check-in?
69
+ - Can we do an early check in?
70
+ - How early can i check in the hotel?
71
+ -
72
+ - intent: booking_5
73
+ examples: |
74
+ - Can we use the resort facilities if we arrive before check-in?
75
+ - Use fascilities without checking in?
76
+ - Before checking in can we use the fascilities?
77
+ - Can guests use the resort fascilities?
78
+ - Can the resort fascilities be used before check-in?
79
+ - intent: booking_6
80
+ examples: |
81
+ - What's included in your Half Board Package?
82
+ - Fascilities in Half Board package?
83
+ - What does the Half Board package include?
84
+ - What does the Half Board include?
85
+ - What are the fascilities included in the Half Board package?
86
+ - Whats the difference between Half board package and other packages?
87
+ - intent: booking_7
88
+ examples: |
89
+ - Do you offer All Inclusive Packages?
90
+ - Any package with everything?
91
+ - Is there a package with everything included?
92
+ - Do you offer a package with everything included?
93
+ - Is there an all inclusive package?
94
+ - intent: rooms_1
95
+ examples: |
96
+ - Can you smoke in the rooms at Atlantis Dubai?
97
+ - Smoking rules in room?
98
+ - Can we smoke inside the room?
99
+ - Is smoking allowed in the rooms?
100
+ - Do you allow smoking inside the horel rooms?
101
+ - intent: rooms_2
102
+ examples: |
103
+ - Does Atlantis Dubai cater for people with disabilities?
104
+ - People with disabilities?
105
+ - For the disabled, do you provide wheelchairs?
106
+ - Is there special consideration for the disabled?
107
+ - How do you fasciliate the disabled?
108
+ - intent: rooms_3
109
+ examples: |
110
+ - Are there tea and coffee making facilities in the room?
111
+ - Is there a kettle in the room?
112
+ - Do you provide tea or coffee related fascilities inside the room?
113
+ - Do rooms have tean and coffee fascilities?
114
+ - Do you provide coffee maker inside the room?
115
+ - intent: rooms_4
116
+ examples: |
117
+ - Do you provide an iron and board in the rooms?
118
+ - Can we use irons in rooms?
119
+ - Can we iron our clothes in the room?
120
+ - Instead of sending clothes, can we iron them inside the room?
121
+ - Can we call in an iron and board from the room services?
122
+ - intent: rooms_5
123
+ examples: |
124
+ - Do you provide refrigerators in the room?
125
+ - Fridge in rooms?
126
+ - is there a fridge in the room?
127
+ - Do you provide fridge in rooms on requests or is it there by default?
128
+ - Do the rooms have fridge?
129
+ - intent: rooms_6
130
+ examples: |
131
+ - Do you provide microwaves in the room?
132
+ - microwaves in rooms?
133
+ - Is there a microwave in the rooms to heat food?
134
+ - How can we heat food in the room?
135
+ - On request, can you add in a microwave in the room?
136
+ - intent: rooms_7
137
+ examples: |
138
+ - Are roll-away/sofa beds available?
139
+ - Sofa cum bed in rooms?
140
+ - can we add an extra roll-away/sofa beds in the room?
141
+ - Do you provide a sofa cum bed in the room?
142
+ - Do you provide a roll away sofa in the room?
143
+ - intent: rooms_8
144
+ examples: |
145
+ - Do you have international adaptors?
146
+ - Power outlets in rooms?
147
+ - Do the rooms have a 110V outlet or the 220V?
148
+ - Do you provide international adaptors?
149
+ - Do you provide american charging outlets or Europian?
150
+ - intent: rooms_9
151
+ examples: |
152
+ - Do you have phone chargers?
153
+ - Do you provide charges for phones?
154
+ - Do you provide phone charges in the rooms?
155
+ - Do you provide phone charges in the room free of cost?
156
+ - Can i call in a phone charge from the room service?
157
+ - intent: rooms_10
158
+ examples: |
159
+ - If I book an Imperial Club Room, what's included?
160
+ - Whats included in the imperial club rooms?
161
+ - What's included if i book the Imperial Club Room?
162
+ - What do you provide extra if i book the Imperail Club Room?
163
+ - I want to boo the Imperial Club Room, what is included in the package?
164
+ - intent: visit_1
165
+ examples: |
166
+ - Do you allow pets in Atlantis Dubai?
167
+ - Pets are allowed?
168
+ - Can i bring my dog to the hotel?
169
+ - Are cats allowed in the hotel?
170
+ - Is there a no pets policy in Atlantis Dubai?
171
+ - intent: visit_2
172
+ examples: |
173
+ - Is there free WiFi at Atlantis Dubai?
174
+ - Free wifi?
175
+ - Do you provide free internet services in the hotel?
176
+ - Atlantis Dubai have free wifi service?
177
+ - do Atlantis Dubai charge for wifi?
178
+ - intent: visit_3
179
+ examples: |
180
+ - What’s the weather in Dubai like?
181
+ - How's the weather nearby?
182
+ - what's the temprature in dubai?
183
+ - how cold is there aroud Atlantis Dubai?
184
+ - what is the normal temprature nearby Atlantis Dubai?
185
+ - intent: visit_4
186
+ examples: |
187
+ - Do you have parking for hotel guests at Atlantis Dubai?
188
+ - parking spots for the hotel?
189
+ - is there parking available at Atlantis Dubai
190
+ - how far is parking from Atlantis Dubai?
191
+ - do Atlantis Dubai own parking spot?
192
+ - intent: visit_5
193
+ examples: |
194
+ - Do you offer parking for non-hotel guests?
195
+ - Parking for hotel guests?
196
+ - where to park car at hotel do Atlantis Dubai?
197
+ - Parking for hotel guests?
198
+ - intent: visit_6
199
+ examples: |
200
+ - Do you provide transportation from and to the airport or port?
201
+ - From the airpot and back, do you offer transportation?
202
+ - is pick and drop facility available for guests at Atlantis Dubai?
203
+ - do Atlantis Dubai charge for transportation?
204
+ - intent: visit_7
205
+ examples: |
206
+ - How much is a taxi from Dubai Airport to Atlantis?
207
+ - Taxi cost from the Dubai airport?
208
+ - Average fare for taxi from airport to Atlantis Dubai?
209
+ - Cost for taxi from Dubai port to hotel?
210
+ - intent: visit_8
211
+ examples: |
212
+ - How much is a taxi from Abu Dhabi Airport to Atlantis?
213
+ - Taxi cost form the Abu Dhabi airport?
214
+ - Average fare for taxi from Abu Dhabi port to Atlantis Dubai?
215
+ - How much a taxi charge to Atlantis Dubai from Abu Dhabi airport?
216
+ - intent: visit_9
217
+ examples: |
218
+ - Do you offer a free shuttle bus to and from the airport?
219
+ - Shuttle service to and from the airport?
220
+ - Is there shuttle service available from airport?
221
+ - shuttle service to and from the airport?
222
+ - intent: visit_10
223
+ examples: |
224
+ - Do you provide free shuttle buses to the malls?
225
+ - Shuttle service to and from the mall?
226
+ - intent: visit_11
227
+ examples: |
228
+ - What's the dress code during Ramadan?
229
+ - Dress code during Ramadan?
230
+ - is Ramdan dress code different from normal days?
231
+ - Ramdan dress code?
232
+ - intent: visit_12
233
+ examples: |
234
+ - Are there any prayer rooms in Atlantis Dubai?
235
+ - Mosque in the hotel?
236
+ - wher can a guest offer prayer at Atlantis Dubai?
237
+ - do Atlantis Dubai have imam there to lead prayer?
238
+ - do Atlantis Dubai own a mosque?
239
+ - intent: visit_13
240
+ examples: |
241
+ - Can I visit Atlantis Dubai if I’m not staying at the hotel?
242
+ - Visiting hours for the hotel?
243
+ - intent: visit_14
244
+ examples: |
245
+ - Do you have a medical clinic or pharmacy in the hotel?
246
+ - Are the doctor available?
247
+ - intent: visit_15
248
+ examples: |
249
+ - Do you provide hotel guests with towels for the beach and the pools?
250
+ - Towels for the hotel guests when visiting the beach or pool?
251
+ - intent: visit_16
252
+ examples: |
253
+ - How do I check out?
254
+ - What's the process to check out of the hotel?
255
+ - intent: visit_17
256
+ examples: |
257
+ - How can I arrange a late check-out?
258
+ - Can i change my check out times?
259
+ - intent: visit_18
260
+ examples: |
261
+ - Can I still use the hotel facilities once I've checked out?
262
+ - Use hotel fascilities when cheked out?
263
+ - intent: visit_19
264
+ examples: |
265
+ - How can I provide feedback on my stay?
266
+ - Where can i find the feedback forms?
267
+ - intent: visit_20
268
+ examples: |
269
+ - How can I get a copy of my bill?
270
+ - Do you send a copy of my bill?
271
+ - intent: visit_21
272
+ examples: |
273
+ - I left something at the hotel, can you help me find it?
274
+ - Lost something in the hotel, can you help me find it?
275
+ - intent: restaurant_1
276
+ examples: |
277
+ - Which restaurants are suitable for families at Atlantis Dubai?
278
+ - Restaurants for faimiles?
279
+ - Are there restaurants where families can dine in?
280
+ - Can families dine in the restaurants?
281
+ - Are some of your restaurants family safe?
282
+ - Can we bring families to any of your restaurants?
283
+ - Family restaurants?
284
+ - Good family restaurant
285
+ - Good restaurant to take my kids and wife
286
+ - Food options for families
287
+ - intent: restaurant_2
288
+ examples: |
289
+ - Which restaurants are suitable for couples at Atlantis Dubai?
290
+ - Restaurants for couples?
291
+ - Nice restaurant to go with my wife
292
+ - Nice restaurant to go with my hubby
293
+ - food for a married couple
294
+ - intent: restaurant_3
295
+ examples: |
296
+ - Can I book brunch at Atlantis Dubai?
297
+ - Brunch at the hotel restaurants?
298
+ - Do you have brunch options
299
+ - Is brunch available
300
+ - Brunch at Atlantis
301
+ - intent: restaurant_4
302
+ examples: |
303
+ - Is there a minimum age policy at your restaurants?
304
+ - Any age limits on goind to the restaurants?
305
+ - youngest age at restaurant
306
+ - are children allowed to eat at the restaurants
307
+ - can babies dine in the hotel?
308
+ - intent: restaurant_5
309
+ examples: |
310
+ - What’s included in my Half Board Package?
311
+ - What is Half Boad package?
312
+ - what meals are in the half Board pkg
313
+ - what food do i get in the Half Board
314
+ - is breakfast included in the Half Board?
315
+ - intent: restaurant_6
316
+ examples: |
317
+ - What's the smoking policy for Atlantis Dubai’s restaurants?
318
+ - Can we smoke in the restaurants?
319
+ - can I smoke cigars at the restaurant?
320
+ - can I smoke weed at the restaurant?
321
+ - is a joint allowed at the dining?
322
+ - intent: restaurant_7
323
+ examples: |
324
+ - Do you provide non-smoking areas?
325
+ - Are there any non-smoking areas in restaurants?
326
+ - I'm allergic to cigarette smoke. is there a zone I can sit?
327
+ - is there a no smoke zone
328
+ - smoke free sitting areas
329
+ - intent: restaurant_8
330
+ examples: |
331
+ - Do you have a dress code in your restaurants?
332
+ - What is the dress code for the restaurants?
333
+ - can I wear a wife beater to the restaurant
334
+ - what's the minimum dress to the restaurant
335
+ - proper attire for restaurant
336
+ - intent: restaurant_9
337
+ examples: |
338
+ - Which restaurants have live entertainment at Atlantis Dubai?
339
+ - Where can i enjoy food with some live shows?
340
+ - do you have live singing at the restaurant
341
+ - is there music band at the restaurant
342
+ - can I find Arabic music at the restaurant
343
+ - intent: restaurant_10
344
+ examples: |
345
+ - Is there a cancellation policy for bookings at Atlantis Dubai restaurants?
346
+ - Can i cancel my bookings in the restaurants?
347
+ - How do i cancel my book at the restaurant?
348
+ - I need to cancel my bookings for the restaurant.
349
+ - I cannot come to the restaurant, is there a cancel policy at the restaurant?
350
+ - intent: restaurant_11
351
+ examples: |
352
+ - What is the minimum age to drink alcohol?
353
+ - Can kids drink alcohol?
354
+ - intent: restaurant_12
355
+ examples: |
356
+ - Am I able to book Afternoon Tea in any of your restaurants?
357
+ - Afternoon tea bookings?
358
+ - do you offer afternoon tea?
359
+ - can I visit a restaurant for afternoon tea?
360
+ - afternoon tea
361
+ - intent: restaurant_13
362
+ examples: |
363
+ - Do you have a minimum spend in any of your restaurants or bars?
364
+ - Is there any minimum requirement for spending in the restaurants?
365
+ - spending limits at your restaurant
366
+ - minimum payment at restaurants
367
+ - is there a smallest amount at your bar
368
+ - intent: restaurant_14
369
+ examples: |
370
+ - How do I make a reservation at your restaurants or bars?
371
+ - Can you help me make a reservation at the restaurants?
372
+ - where do I book a reservation at the restaurant
373
+ - where do I book a bar reservation
374
+ - telephone number for restaurant reservation
375
+ - intent: restaurant_15
376
+ examples: |
377
+ - How can I request copies of your menus?
378
+ - Can i get a copy of the menus at the restaurants?
379
+ - menu listing
380
+ - where can i get a menu
381
+ - are your menus online
382
+ - intent: restaurant_16
383
+ examples: |
384
+ - How many restaurants and bars do you have?
385
+ - How many restaurants do you have?
386
+ - how many eateries on site
387
+ - number of food places
388
+ - num food venues
389
+ - intent: restaurant_17
390
+ examples: |
391
+ - Do you offer a good variety of vegetarian food?
392
+ - Vegan food, do the restaurants offer it?
393
+ - what are the veg options
394
+ - vegetarian meal options
395
+ - do you offer hindu meals
396
+ - intent: restaurant_18
397
+ examples: |
398
+ - Do you cater to lactose intolerance?
399
+ - I am lactose intolerance, can you help?
400
+ - dairy free options
401
+ - lacstose-free meal options
402
+ - do you serve lactose free items
403
+ - intent: restaurant_19
404
+ examples: |
405
+ - Do you have vegan options?
406
+ - Restaurants serving vegan food?
407
+ - meat free options
408
+ - meals free of animal product
409
+ - do you offer vegan meals
410
+ - intent: restaurant_20
411
+ examples: |
412
+ - Do you cater to people with a gluten intolerance?
413
+ - I am gluten intolerant. Can you help?
414
+ - gluten free options
415
+ - do you offer gluten free meals
416
+ - meals sans gluten
417
+ - intent: restaurant_21
418
+ examples: |
419
+ - How do I arrange a cake for a special occasion?
420
+ - Cakes and sweets for special occasion?
421
+ - What's the fee for a cake with a message
422
+ - can i get a dessert delivered for a birthday?
423
+ - anniversary cake delivery?
424
+ - intent: restaurant_22
425
+ examples: |
426
+ - Can you assist me in arranging a special celebration?
427
+ - Birthday party arrangements?
428
+ - can you help me arrange a cake for someone
429
+ - can you arrange flowers for me?
430
+ - telephone numbers for celebration arrangements
431
+ - intent: restaurant_23
432
+ examples: |
433
+ - Do you offer catering services?
434
+ - Catering services?
435
+ - catering
436
+ - do you cater food to the conference halls?
437
+ - is catering offered?
438
+ - intent: restaurant_24
439
+ examples: |
440
+ - Can I get take away or delivery?
441
+ - Take away services at restaurants?
442
+ - Can I get food to go?
443
+ - which restaurants offer delivery service?
444
+ - can I get take away from restaurants
445
+ - intent: restaurant_25
446
+ examples: |
447
+ - Are there restrictions during Ramadan?
448
+ - Are restaurants open during Ramadan?
449
+ - ramazan hours at restaurant
450
+ - is restaurant open in rumzan
451
+ - can i get in room dining during Ramadan
452
+ - intent: restaurant_26
453
+ examples: |
454
+ - Are children allowed in your bars?
455
+ - Can i bring children in the bar?
456
+ - minimum age to enter a bar
457
+ - can i bring my kid to the bar
458
+ - can i bring infant in stroller to bar
459
+ - intent: restaurant_27
460
+ examples: |
461
+ - If I'm late, how long will you hold my reservation for?
462
+ - Reservations have a buffer of how much time.
463
+ - how long will you hold my reservation
464
+ - reservation hold time
465
+ - arrived late for reservation
466
+ - intent: restaurant_28
467
+ examples: |
468
+ - How do I make a group booking?
469
+ - Group booking?
470
+ - telephone number for group bookings
471
+ - group reservation
472
+ - book for my party
473
+ - intent: restaurant_29
474
+ examples: |
475
+ - What time is happy hour?
476
+ - What is happy hour?
477
+ - is there a happy hour?
478
+ - happy hour times?
479
+ - timeframe for happy hour
480
+ - intent: restaurant_30
481
+ examples: |
482
+ - Do you have a ladies night?
483
+ - Is there any ladies night out?
484
+ - is there a night for women that's free
485
+ - girl's night
486
+ - lady's night option?
487
+ - intent: dolphin_1
488
+ examples: |
489
+ - How much is a dolphin experience?
490
+ - Whats the cost for the dolphin experience?
491
+ - intent: dolphin_2
492
+ examples: |
493
+ - What's the minimum age for a dolphin experience?
494
+ - Any minimum age for the dolhpin show?
495
+ - intent: dolphin_3
496
+ examples: |
497
+ - If I'm a hotel guest, do I receive a discount?
498
+ - Discounts for guests?
499
+ - intent: dolphin_4
500
+ examples: |
501
+ - Are photos included in the price I pay?
502
+ - Official photos are for purchase or free?
503
+ - intent: dolphin_5
504
+ examples: |
505
+ - What's included in the price I pay?
506
+ - What comes with the ticket?
507
+ - intent: dolphin_6
508
+ examples: |
509
+ - Do I have to be able to swim?
510
+ - I don't know swimming, can i still come?
511
+ - intent: dolphin_7
512
+ examples: |
513
+ - If I book a dolphin or sea lion interaction, am I allowed to use the hotel’s pools and beaches?
514
+ - hotel’s pools and beaches are open for the ticket holders for dolphin interactions?
515
+ - intent: dolphin_8
516
+ examples: |
517
+ - How much is a sea lion experience?
518
+ - What's the cost for the sea lion show?
519
+ - intent: dolphin_9
520
+ examples: |
521
+ - What's the minimum age to do a sea lion experience?
522
+ - Minumum age for the sea lion show?
523
+ - intent: dolphin_10
524
+ examples: |
525
+ - Do you provide parking?
526
+ - Parking for hotel?
527
+ - intent: dolphin_11
528
+ examples: |
529
+ - Do you recommend/make interaction bookings for guests with disabilities?
530
+ - I am disabled, is the dolhpin show still enjoyable?
531
+ - intent: dolphin_12
532
+ examples: |
533
+ - Am I allowed to book an interaction if I'm pregnant?
534
+ - Interaction in pregnency?
535
+ - intent: dolphin_13
536
+ examples: |
537
+ - Am I allowed take my camera in the water?
538
+ - Can i bring my own camera under water?
539
+ - intent: aqua_1
540
+ examples: |
541
+ - What's the price for adults and for children?
542
+ - Whats the price for aqua for children?
543
+ - intent: aqua_2
544
+ examples: |
545
+ - What are the opening times for Aquaventure Waterpark?
546
+ - Timings for the Aquaventure Waterpark?
547
+ - intent: aqua_3
548
+ examples: |
549
+ - Can I pay extra for a Fast Track Pass or VIP Access?
550
+ - Pay extra for the fast track pass or vip access?
551
+ - intent: aqua_4
552
+ examples: |
553
+ - Do you charge for lockers?
554
+ - Locker charges?
555
+ - intent: aqua_5
556
+ examples: |
557
+ - Do you charge for towels?
558
+ - Charges for towel?
559
+ - Do you charge for towels or they can be borrowed with returnable deposit?
560
+ - Do you need to take towels to water park?
561
+ - Do guest staying at the hotels gets provided with towels for the water park?
562
+ - intent: aqua_6
563
+ examples: |
564
+ - Do you provide parking?
565
+ - Parking for the hotel Aquaventure Waterpark?
566
+ - Do I have to pay for parking if I have a disabled parking placard?
567
+ - Is there complimentary parking for guests of the hotel?
568
+ - Is there is an underground car park available?
569
+ - intent: aqua_7
570
+ examples: |
571
+ - Are we allowed to bring our own food and drink?
572
+ - Can we bring our own food?
573
+ - Is it true that your not allowed to bring your own food into your hotel room?
574
+ - Whats the policy for bringing your own food and drinks into the hotel?
575
+ - intent: aqua_8
576
+ examples: |
577
+ - What's the minimum age to access the waterpark alone?
578
+ - Can kids come to the Aquaventure Waterpark?
579
+ - intent: aqua_9
580
+ examples: |
581
+ - How long does it take to do all of the rides?
582
+ - How much does it take for it all in Aquaventure Waterpark?
583
+ - How long can I normally expect a visit to every ride?
584
+ - How Long It Would Take to go on every ride?
585
+ - How long will it take to visit the rides and attractions?
586
+ - How long does it take to go down the slides?
587
+ - How many riders can go on at a time?
588
+ - What rides can I go on if I am Pregnant?
589
+ - Are there any planned closures at the Water Park?
590
+ - intent: aqua_10
591
+ examples: |
592
+ - If I book tickets to the waterpark, does this include access to The Lost Chambers Aquarium?
593
+ - What's included in the Aquaventure Waterpark ticket?
594
+ - Does the ticket to water park includes access to all the rides?
595
+ - Does the ticket to water park includes beverages?
596
+ - Does the ticket to water park includes locker rentals?
597
+ - Does the ticket to water park includes towels?
598
+ - intent: aqua_11
599
+ examples: |
600
+ - What's the dress policy?
601
+ - Whats the dress policy for Aquaventure Waterpark?
602
+ - Dress code for Aquaventure Waterpark?
603
+ - Waterpark has a swim attire code?
604
+ - What can I wear in waterpark?
605
+ - Can I wear my prothesis on when I go to water slides/park?
606
+ - Do you allow Water Shoes?
607
+ - intent: aqua_12
608
+ examples: |
609
+ - If I bring my nanny, do I need to pay for them too
610
+ - Can i bring a nanny in Aquaventure Waterpark?
611
+ - Does aduaventure has Babysitting services?
612
+ - Is it any day care centre or some nani service available in Aquaventure park?
613
+ - Can you avail of the Nanny services at aquaventurepark?
614
+ - intent: aqua_13
615
+ examples: |
616
+ - Are we allowed to bring buggies into the waterpark?
617
+ - Can we bring buggies in Aquaventure Waterpark?
618
+ - Are Strollers/buggy's allowed into the Water Park?
619
+ - Is designated stroller parking available?
620
+ - intent: aqua_14
621
+ examples: |
622
+ - Do you cater for people with disabilities?
623
+ - disabilities and Aquaventure Waterpark?
624
+ - Are your rides and attractions ADA accessible?
625
+ - Do you offer special rates for disabled guests?
626
+ - Do you provide discount for disabled guests?
627
+ - Do you cater for wheelchair users and people with disabilities?
628
+ - intent: aqua_15
629
+ examples: |
630
+ - Am I allowed to visit the waterpark if I'm pregnant?
631
+ - pregnency and Aquaventure Waterpark?
632
+ - Can You Go Down A Water Slide If You're Pregnant?
633
+ - intent: aqua_16
634
+ examples: |
635
+ - Am I allowed to use my camera and selfie stick on the water slides?
636
+ - Can i bring my own camera to Aquaventure Waterpark?
637
+ - Can I use my mobile phone, action camera or selfie stick at the waterpark?
638
+ - Can we use a gopro on the water park rides even if we don't have a wrist/body strap?
639
+ - intent: kids_1
640
+ examples: |
641
+ - What is Atlantis Kids Club?
642
+ - What happens in the Atlantis Kids Club?
643
+ - intent: kids_2
644
+ examples: |
645
+ - What are the hours of operation?
646
+ - What are the timings for Atlantis Kids Club?
647
+ - intent: kids_3
648
+ examples: |
649
+ - What are the fees for each child?
650
+ - Fees for Atlantis Kids Club?
651
+ - intent: kids_4
652
+ examples: |
653
+ - Do you offer special theme nights?
654
+ - Atlantis Kids Club at night?
655
+ - intent: kids_5
656
+ examples: |
657
+ - What's the age limit for Kids Club?
658
+ - Age limit for Atlantis Kids Club
659
+ - intent: kids_6
660
+ examples: |
661
+ - My child is still in diapers, are they able to attend Kids Club?
662
+ - Child wears diapers, still applicable for Atlantis Kids Club?
663
+ - intent: kids_7
664
+ examples: |
665
+ - Is Lunch provided?
666
+ - Is lunch inlucded in Atlantis Kids Club?
667
+ - intent: kids_8
668
+ examples: |
669
+ - Do you provide snacks for children who are in the Atlantis Kids Club?
670
+ - Do we have to bring our own snacks in Atlantis Kids Club?
671
+ - intent: kids_9
672
+ examples: |
673
+ - If I'm a hotel guest, do I have to pay extra?
674
+ - For hotel guests, do i have to pay extra?
675
+ - intent: kids_10
676
+ examples: |
677
+ - Are tours given at Atlantis Kids Club?
678
+ - I want to take a tour of Atlantis Kids Club
679
+ - intent: kids_11
680
+ examples: |
681
+ - Do you offer babysitting services?
682
+ - Is there babysitting services in the Atlantis Kids Club?
683
+ - intent: kids_12
684
+ examples: |
685
+ - Can I book a party in Kids Club?
686
+ - Arrange party in Atlantis Kids Club?
687
+ - intent: kids_13
688
+ examples: |
689
+ - Can adults go inside the Kids Club during a birthday party?
690
+ - Adults in Atlantis Kids Club for parties?
691
+ - intent: kids_14
692
+ examples: |
693
+ - What is The Zone?
694
+ - Atlantis Kids Club Zone?
695
+ - intent: kids_15
696
+ examples: |
697
+ - What activities do you offer?
698
+ - Activities in Atlantis Kids Club?
699
+ - intent: kids_16
700
+ examples: |
701
+ - When is The Zone open?
702
+ - Timing for Atlantis Kids Club Zone?
703
+ - intent: kids_17
704
+ examples: |
705
+ - What is age policy?
706
+ - Age restrictions for Atlantis Kids Club?
707
+ - intent: kids_18
708
+ examples: |
709
+ - Can parents join?
710
+ - Parents in Atlantis Kids Club?
711
+ - intent: kids_19
712
+ examples: |
713
+ - What is the admission fee?
714
+ - admission fee for Atlantis Kids Club?
715
+ - intent: kids_20
716
+ examples: |
717
+ - Do you offer meals?
718
+ - Meals in Atlantis Kids Club?
719
+ - intent: kids_21
720
+ examples: |
721
+ - Do you serve drinks and snacks?
722
+ - Drinks and snaks in Atlantis Kids Club?
723
+ - intent: kids_22
724
+ examples: |
725
+ - How do my children pay for their snacks and soft drinks?
726
+ - Payment for snaks in Atlantis Kids Club?
727
+ - intent: kids_23
728
+ examples: |
729
+ - Can I book a party at The Zone?
730
+ - Party in Atlantis Kids Club Zone?
731
+ - intent: spa_1
732
+ examples: |
733
+ - What time does the spa and the fitness center open?
734
+ - Timings for spa and fitness?
735
+ - intent: spa_2
736
+ examples: |
737
+ - Is the spa and fitness center access complimentary for in-house guests?
738
+ - In-house guests complimentary for guests?
739
+ - intent: pool_1
740
+ examples: |
741
+ - Which water sports activities do you offer?
742
+ - Activities in water sports?
743
+ - intent: pool_2
744
+ examples: |
745
+ - What are the pool and beach timings?
746
+ - Timings for pool and beach?
747
+ - intent: pool_3
748
+ examples: |
749
+ - Do you have lifeguards supervising your pools and beaches?
750
+ - lifeguards at pools and beaches?
751
+ - intent: retail_1
752
+ examples: |
753
+ - Do you have a mobile phone shop in the resort?
754
+ - My phone broke, can i get it repaired?
755
+ - intent: retail_2
756
+ examples: |
757
+ - Do you have a pharmacy at the resort?
758
+ - Clinic and pharmacy at the resort?
759
+ - intent: retail_3
760
+ examples: |
761
+ - Do you have a souvenir shop?
762
+ - Is there a Souvenir shop in the resort?
763
+ - intent: retail_4
764
+ examples: |
765
+ - Do you have a swimwear shop?
766
+ - Is there a swimwear shop in the resort?
767
+ - intent: retail_5
768
+ examples: |
769
+ - How much are the Palm Monorail tickets for?
770
+ - Pricing for the tickets in Palm Monorail?
771
+ - intent: retail_6
772
+ examples: |
773
+ - What are the Palm Monorail timings?
774
+ - Timings for Palm Monorail?
data/rules.yml CHANGED
@@ -1,16 +1,547 @@
1
- # Rules, along with stories are used as training data for the bot and define
2
- # how a conversation should always happen provided an intent.
3
  # If in doubt, use stories and do not over-use rules.
4
  version: "2.0"
5
 
6
  rules:
 
 
 
 
7
 
8
- - rule: Say goodbye anytime the user says goodbye
9
- steps:
10
- - intent: goodbye
11
- - action: utter_goodbye
12
 
13
- - rule: Ask the user to rephrase whenever they send a message with low NLU confidence
14
- steps:
15
- - intent: nlu_fallback
16
- - action: zir_action_fallback
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Rules, along with stories are used as training data for the bot and define
2
+ # how a conversation should always happen provided an intent.
3
  # If in doubt, use stories and do not over-use rules.
4
  version: "2.0"
5
 
6
  rules:
7
+ - rule: Say Hi
8
+ steps:
9
+ - intent: greet
10
+ - action: utter_greet
11
 
12
+ - rule: Say goodbye anytime the user says goodbye
13
+ steps:
14
+ - intent: goodbye
15
+ - action: utter_goodbye
16
 
17
+ - rule: Ask the user to rephrase whenever they send a message with low NLU confidence
18
+ steps:
19
+ - intent: nlu_fallback
20
+ - action: zir_action_fallback
21
+
22
+ - rule: booking_1
23
+ steps:
24
+ - intent: booking_1
25
+ - action: utter_booking_1
26
+ - rule: booking_2
27
+ steps:
28
+ - intent: booking_2
29
+ - action: utter_booking_2
30
+ - rule: booking_3
31
+ steps:
32
+ - intent: booking_3
33
+ - action: utter_booking_3
34
+ - rule: booking_4
35
+ steps:
36
+ - intent: booking_4
37
+ - action: utter_booking_4
38
+ - rule: booking_5
39
+ steps:
40
+ - intent: booking_5
41
+ - action: utter_booking_5
42
+ - rule: booking_6
43
+ steps:
44
+ - intent: booking_6
45
+ - action: utter_booking_6
46
+ - rule: booking_7
47
+ steps:
48
+ - intent: booking_7
49
+ - action: utter_booking_7
50
+
51
+ - rule: rooms_1
52
+ steps:
53
+ - intent: rooms_1
54
+ - action: utter_rooms_1
55
+ - rule: rooms_2
56
+ steps:
57
+ - intent: rooms_2
58
+ - action: utter_rooms_2
59
+ - rule: rooms_3
60
+ steps:
61
+ - intent: rooms_3
62
+ - action: utter_rooms_3
63
+ - rule: rooms_4
64
+ steps:
65
+ - intent: rooms_4
66
+ - action: utter_rooms_4
67
+ - rule: rooms_5
68
+ steps:
69
+ - intent: rooms_5
70
+ - action: utter_rooms_5
71
+ - rule: rooms_6
72
+ steps:
73
+ - intent: rooms_6
74
+ - action: utter_rooms_6
75
+ - rule: rooms_7
76
+ steps:
77
+ - intent: rooms_7
78
+ - action: utter_rooms_7
79
+ - rule: rooms_8
80
+ steps:
81
+ - intent: rooms_8
82
+ - action: utter_rooms_8
83
+ - rule: rooms_9
84
+ steps:
85
+ - intent: rooms_9
86
+ - action: utter_rooms_9
87
+ - rule: rooms_10
88
+ steps:
89
+ - intent: rooms_10
90
+ - action: utter_rooms_10
91
+
92
+ - rule: visit_1
93
+ steps:
94
+ - intent: visit_1
95
+ - action: utter_visit_1
96
+ - rule: visit_2
97
+ steps:
98
+ - intent: visit_2
99
+ - action: utter_visit_2
100
+ - rule: visit_3
101
+ steps:
102
+ - intent: visit_3
103
+ - action: utter_visit_3
104
+ - rule: visit_4
105
+ steps:
106
+ - intent: visit_4
107
+ - action: utter_visit_4
108
+ - rule: visit_5
109
+ steps:
110
+ - intent: visit_5
111
+ - action: utter_visit_5
112
+ - rule: visit_6
113
+ steps:
114
+ - intent: visit_6
115
+ - action: utter_visit_6
116
+ - rule: visit_7
117
+ steps:
118
+ - intent: visit_7
119
+ - action: utter_visit_7
120
+ - rule: visit_8
121
+ steps:
122
+ - intent: visit_8
123
+ - action: utter_visit_8
124
+ - rule: visit_9
125
+ steps:
126
+ - intent: visit_9
127
+ - action: utter_visit_9
128
+ - rule: visit_10
129
+ steps:
130
+ - intent: visit_10
131
+ - action: utter_visit_10
132
+ - rule: visit_11
133
+ steps:
134
+ - intent: visit_11
135
+ - action: utter_visit_11
136
+ - rule: visit_12
137
+ steps:
138
+ - intent: visit_12
139
+ - action: utter_visit_12
140
+ - rule: visit_13
141
+ steps:
142
+ - intent: visit_13
143
+ - action: utter_visit_13
144
+ - rule: visit_14
145
+ steps:
146
+ - intent: visit_14
147
+ - action: utter_visit_14
148
+ - rule: visit_15
149
+ steps:
150
+ - intent: visit_15
151
+ - action: utter_visit_15
152
+ - rule: visit_16
153
+ steps:
154
+ - intent: visit_16
155
+ - action: utter_visit_16
156
+ - rule: visit_17
157
+ steps:
158
+ - intent: visit_17
159
+ - action: utter_visit_17
160
+ - rule: visit_18
161
+ steps:
162
+ - intent: visit_18
163
+ - action: utter_visit_18
164
+ - rule: visit_19
165
+ steps:
166
+ - intent: visit_19
167
+ - action: utter_visit_19
168
+ - rule: visit_20
169
+ steps:
170
+ - intent: visit_20
171
+ - action: utter_visit_20
172
+ - rule: visit_21
173
+ steps:
174
+ - intent: visit_21
175
+ - action: utter_visit_21
176
+ - rule: restaurant_1
177
+ steps:
178
+ - intent: restaurant_1
179
+ - action: utter_restaurant_1
180
+ - rule: restaurant_2
181
+ steps:
182
+ - intent: restaurant_2
183
+ - action: utter_restaurant_2
184
+ - rule: restaurant_3
185
+ steps:
186
+ - intent: restaurant_3
187
+ - action: utter_restaurant_3
188
+ - rule: restaurant_4
189
+ steps:
190
+ - intent: restaurant_4
191
+ - action: utter_restaurant_4
192
+ - rule: restaurant_5
193
+ steps:
194
+ - intent: restaurant_5
195
+ - action: utter_restaurant_5
196
+ - rule: restaurant_6
197
+ steps:
198
+ - intent: restaurant_6
199
+ - action: utter_restaurant_6
200
+ - rule: restaurant_7
201
+ steps:
202
+ - intent: restaurant_7
203
+ - action: utter_restaurant_7
204
+ - rule: restaurant_8
205
+ steps:
206
+ - intent: restaurant_8
207
+ - action: utter_restaurant_8
208
+ - rule: restaurant_9
209
+ steps:
210
+ - intent: restaurant_9
211
+ - action: utter_restaurant_9
212
+ - rule: restaurant_10
213
+ steps:
214
+ - intent: restaurant_10
215
+ - action: utter_restaurant_10
216
+ - rule: restaurant_11
217
+ steps:
218
+ - intent: restaurant_11
219
+ - action: utter_restaurant_11
220
+ - rule: restaurant_12
221
+ steps:
222
+ - intent: restaurant_12
223
+ - action: utter_restaurant_12
224
+ - rule: restaurant_13
225
+ steps:
226
+ - intent: restaurant_13
227
+ - action: utter_restaurant_13
228
+ - rule: restaurant_14
229
+ steps:
230
+ - intent: restaurant_14
231
+ - action: utter_restaurant_14
232
+ - rule: restaurant_15
233
+ steps:
234
+ - intent: restaurant_15
235
+ - action: utter_restaurant_15
236
+ - rule: restaurant_16
237
+ steps:
238
+ - intent: restaurant_16
239
+ - action: utter_restaurant_16
240
+ - rule: restaurant_17
241
+ steps:
242
+ - intent: restaurant_17
243
+ - action: utter_restaurant_17
244
+ - rule: restaurant_18
245
+ steps:
246
+ - intent: restaurant_18
247
+ - action: utter_restaurant_18
248
+ - rule: restaurant_19
249
+ steps:
250
+ - intent: restaurant_19
251
+ - action: utter_restaurant_19
252
+ - rule: restaurant_20
253
+ steps:
254
+ - intent: restaurant_20
255
+ - action: utter_restaurant_20
256
+ - rule: restaurant_21
257
+ steps:
258
+ - intent: restaurant_21
259
+ - action: utter_restaurant_21
260
+ - rule: restaurant_22
261
+ steps:
262
+ - intent: restaurant_22
263
+ - action: utter_restaurant_22
264
+ - rule: restaurant_23
265
+ steps:
266
+ - intent: restaurant_23
267
+ - action: utter_restaurant_23
268
+ - rule: restaurant_24
269
+ steps:
270
+ - intent: restaurant_24
271
+ - action: utter_restaurant_24
272
+ - rule: restaurant_25
273
+ steps:
274
+ - intent: restaurant_25
275
+ - action: utter_restaurant_25
276
+ - rule: restaurant_26
277
+ steps:
278
+ - intent: restaurant_26
279
+ - action: utter_restaurant_26
280
+ - rule: restaurant_27
281
+ steps:
282
+ - intent: restaurant_27
283
+ - action: utter_restaurant_27
284
+ - rule: restaurant_28
285
+ steps:
286
+ - intent: restaurant_28
287
+ - action: utter_restaurant_28
288
+ - rule: restaurant_29
289
+ steps:
290
+ - intent: restaurant_29
291
+ - action: utter_restaurant_29
292
+ - rule: restaurant_30
293
+ steps:
294
+ - intent: restaurant_30
295
+ - action: utter_restaurant_30
296
+ - rule: dolphin_1
297
+ steps:
298
+ - intent: dolphin_1
299
+ - action: utter_dolphin_1
300
+ - rule: dolphin_2
301
+ steps:
302
+ - intent: dolphin_2
303
+ - action: utter_dolphin_2
304
+ - rule: dolphin_3
305
+ steps:
306
+ - intent: dolphin_3
307
+ - action: utter_dolphin_3
308
+ - rule: dolphin_4
309
+ steps:
310
+ - intent: dolphin_4
311
+ - action: utter_dolphin_4
312
+ - rule: dolphin_5
313
+ steps:
314
+ - intent: dolphin_5
315
+ - action: utter_dolphin_5
316
+ - rule: dolphin_6
317
+ steps:
318
+ - intent: dolphin_6
319
+ - action: utter_dolphin_6
320
+ - rule: dolphin_7
321
+ steps:
322
+ - intent: dolphin_7
323
+ - action: utter_dolphin_7
324
+ - rule: dolphin_8
325
+ steps:
326
+ - intent: dolphin_8
327
+ - action: utter_dolphin_8
328
+ - rule: dolphin_9
329
+ steps:
330
+ - intent: dolphin_9
331
+ - action: utter_dolphin_9
332
+ - rule: dolphin_10
333
+ steps:
334
+ - intent: dolphin_10
335
+ - action: utter_dolphin_10
336
+ - rule: dolphin_11
337
+ steps:
338
+ - intent: dolphin_11
339
+ - action: utter_dolphin_11
340
+ - rule: dolphin_12
341
+ steps:
342
+ - intent: dolphin_12
343
+ - action: utter_dolphin_12
344
+ - rule: dolphin_13
345
+ steps:
346
+ - intent: dolphin_13
347
+ - action: utter_dolphin_13
348
+ - rule: aqua_1
349
+ steps:
350
+ - intent: aqua_1
351
+ - action: utter_aqua_1
352
+ - rule: aqua_2
353
+ steps:
354
+ - intent: aqua_2
355
+ - action: utter_aqua_2
356
+ - rule: aqua_3
357
+ steps:
358
+ - intent: aqua_3
359
+ - action: utter_aqua_3
360
+ - rule: aqua_4
361
+ steps:
362
+ - intent: aqua_4
363
+ - action: utter_aqua_4
364
+ - rule: aqua_5
365
+ steps:
366
+ - intent: aqua_5
367
+ - action: utter_aqua_5
368
+ - rule: aqua_6
369
+ steps:
370
+ - intent: aqua_6
371
+ - action: utter_aqua_6
372
+ - rule: aqua_7
373
+ steps:
374
+ - intent: aqua_7
375
+ - action: utter_aqua_7
376
+ - rule: aqua_8
377
+ steps:
378
+ - intent: aqua_8
379
+ - action: utter_aqua_8
380
+ - rule: aqua_9
381
+ steps:
382
+ - intent: aqua_9
383
+ - action: utter_aqua_9
384
+ - rule: aqua_10
385
+ steps:
386
+ - intent: aqua_10
387
+ - action: utter_aqua_10
388
+ - rule: aqua_11
389
+ steps:
390
+ - intent: aqua_11
391
+ - action: utter_aqua_11
392
+ - rule: aqua_12
393
+ steps:
394
+ - intent: aqua_12
395
+ - action: utter_aqua_12
396
+ - rule: aqua_13
397
+ steps:
398
+ - intent: aqua_13
399
+ - action: utter_aqua_13
400
+ - rule: aqua_14
401
+ steps:
402
+ - intent: aqua_14
403
+ - action: utter_aqua_14
404
+ - rule: aqua_15
405
+ steps:
406
+ - intent: aqua_15
407
+ - action: utter_aqua_15
408
+ - rule: aqua_16
409
+ steps:
410
+ - intent: aqua_16
411
+ - action: utter_aqua_16
412
+ - rule: kids_1
413
+ steps:
414
+ - intent: kids_1
415
+ - action: utter_kids_1
416
+ - rule: kids_2
417
+ steps:
418
+ - intent: kids_2
419
+ - action: utter_kids_2
420
+ - rule: kids_3
421
+ steps:
422
+ - intent: kids_3
423
+ - action: utter_kids_3
424
+ - rule: kids_4
425
+ steps:
426
+ - intent: kids_4
427
+ - action: utter_kids_4
428
+ - rule: kids_5
429
+ steps:
430
+ - intent: kids_5
431
+ - action: utter_kids_5
432
+ - rule: kids_6
433
+ steps:
434
+ - intent: kids_6
435
+ - action: utter_kids_6
436
+ - rule: kids_7
437
+ steps:
438
+ - intent: kids_7
439
+ - action: utter_kids_7
440
+ - rule: kids_8
441
+ steps:
442
+ - intent: kids_8
443
+ - action: utter_kids_8
444
+ - rule: kids_9
445
+ steps:
446
+ - intent: kids_9
447
+ - action: utter_kids_9
448
+ - rule: kids_10
449
+ steps:
450
+ - intent: kids_10
451
+ - action: utter_kids_10
452
+ - rule: kids_11
453
+ steps:
454
+ - intent: kids_11
455
+ - action: utter_kids_11
456
+ - rule: kids_12
457
+ steps:
458
+ - intent: kids_12
459
+ - action: utter_kids_12
460
+ - rule: kids_13
461
+ steps:
462
+ - intent: kids_13
463
+ - action: utter_kids_13
464
+ - rule: kids_14
465
+ steps:
466
+ - intent: kids_14
467
+ - action: utter_kids_14
468
+ - rule: kids_15
469
+ steps:
470
+ - intent: kids_15
471
+ - action: utter_kids_15
472
+ - rule: kids_16
473
+ steps:
474
+ - intent: kids_16
475
+ - action: utter_kids_16
476
+ - rule: kids_17
477
+ steps:
478
+ - intent: kids_17
479
+ - action: utter_kids_17
480
+ - rule: kids_18
481
+ steps:
482
+ - intent: kids_18
483
+ - action: utter_kids_18
484
+ - rule: kids_19
485
+ steps:
486
+ - intent: kids_19
487
+ - action: utter_kids_19
488
+ - rule: kids_20
489
+ steps:
490
+ - intent: kids_20
491
+ - action: utter_kids_20
492
+ - rule: kids_21
493
+ steps:
494
+ - intent: kids_21
495
+ - action: utter_kids_21
496
+ - rule: kids_22
497
+ steps:
498
+ - intent: kids_22
499
+ - action: utter_kids_22
500
+ - rule: kids_23
501
+ steps:
502
+ - intent: kids_23
503
+ - action: utter_kids_23
504
+ - rule: spa_1
505
+ steps:
506
+ - intent: spa_1
507
+ - action: utter_spa_1
508
+ - rule: spa_2
509
+ steps:
510
+ - intent: spa_2
511
+ - action: utter_spa_2
512
+ - rule: pool_1
513
+ steps:
514
+ - intent: pool_1
515
+ - action: utter_pool_1
516
+ - rule: pool_2
517
+ steps:
518
+ - intent: pool_2
519
+ - action: utter_pool_2
520
+ - rule: pool_3
521
+ steps:
522
+ - intent: pool_3
523
+ - action: utter_pool_3
524
+ - rule: retail_1
525
+ steps:
526
+ - intent: retail_1
527
+ - action: utter_retail_1
528
+ - rule: retail_2
529
+ steps:
530
+ - intent: retail_2
531
+ - action: utter_retail_2
532
+ - rule: retail_3
533
+ steps:
534
+ - intent: retail_3
535
+ - action: utter_retail_3
536
+ - rule: retail_4
537
+ steps:
538
+ - intent: retail_4
539
+ - action: utter_retail_4
540
+ - rule: retail_5
541
+ steps:
542
+ - intent: retail_5
543
+ - action: utter_retail_5
544
+ - rule: retail_6
545
+ steps:
546
+ - intent: retail_6
547
+ - action: utter_retail_6
data/stories.yml CHANGED
@@ -1,41 +1,6 @@
1
- # This file presents stories or the conversations likely to happen
2
  # with the user. Stories are also training data for the bot to stitch intents
3
  # with actions & to behave more like a human.
4
  version: "2.0"
5
 
6
  stories:
7
-
8
- - story: faq question
9
- steps:
10
- - intent: greet
11
- - action: utter_greet
12
- - intent: reservations
13
- - action: utter_reservation
14
-
15
- - story: faq jum liv
16
- steps:
17
- - intent: greet
18
- - action: utter_greet
19
- - intent: jumeirah_living
20
- - action: utter_jum_liv
21
-
22
- - story: faq jum one
23
- steps:
24
- - intent: greet
25
- - action: utter_greet
26
- - intent: jumeirah_one
27
- - action: utter_jum_one
28
-
29
- - story: faq jum
30
- steps:
31
- - intent: greet
32
- - action: utter_greet
33
- - intent: jumeirah
34
- - action: utter_jum
35
-
36
- - story: faq lost
37
- steps:
38
- - intent: greet
39
- - action: utter_greet
40
- - intent: lost_and_found
41
- - action: utter_lost_found
 
1
+ # This file presents stories or the conversations likely to happen
2
  # with the user. Stories are also training data for the bot to stitch intents
3
  # with actions & to behave more like a human.
4
  version: "2.0"
5
 
6
  stories:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
domain.yml CHANGED
@@ -1,4 +1,4 @@
1
- # This file binds the different aspects of your bot together.
2
  # Stories, intents, actions etc. are all declared here to be used.
3
  # To learn more https://rasa.com/docs/rasa/domain/
4
  version: "2.0"
@@ -6,45 +6,424 @@ version: "2.0"
6
  intents:
7
  - greet
8
  - goodbye
9
- - affirm
10
- - deny
11
- - jumeirah_living
12
- - jumeirah_one
13
- - lost_and_found
14
- - jumeirah
15
- - reservations
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
 
17
  responses:
18
  utter_please_rephrase:
19
- - text: Sorry I didn't get that. Can you rephrase?
20
-
21
  utter_greet:
22
- - text: "Hey! How are you?"
23
 
24
  utter_did_that_help:
25
- - text: "Did that help you?"
26
 
27
  utter_happy:
28
- - text: "Great, carry on!"
29
 
30
  utter_goodbye:
31
- - text: "Bye"
32
-
33
- utter_reservation:
34
- - text: "Please go to 'Check Rates & Book Now' section of the hotel you have a reservation for. You will find and an area called 'Cancellations and Amendments'. For all other amendments and cancellations, email or call our Reservations Office."
35
-
36
- utter_jum_liv:
37
- - text: "Jumeirah Living is our luxury brand of residences and serviced apartments. Whether for short, mid-term or extended stays, Jumeirah Living will offer innovative yet personal lifestyle experiences unique to each guest, resident and owner, with a strong emphasis on effortless living."
38
-
39
- utter_jum_one:
40
- - text: "Jumeirah One is Jumeirah’s loyalty programme designed to recognise and reward loyal guests of Jumeirah. Guests can enjoy more of life’s pleasures with privileged access to an exclusive global lifestyle."
41
-
42
- utter_lost_found:
43
- - text: "Should any guests lose personal belongings whilst staying at a Jumeirah Hotel or Resort in Dubai, if recovered, the item will be recorded as 'found' by that particular property. Each property keeps detailed records of all 'found' items and will store these for a maximum of three months. After this period, in line with the directives of the General Department of Criminal Investigation in Dubai, all unclaimed items will be handed over to the nearest Police Station. These 'found' items will then be kept at the police warehouse for a further three months after which they will be auctioned, and any funds raised given to charity.Should hotel guests need to locate any item after the initial three month period expires, they are requested to contact the hotel who will assist in coordinating with the police station where the found items are handed over. The police will then advise the necessary procedures to locate any item."
44
-
45
- utter_jum:
46
- - text: "Jumeirah is a world-class international hotel and hospitality company which currently manages hotels in Abu Dhabi, Bahrain, Dubai, Frankfurt, Kuwait, London, Maldives, Mallorca and Shanghai. Please view our Portfolio for more information."
47
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
  session_config:
49
  session_expiration_time: 60
50
  carry_over_slots_to_new_session: true
 
1
+ # This file binds the different aspects of your bot together.
2
  # Stories, intents, actions etc. are all declared here to be used.
3
  # To learn more https://rasa.com/docs/rasa/domain/
4
  version: "2.0"
 
6
  intents:
7
  - greet
8
  - goodbye
9
+ - booking_1
10
+ - booking_2
11
+ - booking_3
12
+ - booking_4
13
+ - booking_5
14
+ - booking_6
15
+ - booking_7
16
+ - rooms_1
17
+ - rooms_2
18
+ - rooms_3
19
+ - rooms_4
20
+ - rooms_5
21
+ - rooms_6
22
+ - rooms_7
23
+ - rooms_8
24
+ - rooms_9
25
+ - rooms_10
26
+ - visit_1
27
+ - visit_2
28
+ - visit_3
29
+ - visit_4
30
+ - visit_5
31
+ - visit_6
32
+ - visit_7
33
+ - visit_8
34
+ - visit_9
35
+ - visit_10
36
+ - visit_11
37
+ - visit_12
38
+ - visit_13
39
+ - visit_14
40
+ - visit_15
41
+ - visit_16
42
+ - visit_17
43
+ - visit_18
44
+ - visit_19
45
+ - visit_20
46
+ - visit_21
47
+ - restaurant_1
48
+ - restaurant_2
49
+ - restaurant_3
50
+ - restaurant_4
51
+ - restaurant_5
52
+ - restaurant_6
53
+ - restaurant_7
54
+ - restaurant_8
55
+ - restaurant_9
56
+ - restaurant_10
57
+ - restaurant_11
58
+ - restaurant_12
59
+ - restaurant_13
60
+ - restaurant_14
61
+ - restaurant_15
62
+ - restaurant_16
63
+ - restaurant_17
64
+ - restaurant_18
65
+ - restaurant_19
66
+ - restaurant_20
67
+ - restaurant_21
68
+ - restaurant_22
69
+ - restaurant_23
70
+ - restaurant_24
71
+ - restaurant_25
72
+ - restaurant_26
73
+ - restaurant_27
74
+ - restaurant_28
75
+ - restaurant_29
76
+ - restaurant_30
77
+ - dolphin_1
78
+ - dolphin_2
79
+ - dolphin_3
80
+ - dolphin_4
81
+ - dolphin_5
82
+ - dolphin_6
83
+ - dolphin_7
84
+ - dolphin_8
85
+ - dolphin_9
86
+ - dolphin_10
87
+ - dolphin_11
88
+ - dolphin_12
89
+ - dolphin_13
90
+ - aqua_1
91
+ - aqua_2
92
+ - aqua_3
93
+ - aqua_4
94
+ - aqua_5
95
+ - aqua_6
96
+ - aqua_7
97
+ - aqua_8
98
+ - aqua_9
99
+ - aqua_10
100
+ - aqua_11
101
+ - aqua_12
102
+ - aqua_13
103
+ - aqua_14
104
+ - aqua_15
105
+ - aqua_16
106
+ - kids_1
107
+ - kids_2
108
+ - kids_3
109
+ - kids_4
110
+ - kids_5
111
+ - kids_6
112
+ - kids_7
113
+ - kids_8
114
+ - kids_9
115
+ - kids_10
116
+ - kids_11
117
+ - kids_12
118
+ - kids_13
119
+ - kids_14
120
+ - kids_15
121
+ - kids_16
122
+ - kids_17
123
+ - kids_18
124
+ - kids_19
125
+ - kids_20
126
+ - kids_21
127
+ - kids_22
128
+ - kids_23
129
+ - spa_1
130
+ - spa_2
131
+ - pool_1
132
+ - pool_2
133
+ - pool_3
134
+ - retail_1
135
+ - retail_2
136
+ - retail_3
137
+ - retail_4
138
+ - retail_5
139
+ - retail_6
140
 
141
  responses:
142
  utter_please_rephrase:
143
+ - text: Sorry I didn't get that. Can you rephrase?
144
+
145
  utter_greet:
146
+ - text: "Hey! How are you?"
147
 
148
  utter_did_that_help:
149
+ - text: "Did that help you?"
150
 
151
  utter_happy:
152
+ - text: "Great, carry on!"
153
 
154
  utter_goodbye:
155
+ - text: "Bye"
156
+
157
+ utter_booking_1:
158
+ - text: "A deposit of AED 500 per night is required at check-in for guests who would like to charge purchases and incidentals to their room."
159
+
160
+ utter_booking_2:
161
+ - text: "Guest must be 18 years of age or older to book a room at Atlantis Dubai."
162
+
163
+ utter_booking_3:
164
+ - text: "Check-in time is 3:00pm and check-out time is 12:00pm."
165
+
166
+ utter_booking_4:
167
+ - text: "The early check-in request can be made at the time of booking. However, it is strictly subject to availability and may incur an additional charge."
168
+
169
+ utter_booking_5:
170
+ - text: "Yes, once you have checked in, the Front Office Reception will assist with luggage storage and provide a temporary identification card to access the beach, pool, Aquaventure and The Lost Chambers Aquarium, from as early as 10:00am."
171
+
172
+ utter_booking_6:
173
+ - text: "The Half Board Package includes your hotel stay plus daily breakfast and dinner. Some restaurants included in the Half Board Package for dinner require a further supplement to be paid per person. There are few restaurants that are not included in Half Board."
174
+
175
+ utter_booking_7:
176
+ - text: "No, we only offer Bed and Breakfast, and Half Board Packages."
177
+
178
+ utter_rooms_1:
179
+ - text: "We have separate smoking floors at Atlantis Dubai. The smoking rooms can be requested in advance, however, rooms are strictly subject to availability."
180
+ utter_rooms_2:
181
+ - text: "We have rooms with provisions and amenities for people with disabilities. At the time of booking rooms, the details must be shared for more specifications and to check availability. Available amenities and provisions include wheelchairs (requires a deposit of AED 1000), shower stools, toilet frames and physically challenged phones. These items are strictly subject to availability."
182
+ utter_rooms_3:
183
+ - text: "We offer complimentary coffee sachets, tea bags, sugar, milk sachets and water kettles in all rooms."
184
+ utter_rooms_4:
185
+ - text: "Yes, an iron and ironing board are provided in all the rooms at Atlantis Dubai."
186
+ utter_rooms_5:
187
+ - text: "Refrigerators are subject to availability. They can be requested at the time of your booking, or during your stay by dialing “0” for assistance."
188
+ utter_rooms_6:
189
+ - text: "Microwaves are subject to availability. They can be requested at the time of your booking, or during your stay by dialing “0” for assistance."
190
+ utter_rooms_7:
191
+ - text: "Roll-away/ sofa beds are subject to availability. They can be requested at the time of your booking, or during your stay by dialing “0” for assistance."
192
+ utter_rooms_8:
193
+ - text: "Yes, we can provide international adaptors upon request, subject to availability. Please dial 0 to place your request."
194
+ utter_rooms_9:
195
+ - text: "Yes, we have a charging facility at the Business Centre, which is open daily from 8:00am – 8:00pm."
196
+ utter_rooms_10:
197
+ - text: "A private check-in and check-out desk in the Imperial Club Lounge for comfort and ease. Dedicated Imperial Club Concierge team. Continental Breakfast from 7am – 11am. Daily afternoon tea from 3pm – 4pm. Inclusive of a bites such as scones, quiches and pastries, a selection of tea and beverages. There’s even milkshakes, sandwiches, and sweet treats for the little ones. Daily sunset happy hour from 5pm – 7pm. Selection of complimentary beers and wines, fruity cocktails or mocktails, perfectly complemented by elegant canapés to enjoy. Happy hour can also be enjoyed on the Imperial Club Beach. Complimentary Kids Club and The Zone morning or afternoon sessions. AED 50 credit gaming card at Wavehouse once per stay. Exclusive access to Imperial Club beach with a fully-serviced bar and personal service attendants. Complimentary 30 minutes added to any 60 minute ShuiQi Spa treatment booked. Unlimited access to the wet facility areas at the ShuiQi Spa."
198
+ utter_visit_1:
199
+ - text: "We do not allow pets in the hotel or resort grounds."
200
+ utter_visit_2:
201
+ - text: "Yes, in-house guests receive complimentary WiFi and non-residents can access complimentary WiFi by registering an account."
202
+ utter_visit_3:
203
+ - text: "Dubai has a tropical desert climate, with mild winters (December – February) and warm spring and autumn days, with balmy days and very little rain. Summers (June – August) are extremely hot and humid, with an average high of around 41°C (106°F) and overnight lows around 30°C (86°F). The highest recorded temperature in Dubai is 52.1°C (126°F) in July 2002."
204
+ utter_visit_4:
205
+ - text: "Yes, we offer complimentary valet parking for guests staying at the hotel."
206
+ utter_visit_5:
207
+ - text: "Guests visiting the hotel for the day can use the complimentary valet parking services upon spending and presenting a bill of AED 150 or above on hotel services. We also offer complimentary parking for day visitors at the P18 parking area. When driving up the Palm towards Atlantis, please take a first right at the roundabout before you reach the Atlantis, The Palm building. A shuttle bus will pick our guests from the branded bus hop-on/ hop-off area and drop them off at The Avenues entrance."
208
+ utter_visit_6:
209
+ - text: "We provide complimentary pick up and drop off for all Suite guests from and to Dubai International Airport. Guests staying in a Guest Room may book a pick up and drop off for an additional fee, subject to availability. Please email: reservations@atlantisthepalm.com or call +971 (04) 4261000."
210
+ utter_visit_7:
211
+ - text: "A taxi from Dubai International Airport to Atlantis Dubai takes about 40 – 60 minutes and costs approximately AED 120."
212
+ utter_visit_8:
213
+ - text: "A taxi from Abu Dhabi International Airport to Atlantis Dubai takes about 1 hour 20 minutes and costs approximately AED 200–300."
214
+ utter_visit_9:
215
+ - text: "Atlantis Transportation Services are available for a fee, subject to availability. To arrange transfers, please email: reservations@atlantisthepalm.com or call +971 (04) 4261000."
216
+ utter_visit_10:
217
+ - text: "Yes, we provide a complimentary shuttle service to the Mall of the Emirates. A copy of the shuttle schedule can be requested at the Concierge desk."
218
+ utter_visit_11:
219
+ - text: "The dress code during the Holy Month of Ramadan depends on which restaurants you are dining in, however it is recommended to dress conservatively during this time."
220
+ utter_visit_12:
221
+ - text: "We have two prayer rooms: one in the East Tower in The Avenues and one in the West Tower near ShuiQi Spa."
222
+ utter_visit_13:
223
+ - text: "Visitors are welcome to dine at our restaurants, book spa and salon services and ShuiQi Spa, visit Aquaventure Waterpark and The Lost Chambers Aquarium, and book diving, dolphin and sea lion interactions. For day visitors who would like to visit an in-house guest, the in-house guest must register them at the main reception prior to the visit. Day visitors must be able to provide the in-house guest’s room number and full name to be let through by security. They are also required to present valid identification at the main reception. Lastly, in-house guest must collect the day visitors from the lobby and personally lead them up to their room."
224
+ utter_visit_14:
225
+ - text: "Our guest clinic is open from 9:00am – 10:00pm daily and have paramedic assistance available 24/7. The Marina Pharmacy is located in the West Tower, near ShuiQi Spa."
226
+ utter_visit_15:
227
+ - text: "Yes, we provide complimentary towels for all hotel guests. Towels can be collected from the cabanas at the pool, beach and Aquaventure Waterpark."
228
+ utter_visit_16:
229
+ - text: "Guests may either settle their bill a night before they check out or go directly to the front office by 12.00pm finalise their account. We also have an Express Check-Out option, which can be found in Atlantean booklet in your room. Guests are required to sign the form and pass by the reception to drop it at the Express Check-Out counter."
230
+ utter_visit_17:
231
+ - text: "You can request a late check-out at the time of booking, or request it on the day, however, it is strictly subject to availability and will incur an additional charge. Guest Rooms – AED 130 per hour per room Imperial Club Rooms and Suites – AED 190 per hour per room, including access to the Imperial Club Lounge From 9:00pm onwards, you will be charged for full day. You will need to approach the front desk and request a new key."
232
+ utter_visit_18:
233
+ - text: "Yes, there are many facilities that can be used on the day you check out. All guests are welcome to access Aquaventure Waterpark and The Lost Chambers Aquarium after 12:00pm. A pass is given at the Front Office at the time of check out. We also have the changing and shower facilities at the Aquaventure Waterpark from 10.00am until sunset. Guests with Imperial Club access may use the shower and changing facilities in the Imperial Club Hospitality Lounge after their check out on the same day."
234
+ utter_visit_19:
235
+ - text: "Simply dial “0” from your room to contact Guest Services and share your feedback during your stay. After your stay, a survey email will be sent to email address provided. Guests can also send their feedback by emailing dxb-feedback@atlantisthepalm.com."
236
+ utter_visit_20:
237
+ - text: "A copy of your room bill will be provided during check out. To request a copy of the bill after your departure, email dxb-callcenter@atlantisthepalm.com."
238
+ utter_visit_21:
239
+ - text: "Our Lost and Found desk is available 24/7 to assist. During your stay, you may dial '0' from your room; after your departure call +971 44260000 or email dxb-callcenter@atlantisthepalm.com."
240
+ utter_restaurant_1:
241
+ - text: "We have a range of family-friendly restaurants at Atlantis Dubai, including Gordon Ramsay’s Bread Street Kitchen and Bar, Ronda Locatelli for Italian cuisine, and our buffet restaurants Saffron and Kaleidoscope."
242
+ utter_restaurant_2:
243
+ - text: "For a romantic dining experience at Atlantis Dubai, we suggest award-winning Ossiano, with views of the Ambassador Lagoon, Nobu for Japanese-Peruvian cuisine in a sleek setting, Hakkasan for contemporary Cantonese, or Ayamna for an authentic Lebanese meal."
244
+ utter_restaurant_3:
245
+ - text: "Atlantis Dubai offers a range of brunches every Friday, including Dubai’s biggest party brunch at Saffron, an elegant Japanese brunch at Nobu, a dynamic Cantonese brunch at Hakkasan and a family-friendly brunch at Gordon Ramsay’s Bread Street Kitchen and Bar. "
246
+ utter_restaurant_4:
247
+ - text: "Most of the restaurants at Atlantis Dubai are open to guests of all ages, but please note the following age policies apply.Nobu, Seafire and Hakkasan: Family seating is available for children aged 4 years and above at 6:00pm and 6:30pm only (excluding Fridays at Nobu). After 7:00pm, children aged 10 and above are welcome. Ossiano: For dinner, children aged 11 years and above are welcome. All ages are welcome at Saturday lunch. Saffron Brunch: 21 years and above only. ID is required upon entry."
248
+ utter_restaurant_5:
249
+ - text: "The Half Board Package includes breakfast and dinner daily (excluding brunches and Aquaventure restaurants). Guests have a choice of a starter, main course and dessert from the a la carte menu, with the exception of signature dishes in the following restaurants. Restaurants and supplementary charges are subject to change without notice. "
250
+ utter_restaurant_6:
251
+ - text: "Smoking is not permitted inside the restaurants at Atlantis Dubai, however, guests are allowed to smoke at the bar at Wavehouse and in the designated areas on the restaurant terraces."
252
+ utter_restaurant_7:
253
+ - text: "The indoor dining areas of all restaurants at Atlantis Dubai are smoke-free zones."
254
+ utter_restaurant_8:
255
+ - text: "For your comfort, please note the following dress codes for restaurants at Atlantis Dubai. Hakkasan, Seafire, Bread Street Kitchen and Ayamna Smart Casual dress code, with a minimum of tailored shorts, shirts with sleeves, closed shoes or sandals. Flip flops are not allowed. UAE national dress is welcome. Kaleidoscope, Saffron, Ronda Locatelli and Plato’s Casual dress code, with a minimum of tailored shorts, shirt with sleeves and any footwear is allowed. UAE national dress is welcome. The Edge and The Shore Casual dress code, with a minimum of shorts, shirts and any footwear allowed. UAE national dress is welcome. No swimwear or towels allowed in the evening. Food outlets in The Avenues Casual dress code, with a minimum of shorts, shirts and any footwear allowed. UAE national dress is welcome. No swimwear or towels allowed. Nobu Smart casual dress code is recommended. Gentlemen are requested to wear long trousers or smart jeans. Minimum of shirts with sleeves, closed shoes or sandals. Flip flops are not allowed. UAE national dress is welcome. Ossiano Smart Elegant dress code is recommended. Gentlemen are requested to wear shirts with a collar, long trousers or smart jeans and closed shoes (no trainers). UAE national dress is welcome. The same dress code applies to eligible children dining in the restaurant."
256
+ utter_restaurant_9:
257
+ - text: "The following restaurants offer live entertainment. Kindly note that during the Holy Month of Ramadan, there is no live entertainment. The scheduled timing of the entertainment is subject to change without prior notice. Ayamna: Musicians entertain you with traditional Arabic performances, Wed – Fri, from 8:00pm. Ossiano: Enjoy a live vocal performance every evening from 8pm. Seafire: Sway the night away to the jazz numbers and swing tunes of The Swing Revue band. Monday, from 8:00pm."
258
+ utter_restaurant_10:
259
+ - text: "A cancellation policy will only be applied for group booking and it varies depending of the restaurant."
260
+ utter_restaurant_11:
261
+ - text: "The minimum age for drinking alcohol at Atlantis Dubai is 21 years of age."
262
+ utter_restaurant_12:
263
+ - text: "We offer Afternoon Tea at Plato’s daily, 2:00pm to 5:30pm.Packages:* Bronze: AED 150 per person including unlimited tea or coffee Silver: AED 299 per person including Bottomless Prosecco for 1.5 hours Gold: AED 940 per couple including a bottle of house Champagne (Perrier-Jouët Grand Brut) Blue: AED 200 per person including a signature cocktail For reservations, contact us at +971 4 426 1166 or restaurantreservations@atlantisthepalm.com *Terms and conditions: Silver: Offer is valid for 1.5 hours Gold: Offer is valid for one or two people only, or multiples of two. Blue: The signature cocktail includes Mandarin Vodka, blood orange, rooibos and vanilla tea, top up with date wine."
264
+ utter_restaurant_13:
265
+ - text: "Minimum spend may apply in group bookings in the restaurants. Bars and restaurant bar serve on a first come first service basis and no minimum spend applicable. "
266
+ utter_restaurant_14:
267
+ - text: "Book online at atlantis.com/dubai.com/restaurants or contact us on +971 4 426 1166 or restaurantreservations@atlantisthepalm.com"
268
+ utter_restaurant_15:
269
+ - text: "You can view our menus online at atlantis.com/dubai/restaurants. You can also contact us at +971 4 426 1166 or send an email to restaurantreservations@atlantisthepalm.com"
270
+ utter_restaurant_16:
271
+ - text: "We have 23 restaurants, including 3 celebrity chef restaurants. Celebrity Restaurants Nobu, Ronda Locatelli and Bread Street Kitchen Signature Restaurants Hakkasan, Ossiano, Ayamna, Seafire Steakhouse, Kaleidoscope and Saffron and Wavehouse Casual Restaurants Plato’s, Poseidon Cafe, The Edge, The Shore, Asia Republic, Shawafel and TBJ."
272
+ utter_restaurant_17:
273
+ - text: "Atlantis caters our guest's dietary requirements including vegetarian. The below restaurants offer the widest variety of vegetarian options: Nobu Ronda Locatelli Ayamna Kaleidoscope"
274
+ utter_restaurant_18:
275
+ - text: "Our restaurant cater to lactose intolerance. We recommend making a reservation and informing the restaurant of your dietary requirement beforehand."
276
+ utter_restaurant_19:
277
+ - text: "Our restaurant cater to vegans, and all offer vegan options. Ronda Locatelli has a specialist vegan menu offering 40 vegan dishes."
278
+ utter_restaurant_20:
279
+ - text: "Our restaurants cater to gluten intolerance. We recommend making a reservation and informing the restaurant of your dietary requirement beforehand."
280
+ utter_restaurant_21:
281
+ - text: "We offer a complimentary cake/dessert with a message of your choice in certain restaurants with at least 24 hours’ notice."
282
+ utter_restaurant_22:
283
+ - text: "If you wish to arrange something special such as flowers, a special cake and pre-ordered beverages at any restaurant, please contact us at +971 4 426 1166 or restaurantreservations@atlantisthepalm.com"
284
+ utter_restaurant_23:
285
+ - text: "We offer catering in our resort’s meeting rooms and event spaces, as well as catering services for external events. "
286
+ utter_restaurant_24:
287
+ - text: "Casual restaurants such as Poseidon Cafe, The Burger Joint, Asia Republic, TBJ and Shawafel all offer a takeaway service. Ronda Locatelli, Asia Republic, TBJ and Shawafel are available for delivery on UberEats."
288
+ utter_restaurant_25:
289
+ - text: "Please note the following general guidelines during Ramadan. Restaurants and Aquaventure are usually not affected during Ramadan In room dining will be available at all times There is no entertainment during Ramadan such as live performance."
290
+ utter_restaurant_26:
291
+ - text: "Please be informed that Bars do not allow guest under 21 years old. Children accompanied with adults are welcome in Plato’s."
292
+ utter_restaurant_27:
293
+ - text: "We hold an existing reservation for 15 minutes. If you will be late, please call us on +971 4 426 1166 to amend your reservation as per our availability. Please contact us at +971 4 426 1166 or restaurantreservations@atlantisthepalm.com."
294
+ utter_restaurant_28:
295
+ - text: "Guests who booked under our Half Board package are most welcome to dine in the restaurants not included in the package on a fully chargeable basis."
296
+ utter_restaurant_29:
297
+ - text: "Wavehouse 50% off selected drinks, daily 5:00pm – 7:00pm The Shore 50% off selected drinks, daily 5:00pm – 7:00pm Nobu 50% off selected drinks, daily 6:00pm – 8:00pm"
298
+ utter_restaurant_30:
299
+ - text: "Wavehouse Ladies get three free drinks, a Surf’s Up Wave Rider pass, 50% off bowling and a AED 100 voucher. Tuesday, 7:00pm – 11:00pm. Nobu Ladies get three free drinks and a special happy hour menu. Monday, 8:30pm – 11:00pm"
300
+ utter_dolphin_1:
301
+ - text: "The price depends on the type of experience and seasonality. Please contact us on +971 4 426 0000 or dxb-info@atlantisdubai.com to get detailed information. Online bookings can also be done through our website."
302
+ utter_dolphin_2:
303
+ - text: "All children under 12 years old must be accompanied by a participating, paying adult. For the Dolphin Meet & Greet and Dolphin Encounter there is no age limit and children 2 years old and below have complimentary access. For the Swim & Explore, participants must be a minimum of 8 years old and be confident swimmers and able to tread water. For the Dolphin Trek, participants must be a minimum of 8 years old and they do not need to be certified divers in order to participate in the experience."
304
+ utter_dolphin_3:
305
+ - text: "Yes, we offer preferential rates for all guests staying with us."
306
+ utter_dolphin_4:
307
+ - text: "Photos are available at an additional charge, the only experiences providing a complimentary photo is Dolphin Meet & Greet and Sea Lion Meet & Greet."
308
+ utter_dolphin_5:
309
+ - text: "The price includes an experience programme with our dolphins, same-day access to Aquaventure Waterpark, a locker for the duration of the experience, towels, juices after the experience and 25% off dame-day admission to The Lost Chambers Aquarium."
310
+ utter_dolphin_6:
311
+ - text: "For the Swim & Explore, participants must be confident swimmers and able to tread water. We offer Dolphin Meet & Greet and Dolphin Encounter for non-swimmers."
312
+ utter_dolphin_7:
313
+ - text: "The hotel pool and beaches are exclusively for hotel guests."
314
+ utter_dolphin_8:
315
+ - text: "The price depends on the type of experience and seasonality. Please contact us on +971 4 426 0000 or dxb-info@atlantisdubai.com to get detailed information. Online bookings can also be done through our website."
316
+ utter_dolphin_9:
317
+ - text: "All children under 12 years old must be accompanied by a participating and paying adult. Sea Lion Discovery is available for children 6 years old and above at a minimum height of at least 1.20m. Sea Lion Meet & Greet is available for all ages and children 2 years old and below have complimentary access."
318
+ utter_dolphin_10:
319
+ - text: "If you are arriving by car, please park your vehicle at Aquaventure Waterpark parking (turn right at first roundabout after exiting the tunnel leading to Atlantis Dubai). A shuttle will take you to the Aquaventure and Dolphin Bay Ticketing Plaza."
320
+ utter_dolphin_11:
321
+ - text: "Dolphin Bay & Sea Lion Point will make every effort to provide the necessary assistance for persons with special needs and/or physical impairment so that they can enjoy the experience, however under the EHS Marine Mammal Regulations of 2008 it is required that a primary attendant be present in the water throughout the experience."
322
+ utter_dolphin_12:
323
+ - text: "If you are pregnant and are interested in experiencing a dolphin or sea lion programme, please consult your physician. Please inform the Reservation Agents at extension 61030 once you are at Atlantis, The Palm of any medical conditions that could affect your participation."
324
+ utter_dolphin_13:
325
+ - text: "Cameras, jewellery, hair accessories or any loose accessory are not allowed in the water for the safety of our animals. You can purchase photos taken by our professional photographer. Observes with an Observer Pass can take photos for you."
326
+ utter_aqua_1:
327
+ - text: "Prices of tickets bought at Aquaventure Waterpark counter vary depending on the season. Prices online can be found on the ticket prices page https://www.atlantis.com/dubai/atlantis-aquaventure/aquaventure-waterpark/pricing"
328
+ utter_aqua_2:
329
+ - text: "For latest operating hours for Aquaventure Waterpark - visit our FAQ page (Closing time subject to change depending on the season)."
330
+ utter_aqua_3:
331
+ - text: "For VIP experience please visit the VIP Premier Experiences counter at the Aquaventure Ticketing Plaza. You can book one of our Cabanas and we also offer a Fast Track Pass which will allow guests immediate access to the water slides and rides."
332
+ utter_aqua_4:
333
+ - text: "Small lockers starting from AED 55 and large lockers starting from AED 85"
334
+ utter_aqua_5:
335
+ - text: "Towels starting from AED 35 per towel. A locker and towel combo starting from AED 85.."
336
+ utter_aqua_6:
337
+ - text: "If you are arriving by car, please park your vehicle at Aquaventure Waterpark parking (turn right at first roundabout after exiting the tunnel leading to Atlantis Dubai). A shuttle will take you to the Aquaventure Ticketing Plaza."
338
+ utter_aqua_7:
339
+ - text: "Food and drinks from outside are not allowed but baby food and water are permitted."
340
+ utter_aqua_8:
341
+ - text: "You must be a minimum of 12 years old to access the waterpark alone."
342
+ utter_aqua_9:
343
+ - text: "We recommend to coming at 10:00am to be able to enjoy all the facilities."
344
+ utter_aqua_10:
345
+ - text: "Yes, if you buy the Aquaventure Super Pass."
346
+ utter_aqua_11:
347
+ - text: "Board shorts, Speedos, one and two piece swimsuit, burkinis, and rashguards are the only acceptable types of swim attire for Aquaventure Waterpark.For safety, the following are NOT PERMITTED to be worn:Abayas, sarees, long shirts, long trousers and jeans, underwear, cotton shorts, button ups or anything you would normally wear outside of water, any sheer or see through items.Please observe and respect local cultural sensitivity.All young children MUST wear swim diapers when in and around the water.Aquaventure management has the right to remove guests from the attraction/property for any swim attire that is deemed to be inappropriate. No refunds or discounts will be given to guests whom are unable to ride the slides due to inappropriate swim attire."
348
+ utter_aqua_12:
349
+ - text: "If I bring my nanny, do I need to pay for them too Yes, all guests who enter the facility are required to pay the full price."
350
+ utter_aqua_13:
351
+ - text: "Yes, baby strollers and prams are allowed."
352
+ utter_aqua_14:
353
+ - text: "Yes, Aquaventure waterpark welcomes all guests including those with disabilities."
354
+ utter_aqua_15:
355
+ - text: "Pregnant women are allowed into the waterpark, however many of the slides are not recommended for pregnant women. "
356
+ utter_aqua_16:
357
+ - text: "Selfie sticks or other extension devices are not permitted on any rides."
358
+ utter_kids_1:
359
+ - text: "A high energy, supervised activity program for children aged 4 – 12 based on themes of Play, Create, Explore & Marine Education."
360
+ utter_kids_2:
361
+ - text: "Atlantis Kids Club is open 10:00am – 5:30pm daily and offers two different adventures for children."
362
+ utter_kids_3:
363
+ - text: "Morning Adventure – AED 160 per child Afternoon Adventure – AED 160 per child "
364
+ utter_kids_4:
365
+ - text: "Currently, theme nights are not offered due to COVID-19 restrictions and will resume once restrictions are lifted. "
366
+ utter_kids_5:
367
+ - text: "Kids Club is designed for children ages 4 – 12 (proof of age is required on initial visit)."
368
+ utter_kids_6:
369
+ - text: "Children less than 4 years old would need to be with one of our trained babysitters for one-to-one care (Babysitting fees and Kids Club admission fees apply – and subject to availability of babysitter)."
370
+ utter_kids_7:
371
+ - text: "Children in diapers are more than welcome to attend Kids Club; however they will need to be assisted by one of our trained babysitters (babysitting fees and Kids Club admission fees apply – and subject to availability of babysitter)."
372
+ utter_kids_8:
373
+ - text: "Meals are unfortunately not provided, so children will need to have eaten breakfast, lunch or dinner prior. Healthy vegetable sticks are offered mid-session, and regular water breaks take place. ."
374
+ utter_kids_9:
375
+ - text: "Healthy snacks are provided to children once in every session. Water is available anytime."
376
+ utter_kids_10:
377
+ - text: "Kids Club is an adult-free zone, due to our strict child safety and security policy parents and nannies will not be permitted in the facility. If you require one to one supervision during the Kids Club activities, you can book one of our trained babysitters to accompany your child. Please contact Kids Club directly if there are special considerations for your child. Kids Club does welcome parents for a tour of the facility daily from 5.30pm – 6pm. "
378
+ utter_kids_11:
379
+ - text: "Parents can visit the Kids Club for a guided tour daily between 5.30pm – 6pm. "
380
+ utter_kids_12:
381
+ - text: "We provide babysitting services for hotel guests within the resort property. All bookings are required with a minimum 24 hours’ advance notice. You can contact Atlantis babysitting at kidsclub@atlantisthepalm.com for more information about pricing and ratio."
382
+ utter_kids_13:
383
+ - text: "Currently, we are unable to host Kids Club birthday parties due to COVID-19 restrictions and will resume once restrictions are lifted. "
384
+ utter_kids_14:
385
+ - text: "Atlantis Kids Club is an adult free zone; however parents are welcome to join for the last 30 minutes of the birthday party for the cake cutting ceremony."
386
+ utter_kids_15:
387
+ - text: "The Zone is a hangout zone for teenagers aged 13 – 17."
388
+ utter_kids_16:
389
+ - text: "The Zone offers access to iMac computers, video games, movie lounge and a dance floor. We also arrange group games and activities during sessions."
390
+ utter_kids_17:
391
+ - text: " The Zone is open daily from 10:00am – 5:30pm and in peak holiday season is extended to 10:00am – 10:00pm. Please see website for updated opening hours. We’re open to teenagers aged 13 – 17."
392
+ utter_kids_18:
393
+ - text: "The Zone is an adult-free zone."
394
+ utter_kids_19:
395
+ - text: "The Zone is free of charge."
396
+ utter_kids_20:
397
+ - text: "Meals are unfortunately not provided, so teens will need to have eaten breakfast, lunch or dinner prior. Water is available anytime."
398
+ utter_kids_21:
399
+ - text: "Soft Drinks are available for purchase, and water is available anytime. Snacks are currently not available for purchase."
400
+ utter_kids_22:
401
+ - text: "Children can either do a room post (as per parent authorization on the registration form) or pay in cash. Receipts are available."
402
+ utter_kids_23:
403
+ - text: "Currently, we are unable to host birthday parties at The Zone due to COVID-19 restrictions and will resume once restrictions are lifted."
404
+ utter_spa_1:
405
+ - text: "ShuiQi Spa is open from 9:00am – 9:00 pm and the Fitness Center is open from 6:00am – 9:00pm."
406
+ utter_spa_2:
407
+ - text: "The Fitness Centre is available to all guests. Only people paying for spa treatments can access the spa facilities."
408
+ utter_pool_1:
409
+ - text: "We offer non-motorized water sports including kayaking and stand up paddle-boarding. We also offer boat tours. For bookings, email concierge@atlantisthepalm.com or visit our Concierge Desk in the Grand Lobby."
410
+ utter_pool_2:
411
+ - text: "Our pools are open 8am – sunset."
412
+ utter_pool_3:
413
+ - text: "Lifeguards are present for our guest’s safety. Guests are requested to follow the safety instructions of the lifeguards at all times; otherwise they may risk injury to themselves or others."
414
+ utter_retail_1:
415
+ - text: "No, but you can find waterproof mobile phone covers at our retail stores."
416
+ utter_retail_2:
417
+ - text: "Yes, Marina Pharmacy in the West Tower of the resort. We also have a guest clinic, open from 9:00am – 10:00pm. Paramedic Assistance is available 24/7."
418
+ utter_retail_3:
419
+ - text: "Yes, we have a number of souvenir shops in the Avenues and kiosks in Aquaventure."
420
+ utter_retail_4:
421
+ - text: "Yes, you can buy swimwear at a range of retails stores at The Avenues."
422
+ utter_retail_5:
423
+ - text: "Tickets are AED 20 one way, AED 30 return."
424
+ utter_retail_6:
425
+ - text: "The monorail runs from 9am until 10pm, daily."
426
+
427
  session_config:
428
  session_expiration_time: 60
429
  carry_over_slots_to_new_session: true
reviews.db CHANGED
Binary files a/reviews.db and b/reviews.db differ