Training data for dialogue management (stories)
Rasa learns from conversations and manages knowledge by training on stories. The story is a high-level semantic way of recording conversations. It records not only the expressions from users, but also the correct state change within the system.
Rasa uses YAML format to store stories
. Here is an example of a story
:
stories: - story: This is the description of one story steps: - intent: greet - action: action_ask_howcanhelp - slot_was_set: - asked_for_help: true - intent: inform entities: - location: "New York" - price:...