mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 18:25:00 +00:00
added aider: prefix to gpt generated edits
This commit is contained in:
parent
a7490cdb24
commit
0fdd5d101b
2 changed files with 5 additions and 6 deletions
|
@ -4,6 +4,7 @@ import argparse
|
|||
from dotenv import load_dotenv
|
||||
from aider.coder import Coder
|
||||
|
||||
|
||||
def main():
|
||||
load_dotenv()
|
||||
env_prefix = "AIDER_"
|
||||
|
@ -64,7 +65,7 @@ def main():
|
|||
pretty = args.pretty
|
||||
|
||||
coder = Coder(args.model, fnames, pretty, args.history_file, args.show_diffs)
|
||||
coder.commit(ask=not args.commit_dirty, prefix="WIP: ")
|
||||
coder.commit(ask=not args.commit_dirty, prefix="wip: ")
|
||||
|
||||
if args.apply:
|
||||
with open(args.apply, "r") as f:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue