Anyone using vs code debugger with actions file?

if anyone is using any debugger with actions.py file please let me know

you can use debugger tools like:
pdb
or use python script run action server, like:


from rasa.shared.constants import DEFAULT_ACTIONS_PATH
from rasa_sdk.endpoint import run

run(
    action_package_name=DEFAULT_ACTIONS_PATH,
    port=8080
)
1 Like