Merge branch 'main' of github.com:paul-gauthier/aider

This commit is contained in:
Paul Gauthier 2024-09-29 15:50:53 -07:00
commit e5862ae81e
2 changed files with 3 additions and 5 deletions

View file

@ -407,7 +407,7 @@ this model with aider.
{% for item in group.items %}
<tr class="{% if group_class == 1 %}shaded{% endif %}">
<td>{{ item.model }}</td>
<td>{{ item.editor_model | default: "<b>Baseline<b>" }}</td>
<td>{% if item.editor_model %}{{ item.editor_model }}{% else %}<b>Baseline</b>{% endif %}</td>
<td style="text-align: center;">{{ item.editor_edit_format | default: item.edit_format }}</td>
<td style="text-align: right;">{{ item.pass_rate_2 }}%</td>
</tr>
@ -415,6 +415,4 @@ this model with aider.
{% endfor %}
</tbody>
</table>
</div>
</div>