mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 18:25:00 +00:00
23 lines
452 B
Markdown
23 lines
452 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><pre>{{ row.command }}</pre></td>
|
|
<td>{{ row.format }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|