forked from Atulvermaon18/RASA_CHATBOT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
domain.yml
94 lines (72 loc) · 1.55 KB
/
domain.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
88
89
90
91
92
93
94
intents:
- greet
- goodbye
- thanks
- deny
- joke
- name
- book_appt
- enter_data
- reschedule_appt
- cancel_appt
- affirm
- buy_policy
- show_lob
entities:
- name
slots:
person_name:
type: text
time:
type: text
actions:
- utter_name
- utter_thanks
- utter_greet
- utter_goodbye
- action_joke
- utter_bookappt
- utter_user_response
- utter_reschedule_appt
- utter_cancel_appt
- utter_affirm
- utter_bye
- action_greet
- ActionGreet
- action_bye
- ActionBye
- action_time_availablity
- ActionCheckTimeSlots
- utter_show_lob
- utter_show_policy
- utter_confirm_policy
- utter_default
templates:
utter_name:
- text: "Hey there! Tell me your name."
utter_greet:
- text: "Nice to you meet you {person_name}. How can I help?"
utter_goodbye:
- text: "Talk to you later!"
utter_thanks:
- text: "My pleasure."
utter_bookappt:
- text: "When do you want me to schedule your appointment"
utter_bye:
- text: "Have a nice day!"
utter_user_response:
- text: "Let me check for the avaliblity on {time}"
utter_reschedule_appt:
- text: "When do you want me to re-schedule your appointment"
utter_cancel_appt:
- text: "Are you sure?"
utter_affirm:
- text: "Done !"
utter_show_lob:
- text : "What kind of Insurance you are looking for?"
utter_show_policy:
- text: "We have 3 plan's under this - EXCLUSIVE, CLASSIC, PREMIUM"
utter_confirm_policy:
- text: "Great Chooice {person_name} !!, I'll send you details over mail. Anything else I can help you with?"
utter_default:
- text: "I'm Sorry, I didn't get that"