feat: Update table formatting in blog post

This commit is contained in:
Paul Gauthier 2024-09-26 08:29:14 -07:00 committed by Paul Gauthier (aider)
parent fb9ffca9ea
commit 40bf3a1e58

View file

@ -41,9 +41,9 @@ Here's a table containing the benchmark data for different model configurations:
<th>Senior</th>
<th>Junior</th>
<th>Edit Format</th>
<th>Pass Rate (%)</th>
<th>Average Time (sec)</th>
<th>Total Cost ($)</th>
<th>Pass Rate</th>
<th>Average Time</th>
<th>Total Cost</th>
</tr>
</thead>
<tbody>
@ -54,9 +54,9 @@ Here's a table containing the benchmark data for different model configurations:
<td>{{ item.model }}</td>
<td>{{ item.junior_model }}</td>
<td>{{ item.junior_edit_format | default: item.edit_format }}</td>
<td>{{ item.pass_rate_2 }}</td>
<td>{{ item.seconds_per_case }}</td>
<td>${{ item.total_cost | number_format: 2 }}</td>
<td>{{ item.pass_rate_2 }}%</td>
<td>{{ item.seconds_per_case }}sec</td>
<td>${{ item.total_cost }}</td>
</tr>
{% endfor %}
{% endfor %}