Technical Information
Bundled ComfyUI nodes¶
Visionatrix by default install and update these nodes:
- comfyui-art-venture
- ComfyUI-AutoCropFaces
- ComfyUI_BiRefNet_ll
- 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
- ComfyUI-KJNodes
- ComfyUI_LayerStyle
- ComfyUI-Easy-Use
- ComfyUI_PuLID_Flux_ll
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 an 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.
-
Models Storage¶
All public models catalogs are located in the VixFlowsDocs repository.
Similar to workflows, 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
The models catalogs are available in the root of the documentation and have the following form:
- models_catalog-0.5.json
- models_catalog-0.6.json
- ...
- models_catalog-1.0.json
- models_catalog-1.1.json
- models_catalog.json
The development version of Visionatrix fetches the models_catalog.json
by default.
Release versions of Visionatrix fetch the models catalog for their version.
Configuring Models Catalog Sources¶
The MODELS_CATALOG_URL
variable in Visionatrix has the default value of:
MODELS_CATALOG_URL=https://visionatrix.github.io/VixFlowsDocs/
You can specify multiple URLs or paths to catalogs by separating them with semicolons ;
.
When an element in the MODELS_CATALOG_URL ends with /
, Visionatrix fetches the catalog appropriate for its version:
- For development versions, it fetches
models_catalog.json
. - For release versions, it fetches
models_catalog-X.Y.json
, whereX.Y
matches the major and minor Visionatrix version numbers.
Examples¶
-
Default Configuration:
MODELS_CATALOG_URL=https://visionatrix.github.io/VixFlowsDocs/
Visionatrix will fetch the models catalog from the repository corresponding to its version.
-
Custom Models Catalog Sources:
MODELS_CATALOG_URL=https://visionatrix.github.io/VixFlowsDocs/;https://example.com/custom_models_catalog.json;/local/path/models_catalog.json
Visionatrix will fetch models catalogs from:
- The official repository.
- A custom online catalog at
https://example.com/custom_models_catalog.json
. - A local catalog at
/local/path/models_catalog.json
.
Models Merging and Versioning¶
-
When multiple models have the same name across different sources, Visionatrix will:
- Prefer the model from the source listed later in the
MODELS_CATALOG_URL
variable. - Allow custom catalogs to override or supplement default models.
- Prefer the model from the source listed later in the
Notes¶
-
Local Paths: You can specify local paths to models catalogs, which is useful during development or when working offline.
-
URL Endings:
-
If a URL ends with
/
, Visionatrix automatically appends the appropriatemodels_catalog.json
ormodels_catalog-X.Y.json
based on its version. -
If a URL points directly to a catalog (e.g.,
https://example.com/custom_models_catalog.json
), Visionatrix will use that specific file.
-