mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-12 23:54:59 +00:00
23 lines
443 B
Markdown
23 lines
443 B
Markdown
|
|
# Aider's LLM code editing leaderboard
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Model</th>
|
|
<th>Percent correct</th>
|
|
<th>Command</th>
|
|
<th>Edit format</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for row in site.data.leaderboard %}
|
|
<tr>
|
|
<td>{{ row.model }}</td>
|
|
<td>{{ row.second }}%</td>
|
|
<td>`{{ row.command }}`</td>
|
|
<td>{{ row.format }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|