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