I am trying to create RESTful api for my application. In my implementation, I need to make a http call from a web server to rasa server in order to retrieve responses from the bot. I have several questions to ask:
1, In order to distinguish different users, a conversation id is required. How can a http call be make from the web server to get a conversation id at the beginning of the conversation?
2, Is any conversation distinguishable from one another? That is, I can tell which conversation is started by which user according to conversation_id or sender_id?
3, What is the maximum concurrent users for rasa server? What I mean concurrent is the number of sessions/conversation the bot handles at a given period, but not concurrent messages at the same time.
Thanks!