Can we have multiple Action.py file in a project

I have the following folder structure:

  • My Project
    • actions
      • action_1.py
      • action_2.py
      • action_3.py

Run your actions using the following command in your root folder

  • python -m rasa_core_sdk.endpoint --actions actions

The -m treats the actions folder as a module rather than a directory.

3 Likes