We are working on FB messenger app which use IBM watson conversation for AI bot. But, we need quick replies like provided by wit.ai.
Is there any way to get quick replies or suggestion from watson conversation while getting message.
The Conversation API receives a text message and understands its intention giving the user an answer. It does not offer any kind of quick-replay or interface enhancements.
What you could do is develop this function in your integration software. Using wit.ai example:
User: “I want to order”
The integration software sends this message to Watson. It finds out that is the intention #order and send it back to the integration software. Instead of just send the answer to the user, knowing the #order intention, the integration software builds a quick reply:
Bot: “For here? yes or no?”
And you go on. You can build any kind of quick reply using images or buttons, for example.