forked from artificial-nikhita/starter-pack-rasa-stack
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdomain.yml
More file actions
48 lines (38 loc) · 688 Bytes
/
domain.yml
File metadata and controls
48 lines (38 loc) · 688 Bytes
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
intents:
- greet
- goodbye
- thanks
- deny
- joke
- name
- stock
- help
- financetip
entities:
- name
slots:
name:
type: text
actions:
- utter_hello
- utter_name
- utter_thanks
- utter_greet
- utter_goodbye
- action_stockInfo
- action_healthArticles
- utter_help
- action_financeTips
templates:
utter_hello:
- text: "Hi there!"
utter_help:
- text: "My current commands are: stock <stock symbol> - displays stock information for given company"
utter_name:
- text: "Hey there! Tell me your name."
utter_greet:
- text: "Nice to you meet you {name}. How can I help?"
utter_goodbye:
- text: "Talk to you later!"
utter_thanks:
- text: "My pleasure."