Restart the rasa actions server automatically whenever there is a change in actions file

Hi,

I’m new to RASA. I’m trying to reload the rasa run actions automatically whenever there is a change in the actions.py file. Is this even possible? I tried using rasa run actions --auto-reload but there is not use. So, is there any API that can restart the actions server? If not, how do we restart the actions server with Python scripting (without going to the terminal and making a manual command entry)?

I’m hoping for a response. Thanks in advance…

Rasa doesn’t have a built-in feature to automatically reload the rasa run actions server when changes are made to the actions.py file. The --auto-reload flag is meant for the Rasa Core server, not the actions server. YourTexasBenefits Login

There’s no Rasa specific feature for this but you could do it as part of a CI/CD pipeline.

Thanks for your response. Could you please guide me on how to do that CI/CD process?

You’ll find docs here.