atkiya110 commited on
Commit
c6a36b5
·
verified ·
1 Parent(s): 65139ea

Update data/stories.yml

Browse files
Files changed (1) hide show
  1. data/stories.yml +42 -0
data/stories.yml CHANGED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ version: "3.1"
2
+
3
+ stories:
4
+
5
+ # ========================================
6
+ # BASIC CONVERSATIONS
7
+ # ========================================
8
+
9
+ - story: happy path
10
+ steps:
11
+ - intent: greet
12
+ - action: utter_greet
13
+ - intent: mood_great
14
+ - action: utter_happy
15
+
16
+ - story: sad path - affirm
17
+ steps:
18
+ - intent: greet
19
+ - action: utter_greet
20
+ - intent: mood_unhappy
21
+ - action: utter_cheer_up
22
+ - action: utter_did_that_help
23
+ - intent: affirm
24
+ - action: utter_great
25
+
26
+ - story: sad path - deny
27
+ steps:
28
+ - intent: greet
29
+ - action: utter_greet
30
+ - intent: mood_unhappy
31
+ - action: utter_cheer_up
32
+ - action: utter_did_that_help
33
+ - intent: deny
34
+ - action: utter_sorry
35
+ - intent: goodbye
36
+ - action: utter_goodbye
37
+
38
+ - story: bot challenge
39
+ steps:
40
+ - intent: bot_challenge
41
+ - action: utter_iamabot
42
+