Prompt
{%- set locations = [] -%} {%- for ners in vertexSet -%} {%- for ner in ners if ner['type'] == 'LOC' -%} {{locations.append(ner['name']) | default("", True)}} {%- endfor -%} {%- endfor -%} {% if locations %} Find all of the locations in the text below. Please list all of them separated by commas. {% for sent in sents -%} {{ sent | join(" ") }}{{" "}} {%- endfor -%}\
