From eb84d6095fe62b4e22c663a0def686689b5dce8e Mon Sep 17 00:00:00 2001 From: bilt Date: Thu, 31 Jul 2025 15:30:25 +0800 Subject: [PATCH] fix --- comfy/cli_args.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/comfy/cli_args.py b/comfy/cli_args.py index fe144ce88..381d5a6bd 100644 --- a/comfy/cli_args.py +++ b/comfy/cli_args.py @@ -49,6 +49,9 @@ parser.add_argument("--temp-directory", type=str, default=None, help="Set the Co parser.add_argument("--input-directory", type=str, default=None, help="Set the ComfyUI input directory. Overrides --base-directory.") parser.add_argument("--auto-launch", action="store_true", help="Automatically launch ComfyUI in the default browser.") parser.add_argument("--disable-auto-launch", action="store_true", help="Disable auto launching the browser.") +parser.add_argument("--disable_trigger_vercel_deploy", action="store_true", help="Disable vercel deploy.") +parser.add_argument("--frp_remote_port_idx", type=int, default=None, help="Set remote port idx.") + parser.add_argument("--cuda-device", type=int, default=None, metavar="DEVICE_ID", help="Set the id of the cuda device this instance will use.") cm_group = parser.add_mutually_exclusive_group() cm_group.add_argument("--cuda-malloc", action="store_true", help="Enable cudaMallocAsync (enabled by default for torch 2.0 and up).")