Skip to content

Commit 62a80bc

Browse files
committed
Update Agent Mode:
- Modify local tools to have a common file structure - Refactor agent_coder so it can loop through the local tools instead of requiring them to be hard coded
1 parent 6413896 commit 62a80bc

39 files changed

Lines changed: 1220 additions & 1064 deletions

aider/args.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -888,6 +888,12 @@ def get_parser(default_config_files, git_root):
888888
" or home directory)"
889889
),
890890
).complete = shtab.FILE
891+
group.add_argument(
892+
"--agent-config",
893+
metavar="AGENT_CONFIG_JSON",
894+
help="Specify Agent Mode configuration as a JSON string",
895+
default=None,
896+
)
891897
# This is a duplicate of the argument in the preparser and is a no-op by this time of
892898
# argument parsing, but it's here so that the help is displayed as expected.
893899
group.add_argument(

0 commit comments

Comments
 (0)