I am trying to build a bot that can take multiple user inputs and then trigger an action. I am trying to achieve this using forms but the challenge here is the user input can be very dynamic and we do not need any validation to happen. It just needs to take 3 inputs and finally trigger an action.
does your bot expect three Inputs every time a User communicates with him?
If so, I’d recommend to write a Custom Connector that overrides the RestInputConnector and takes up to three utterances before he forwards the user Inputs to the core.
does your bot expect three Inputs every time a User communicates with him? --> Yes always it expects three inputs from the user and once all the inputs are recieved for all three queries, then i should take all these three values and perform an action.
I will try the Custom Connector and will let you know if that is working. THanks for the reply.