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