Skip to content

Commit

Permalink
Merge branch 'main' of github.com:paul-gauthier/aider
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-gauthier committed Sep 29, 2024
2 parents 485bfa2 + d511792 commit e5862ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion aider/coders/editblock_prompts.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class EditBlockPrompts(CoderPrompts):
4. *Concisely* suggest any shell commands the user might want to run in ```bash blocks.
Just suggest shell commands this way, not example code.
Only suggest complete shell commands that area ready to execute, without placeholders.
Only suggest complete shell commands that are ready to execute, without placeholders.
Only suggest at most a few shell commands at a time, not more than 1-3.
Use the appropriate shell based on the user's system info:
Expand Down
6 changes: 2 additions & 4 deletions aider/website/_posts/2024-09-26-architect.md
Original file line number Diff line number Diff line change
Expand Up @@ -407,14 +407,12 @@ 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>
{% endfor %}
{% endfor %}
</tbody>
</table>
</div>


</div>

0 comments on commit e5862ae

Please sign in to comment.