File size: 17,458 Bytes
89d9d14 4622fa9 89d9d14 6bc8afb 4622fa9 6bc8afb 4622fa9 6bc8afb 4622fa9 5d7d869 4622fa9 6bc8afb 4622fa9 6bc8afb 4622fa9 6bc8afb 4622fa9 6bc8afb 4622fa9 6bc8afb 4622fa9 6bc8afb 4622fa9 6bc8afb 4622fa9 6bc8afb 4622fa9 6bc8afb 4622fa9 6bc8afb 4622fa9 6bc8afb 4622fa9 6bc8afb 4622fa9 6bc8afb 4622fa9 114ea7f a17acd4 4622fa9 5d7d869 4622fa9 5d7d869 89d9d14 4622fa9 a17acd4 4622fa9 6bc8afb 4622fa9 6bc8afb 4622fa9 6bc8afb 4622fa9 6bc8afb 4622fa9 6bc8afb 4622fa9 6bc8afb 4622fa9 6bc8afb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 | #!/bin/bash
# =============================================================================
# ComfyUI Provisioning Script for Vast.ai
#
# Unified setup: installs custom nodes, downloads all models (LoRAs, VAE,
# checkpoints) from HuggingFace (private + public) and CivitAI.
#
# Uses aria2c for fast parallel downloads (16 connections per file).
#
# Environment variables (set in Vast.ai template Docker Options):
# HF_TOKEN - Required. HuggingFace token for private repos.
# CIVITAI_TOKEN - Required. CivitAI API token for gated models.
#
# Usage:
# # Set in Vast.ai template environment:
# HF_TOKEN=hf_xxx CIVITAI_TOKEN=xxx ./setup-comfyui-vastai.sh
#
# # Or source the ai-dock venv first (if using ai-dock template):
# source /venv/main/bin/activate && ./setup-comfyui-vastai.sh
# =============================================================================
set -uo pipefail
# =============================================================================
# Configuration
# =============================================================================
WORKSPACE="${WORKSPACE:-/workspace}"
COMFYUI_DIR="${COMFYUI_DIR:-${WORKSPACE}/ComfyUI}"
LORA_DIR="${COMFYUI_DIR}/models/loras"
VAE_DIR="${COMFYUI_DIR}/models/vae"
CKPT_DIR="${COMFYUI_DIR}/models/checkpoints"
CLIP_DIR="${COMFYUI_DIR}/models/clip"
TEXT_ENC_DIR="${COMFYUI_DIR}/models/text_encoders"
DIFFUSION_DIR="${COMFYUI_DIR}/models/diffusion_models"
UPSCALE_DIR="${COMFYUI_DIR}/models/upscale_models"
ULTRALYTICS_DIR="${COMFYUI_DIR}/models/ultralytics/bbox"
NODES_DIR="${COMFYUI_DIR}/custom_nodes"
# Activate venv if available (ai-dock template)
if [ -f /venv/main/bin/activate ]; then
source /venv/main/bin/activate
fi
# =============================================================================
# Model Definitions
# =============================================================================
# HuggingFace LoRAs — private repo (requires HF_TOKEN)
# Format: "filename|url"
HF_PRIVATE_LORAS=(
"Z-Isla_3K_0002_000003500.safetensors|https://huggingface.co/cozyga/test/resolve/main/Z-Isla_3K_0002_000003500.safetensors"
"z-kyla-v1.safetensors|https://huggingface.co/cozyga/test/resolve/main/z-kyla-v1.safetensors"
"m1a_zit_3.safetensors|https://huggingface.co/cozyga/test/resolve/main/m1a_zit_3.safetensors"
"c3lia_v1_000003600.safetensors|https://huggingface.co/cozyga/test/resolve/main/c3lia_v1_000003600.safetensors"
"c3lia_v1_000003900.safetensors|https://huggingface.co/cozyga/test/resolve/main/c3lia_v1_000003900.safetensors"
"qwen_c3lia_000003600.safetensors|https://huggingface.co/cozyga/test/resolve/main/qwen_c3lia_000003600.safetensors"
"s0fia_v2_000004800.safetensors|https://huggingface.co/cozyga/test/resolve/main/s0fia_v2_000004800.safetensors"
"s0fia_v2_000003700.safetensors|https://huggingface.co/cozyga/test/resolve/main/s0fia_v2_000003700.safetensors"
"s0fia_v2_000004300.safetensors|https://huggingface.co/cozyga/test/resolve/main/s0fia_v2_000004300.safetensors"
)
# HuggingFace LoRAs — public repos
HF_PUBLIC_LORAS=(
"l0ki_zit_v1_000003000.safetensors|https://huggingface.co/XLB666/qwenzitloras/resolve/main/l0ki_zit_v1_000003000.safetensors"
"l0ki_qwen_v1_000002800.safetensors|https://huggingface.co/XLB666/qwenzitloras/resolve/main/l0ki_qwen_v1_000002800.safetensors"
"dmd2_sdxl_4step_lora_fp16.safetensors|https://huggingface.co/tianweiy/DMD2/resolve/main/dmd2_sdxl_4step_lora_fp16.safetensors"
)
# CivitAI LoRAs (requires CIVITAI_TOKEN)
# Format: "filename|url"
# Explicit filenames avoid the CivitAI redirect long-filename bug
CIVITAI_LORAS=(
"zittitslider.safetensors|https://civitai.com/api/download/models/2478366"
"QwenEditVersatilePoses.safetensors|https://civitai.com/api/download/models/2457989?type=Model&format=SafeTensor"
"sdxlcloseuppussy.safetensors|https://civitai.com/api/download/models/2376235?type=Model&format=SafeTensor"
"amateurphotography.safetensors|https://civitai.com/api/download/models/2363467"
"nextscene.safetensors|https://civitai.com/api/download/models/2337214?type=Model&format=SafeTensor"
)
# CivitAI VAE models
CIVITAI_VAE=(
"zImage_vae.safetensors|https://civitai.com/api/download/models/2442479"
)
# CivitAI Checkpoints
CIVITAI_CHECKPOINTS=(
"checkpoint.safetensors|https://civitai.com/api/download/models/798204?type=Model&format=SafeTensor&size=full&fp=fp16"
"LustifyENDGAME.safetensors|https://civitai.com/api/download/models/1094291?type=Model&format=SafeTensor&size=pruned&fp=fp16"
"analogMadnessXL.safetensors|https://civitai.com/api/download/models/2207703?type=Model&format=SafeTensor&size=full&fp=fp16"
)
# --- HuggingFace public models (various directories) ---
HF_PUBLIC_TEXT_ENCODERS=(
"t5xxl_fp8_e4m3fn_scaled.safetensors|https://huggingface.co/comfyanonymous/flux_text_encoders/resolve/main/t5xxl_fp8_e4m3fn_scaled.safetensors"
"qwen_2.5_vl_7b_fp8_scaled.safetensors|https://huggingface.co/Comfy-Org/Qwen-Image_ComfyUI/resolve/main/split_files/text_encoders/qwen_2.5_vl_7b_fp8_scaled.safetensors"
)
HF_PUBLIC_CLIP=(
"qwen_3_4b.safetensors|https://huggingface.co/Comfy-Org/z_image_turbo/resolve/main/split_files/text_encoders/qwen_3_4b.safetensors"
)
HF_PUBLIC_DIFFUSION_MODELS=(
"z_image_turbo_bf16.safetensors|https://huggingface.co/Comfy-Org/z_image_turbo/resolve/main/split_files/diffusion_models/z_image_turbo_bf16.safetensors"
)
HF_PUBLIC_VAE=(
"qwen_image_vae.safetensors|https://huggingface.co/Comfy-Org/Qwen-Image_ComfyUI/resolve/main/split_files/vae/qwen_image_vae.safetensors"
"flux_vae.safetensors|https://huggingface.co/StableDiffusionVN/Flux/resolve/main/Vae/flux_vae.safetensors"
)
HF_PUBLIC_CHECKPOINTS=(
"Qwen-Rapid-AIO-SFW-v23.safetensors|https://huggingface.co/Phr00t/Qwen-Image-Edit-Rapid-AIO/resolve/main/v23/Qwen-Rapid-AIO-SFW-v23.safetensors"
"Qwen-Rapid-AIO-NSFW-v23.safetensors|https://huggingface.co/Phr00t/Qwen-Image-Edit-Rapid-AIO/resolve/main/v23/Qwen-Rapid-AIO-NSFW-v23.safetensors"
)
HF_PUBLIC_ULTRALYTICS=(
"FacesV1.pt|https://huggingface.co/ashllay/YOLO_Models/resolve/e07b01219ff1807e1885015f439d788b038f49bd/bbox/FacesV1.pt"
)
# --- HuggingFace private models — cozyga/test (non-lora) ---
HF_PRIVATE_CHECKPOINTS=(
"lustifySDXLNSFW_endgame.safetensors|https://huggingface.co/cozyga/test/resolve/main/lustifySDXLNSFW_endgame.safetensors"
)
HF_PRIVATE_UPSCALE=(
"1x-ITF-SkinDiffDetail-Lite-v1.pth|https://huggingface.co/cozyga/test/resolve/main/1x-ITF-SkinDiffDetail-Lite-v1.pth"
)
HF_PRIVATE_ULTRALYTICS=(
"nipple.pt|https://huggingface.co/cozyga/test/resolve/main/nipple.pt"
"pussyV2.pt|https://huggingface.co/cozyga/test/resolve/main/pussyV2.pt"
)
# Custom nodes to install/update
NODES=(
"https://github.com/ltdrdata/ComfyUI-Manager"
"https://github.com/ltdrdata/ComfyUI-Impact-Pack"
"https://github.com/ltdrdata/ComfyUI-Impact-Subpack"
"https://github.com/cubiq/ComfyUI_essentials"
"https://github.com/yolain/ComfyUI-Easy-Use"
"https://github.com/rgthree/rgthree-comfy"
"https://github.com/chflame163/ComfyUI_LayerStyle"
"https://github.com/numz/ComfyUI-SeedVR2_VideoUpscaler"
"https://github.com/EllangoK/ComfyUI-post-processing-nodes"
"https://github.com/wallish77/wlsh_nodes"
"https://github.com/chrisgoringe/cg-image-filter"
"https://github.com/Azornes/Comfyui-Resolution-Master"
"https://github.com/ltdrdata/was-node-suite-comfyui"
"https://github.com/DanrisiUA/ComfyUI-ZImage-LoRA-Merger"
# NOTE: moonwhaler/comfyui-seedvr2-tilingups returns 404 — removed
)
# Extra pip packages (installed after nodes)
PIP_PACKAGES=(
# "package-name"
)
# =============================================================================
# Functions
# =============================================================================
print_header() {
echo ""
echo "=============================================="
echo " ComfyUI Provisioning — Vast.ai"
echo "=============================================="
echo " Workspace: ${WORKSPACE}"
echo " ComfyUI: ${COMFYUI_DIR}"
echo " HF_TOKEN: ${HF_TOKEN:+set}${HF_TOKEN:-MISSING}"
echo " CIVITAI: ${CIVITAI_TOKEN:+set}${CIVITAI_TOKEN:-MISSING}"
echo "=============================================="
echo ""
}
# Install aria2c if not present (vast.ai containers are typically Debian/Ubuntu)
install_aria2() {
if command -v aria2c &>/dev/null; then
return 0
fi
echo "Installing aria2c for fast parallel downloads..."
if [ "$(id -u)" -eq 0 ]; then
apt-get update -qq && apt-get install -y -qq aria2
elif command -v sudo &>/dev/null; then
sudo apt-get update -qq && sudo apt-get install -y -qq aria2
else
echo "ERROR: aria2 not found and cannot install (not root, no sudo)."
echo "Falling back to wget."
return 1
fi
}
# Validate that a HuggingFace token is valid
validate_hf_token() {
if [ -z "${HF_TOKEN:-}" ]; then
echo "WARNING: HF_TOKEN is not set. Private HuggingFace downloads will fail."
return 1
fi
local status
status=$(curl -s -o /dev/null -w "%{http_code}" \
-H "Authorization: Bearer ${HF_TOKEN}" \
"https://huggingface.co/api/whoami-v2")
if [ "$status" -eq 200 ]; then
echo "HF_TOKEN: validated"
return 0
else
echo "WARNING: HF_TOKEN validation failed (HTTP ${status}). Private downloads may fail."
return 1
fi
}
# Validate that a CivitAI token is valid
validate_civitai_token() {
if [ -z "${CIVITAI_TOKEN:-}" ]; then
echo "WARNING: CIVITAI_TOKEN is not set. CivitAI downloads will fail."
return 1
fi
local status
status=$(curl -s -o /dev/null -w "%{http_code}" \
-H "Authorization: Bearer ${CIVITAI_TOKEN}" \
"https://civitai.com/api/v1/models?hidden=1&limit=1")
if [ "$status" -eq 200 ]; then
echo "CIVITAI_TOKEN: validated"
return 0
else
echo "WARNING: CIVITAI_TOKEN validation failed (HTTP ${status}). CivitAI downloads may fail."
return 1
fi
}
# Download a file if it doesn't already exist
# Uses aria2c with 16 parallel connections for speed
# Falls back to wget if aria2c is unavailable
#
# Usage: download_if_missing <dir> <filename> <url> [auth_header]
download_if_missing() {
local dir="$1"
local filename="$2"
local url="$3"
local auth_header="${4:-}"
mkdir -p "$dir"
if [ -f "${dir}/${filename}" ]; then
echo " [skip] ${filename}"
return 0
fi
echo " [downloading] ${filename}..."
# CivitAI uses redirect chains that aria2c can't follow with auth.
# Use curl -L for CivitAI URLs, aria2c for everything else.
if [[ "$url" =~ civitai\.com ]]; then
if [ -n "$auth_header" ]; then
curl -L -# -H "Authorization: Bearer ${auth_header}" \
-o "${dir}/${filename}" "$url"
else
curl -L -# -o "${dir}/${filename}" "$url"
fi
elif command -v aria2c &>/dev/null; then
if [ -n "$auth_header" ]; then
aria2c -x 16 -s 16 -k 1M -c \
--header="Authorization: Bearer ${auth_header}" \
-d "$dir" -o "$filename" "$url" 2>&1 | tail -1
else
aria2c -x 16 -s 16 -k 1M -c \
-d "$dir" -o "$filename" "$url" 2>&1 | tail -1
fi
else
# Fallback: wget
if [ -n "$auth_header" ]; then
wget -q --show-progress \
--header="Authorization: Bearer ${auth_header}" \
-O "${dir}/${filename}" "$url"
else
wget -q --show-progress -O "${dir}/${filename}" "$url"
fi
fi
# Verify file was actually downloaded (not a 0-byte error)
if [ ! -s "${dir}/${filename}" ]; then
echo " [FAILED] ${filename} — downloaded file is empty, removing"
rm -f "${dir}/${filename}"
return 1
fi
}
# Download a batch of files from an array of "filename|url" entries
# Usage: download_batch <dir> <auth_token> <array_entries...>
download_batch() {
local dir="$1"
local auth_token="$2"
shift 2
local failed=0
for entry in "$@"; do
local filename="${entry%%|*}"
local url="${entry#*|}"
download_if_missing "$dir" "$filename" "$url" "$auth_token" || ((failed++)) || true
done
if [ "$failed" -gt 0 ]; then
echo " WARNING: ${failed} download(s) failed in ${dir}"
fi
}
# Install/update custom nodes
install_nodes() {
if [ ${#NODES[@]} -eq 0 ]; then
return 0
fi
echo "=== Installing Custom Nodes ==="
mkdir -p "$NODES_DIR"
for repo in "${NODES[@]}"; do
local dirname="${repo##*/}"
local path="${NODES_DIR}/${dirname}"
local requirements="${path}/requirements.txt"
if [ -d "$path" ]; then
echo " [update] ${dirname}"
(cd "$path" && git pull -q) || echo " [WARN] git pull failed for ${dirname}, skipping"
else
echo " [clone] ${dirname}"
git clone --recursive -q "$repo" "$path" || {
echo " [WARN] git clone failed for ${dirname}, skipping"
continue
}
fi
if [ -f "$requirements" ]; then
pip install --no-cache-dir -q -r "$requirements" || echo " [WARN] pip install failed for ${dirname}"
fi
done
echo ""
}
# Install extra pip packages
install_pip_packages() {
if [ ${#PIP_PACKAGES[@]} -eq 0 ]; then
return 0
fi
echo "=== Installing pip packages ==="
pip install --no-cache-dir -q "${PIP_PACKAGES[@]}"
echo ""
}
# =============================================================================
# Main
# =============================================================================
print_header
# Install aria2c for fast downloads
install_aria2 || true
# Validate tokens (non-fatal — script continues with warnings)
validate_hf_token || true
validate_civitai_token || true
echo ""
# Create all model directories
mkdir -p "$LORA_DIR" "$VAE_DIR" "$CKPT_DIR" "$CLIP_DIR" "$TEXT_ENC_DIR" \
"$DIFFUSION_DIR" "$UPSCALE_DIR" "$ULTRALYTICS_DIR"
# --- Custom Nodes ---
install_nodes
# --- Pip Packages ---
install_pip_packages
# --- HuggingFace Private LoRAs ---
echo "=== HuggingFace Private LoRAs (cozyga/test) ==="
download_batch "$LORA_DIR" "${HF_TOKEN:-}" "${HF_PRIVATE_LORAS[@]}"
echo ""
# --- HuggingFace Public LoRAs ---
echo "=== HuggingFace Public LoRAs ==="
download_batch "$LORA_DIR" "${HF_TOKEN:-}" "${HF_PUBLIC_LORAS[@]}"
echo ""
# --- CivitAI LoRAs ---
echo "=== CivitAI LoRAs ==="
download_batch "$LORA_DIR" "${CIVITAI_TOKEN:-}" "${CIVITAI_LORAS[@]}"
echo ""
# --- CivitAI VAE ---
echo "=== CivitAI VAE ==="
download_batch "$VAE_DIR" "${CIVITAI_TOKEN:-}" "${CIVITAI_VAE[@]}"
echo ""
# --- CivitAI Checkpoints ---
echo "=== CivitAI Checkpoints ==="
download_batch "$CKPT_DIR" "${CIVITAI_TOKEN:-}" "${CIVITAI_CHECKPOINTS[@]}"
echo ""
# --- HuggingFace Public Text Encoders ---
echo "=== HuggingFace Text Encoders ==="
download_batch "$TEXT_ENC_DIR" "${HF_TOKEN:-}" "${HF_PUBLIC_TEXT_ENCODERS[@]}"
echo ""
# --- HuggingFace Public CLIP ---
echo "=== HuggingFace CLIP ==="
download_batch "$CLIP_DIR" "${HF_TOKEN:-}" "${HF_PUBLIC_CLIP[@]}"
echo ""
# --- HuggingFace Public Diffusion Models ---
echo "=== HuggingFace Diffusion Models ==="
download_batch "$DIFFUSION_DIR" "${HF_TOKEN:-}" "${HF_PUBLIC_DIFFUSION_MODELS[@]}"
echo ""
# --- HuggingFace Public VAE ---
echo "=== HuggingFace VAE ==="
download_batch "$VAE_DIR" "${HF_TOKEN:-}" "${HF_PUBLIC_VAE[@]}"
echo ""
# --- HuggingFace Public Checkpoints ---
echo "=== HuggingFace Checkpoints (Qwen) ==="
download_batch "$CKPT_DIR" "${HF_TOKEN:-}" "${HF_PUBLIC_CHECKPOINTS[@]}"
echo ""
# --- HuggingFace Public Ultralytics ---
echo "=== HuggingFace Ultralytics (YOLO) ==="
download_batch "$ULTRALYTICS_DIR" "${HF_TOKEN:-}" "${HF_PUBLIC_ULTRALYTICS[@]}"
echo ""
# --- HuggingFace Private Checkpoints (cozyga/test) ---
echo "=== HuggingFace Private Checkpoints (cozyga/test) ==="
download_batch "$CKPT_DIR" "${HF_TOKEN:-}" "${HF_PRIVATE_CHECKPOINTS[@]}"
echo ""
# --- HuggingFace Private Upscale Models (cozyga/test) ---
echo "=== HuggingFace Private Upscale Models (cozyga/test) ==="
download_batch "$UPSCALE_DIR" "${HF_TOKEN:-}" "${HF_PRIVATE_UPSCALE[@]}"
echo ""
# --- HuggingFace Private Ultralytics (cozyga/test) ---
echo "=== HuggingFace Private Ultralytics (cozyga/test) ==="
download_batch "$ULTRALYTICS_DIR" "${HF_TOKEN:-}" "${HF_PRIVATE_ULTRALYTICS[@]}"
echo ""
# =============================================================================
# Summary
# =============================================================================
echo "=============================================="
echo " Provisioning complete"
echo "=============================================="
echo ""
for label_dir in \
"LoRAs|${LORA_DIR}" \
"Checkpoints|${CKPT_DIR}" \
"VAE|${VAE_DIR}" \
"CLIP|${CLIP_DIR}" \
"Text Encoders|${TEXT_ENC_DIR}" \
"Diffusion Models|${DIFFUSION_DIR}" \
"Upscale Models|${UPSCALE_DIR}" \
"Ultralytics|${ULTRALYTICS_DIR}"; do
label="${label_dir%%|*}"
dir="${label_dir#*|}"
count=$(find "$dir" -maxdepth 1 -type f 2>/dev/null | wc -l | tr -d ' ')
echo " ${label}: ${count} files"
done
echo ""
echo "Application will start now."
|