Rasa execute next action unless the previous action work flow is not completed, how can I solve this issue. I use asyncio.sleep method in my previous action work flow but regardless of completing the previous action it moves to next action.
What if action_1
sets a status slot value and your story would only execute action_2
if the status slot value indicated the first action was successful.
@stephens after every action run function i return []… I think there is nothing problem with []… so I want how can I set status slot in every action run method
I don’t understand what you are trying to say. The way you set slots within the custom action server is by returning SlotSet events to the rasa server.
so I want how can I set status slot in every action run method
You use SlotSet
which is shown with an example under Actions and Set a Slot.