Merge pull request #631 from daniel-vainsencher/dvf_llm_log

This commit is contained in:
paul-gauthier 2024-06-17 13:58:46 -07:00 committed by GitHub
commit a596a32290
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 52 additions and 12 deletions

View file

@ -21,11 +21,17 @@ def get_parser(default_config_files, git_root):
auto_env_var_prefix="AIDER_",
)
group = parser.add_argument_group("Main")
group.add_argument(
"--llm-history-file",
metavar="LLM_HISTORY_FILE",
default=None,
help="Log the conversation with the LLM to this file (for example, .aider.llm.history)",
)
group.add_argument(
"files",
metavar="FILE",
nargs="*",
help="files to edit with an LLM (optional)",
help="files to edit with an LLM (optional)"
)
group.add_argument(
"--openai-api-key",