Reputation: 17
So I have an application in Python and I used Watson Conversation. However, I've been encountering some challenges specially on Dialogue. It works on "try it out" however when it comes to the application it doesn't accept skip user input
Dialogue
Watson response/ User input
Conversation_start = " " / (hello)
Node 1 : Check for weather intent / (check for the weather on this location)
Node1.1(child) : computation / (ok) ///// HOW TO SKIP THIS /////
Node1.1.1(child) : print computation / (Thank you)
Thanks
Upvotes: 0
Views: 222
Reputation: 17118
You don't share any code or workspace information. My guess is that you are not sending the dialog context back to the Conversation service. The service has a stateless API. In order to continue in a dialog, it needs the context of the ongoing chat.
I have written a Python-based tool to work with the Conversation service. You can also use it to test the dialog. Check the code to see how the context is retrieved and then sent back.
Upvotes: 1