Technical Information
Bundled ComfyUI nodes¶
Visionatrix by default install and update these nodes:
- comfyui-art-venture
- ComfyUI-AutoCropFaces
- ComfyUI-BRIA_AI-RMBG
- ComfyUI-BiRefNet
- ComfyUI-Custom-Scripts
- ComfyUI-Impact-Pack
- comfyui-ollama
- ComfyUI-SUPIR
- ComfyUI-Visionatrix
- ComfyUI-WD14-Tagger
- comfyui_controlnet_aux
- ComfyUI_essentials
- ComfyUI_FizzNodes
- ComfyUI-Gemini
- ComfyUI_InstantID
- ComfyUI_IPAdapter_plus
- ComfyUI_UltimateSDUpscale
- efficiency-nodes-comfyui
- PuLID_ComfyUI
- rgthree-comfy
- Skimmed_CFG
- style_aligned_comfy
- was-node-suite-comfyui
- ComfyUI-Inpaint-CropAndStitch
- ComfyUI-PhotoMaker-Plus
- ComfyUI-VideoHelperSuite
- ComfyUI-Frame-Interpolation
We are gradually expanding the list.
The main reason many components are missing is that they are quite difficult to install, and we believe that an easy installation process is more important in most cases.
Workflows Storage¶
All public flows are located in the VixFlowsDocs repository.
The repository consists of a development branch main and a set of branches version-X.Y:
- version-0.5
- version-0.6
- ...
- version-1.0
- version-1.1
- main
Sets of public workflows are packaged in the root of the documentation and have the following form:
- flows-0.5.zip
- flows-0.6.zip
- ...
- flows-1.0.zip
- flows-1.1.zip
- flows.zip
The development version of Visionatrix fetches the flows.zip
archive by default.
Release versions of Visionatrix fetch sets of flows for their version.
Configuring Flows Sources¶
The FLOWS_URL
variable in Visionatrix has the default value of:
FLOWS_URL=https://visionatrix.github.io/VixFlowsDocs/
You can specify multiple URLs or paths to flow archives by separating them with semicolons ;
.
When element in the FLOWS_URL ends with /
, Visionatrix fetches an archive with flows appropriate for its version:
- For development versions, it fetches
flows.zip
. - For release versions, it fetches
flows-X.Y.zip
, whereX.Y
matches the major and minor Visionatrix version numbers.
Examples¶
-
Default Configuration:
FLOWS_URL=https://visionatrix.github.io/VixFlowsDocs/
Visionatrix will fetch flows from the official repository corresponding to its version.
-
Custom Flow Sources:
FLOWS_URL=https://visionatrix.github.io/VixFlowsDocs/;https://example.com/custom_flows.zip;/local/path/flows.zip
Visionatrix will fetch flows from:
- The official repository.
- A custom online archive at
https://example.com/custom_flows.zip
. - A local archive at
/local/path/flows.zip
.
Flow Merging and Versioning¶
-
When multiple flows have the same name across different sources, Visionatrix will:
- Prefer the flow with the highest version number.
- If versions are equal, the flow from the first source in the
FLOWS_URL
list takes precedence.
-
This allows you to override or supplement the default flows with custom ones.
Notes¶
-
Local Paths: You can specify local paths to flow archives, which is useful during development or when working offline.
-
URL Endings:
-
If a URL ends with
/
, Visionatrix automatically appends the appropriateflows.zip
orflows-X.Y.zip
based on its version. -
If a URL points directly to an archive (e.g.,
https://example.com/custom_flows.zip
), Visionatrix will use that specific file.
-