Instructions to use UmeAiRT/ComfyUI-Auto-Installer-Assets with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use UmeAiRT/ComfyUI-Auto-Installer-Assets with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("UmeAiRT/ComfyUI-Auto-Installer-Assets", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
| @echo off | |
| setlocal enabledelayedexpansion | |
| set "basePath=%CD%" | |
| if not exist "%basePath%\logs" mkdir "%basePath%\logs" | |
| :check_folder | |
| if exist "%basePath%\ComfyUI" ( | |
| echo ComfyUI folder detected | |
| set "modelsPath=%basePath%\ComfyUI\models" | |
| ) else if exist "%basePath%\ComfyUI_windows_portable" ( | |
| echo ComfyUI folder detected | |
| set "modelsPath=%basePath%\ComfyUI_windows_portable\ComfyUI\models" | |
| ) else ( | |
| echo ComfyUI folder not detected, give ComfyUI folder path: | |
| set /p "comfyPath=Path: " | |
| set "modelsPath=!comfyPath!\models" | |
| echo comfyPath = !comfyPath! | |
| echo modelsPath = !modelsPath! | |
| pause | |
| ) | |
| :CHOOSE_OPTION | |
| REM Ask user for installation type | |
| echo [33mDo you want to download LTXV base models?[0m | |
| echo [32mA) 13B (30Gb)[0m | |
| echo [32mB) 2B (7Gb)[0m | |
| echo [32mC) All[0m | |
| echo [32mD) No[0m | |
| set /p "CHOICE=Enter your choice (A,B,C or D) and press Enter: " | |
| if /i "%CHOICE%"=="A" ( | |
| set "DOWNLOAD=yes" | |
| ) else if /i "%CHOICE%"=="B" ( | |
| set "DOWNLOAD=yes" | |
| ) else if /i "%CHOICE%"=="C" ( | |
| set "DOWNLOAD=yes" | |
| ) else if /i "%CHOICE%"=="D" ( | |
| set "DOWNLOAD=no" | |
| ) else ( | |
| echo [31mInvalid choice. Please enter A,B,C,D or E.[0m | |
| goto CHOOSE_OPTION | |
| ) | |
| :CHOOSE_LTXV_GGUF | |
| REM Ask user if they want to download WAN GGUF Model | |
| echo [33mDo you want to download LTXV GGUF models?[0m | |
| echo [32mA) Q8_0 (24GB Vram)[0m | |
| echo [32mB) Q5_K_M (16GB Vram)[0m | |
| echo [32mC) Q3_K_S (less than 12GB Vram)[0m | |
| echo [32mD) All[0m | |
| echo [32mE) No[0m | |
| set /p "LTXV_GGUF_CHOICE=Enter your choice (A,B,C,D or E) and press Enter: " | |
| if /i "%LTXV_GGUF_CHOICE%"=="A" ( | |
| set "DOWNLOAD_GGUF=yes" | |
| ) else if /i "%LTXV_GGUF_CHOICE%"=="B" ( | |
| set "DOWNLOAD_GGUF=yes" | |
| ) else if /i "%LTXV_GGUF_CHOICE%"=="C" ( | |
| set "DOWNLOAD_GGUF=yes" | |
| ) else if /i "%LTXV_GGUF_CHOICE%"=="D" ( | |
| set "DOWNLOAD_GGUF=yes" | |
| ) else if /i "%LTXV_GGUF_CHOICE%"=="E" ( | |
| set "DOWNLOAD_GGUF=no" | |
| ) else ( | |
| echo [31mInvalid choice. Please enter A,B,C,D or E.[0m | |
| goto CHOOSE_LTXV_GGUF | |
| ) | |
| if "%DOWNLOAD%"=="yes" ( | |
| echo [33mDownloading checkpoint models file...[0m | |
| powershell -NoProfile -Command "$p = Join-Path $env:modelsPath 'checkpoints\LTXV'; if (-Not (Test-Path $p)) { New-Item -ItemType Directory -Path $p | Out-Null }" | |
| if /i "%CHOICE%"=="A" ( | |
| echo 13B Model : | |
| curl -L -o "%modelsPath%/checkpoints/LTXV/ltxv-13b-0.9.7-dev.safetensors" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/models/checkpoints/LTXV/ltxv-13b-0.9.7-dev.safetensors?download=true | |
| ) else if /i "%CHOICE%"=="B" ( | |
| echo 2B Model : | |
| curl -L -o "%modelsPath%/checkpoints/LTXV/ltxv-2b-0.9.6-dev-04-25.safetensors" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/models/checkpoints/LTXV/ltxv-2b-0.9.6-dev-04-25.safetensors?download=true | |
| ) else if /i "%CHOICE%"=="C" ( | |
| echo 13B Model : | |
| curl -L -o "%modelsPath%/checkpoints/LTXV/ltxv-13b-0.9.7-dev.safetensors" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/models/checkpoints/LTXV/ltxv-13b-0.9.7-dev.safetensors?download=true | |
| echo 2B Model : | |
| curl -L -o "%modelsPath%/checkpoints/LTXV/ltxv-2b-0.9.6-dev-04-25.safetensors" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/models/checkpoints/LTXV/ltxv-2b-0.9.6-dev-04-25.safetensors?download=true | |
| ) | |
| ) | |
| REM Download VAE file | |
| echo [33mDownloading VAE file...[0m | |
| curl -L -o "%modelsPath%/vae/ltxv-13b-0.9.7-vae-BF16.safetensors" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/models/vae/ltxv-13b-0.9.7-vae-BF16.safetensors?download=true | |
| if "%DOWNLOAD_GGUF%"=="yes" ( | |
| echo [33mDownloading GGUF Quant Model...[0m | |
| powershell -NoProfile -Command "$p = Join-Path $env:modelsPath 'unet\LTXV'; if (-Not (Test-Path $p)) { New-Item -ItemType Directory -Path $p | Out-Null }" | |
| if /i "%LTXV_GGUF_CHOICE%"=="A" ( | |
| curl -L -o "%modelsPath%/unet/LTXV/ltxv-13b-0.9.7-dev-Q8_0.gguf" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/models/unet/LTXV/ltxv-13b-0.9.7-dev-Q8_0.gguf?download=true | |
| ) else if /i "%LTXV_GGUF_CHOICE%"=="B" ( | |
| curl -L -o "%modelsPath%/unet/LTXV/ltxv-13b-0.9.7-dev-Q5_K_M.gguf" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/models/unet/LTXV/ltxv-13b-0.9.7-dev-Q5_K_M.gguf?download=true | |
| ) else if /i "%LTXV_GGUF_CHOICE%"=="C" ( | |
| curl -L -o "%modelsPath%/unet/LTXV/ltxv-13b-0.9.7-dev-Q3_K_S.gguf" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/models/unet/LTXV/ltxv-13b-0.9.7-dev-Q3_K_S.gguf?download=true | |
| ) else if /i "%LTXV_GGUF_CHOICE%"=="D" ( | |
| curl -L -o "%modelsPath%/unet/LTXV/ltxv-13b-0.9.7-dev-Q8_0.gguf" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/models/unet/LTXV/ltxv-13b-0.9.7-dev-Q8_0.gguf?download=true | |
| curl -L -o "%modelsPath%/unet/LTXV/ltxv-13b-0.9.7-dev-Q5_K_M.gguf" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/models/unet/LTXV/ltxv-13b-0.9.7-dev-Q5_K_M.gguf?download=true | |
| curl -L -o "%modelsPath%/unet/LTXV/ltxv-13b-0.9.7-dev-Q3_K_S.gguf" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/models/unet/LTXV/ltxv-13b-0.9.7-dev-Q3_K_S.gguf?download=true | |
| ) | |
| ) | |
| echo [33mModels downloaded.[0m | |
| pause |