Ihow is possible to rasa run debug for rasa open source?

I would like to post messages to “rasa server” and see what’s going on. Unfortunately “rasa run” doesn’t take --debug and log file records only time start and end of the session. Post about debug in the forum are really outdated … Any idea? Thanks

You can run rasa by python script like this:

import rasa
rasa.run(
    model="models",
    endpoints="endpoints.yml",
    credentials="credentials.yml"
)

ok thanks !!!