-
Notifications
You must be signed in to change notification settings - Fork 68
/
domain.yml
131 lines (131 loc) · 2.24 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
session_config:
session_expiration_time: 60.0
carry_over_slots_to_new_session: true
intents:
- affirm
- bye
- compare_entities
- deny
- greet
- help
- out_of_scope
- query_attribute
- query_entities
- resolve_entity
entities:
- account
- account_type
- amount
- attribute
- bank
- card
- category
- country
- date
- email
- entities
- entity_type
- gender
- mention
- person
- phone_number
- reference
- transaction
slots:
account:
type: text
account_number:
type: text
account_type:
type: text
allowed_residents:
type: text
amount:
type: text
attribute:
type: text
balance:
type: text
bank:
type: text
card:
type: text
card_number:
type: text
category:
type: text
country:
type: text
created_date:
type: text
date:
type: text
email:
type: text
english_customer_service:
type: text
english_mobile_app:
type: text
english_website:
type: text
entity_type:
type: text
execution_date:
type: text
expiry_date:
type: text
free_accounts:
type: text
free_worldwide_withdrawals:
type: text
gender:
type: text
headquarters:
type: text
listed_items:
type: list
mention:
type: text
name:
type: text
name_on_card:
type: text
opening_date:
type: text
person:
type: text
phone_number:
type: text
reference:
type: text
transaction:
type: text
templates:
utter_greet:
- text: Hi. I can give you some information about banks or I can give you some details
about the accounts you own. What do you want to know?
utter_goodbye:
- text: Talk to you later!
- text: Bye.
utter_ok:
- text: Ok
utter_rephrase:
- text: Can you please rephrase?
- text: Sorry, I didn't get that. Can you rephrase?
utter_out_of_scope:
- text: Sorry, I cannot help you with that.
- text: I'm not able to help you with that.
utter_help:
- text: I can tell you some facts about different banks. I can answer some questions
about your accounts. And I can show you your recent transactions.
actions:
- action_compare_entities
- action_query_attribute
- action_query_entities
- action_resolve_entity
- utter_greet
- utter_goodbye
- utter_ok
- utter_rephrase
- utter_out_of_scope
- utter_help