Slot templates

Hi all, I’m try to show more complex slots structure into a template For example if you want to show a slot into an utter you need to do this:

utter_hello:

  • text: ‘Hello {username}’

But now if my slot is more complex: user_slot = {“name”: “bob”, “age”: 10}

How can i show his age and name with the user_slot? I see the rasa/core/nlg/interpolator.py functions maybe i just need to overwrite this function ?

Why not just make individual slots for age and name?

@Krogsager Yes it’s true. But for my final use this slot can only set this way XD