-
Notifications
You must be signed in to change notification settings - Fork 1
/
domain.yml
74 lines (70 loc) · 1.47 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
slots:
first_name:
type: text
last_name:
type: text
age:
type: unfeaturized
validation:
type: categorical
values:
- valid
- invalid
gender:
type: categorical
values:
- Male
- Female
first_row:
type: unfeaturized
second_row:
type: unfeaturized
third_row:
type: unfeaturized
intents:
- info
- row
entities:
- greet
- first_name
- last_name
- age
- gender
- first_row
- second_row
- third_row
templates:
utter_greet:
- 'Hello! I am Elth. I am your personal assistant.\nBefore starting please tell me your first name'
utter_lastname:
- 'Before starting please tell me your last name.'
utter_gender:
- text: 'And your gender?
- Male
- Female'
utter_work:
- 'Hello {first_name} {last_name}, How are you? For a sample of my work I can show you how to make a transpose of a 3X3 matrix.'
utter_firstrow:
- 'Enter the first row of the matrix(3 integers space seperated)'
utter_secondrow:
- 'Enter the second row of the matrix(3 integers space seperated)'
utter_thirdrow:
- 'Enter the third row of the matrix(3 integers space seperated).'
actions:
- utter_greet
- utter_lastname
- utter_gender
- utter_work
- utter_firstrow
- utter_secondrow
- utter_thirdrow
- action_first_name_slot
- action_last_name_slot
- action_age
- action_age_validation
- action_registration
- action_work
- action_first_row
- action_second_row
- action_third_row
- action_transpose_matrix