mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 10:14:59 +00:00
31 lines
670 B
Markdown
31 lines
670 B
Markdown
|
|
# Aider's LLM code editing leaderboard
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Model</th>
|
|
<th>Final score</th>
|
|
<th>First try score</th>
|
|
<th>Edit format</th>
|
|
<th>Command</th>
|
|
<th>Version</th>
|
|
<th>Git commit</th>
|
|
<th>Date</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for row in site.data.leaderboard %}
|
|
<tr>
|
|
<td>{{ row.model }}</td>
|
|
<td>{{ row.second }}</td>
|
|
<td>{{ row.first }}</td>
|
|
<td>{{ row.format }}</td>
|
|
<td>{{ row.command }}</td>
|
|
<td>{{ row.version }}</td>
|
|
<td>{{ row.commit }}</td>
|
|
<td>{{ row.date }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|