Ahmed Salah
Ahmed Salah

Reputation: 969

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?

Upvotes: 2

Views: 997

Answers (3)

Mitch
Mitch

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

data_henrik
data_henrik

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

Simon O'Doherty
Simon O'Doherty

Reputation: 9359

You can use <? intents ?> to get the information on the intents.

The object is read/writable in dialog.

Upvotes: 2

Related Questions