style: Format cost column to show two decimal places

This commit is contained in:
Paul Gauthier (aider) 2024-09-26 08:29:15 -07:00
parent 40bf3a1e58
commit 034e65912e

View file

@ -56,7 +56,7 @@ Here's a table containing the benchmark data for different model configurations:
<td>{{ item.junior_edit_format | default: item.edit_format }}</td> <td>{{ item.junior_edit_format | default: item.edit_format }}</td>
<td>{{ item.pass_rate_2 }}%</td> <td>{{ item.pass_rate_2 }}%</td>
<td>{{ item.seconds_per_case }}sec</td> <td>{{ item.seconds_per_case }}sec</td>
<td>${{ item.total_cost }}</td> <td>${{ item.total_cost | number: 2 }}</td>
</tr> </tr>
{% endfor %} {% endfor %}
{% endfor %} {% endfor %}