Unwanted SetSlots payload utterance in rasa inspect - Rasa Pro CALM

domain.yml:

  utter_ask_info_or_loan:
    - text: "Which one do you want to check out?"
      buttons:
        - title: "Other Information"
          payload: "/SetSlots(info_or_loan=other)"
        - title: "Loan Details"
          payload: "/SetSlots(info_or_loan=loan)"

  utter_ask_loan_choice:
    - text: "Please select what you want to know more about bike loans"
      buttons:
        - title: "Loan Eligibility"
          payload: "/SetSlots(loan_choice=eligibility)"

image2

How can i make the payload from the button to not come in the chat as user input but rather go the next step after user clicking on the button?

Any solution provided to this is appreciated.

rasa inspector is meant to be a debugging tool so being able to see those SetSlot commands is intentional.

You’d have to use your own chat widget for testing the assistant locally to not see those payloads.