Get NLU results in custom action?

Is there anyway I can get the output of NLU , i.e. the entire json returned when querying an NLU endpoint, within a custom_action?

One way would be to just load a new model/ have an endpoint running, but is there a simpler way? Can I get the interpreter object somehow?

You can try to use tracker.current_state()["latest_message"] to get the NLU results

1 Like

Thank for the information.

Thanks, that’s perfect :slight_smile: