Hi,
I was wondering if there was a way to get a list of the most likely matching intents by confidence using the RASA NLU python api?
Thanks, Raymond
Hi,
I was wondering if there was a way to get a list of the most likely matching intents by confidence using the RASA NLU python api?
Thanks, Raymond
the /parse
endpoint should return that no?
Is that for the HTTP server? I was using the python API with Agent
If you are using rasa_core agent, I think you can get intent_ranking by following code:
agent.tracker_store.get_or_create_tracker(sender_id).current_state()
Ohh that helps a lot, thank you!
you welcome