-
Notifications
You must be signed in to change notification settings - Fork 4
/
domain.yml
100 lines (94 loc) · 2.17 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
95
96
97
98
99
100
version: '2.0'
config:
store_entities_as_slots: true
session_config:
session_expiration_time: 60
carry_over_slots_to_new_session: true
intents:
- greet:
use_entities: false
- goodbye:
use_entities: false
- query_books:
ignore_entities:
- director
- actors
- query_movies:
ignore_entities:
- author
- know_more:
use_entities: true
entities:
- object_type
- mention
- attribute
- author
- genres
- director
- actors
- publication_year
- limit
slots:
object_type:
type: rasa.shared.core.slots.TextSlot
initial_value: null
auto_fill: true
influence_conversation: true
mention:
type: rasa.shared.core.slots.TextSlot
initial_value: null
auto_fill: true
influence_conversation: false
attribute:
type: rasa.shared.core.slots.TextSlot
initial_value: null
auto_fill: true
influence_conversation: false
author:
type: rasa.shared.core.slots.TextSlot
initial_value: null
auto_fill: true
influence_conversation: false
genres:
type: rasa.shared.core.slots.TextSlot
initial_value: null
auto_fill: true
influence_conversation: false
director:
type: rasa.shared.core.slots.TextSlot
initial_value: null
auto_fill: true
influence_conversation: false
actors:
type: rasa.shared.core.slots.TextSlot
initial_value: null
auto_fill: true
influence_conversation: false
publication_year:
type: rasa.shared.core.slots.TextSlot
initial_value: null
auto_fill: true
influence_conversation: false
limit:
type: rasa.shared.core.slots.FloatSlot
initial_value: null
auto_fill: true
influence_conversation: false
max_value: 1.0
min_value: 0.0
responses:
utter_greet:
- text: Hey!
- text: Hello! How can I help you?
- text: Hi, how are you? What can I do for you?
utter_goodbye:
- text: Bye
- text: Thanks for stopping by. See ya!
- text: Goodbye. See you soon.
utter_ask_rephrase:
- text: Sorry, I'm not sure I understand. Can you rephrase?
- text: Can you please rephrase? I did not get that.
actions:
- action_query_knowledge_base
forms: {}
e2e_actions: []