Prompt
{%- set names = [] -%} {%- set types = [] -%} {%- for ners in vertexSet -%} {%- for ner in ners if ner['name'] not in names -%} {{ names.append(ner['name']) | default("", True) }} {{ types.append(ner['type']) | default("", True) }} {%- endfor -%} {%- endfor -%} Given the following entities and their types, make a creative text. The types are PER (Person), LOC (Location), ORG (Organization), TIME (Time), NUM (Number), and MISC (Miscellaneous). {% for name, type in zip(names, types) -%} {{name}}{{": "}}{{type}} {% endfor %}
