mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-07 13:15:00 +00:00
ignore shell edits in base coder
This commit is contained in:
parent
1a3d8c4015
commit
919ea05482
2 changed files with 2 additions and 2 deletions
|
@ -1752,7 +1752,7 @@ class Coder:
|
||||||
edits = self.get_edits()
|
edits = self.get_edits()
|
||||||
edits = self.prepare_to_edit(edits)
|
edits = self.prepare_to_edit(edits)
|
||||||
self.apply_edits(edits)
|
self.apply_edits(edits)
|
||||||
return set(edit[0] for edit in edits)
|
return set(edit[0] for edit in edits if edit[0])
|
||||||
|
|
||||||
def apply_updates(self):
|
def apply_updates(self):
|
||||||
try:
|
try:
|
||||||
|
|
|
@ -275,7 +275,7 @@ MODEL_SETTINGS = [
|
||||||
"anthropic-beta": ANTHROPIC_BETA_HEADER,
|
"anthropic-beta": ANTHROPIC_BETA_HEADER,
|
||||||
},
|
},
|
||||||
cache_control=True,
|
cache_control=True,
|
||||||
reminder=None,
|
reminder="user",
|
||||||
),
|
),
|
||||||
ModelSettings(
|
ModelSettings(
|
||||||
"anthropic/claude-3-5-sonnet-20240620",
|
"anthropic/claude-3-5-sonnet-20240620",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue