-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdomain.yml
42 lines (42 loc) · 907 Bytes
/
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
session_config:
session_expiration_time: 0.0
carry_over_slots_to_new_session: true
intents:
- greet
- qa
- affirm
- deny
entities:
- reject
- accept
slots:
accept:
type: text
initial_value: yes
reject:
type: text
initial_value: No
responses:
utter_greet:
- text: Hi, is there any question I can answer for you?
utter_goodbye:
- text: Awesome, nice to hear that.
utter_default:
- text: Sorry, I don't know what you mean.
utter_helpful:
- text: Was that helpful?
utter_not_helpful:
- text: Oh, I'm sorry, could you ask the question in a different way, maybe simplify
the question
utter_sorry:
- text: I could not find an answer for that, could you simplify the question or
ask in different way?
actions:
- actions.ActionGetFAQAnswer
- utter_greet
- utter_goodbye
- action_get_answer
- utter_helpful
- utter_not_helpful
- utter_default
- utter_sorry