feat: Add --cache-warming-pings option to Coder.create

This commit is contained in:
Paul Gauthier (aider) 2024-08-26 16:26:23 -07:00
parent ee11af11db
commit 9d593c5fa2

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(
"--cache-warming-pings",
type=int,
default=0,
help="Number of pings to warm up the cache (default: 0)",
)
group.add_argument(
"--map-multiplier-no-files",
type=float,