Wrong action is getting called in between a story

@Abir how did you solved that ??

i used slots that defines the specific path and memoisation policy with a slight tuning of max_history and I dropped keras policy . Why i choose this approach was coz , it suited our needs

@yogeshkakde i see that once the bot executes “utter_ask_how_canhelp” there are 2 paths (definitely based on some processing criteria) . I would insist use a slot to make the paths distinct .

eg;

#path1

  • utter_ask_how…

    Slot{“flag”:“path1”}

  • create_reservation

#path2

  • utter_ask_how…

Slot{“flag”:“path2”}

  • activate_lpar

set the flag according to the path you wanna select from the action utter_ask_how …

it will solve your problem