rasa.run() starts the sanic server and exposes multiple APIs to be accessed. For example: webhook/rest/webhook for Chat API.
I read in Rasa documentation that
We recommend to not expose the Rasa Server to the outside world, but rather connect to it from your backend over a private connection (e.g. between docker containers).
Is it possible to wrap the Sanic server API within another API without starting multiple servers? Since its a chat conversation, having multiple API calls can delay the response time.
Appreciate any thoughts on this!!