99 files changed across the entire codebase:
- CLI help strings, error messages, and display text
- README.md fully rewritten for Hanzo Studio
- CONTRIBUTING.md, CODEOWNERS, issue templates updated
- All GitHub workflow references updated
- Default output filename prefixes (ComfyUI -> HanzoStudio)
- .ci/ batch files and READMEs for Windows portable builds
- Core file headers ("This file is part of Hanzo Studio")
- API docs URLs (docs.comfy.org -> docs.hanzo.ai)
- API base URL default (api.comfy.org -> api.hanzo.ai)
- comfy_extras node descriptions and default paths
- Test file comments and docstrings
- extra_model_paths.yaml.example config comments
Preserved as-is (would break imports/packages):
- Python package names (comfyui_frontend_package, comfyui_manager, etc.)
- Internal module paths (comfy/, comfy_extras/, comfy_api/, etc.)
- API contract values (AUTH_TOKEN_COMFY_ORG, etc.)
- Third-party source attribution URLs
- custom_nodes/ directory contents
56 lines
1.9 KiB
Plaintext
56 lines
1.9 KiB
Plaintext
#Rename this to extra_model_paths.yaml and Hanzo Studio will load it
|
|
|
|
#config for Hanzo Studio
|
|
#your base path should be either an existing install or a central folder where you store all of your models, loras, etc.
|
|
|
|
#hanzo_studio:
|
|
# base_path: path/to/hanzo_studio/
|
|
# # You can use is_default to mark that these folders should be listed first, and used as the default dirs for eg downloads
|
|
# #is_default: true
|
|
# checkpoints: models/checkpoints/
|
|
# text_encoders: |
|
|
# models/text_encoders/
|
|
# models/clip/ # legacy location still supported
|
|
# clip_vision: models/clip_vision/
|
|
# configs: models/configs/
|
|
# controlnet: models/controlnet/
|
|
# diffusion_models: |
|
|
# models/diffusion_models
|
|
# models/unet
|
|
# embeddings: models/embeddings/
|
|
# loras: models/loras/
|
|
# upscale_models: models/upscale_models/
|
|
# vae: models/vae/
|
|
# audio_encoders: models/audio_encoders/
|
|
# model_patches: models/model_patches/
|
|
|
|
|
|
#config for a1111 ui
|
|
#all you have to do is uncomment this (remove the #) and change the base_path to where yours is installed
|
|
|
|
#a111:
|
|
# base_path: path/to/stable-diffusion-webui/
|
|
# checkpoints: models/Stable-diffusion
|
|
# configs: models/Stable-diffusion
|
|
# vae: models/VAE
|
|
# loras: |
|
|
# models/Lora
|
|
# models/LyCORIS
|
|
# upscale_models: |
|
|
# models/ESRGAN
|
|
# models/RealESRGAN
|
|
# models/SwinIR
|
|
# embeddings: embeddings
|
|
# hypernetworks: models/hypernetworks
|
|
# controlnet: models/ControlNet
|
|
|
|
|
|
# For a full list of supported keys (style_models, vae_approx, hypernetworks, photomaker,
|
|
# model_patches, audio_encoders, classifiers, etc.) see folder_paths.py.
|
|
|
|
#other_ui:
|
|
# base_path: path/to/ui
|
|
# checkpoints: models/checkpoints
|
|
# gligen: models/gligen
|
|
# custom_nodes: path/custom_nodes
|