mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-21 21:04:59 +00:00
cleaner logging, avoid func formats with old models
This commit is contained in:
parent
6471b89033
commit
1251285ac8
2 changed files with 5 additions and 3 deletions
|
@ -610,9 +610,7 @@ class Coder:
|
||||||
# TODO: push this into subclasses
|
# TODO: push this into subclasses
|
||||||
args = self.parse_partial_args()
|
args = self.parse_partial_args()
|
||||||
if args:
|
if args:
|
||||||
explanation = args.get("explanation")
|
self.io.ai_output(json.dumps(args, indent=4))
|
||||||
if explanation:
|
|
||||||
self.io.ai_output(json.dumps(args, indent=4))
|
|
||||||
|
|
||||||
return interrupted
|
return interrupted
|
||||||
|
|
||||||
|
|
|
@ -22,6 +22,10 @@ def main():
|
||||||
for model in models:
|
for model in models:
|
||||||
for edit_format in edit_formats:
|
for edit_format in edit_formats:
|
||||||
# dump(model, edit_format)
|
# dump(model, edit_format)
|
||||||
|
|
||||||
|
if "-func" in edit_format and "-03" in model:
|
||||||
|
continue
|
||||||
|
|
||||||
dirname = f"rungrid-{model}-{edit_format}"
|
dirname = f"rungrid-{model}-{edit_format}"
|
||||||
|
|
||||||
cmd = [
|
cmd = [
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue