DEFAULT_FEWSHOT_EXAMPLES = '\nQuestion: How many rows are in the table <
table
>?\nDAX: EVALUATE ROW(
"Number of rows",
COUNTROWS(<table>))\n----\nQuestion: How many rows are in the table <table> where <column> is not empty?\nDAX: EVALUATE ROW("Number of rows",
COUNTROWS(FILTER(<table>, <table>[<column>] <> "")))\n----\nQuestion: What was the average of <column> in <table>?\nDAX: EVALUATE ROW("Average",
AVERAGE(<table>[<column>])
)\n----\n'