parser.add_argument("--extra-model-paths-config",type=str,default=None,metavar="PATH",nargs='+',action='append',help="Load one or more extra_model_paths.yaml files.")
parser.add_argument("--output-directory",type=str,default=None,help="Set the ComfyUI output 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("--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).")