slots:
room_type_name:
type: text
influence_conversation: false
responses:
utter_display_reservation_info:
- text: |
your reservation information
-----------------------------
have requested to book a {room_type_name} room
in actions.py i have the following code to set the slot
SlotSet("room_type_name", "Double Bed Room")
but when i display the response im getting the following response:
your reservation information
-----------------------------
have requested to book a None room
im setting the slot with the value i need but im still getting it as None,