Skip to content

Instantly share code, notes, and snippets.

@LPX55
Created July 19, 2025 18:56
Show Gist options
  • Select an option

  • Save LPX55/2fc73a104a054d7ad53fc14b9d7e4975 to your computer and use it in GitHub Desktop.

Select an option

Save LPX55/2fc73a104a054d7ad53fc14b9d7e4975 to your computer and use it in GitHub Desktop.
Provisionining Script for VastAI and LTXV
#!/bin/bash
source /venv/main/bin/activate
COMFYUI_DIR=${WORKSPACE}/ComfyUI
# Packages are installed after nodes so we can fix them...
APT_PACKAGES=(
#"package-1"
#"package-2"
)
PIP_PACKAGES=(
"diffusers"
"einops"
"huggingface_hub>=0.25.2"
"ninja~=1.11.1.4"
"transformers[timm]>=4.45.0"
)
NODES=(
"https://github.com/Lightricks/ComfyUI-LTXVideo"
"https://github.com/kijai/ComfyUI-KJNodes"
"https://github.com/aria1th/ComfyUI-LogicUtils"
"https://github.com/Mattabyte/ComfyUI-LTXVideo-Registry_Mattabyte"
"https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite"
)
WORKFLOWS=(
"https://raw.githubusercontent.com/vast-ai/base-image/refs/heads/comfyui-ltxvideo-provisioning/derivatives/pytorch/derivatives/comfyui/workflows/ltx-video-i2v-simple.json"
"https://raw.githubusercontent.com/Lightricks/ComfyUI-LTXVideo/fa234963e5b24d11085dfdb8a51cf6d38d73472c/example_workflows/ltxv-13b-i2v-base-fp8.json"
"https://github.com/Lightricks/ComfyUI-LTXVideo/raw/refs/heads/master/example_workflows/ltxv-13b-upscale.json"
"https://github.com/Lightricks/ComfyUI-LTXVideo/raw/refs/heads/master/example_workflows/ic_lora/ic-lora.json"
)
INPUT=(
"https://comfyanonymous.github.io/ComfyUI_examples/ltxv/island.jpg"
)
CHECKPOINT_MODELS=(
"https://huggingface.co/Lightricks/LTX-Video/resolve/main/ltxv-13b-0.9.7-distilled-fp8.safetensors"
)
CLIP_MODELS=(
"https://huggingface.co/comfyanonymous/flux_text_encoders/resolve/main/t5xxl_fp16.safetensors"
)
UNET_MODELS=(
)
LORA_MODELS=(
"https://huggingface.co/Lightricks/LTX-Video-ICLoRA-depth-13b-0.9.7/resolve/main/ltxv-097-ic-lora-depth-control-comfyui.safetensors"
"https://huggingface.co/Lightricks/ltxv-spatial-upscaler-0.9.7/resolve/main/latent_upsampler/diffusion_pytorch_model.safetensors"
)
VAE_MODELS=(
"https://huggingface.co/Lightricks/ltxv-spatial-upscaler-0.9.7/resolve/main/vae/diffusion_pytorch_model.safetensors"
)
ESRGAN_MODELS=(
)
CONTROLNET_MODELS=(
)
### DO NOT EDIT BELOW HERE UNLESS YOU KNOW WHAT YOU ARE DOING ###
function provisioning_start() {
provisioning_print_header
provisioning_get_apt_packages
provisioning_update_comfyui
provisioning_get_nodes
provisioning_get_pip_packages
workflows_dir="${COMFYUI_DIR}/user/default/workflows"
mkdir -p "${workflows_dir}"
provisioning_get_files \
"${workflows_dir}" \
"${WORKFLOWS[@]}"
provisioning_get_files \
"${COMFYUI_DIR}/input" \
"${INPUT[@]}"
provisioning_get_files \
"${COMFYUI_DIR}/models/checkpoints" \
"${CHECKPOINT_MODELS[@]}"
provisioning_get_files \
"${COMFYUI_DIR}/models/unet" \
"${UNET_MODELS[@]}"
provisioning_get_files \
"${COMFYUI_DIR}/models/lora" \
"${LORA_MODELS[@]}"
provisioning_get_files \
"${COMFYUI_DIR}/models/controlnet" \
"${CONTROLNET_MODELS[@]}"
provisioning_get_files \
"${COMFYUI_DIR}/models/clip" \
"${CLIP_MODELS[@]}"
provisioning_get_files \
"${COMFYUI_DIR}/models/vae" \
"${VAE_MODELS[@]}"
provisioning_get_files \
"${COMFYUI_DIR}/models/esrgan" \
"${ESRGAN_MODELS[@]}"
provisioning_print_end
}
function provisioning_get_apt_packages() {
if [[ -n $APT_PACKAGES ]]; then
sudo $APT_INSTALL ${APT_PACKAGES[@]}
fi
}
function provisioning_get_pip_packages() {
if [[ -n $PIP_PACKAGES ]]; then
pip install --no-cache-dir ${PIP_PACKAGES[@]}
fi
}
# We must be at release tag v0.3.34 or greater for fp8 support
provisioning_update_comfyui() {
required_tag="v0.3.44"
cd ${COMFYUI_DIR}
git fetch --all --tags
current_commit=$(git rev-parse HEAD)
required_commit=$(git rev-parse "$required_tag")
if git merge-base --is-ancestor "$current_commit" "$required_commit"; then
git checkout "$required_tag"
pip install --no-cache-dir -r requirements.txt
fi
}
function provisioning_get_nodes() {
for repo in "${NODES[@]}"; do
dir="${repo##*/}"
path="${COMFYUI_DIR}/custom_nodes/${dir}"
requirements="${path}/requirements.txt"
if [[ -d $path ]]; then
if [[ ${AUTO_UPDATE,,} != "false" ]]; then
printf "Updating node: %s...\n" "${repo}"
( cd "$path" && git pull )
if [[ -e $requirements ]]; then
pip install --no-cache-dir -r "$requirements"
fi
fi
else
printf "Downloading node: %s...\n" "${repo}"
git clone "${repo}" "${path}" --recursive
if [[ -e $requirements ]]; then
pip install --no-cache-dir -r "${requirements}"
fi
fi
done
}
function provisioning_get_files() {
if [[ -z $2 ]]; then return 1; fi
dir="$1"
mkdir -p "$dir"
shift
arr=("$@")
printf "Downloading %s model(s) to %s...\n" "${#arr[@]}" "$dir"
for url in "${arr[@]}"; do
printf "Downloading: %s\n" "${url}"
provisioning_download "${url}" "${dir}"
printf "\n"
done
}
function provisioning_print_header() {
printf "\n##############################################\n# #\n# Provisioning container #\n# #\n# This will take some time #\n# #\n# Your container will be ready on completion #\n# #\n##############################################\n\n"
}
function provisioning_print_end() {
printf "\nProvisioning complete: Application will start now\n\n"
}
function provisioning_has_valid_hf_token() {
[[ -n "$HF_TOKEN" ]] || return 1
url="https://huggingface.co/api/whoami-v2"
response=$(curl -o /dev/null -s -w "%{http_code}" -X GET "$url" \
-H "Authorization: Bearer $HF_TOKEN" \
-H "Content-Type: application/json")
# Check if the token is valid
if [ "$response" -eq 200 ]; then
return 0
else
return 1
fi
}
function provisioning_has_valid_civitai_token() {
[[ -n "$CIVITAI_TOKEN" ]] || return 1
url="https://civitai.com/api/v1/models?hidden=1&limit=1"
response=$(curl -o /dev/null -s -w "%{http_code}" -X GET "$url" \
-H "Authorization: Bearer $CIVITAI_TOKEN" \
-H "Content-Type: application/json")
# Check if the token is valid
if [ "$response" -eq 200 ]; then
return 0
else
return 1
fi
}
# Download from $1 URL to $2 file path
function provisioning_download() {
if [[ -n $HF_TOKEN && $1 =~ ^https://([a-zA-Z0-9_-]+\.)?huggingface\.co(/|$|\?) ]]; then
auth_token="$HF_TOKEN"
elif
[[ -n $CIVITAI_TOKEN && $1 =~ ^https://([a-zA-Z0-9_-]+\.)?civitai\.com(/|$|\?) ]]; then
auth_token="$CIVITAI_TOKEN"
fi
if [[ -n $auth_token ]];then
wget --header="Authorization: Bearer $auth_token" -qnc --content-disposition --show-progress -e dotbytes="${3:-4M}" -P "$2" "$1"
else
wget -qnc --content-disposition --show-progress -e dotbytes="${3:-4M}" -P "$2" "$1"
fi
}
# Allow user to disable provisioning if they started with a script they didn't want
if [[ ! -f /.noprovisioning ]]; then
provisioning_start
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment