How do I deploy my RASA chat bot to the web using Flask?

typically running it with Flask would mean that you will need to import rasa as a python library and run inference using the python API.

You can see here on how to use rasa as a python library and expose the results as a flask API.

for performance purposes, i would consider asyncio framework, which is used in Sanic, i think maybe also Fast API.

1 Like