File size: 947 Bytes
3222229
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
version: "3.1"
stories:
- story: happy_path
  steps:
  - intent: greet
  - action: utter_greet
  - intent: mood_happy
  - action: utter_happy
  - intent: goodbye
  - action: utter_goodbye
- story: sad_path
  steps:
  - intent: greet
  - action: utter_greet
  - intent: mood_unhappy
  - action: action_joke
  - intent: goodbye
  - action: utter_goodbye
- story: weather_with_location
  steps:
  - intent: greet
  - action: utter_greet
  - intent: get_weather
    entities:
    - location: Mississauga
  - slot_was_set:
    - location: Mississauga
  - action: action_get_weather
  - intent: goodbye
  - action: utter_goodbye
- story: weather_without_location
  steps:
  - intent: greet
  - action: utter_greet
  - intent: get_weather
  - action: utter_ask_location
  - intent: inform
    entities:
    - location: Mississauga
  - slot_was_set:
    - location: Mississauga
  - action: action_get_weather
  - intent: goodbye
  - action: utter_goodbye