Prompt
Combine all of the following data into a concise and grammatically correct text: {% for feature in meaning_representation.split("]") %} {% set key = feature.split("[")[0].replace(",","") %} {% set value = feature.replace(",","").replace(key+"[", '''') %} {% if value != "" %} {{key}} : {{value}} {% endif %} {%- endfor %}
