notice
This is documentation for Rasa Documentation v2.x, which is no longer actively maintained.
For up-to-date documentation, see the latest version (3.x).
Version: 2.x
rasa.core.training.story_reader.story_step_builder
StoryStepBuilder Objects
class StoryStepBuilder()
add_user_messages
| add_user_messages(messages: List[UserUttered], unfold_or_utterances: bool = True) -> None
Adds next story steps with the user's utterances.
Arguments:
messages
- User utterances.unfold_or_utterances
- Identifies if the user utterance is a part of OR statement. This parameter is used only to simplify the conversation from MD story files. Don't use it other ways, because it ends up in a invalid story that cannot be user for real training. Default value isTrue
, which preserves the expected behavior of the reader.