12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- version: "3.1"
-
- stories:
-
- - story: happy path
- steps:
- - intent: greet
- - action: utter_greet
- - intent: mood_great
- - action: utter_happy
-
- - story: sad path 1
- steps:
- - intent: greet
- - action: utter_greet
- - intent: mood_unhappy
- - action: utter_cheer_up
- - action: utter_did_that_help
- - intent: affirm
- - action: utter_happy
- - action: action_service
-
-
-
- - story: sad path 2
- steps:
- - intent: greet
- - action: utter_greet
- - intent: mood_unhappy
- - action: utter_cheer_up
- - action: utter_did_that_help
- - intent: deny
- - action: utter_goodbye
- - action: action_service
-
-
- - story: sad path 3
- steps:
- - intent: connect_support
- - action: utter_video
- - action: action_suport_service
-
-
-
-
- - story: docs path
- steps:
- - intent: docs
- entities:
- - content_type: "Blogs"
- - slot_was_set:
- - content_type: "Blogs"
- - action: utter_blogs
-
-
-
- - story: video path
- steps:
- - intent: video
- entities:
- - content_type: "video"
- - slot_was_set:
- - content_type: "video"
- - action: action_suport_service
-
-
-
-
- - story: connecting support
- steps:
- - intent: connect_support
- entities:
- - content_type: "text"
- - slot_was_set:
- - content_type: "text"
- - action: utter_connect_support
- - action: action_save_conersation
- - action: action_clear_conversation
-
- - story: noconnecting support
- steps:
- - intent: noconnect_support
- entities:
- - content_type: "text"
- - slot_was_set:
- - content_type: "text"
- - action: utter_noconnect_support
-
|