Use GenVR models as custom ComfyUI nodes
ComfyUI is a powerful node-based interface for Stable Diffusion and AI workflows. GenVR provides custom nodes for all models, allowing you to integrate them into your ComfyUI pipelines.
Browse the model library, select a model, and click "Download ComfyUI" to get the custom node Python file.
Copy the downloaded file to your ComfyUI custom nodes directory:
ComfyUI/custom_nodes/genvr_category_subcategory.pyConfigure your GenVR credentials before starting ComfyUI:
# Linux/Mac
export GENVR_UID="your_user_id"
export GENVR_TOKEN="your_access_token"
# Windows (PowerShell)
$env:GENVR_UID="your_user_id"
$env:GENVR_TOKEN="your_access_token"Restart ComfyUI to load the new custom node. You'll find it under the "GenVR/{category}" category in the node menu.
All model parameters are exposed as node inputs with proper types: strings, integers, floats, dropdowns for enums, and multiline text for prompts.
Nodes output the result URL as a string, which can be connected to download nodes or other processing nodes in your workflow.
Progress is logged to the console during generation, so you can monitor the status of long-running generations.
Graceful error handling with clear error messages displayed in the node output and console logs.
Here's an example of chaining GenVR nodes in ComfyUI: