Reputation: 969
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?
Upvotes: 2
Views: 997
Reputation: 849
You can also use network tools on your browser to see the Json of the whole message being passed around.
Typically you right click anywhere and click “inspect element” and then go to the network tab.
Upvotes: 0
Reputation: 17156
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. There is also another, browser-based, tool you could use. None of them are official.
Upvotes: 1
Reputation: 9359
You can use <? intents ?>
to get the information on the intents.
The object is read/writable in dialog.
Upvotes: 2