mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-03 03:05:00 +00:00
refactor: Remove total cost column from markdown table
This commit is contained in:
parent
f3f5f0f896
commit
70883d7fdc
1 changed files with 0 additions and 3 deletions
|
@ -210,7 +210,6 @@ See [Advanced model settings](https://aider.chat/docs/config/adv-model-settings.
|
||||||
|
|
||||||
## Results
|
## Results
|
||||||
|
|
||||||
# remove the total cost column. ai!
|
|
||||||
|
|
||||||
<table style="width: 100%; max-width: 800px; margin: auto; border-collapse: collapse; box-shadow: 0 2px 4px rgba(0,0,0,0.1); font-size: 14px;">
|
<table style="width: 100%; max-width: 800px; margin: auto; border-collapse: collapse; box-shadow: 0 2px 4px rgba(0,0,0,0.1); font-size: 14px;">
|
||||||
<thead style="background-color: #f2f2f2;">
|
<thead style="background-color: #f2f2f2;">
|
||||||
|
@ -220,7 +219,6 @@ See [Advanced model settings](https://aider.chat/docs/config/adv-model-settings.
|
||||||
<th style="padding: 8px; text-align: center;">Percent using correct edit format</th>
|
<th style="padding: 8px; text-align: center;">Percent using correct edit format</th>
|
||||||
<th style="padding: 8px; text-align: left;">Command</th>
|
<th style="padding: 8px; text-align: left;">Command</th>
|
||||||
<th style="padding: 8px; text-align: center;">Edit format</th>
|
<th style="padding: 8px; text-align: center;">Edit format</th>
|
||||||
<th style="padding: 8px; text-align: center;">Total Cost</th>
|
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
@ -232,7 +230,6 @@ See [Advanced model settings](https://aider.chat/docs/config/adv-model-settings.
|
||||||
<td style="padding: 8px; text-align: center;">{{ row.percent_cases_well_formed }}%</td>
|
<td style="padding: 8px; text-align: center;">{{ row.percent_cases_well_formed }}%</td>
|
||||||
<td style="padding: 8px;"><code>{{ row.command }}</code></td>
|
<td style="padding: 8px;"><code>{{ row.command }}</code></td>
|
||||||
<td style="padding: 8px; text-align: center;">{{ row.edit_format }}</td>
|
<td style="padding: 8px; text-align: center;">{{ row.edit_format }}</td>
|
||||||
<td style="padding: 8px; text-align: center;">{% if row.total_cost == 0 %}?{% else %}${{ row.total_cost | times: 1.0 | round: 2 }}{% endif %}</td>
|
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue