FollowUpAction in Rasa 3.X

Hi everyone, I am trying to trigger a followupaction in the return statement of another action, like this:

return [FollowupAction(action_name)]

but, I can’t find the correct documentation for doing this in rasa 3.5. I get module not found errors when trying to do the old fashioned imports. Any help is really appreciated.

for anyone who has this question after me, i added this import statement that fixed it:

from rasa_sdk.events import FollowupAction

and then used the return statement to trigger it.

1 Like