abarthakur
(Aneesh Barthakur)
1
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?
yobekiko
(Junyuan Zheng)
2
You can try to use tracker.current_state()["latest_message"]
to get the NLU results
1 Like
pam987
(Pam Jamer)
3
Thank for the information.