Simple story misbehave or does not work

I have the following simple story:

predefined_path_1

*greet

  • utter_greet
  • utter_ask_name
  • inform{“pname”:""}
    • utter_ask_age
  • inform{“page”:""}
    • utter_ask_weight
  • inform{“pweight”:""}
    • utter_how_you_feel

say goodbye

  • goodbye
    • utter_goodbye

When train and start the model it displays only the greet utter after I typed “hi” which is defined under greet intent in nlu.md after that it executes utter_ask_name, when I type in name everything stops, the bot displays only right arrow -> The flow/story does not proceed further with utter_ask_age and and so on. I have correctly defined my domain.yml and stories.md according documentation and the examples I did review.

I did read the docs, also reviewed the rasa examples, but can’t see in my simple case what is the problem.

Any hint/help is welcome.

can you please try running with the --debug flag? that should help provide more output. See Command Line Interface

Hi, I have tried --debug and the output is ok i think. here is something else i did try:

  1. Did edit my story to:

predefined_path_1

  • utter_greet
  • utter_ask_name
  • inform{“pname”:""}
    • utter_ask_age
  • inform{“page”:""}
    • utter_ask_weight
  • inform{“pweight”:""}
    • utter_how_you_feel
  1. Removed the nlu.md file, because I don’t need any nlu with this story, which contains only utterances and is taking input values via *inform to the named variables.

  2. I did test and with my nlu.md file, when include *greet in the story, but everything is the same.

Finally when I retrain the model and start : rasa shell nothing happens, no utterances were displayed and so on. –debug shows standard output.

I have no idea why this simple scenario doesn’t work. For example I did train and run the restaurant bot from rasa examples and it was ok.

My Idea is to start with simple bot scenario and then move to complicated one, but even at this stage I face problems.

Any Ideas, may i send over my files, so you can try with them too.