Instructions to use dumpy50222/ComfyUI_LTX_Wan_Models with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use dumpy50222/ComfyUI_LTX_Wan_Models with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0 # Run inference directly in the terminal: llama cli -hf dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0 # Run inference directly in the terminal: llama cli -hf dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0 # Run inference directly in the terminal: ./llama-cli -hf dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0
Use Docker
docker model run hf.co/dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0
- LM Studio
- Jan
- Ollama
How to use dumpy50222/ComfyUI_LTX_Wan_Models with Ollama:
ollama run hf.co/dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0
- Unsloth Studio
How to use dumpy50222/ComfyUI_LTX_Wan_Models with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for dumpy50222/ComfyUI_LTX_Wan_Models to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for dumpy50222/ComfyUI_LTX_Wan_Models to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for dumpy50222/ComfyUI_LTX_Wan_Models to start chatting
- Pi
How to use dumpy50222/ComfyUI_LTX_Wan_Models with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use dumpy50222/ComfyUI_LTX_Wan_Models with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use dumpy50222/ComfyUI_LTX_Wan_Models with Docker Model Runner:
docker model run hf.co/dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0
- Lemonade
How to use dumpy50222/ComfyUI_LTX_Wan_Models with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0
Run and chat with the model
lemonade run user.ComfyUI_LTX_Wan_Models-Q8_0
List all available models
lemonade list
- Hermes Agent
How to use dumpy50222/ComfyUI_LTX_Wan_Models with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default dumpy50222/ComfyUI_LTX_Wan_Models:Q8_0
Run Hermes
hermes
- Atomic Chat
File size: 12,802 Bytes
2282565 | 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 | {
"file_name": "FLUX.1-Turbo-Alpha",
"model_name": "FLUX.1-Turbo-Alpha",
"file_path": "G:/AI/ComfyUI/models/loras/zACE_Plus/FLUX.1-Turbo-Alpha.safetensors",
"size": 694082424,
"modified": 1772081937.944738,
"sha256": "77f7523a5e9c3da6cfc730c6b07461129fa52997ea06168e9ed5312228aa0bff",
"base_model": "Flux.1 D",
"preview_url": "G:/AI/ComfyUI/models/loras/zACE_Plus/FLUX.1-Turbo-Alpha.jpeg",
"preview_nsfw_level": 1,
"notes": "",
"from_civitai": true,
"civitai": {
"id": 964759,
"modelId": 862265,
"name": "v1.0",
"nsfwLevel": 1,
"createdAt": "2024-10-17T03:08:58.687Z",
"updatedAt": "2024-10-17T03:45:19.619Z",
"status": "Published",
"publishedAt": "2024-10-30T17:12:00.000Z",
"trainedWords": [],
"trainingStatus": null,
"trainingDetails": null,
"baseModel": "Flux.1 D",
"baseModelType": "Standard",
"earlyAccessEndsAt": null,
"earlyAccessConfig": null,
"description": null,
"uploadType": "Created",
"usageControl": "Download",
"air": "urn:air:flux1:lora:civitai:862265@964759",
"stats": {
"downloadCount": 4749,
"thumbsUpCount": 93
},
"model": {
"name": "FLUX.1-Turbo-Alpha",
"type": "LORA",
"nsfw": false,
"poi": false,
"description": "<p>8 steps</p><p>Cách sử dụng:</p><ul><li><p>•Sampling method: Euler</p></li><li><p>•Schedule type: Simple</p></li><li><p>•Sampling steps: 30</p></li><li><p>Weight: 0.8 - 1.2. Best: 0.8</p></li></ul><p>Instructions for use:</p><ul><li><p>•Sampling method: Euler a</p></li><li><p>•Schedule type: Simple</p></li><li><p>•Sampling steps: 30</p></li><li><p>Weight: 0.8 - 1.2. Best: 0.8</p></li></ul><p>In the prompt, you should use the word: <strong><span style=\"color:rgb(216, 68, 147)\">Woman </span></strong>using the word Girl will create many body anatomy errors.</p><p><s>0-0-0-0-0-0-0-0-0-0-0-0</s></p><p>Actually, you will not need the activation keyword for it to work, but you can add it to make <strong>Flux</strong> understand faster and give better results. ⚡</p><p><strong>Note:</strong> It works well with <strong>FLUX.1-Turbo-Alpha</strong>, LORA human face. 👤✨</p><p><img src=\"https://models-online-persist.shakker.cloud/img/c7d573e4c3d24f97bc7b6c9b5c950091/91665a2d7674a2db4d6181122f9ffde291daf229d8d776e49d4584895d189263.png?x-oss-process=image/resize,w_1290,m_lfit/format,webp\" alt />Useful and FREE resources:</p><p>❤️<strong>Free server</strong> to make art with Flux: <a target=\"_blank\" rel=\"ugc\" href=\"https://www.shakker.ai/userpage/c7d573e4c3d24f97bc7b6c9b5c950091/publish?sourceId=002720\">Shakker</a></p><p>✨ <strong>More FLUX LORA?</strong> <strong>List and detailed </strong>description of each LORA I implement here: <a target=\"_blank\" rel=\"ugc\" href=\"https://maitruclam.com/lora\">https://maitruclam.com/lora</a></p><p>🆕 <strong>First time using FLUX?</strong> Explanation and tutorial with <strong>A1111 forge offline</strong> and <strong>Comfy UI</strong> here: <a target=\"_blank\" rel=\"ugc\" href=\"https://maitruclam.com/flux-ai-la-gi/\">https://maitruclam.com/flux-ai-la-gi/</a></p><p>🛠️ <strong>How to train your LORA with Flux?</strong> My detailed instructions are here: <a target=\"_blank\" rel=\"ugc\" href=\"https://maitruclam.com/training-flux/\">https://maitruclam.com/training-flux/</a></p><p>❤️ <strong>Donate me</strong> (I would be really surprised if you did that! 😄): <a target=\"_blank\" rel=\"ugc\" href=\"https://maitruclam.com/donate\">https://maitruclam.com/donate</a></p><p>Find me / Contact for work on:</p><p>📱 <strong>Facebook:</strong> @maitruclam4real</p><p>💬 <strong>Discord:</strong> @maitruclam</p><p>🌐 <strong>Web:</strong> <a target=\"_blank\" rel=\"ugc\" href=\"http://maitruclam.com\">maitruclam.com</a></p>",
"tags": [
"base model"
],
"allowNoCredit": true,
"allowCommercialUse": [
"Image",
"RentCivit",
"Rent",
"Sell"
],
"allowDerivatives": true,
"allowDifferentLicense": true
},
"files": [
{
"id": 871361,
"sizeKB": 677814.8671875,
"name": "FLUX.1-Turbo-Alpha.safetensors",
"type": "Model",
"pickleScanResult": "Success",
"pickleScanMessage": "No Pickle imports",
"virusScanResult": "Success",
"virusScanMessage": null,
"scannedAt": "2024-10-17T03:16:39.644Z",
"metadata": {
"format": "SafeTensor",
"size": null,
"fp": null
},
"hashes": {
"AutoV1": "BACA6767",
"AutoV2": "77F7523A5E",
"SHA256": "77F7523A5E9C3DA6CFC730C6B07461129FA52997EA06168E9ED5312228AA0BFF",
"CRC32": "E7454EC0",
"BLAKE3": "F16F31717186611D77A3BF35953843BBEA62AE19CAE146BA3374985991B19781",
"AutoV3": "E3838347566E"
},
"primary": true,
"downloadUrl": "https://civitai.com/api/download/models/964759"
}
],
"images": [
{
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/3d355f6b-24cf-402b-8b7d-99251d30f83e/original=true/35014178.jpeg",
"nsfwLevel": 1,
"width": 768,
"height": 1024,
"hash": "USFrL#t7IVM{~VofIpWBo|WAIos:-:s:V@WV",
"type": "image",
"metadata": {
"hash": "USFrL#t7IVM{~VofIpWBo|WAIos:-:s:V@WV",
"size": 1145417,
"width": 768,
"height": 1024
},
"minor": false,
"poi": false,
"meta": {
"seed": 953776127511437,
"vaes": [
"ae.safetensors"
],
"steps": 10,
"width": 768,
"height": 1024,
"models": [],
"denoise": 1,
"sampler": "Euler",
"cfgScale": 3.5,
"modelIds": [],
"scheduler": "normal",
"upscalers": [],
"versionIds": [],
"controlNets": [],
"additionalResources": [
{
"name": "lora/lamAni_by_Lam_f1.safetensors",
"type": "lora",
"strength": 1,
"strengthClip": 1
},
{
"name": "FLUX.1-Turbo-Alpha.safetensors",
"type": "lora",
"strength": 1
}
]
},
"availability": "Public",
"hasMeta": true,
"hasPositivePrompt": false,
"onSite": false,
"remixOfId": null
},
{
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/be9afa3a-f1b2-4ad1-a129-cdd909e9df68/original=true/35014177.jpeg",
"nsfwLevel": 1,
"width": 768,
"height": 1024,
"hash": "UCBMb.bIT0Ne}=t6EMM|%0xsj@s:-oo0$%NH",
"type": "image",
"metadata": {
"hash": "UCBMb.bIT0Ne}=t6EMM|%0xsj@s:-oo0$%NH",
"size": 1235770,
"width": 768,
"height": 1024
},
"minor": false,
"poi": false,
"meta": {
"seed": 619894254406106,
"vaes": [
"ae.safetensors"
],
"steps": 8,
"width": 768,
"height": 1024,
"models": [],
"denoise": 1,
"sampler": "Euler",
"cfgScale": 3.5,
"modelIds": [],
"scheduler": "normal",
"upscalers": [],
"versionIds": [],
"controlNets": [],
"additionalResources": [
{
"name": "lora/lamAni_by_Lam_f1.safetensors",
"type": "lora",
"strength": 1,
"strengthClip": 1
},
{
"name": "FLUX.1-Turbo-Alpha.safetensors",
"type": "lora",
"strength": 1
}
]
},
"availability": "Public",
"hasMeta": true,
"hasPositivePrompt": false,
"onSite": false,
"remixOfId": null
},
{
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f972a7d8-ff9c-4fa2-a328-368b7b3dbe3e/original=true/35014180.jpeg",
"nsfwLevel": 1,
"width": 768,
"height": 1024,
"hash": "UHF79$$dFiO=r8$ecYOF4Togv|XS*Hj?Roxt",
"type": "image",
"metadata": {
"hash": "UHF79$$dFiO=r8$ecYOF4Togv|XS*Hj?Roxt",
"size": 1507605,
"width": 768,
"height": 1024
},
"minor": false,
"poi": false,
"meta": {
"seed": 1041559206116810,
"vaes": [
"ae.safetensors"
],
"steps": 8,
"width": 768,
"height": 1024,
"models": [],
"denoise": 1,
"sampler": "Euler",
"cfgScale": 3.5,
"modelIds": [],
"scheduler": "normal",
"upscalers": [],
"versionIds": [],
"controlNets": [],
"additionalResources": [
{
"name": "lora/lamAni_by_Lam_f1.safetensors",
"type": "lora",
"strength": 1,
"strengthClip": 1
},
{
"name": "FLUX.1-Turbo-Alpha.safetensors",
"type": "lora",
"strength": 1
}
]
},
"availability": "Public",
"hasMeta": true,
"hasPositivePrompt": false,
"onSite": false,
"remixOfId": null
}
],
"downloadUrl": "https://civitai.com/api/download/models/964759",
"creator": {
"username": "maitruclam",
"image": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/bb86f175-e7de-4a92-9f37-88717234327e/width=96/maitruclam.jpeg"
}
},
"tags": [
"base model"
],
"modelDescription": "<p>8 steps</p><p>Cách sử dụng:</p><ul><li><p>•Sampling method: Euler</p></li><li><p>•Schedule type: Simple</p></li><li><p>•Sampling steps: 30</p></li><li><p>Weight: 0.8 - 1.2. Best: 0.8</p></li></ul><p>Instructions for use:</p><ul><li><p>•Sampling method: Euler a</p></li><li><p>•Schedule type: Simple</p></li><li><p>•Sampling steps: 30</p></li><li><p>Weight: 0.8 - 1.2. Best: 0.8</p></li></ul><p>In the prompt, you should use the word: <strong><span style=\"color:rgb(216, 68, 147)\">Woman </span></strong>using the word Girl will create many body anatomy errors.</p><p><s>0-0-0-0-0-0-0-0-0-0-0-0</s></p><p>Actually, you will not need the activation keyword for it to work, but you can add it to make <strong>Flux</strong> understand faster and give better results. ⚡</p><p><strong>Note:</strong> It works well with <strong>FLUX.1-Turbo-Alpha</strong>, LORA human face. 👤✨</p><p><img src=\"https://models-online-persist.shakker.cloud/img/c7d573e4c3d24f97bc7b6c9b5c950091/91665a2d7674a2db4d6181122f9ffde291daf229d8d776e49d4584895d189263.png?x-oss-process=image/resize,w_1290,m_lfit/format,webp\" alt />Useful and FREE resources:</p><p>❤️<strong>Free server</strong> to make art with Flux: <a target=\"_blank\" rel=\"ugc\" href=\"https://www.shakker.ai/userpage/c7d573e4c3d24f97bc7b6c9b5c950091/publish?sourceId=002720\">Shakker</a></p><p>✨ <strong>More FLUX LORA?</strong> <strong>List and detailed </strong>description of each LORA I implement here: <a target=\"_blank\" rel=\"ugc\" href=\"https://maitruclam.com/lora\">https://maitruclam.com/lora</a></p><p>🆕 <strong>First time using FLUX?</strong> Explanation and tutorial with <strong>A1111 forge offline</strong> and <strong>Comfy UI</strong> here: <a target=\"_blank\" rel=\"ugc\" href=\"https://maitruclam.com/flux-ai-la-gi/\">https://maitruclam.com/flux-ai-la-gi/</a></p><p>🛠️ <strong>How to train your LORA with Flux?</strong> My detailed instructions are here: <a target=\"_blank\" rel=\"ugc\" href=\"https://maitruclam.com/training-flux/\">https://maitruclam.com/training-flux/</a></p><p>❤️ <strong>Donate me</strong> (I would be really surprised if you did that! 😄): <a target=\"_blank\" rel=\"ugc\" href=\"https://maitruclam.com/donate\">https://maitruclam.com/donate</a></p><p>Find me / Contact for work on:</p><p>📱 <strong>Facebook:</strong> @maitruclam4real</p><p>💬 <strong>Discord:</strong> @maitruclam</p><p>🌐 <strong>Web:</strong> <a target=\"_blank\" rel=\"ugc\" href=\"http://maitruclam.com\">maitruclam.com</a></p>",
"civitai_deleted": false,
"favorite": false,
"exclude": false,
"db_checked": false,
"skip_metadata_refresh": false,
"metadata_source": "civitai_api",
"last_checked_at": 1772082674.818945,
"usage_tips": "{}"
} |