You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -319,6 +320,32 @@ For models compatible with Iluvatar Extension for PyTorch. Here's a step-by-step
319
320
1. Install the Iluvatar Corex Toolkit by adhering to the platform-specific instructions on the [Installation](https://support.iluvatar.com/#/DocumentCentre?id=1&nameCenter=2&productId=520117912052801536)
**ComfyUI-Manager** is an extension that allows you to easily install, update, and manage custom nodes for ComfyUI.
327
+
328
+
### Setup
329
+
330
+
1. Install the manager dependencies:
331
+
```bash
332
+
pip install -r manager_requirements.txt
333
+
```
334
+
335
+
2. Enable the manager with the `--enable-manager` flag when running ComfyUI:
336
+
```bash
337
+
python main.py --enable-manager
338
+
```
339
+
340
+
### Command Line Options
341
+
342
+
| Flag | Description |
343
+
|------|-------------|
344
+
|`--enable-manager`| Enable ComfyUI-Manager |
345
+
|`--enable-manager-legacy-ui`| Use the legacy manager UI instead of the new UI (requires `--enable-manager`) |
346
+
|`--disable-manager-ui`| Disable the manager UI and endpoints while keeping background features like security checks and scheduled installation completion (requires `--enable-manager`) |
Copy file name to clipboardExpand all lines: comfy/cli_args.py
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -121,6 +121,12 @@ class LatentPreviewMethod(enum.Enum):
121
121
upcast.add_argument("--dont-upcast-attention", action="store_true", help="Disable all upcasting of attention. Should be unnecessary except for debugging.")
122
122
123
123
124
+
parser.add_argument("--enable-manager", action="store_true", help="Enable the ComfyUI-Manager feature.")
manager_group.add_argument("--disable-manager-ui", action="store_true", help="Disables only the ComfyUI-Manager UI and endpoints. Scheduled installations and similar background tasks will still operate.")
127
+
manager_group.add_argument("--enable-manager-legacy-ui", action="store_true", help="Enables the legacy UI of ComfyUI-Manager")
128
+
129
+
124
130
vram_group=parser.add_mutually_exclusive_group()
125
131
vram_group.add_argument("--gpu-only", action="store_true", help="Store and run everything (text encoders/CLIP models, etc... on the GPU).")
126
132
vram_group.add_argument("--highvram", action="store_true", help="By default models will be unloaded to CPU memory after being used. This option keeps them in GPU memory.")
@@ -131,7 +137,8 @@ class LatentPreviewMethod(enum.Enum):
131
137
132
138
parser.add_argument("--reserve-vram", type=float, default=None, help="Set the amount of vram in GB you want to reserve for use by your OS/other software. By default some amount is reserved depending on your OS.")
parser.add_argument("--async-offload", nargs='?', const=2, type=int, default=None, metavar="NUM_STREAMS", help="Use async weight offloading. An optional argument controls the amount of offload streams. Default is 2. Enabled by default on Nvidia.")
parser.add_argument("--force-non-blocking", action="store_true", help="Force ComfyUI to use non-blocking operations for all applicable tensors. This may improve performance on some non-Nvidia systems but can cause issues with some workflows.")
137
144
@@ -178,6 +185,7 @@ class PerformanceFeature(enum.Enum):
0 commit comments