How can I get intent confidence in the IBM Watson Assistance user interface?


How can I get intent confidence in the IBM Watson Assistance user interface?
I can get intents confidence via the JSON response object by back-end languages like Node or Python, but I can't get that in the browser-based IBM Watson Assistant user interface. Is there a way to get that?
2 Answers
2
The Watson Assistant online tool to edit workspaces and the dialog elements has the "Try it out". However, it does not have the capabilities yet to explore the JSON structure returned by the message API.
What I use is this tool which allows to test a conversation, see and edit the context and inspect the confidence levels.
intents[1]
You can use <? intents ?>
to get the information on the intents.
<? intents ?>
The object is read/writable in dialog.
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
So if I want to build a real-life product nowadays I shall use a back-end language to handle everything as the lack of capabilities in browser-based IBM Watson Assistant user interface right? I have another question please, Can I get the second most confident intent on the IBM-WA UI, something like
intents[1]
?– Ahmed Salah
9 hours ago