-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbook_accommodation.yml
87 lines (69 loc) · 2.17 KB
/
book_accommodation.yml
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
version: "3.1"
slots:
person_name:
type: text
mappings:
- type: custom
destination:
type: text
mappings:
- type: custom
number_of_people:
type: float
mappings:
- type: custom
number_of_rooms:
type: float
mappings:
- type: custom
days:
type: text
mappings:
- type: custom
accommodation_type:
type: text
mappings:
- type: custom
booking_confirmation:
type: bool
mappings:
- type: custom
age:
type: float
mappings:
- type: custom
responses:
utter_greet:
- text: "Hello! How can I assist you today?"
utter_goodbye:
- text: "Goodbye! Have a great day!"
utter_affirm:
- text: "Great!"
utter_deny:
- text: "Sure, let me know if there's anything else I can help you with."
utter_confirm_booking_request:
- text: "Thanks {person_name}! Your accommodation request for {number_of_people} people in {accommodation_type} in {destination} for {days} days has been confirmed."
utter_cancel_booking_request:
- text: "Cancelling the accommodation booking request."
utter_ask_person_name:
- text: "May I know your name for the booking?"
utter_ask_destination:
- text: "Where are you planning to go for your stay?"
utter_ask_number_of_people:
- text: "How many people will be staying?"
utter_ask_number_of_rooms:
- text: "How many rooms do you need?"
utter_ask_days:
- text: "For how many days do you plan to stay?"
utter_ask_accommodation_type:
- text: "What type of accommodation are you looking for (e.g., hotel, house)?"
utter_ask_booking_confirmation:
- text: "Are you sure you want to make a booking with the following details - Name: {person_name}, Destination: {destination}, Accommodation type: {accommodation_type}, Number of people: {number_of_people}, Number of rooms: {number_of_rooms}, Days: {days}?"
utter_age_at_least_18:
- text: "You need to be at least 18 years old"
utter_invalid_age:
- text: "Invalid Age input"
utter_ask_age:
- text: "How old are you?"
utter_invalid_number_of_rooms_input:
- text: "You entered greater number for rooms than for the number of people"