I'm trying to use the cm-cli to get the dependencies of a workflow
python $ROOT/custom_nodes/ComfyUI-Manager/cm-cli.py deps-in-workflow --workflow $SCRIPT_ROOT/default_workflow.json --output $SCRIPT_ROOT/default_workflow_deps.json
And there is a node of type: SDXLPromptStyler which is returning https://github.com/regiellis/ComfyUI-SDXL-Adherence as the node dep.. but actually it should be https://github.com/twri/sdxl_prompt_styler . Seems that both custom nodes have that type registered.
I think the code should use properties.cnr_id to get the custom node.
|
node_name = x.get('type') |
Thanks
I'm trying to use the cm-cli to get the dependencies of a workflow
python $ROOT/custom_nodes/ComfyUI-Manager/cm-cli.py deps-in-workflow --workflow $SCRIPT_ROOT/default_workflow.json --output $SCRIPT_ROOT/default_workflow_deps.jsonAnd there is a node of type:
SDXLPromptStylerwhich is returninghttps://github.com/regiellis/ComfyUI-SDXL-Adherenceas the node dep.. but actually it should behttps://github.com/twri/sdxl_prompt_styler. Seems that both custom nodes have that type registered.I think the code should use
properties.cnr_idto get the custom node.ComfyUI-Manager/glob/manager_core.py
Line 2843 in 001adf1
Thanks