-
Notifications
You must be signed in to change notification settings - Fork 0
/
domain.yml
128 lines (121 loc) · 4.19 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
version: '2.0'
config:
store_entities_as_slots: true
session_config:
session_expiration_time: 60
carry_over_slots_to_new_session: true
intents:
- inform_figures:
use_entities: true
- service
- thank_you
- inform_medium:
use_entities: true
- inform_style:
use_entities: true
- greet
- goodbye
- bot_challenge
- out_of_scope
- inform_background:
use_entities: true
- inform_email:
use_entities: true
- ask_samples
- nlu_fallback
entities:
- figures
- medium
- style
- background
- email
- price
slots:
style:
type: text
influence_conversation: true
medium:
type: text
influence_conversation: true
figures:
type: text
influence_conversation: true
background:
type: text
influence_conversation: true
email:
type: text
influence_conversation: true
price:
type: text
influence_conversation: true
requested_slot:
type: text
influence_conversation: false
responses:
utter_greet:
- text: ආයුබෝවන්! මම තමයි මේ චිත්ර ශිල්පියාගේ රොබෝ නියෝජිත :) ඔබට අවශ්ය සේවාව කුමක්ද?
utter_goodbye:
- text: සුබ දවසක්!
utter_iamabot:
- text: මම RASA වලින් හදපු රොබෝ කෙනෙක්. මම තමයි මේ චිත්ර ශිල්පියාගේ රොබෝ නියෝජිත :)
utter_service:
- text: ඔබට අපෙන් චිත්රයක් මිලදී ගන්න පුළුවන් :) මුලින්ම ඔබගේ අවශ්යතා ගැන මට දැනගැනීමට අවශ්යයි.
utter_ask_medium:
- text: ඔබට චිත්රය අවශ්ය ඩිජිටල්(Digital) මාධ්යයෙන්ද? සම්ප්රධායික(Traditional) මාධ්යයෙන්ද?
utter_ask_style:
- text: ඔබට අවශ්ය රේඛා(Line art) චිත්රයක්ද? වර්ණවත්(Colored) චිත්රයක්ද?
utter_ask_figures:
- text: ඔබගේ චිත්රයේ මිනිස් රූප(Figures) කීයක් තිබිය යුතුද?
utter_ask_background:
- text: ඔබගේ චිත්රයට පසුබිමක්(Background) අවශ්යද?
utter_ask_email:
- text: කරුණාකර ඔබගේ email ලිපිනය ලබාදෙන්න?
utter_no_worries:
- text: සුළු දෙයක් :)
- text: එය මගේ රාජකාරිය.
- text: ඔබ සමග කතා කිරීමට ලැබීම ගැන සතුටුයි.
utter_out_of_scope:
- text: සමාවෙන්න. මට ඒක වැටහුනේ නෑ. කරුණාකර නැවත ප්රශ්නය/අදහස යොමු කරන්න.
utter_slot_values:
- text: |-
- මාධ්ය: {medium}
- ශෛලිය: {style}
- මිනිස් රූප ගණන: {figures}
- පසුබිම: {background}
- Email address: {email}
- මිල: රු.{price}
utter_submit:
- text: ඔබගේ ඇනවුම සම්පූරණයි! ගෙවීම් කටයුතු හා අනෙකුත් තොරතුරු සදහා කරුණාකර ඔබගේ email පරික්ෂා කරන්න.
utter_ask_samples:
- text: පෙර නිර්මාණ දැකගැනීම සදහා කරුණාකර පහත වෙබ් අඩවියට පිවිසෙන්න. (www.websiteoftheartist.lk)
actions:
- utter_service
- utter_figures
- utter_goodbye
- utter_greet
- utter_medium
- utter_no_worries
- utter_slot_values
- utter_style
- utter_submit
- action_reset_all_slots
- action_calculate_price
forms:
artist_form:
required_slots:
medium:
- entity: medium
type: from_entity
style:
- entity: style
type: from_entity
figures:
- entity: figures
type: from_entity
background:
- entity: background
type: from_entity
email:
- entity: email
type: from_entity