-
Notifications
You must be signed in to change notification settings - Fork 0
/
domain.yml
61 lines (55 loc) · 1.15 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
slots:
query:
type: text
number:
type: text
rating:
type: unfeaturized
address:
type: unfeaturized
opening_hours:
type: unfeaturized
location_match:
type: categorical
values:
- none
- one
intents:
- greet
- thanks
- goodbye
- place_search
- opening_hours
- address
- rating
- inform
entities:
- query
- number
responses:
utter_greet:
- text: "Hello! I am a places search assistant. I can help you find places wherever you are, provide information about the location like opening hours, rating, address. So what are you looking for?"
utter_goodbye:
- text: "Talk to you later!"
utter_thanks:
- text: "You are very welcome."
utter_what_radius:
- text: "Within what radius?"
utter_rating:
- text: "The rating is {rating}"
utter_address:
- text: "The address is {address}."
utter_opening_hours:
- text: "The place is {opening_hours}"
utter_no_results:
- text: "Sorry, I couldn't find anything."
actions:
- utter_greet
- utter_goodbye
- utter_thanks
- utter_what_radius
- utter_rating
- utter_opening_hours
- utter_address
- utter_no_results
- action_place_search