feat: Add --map-multiplier-no-files switch with default value of 2

This commit is contained in:
Paul Gauthier (aider) 2024-08-20 12:52:23 -07:00
parent 1ec02d7c73
commit 87d9a559cb

View file

@ -213,6 +213,12 @@ def get_parser(default_config_files, git_root):
default=False,
help="Enable caching of prompts (default: False)",
)
group.add_argument(
"--map-multiplier-no-files",
type=float,
default=2,
help="Multiplier for map tokens when no files are specified (default: 2)",
)
group.add_argument(
"--max-chat-history-tokens",
type=int,