Hi all,
I am having a custom action, which uses this to send response:
dispatcher.utter_message(response="utter_debug_info")
dispatcher.utter_message(response="utter_something", json_message=debug)
print(f"ActionDialog(): step: {step}, signal: {signal}, current_utterance_index: {current_utterance_index}, utterance: {utterance}, intent: {intent}")
On rasa shell, I get the correct output:
DEBUG| step=1, signal=, utterance_index=-1
How can I help you?
Custom json:
{
"step": "1",
"signal": "",
"current_utterance_index": 0,
"utterance": "utter_offer_assistance",
"intent": "greet_user_for_article"
}
However, through the REST API, I get only How can I help you?
. Everything else is missing.
How to fix this bug?