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: 34,781 Bytes
2652453 | 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 | {
"file_name": "ltx2310eros_beta",
"model_name": "LTX2.3 10Eros",
"file_path": "G:/AI/ComfyUI/models/diffusion_models/ltx2310eros_beta.safetensors",
"size": 25134891182,
"modified": 1782017998.688461,
"sha256": "54faf1fe4236f8ef2fd5b7d9375b3e9d692f1a74e4bfaa58791d38865fc9c6f1",
"base_model": "LTXV 2.3",
"preview_url": "G:/AI/ComfyUI/models/diffusion_models/ltx2310eros_beta.mp4",
"preview_nsfw_level": 4,
"notes": "",
"from_civitai": true,
"civitai": {
"id": 2752410,
"modelId": 2447875,
"name": "Beta",
"nsfwLevel": 60,
"createdAt": "2026-03-07T15:43:09.470Z",
"updatedAt": "2026-06-17T17:55:12.511Z",
"status": "Published",
"publishedAt": "2026-03-07T23:20:59.532Z",
"trainedWords": [
"3D",
"Real Video",
"Amateur"
],
"trainingStatus": null,
"trainingDetails": null,
"baseModel": "LTXV 2.3",
"baseModelType": "Standard",
"earlyAccessEndsAt": null,
"earlyAccessConfig": null,
"description": "<p>Extremely rough Beta version. </p>",
"uploadType": "Created",
"usageControl": "Download",
"licensingFee": null,
"air": "urn:air:ltxv23:checkpoint:civitai:2447875@2752410",
"stats": {
"downloadCount": 14994,
"thumbsUpCount": 732
},
"model": {
"name": "LTX2.3 10Eros",
"type": "Checkpoint",
"nsfw": true,
"poi": false,
"description": "<p><a target=\"_blank\" rel=\"ugc\" href=\"https://huggingface.co/TenStrip/LTX2.3-10Eros/tree/main\">HuggingFace backup</a></p><p><a rel=\"ugc\" href=\"https://huggingface.co/TenStrip/LTX2.3-10Eros_Workflows/tree/main\">My Workflows (v4 used on all previews)</a></p><p><a target=\"_blank\" rel=\"ugc\" href=\"https://github.com/TenStrip/10S-Comfy-nodes\">10S Nodes (also on manager)</a></p><p><u>Ver. 1.2</u></p><p>Additional adjustments. Basically a more polished version of v1. This may be the best LTX2.3 can do tbh. It has a bit more tensors. This FP8 is larger, I left all connectors on exclude because that was one small part of identity drift. Full bf16 for quants and training is on <a target=\"_blank\" rel=\"ugc\" href=\"https://huggingface.co/TenStrip/LTX2.3-10Eros/tree/main\">HuggingFace backup.</a> It can do anything v1 can with more 'stability' -- less tendency to do errant or odd moves and reaching more stable outputs at lower steps (8-10). <strong>Still best used to just animate sex images</strong>. Complex storytelling and prompts still requires additional guided frames and high effort, everyone knows LTX 2.3 is very clunky by now. Lighttricks seems to be 4 years behind everything, they just now decided to implement experts on the next version. I guess the totally true-proven method of autoregressive is too futuristic for them (literally the best method for video models - Seedance2, Grok, Kling).</p><p>This has slightly better initial character and likeness keep, but prompts can remove it unless care is taken. Expressions, dialogue, movement, and camera/pose change will all attack the guided character's look. Best to always train the likeness as a lora or have a guided endframe to give the model a future target.</p><p>Same bad tendencies in certain scenarios, same unrefined concepts.</p><p></p><p></p><hr /><p><u>Ver 1.0</u></p><p><a target=\"_blank\" rel=\"ugc\" href=\"https://huggingface.co/vantagewithai/LTX2.3-10Eros-GGUF/tree/main\">Quantized versions.</a></p><p></p><p></p><p>This is not the official <a target=\"_blank\" rel=\"ugc\" href=\"https://civitai.red/models/2594061/sulphur-2-base?modelVersionId=2914022\">Sulphur2 model</a>, that is also <a target=\"_blank\" rel=\"ugc\" href=\"https://huggingface.co/SulphurAI/Sulphur-2-base\">here</a>. They are the team that trained and manage the official model. I am only affiliated as an i2v tester and consultant. This is my personal merge of the actual data and it uses different training steps and layer scaling to create a consistent flexible I2V focused version. Future versions (v2+) will be actually fine tuned by me personally aimed at filling in gaps and weak concepts.</p><p></p><p><strong>Quality is entirely prompt, image, and workflow dependent. </strong>Aside for systemic issues with LTX: motion smear, artifacts, and identity loss, it still behaves like 2.3 requiring extensive prompt refinement, extra sampling, and resolution targeting for best results.</p><p></p><hr /><p><strong>This probably means nothing legally, but I just want to make it clear that you waive any right to blame or use the host site, me, or sulphur in your defense if you download and misuse this. It's ethical artistic intended use is clearly stated:</strong></p><p>By downloading, accessing, or using the <strong>10Eros</strong> Model (the “Model”), you (“User”) agree to the following terms:</p><p><strong>1. Permitted Use Only</strong> The Model may <strong>only</strong> be used with inputs of fictional or non-real characters. Any use involving real persons, celebrities, public figures, or identifiable individuals is strictly prohibited (“Out-of-Scope Use”).</p><p><strong>2. Disclaimer of Liability</strong> TenStrip (the creator of the Model), together with its affiliates (<a target=\"_blank\" rel=\"ugc\" href=\"http://CivitAI.com\">CivitAI.com</a> / <a target=\"_blank\" rel=\"ugc\" href=\"http://CivitAI.red\">CivitAI.red</a>, Lightricks Ltd., and Sulphur Team), collectively and individually disclaim all liability for any direct, indirect, incidental, consequential, special, or punitive damages arising from your use or misuse of the Model.</p><p>This includes, without limitation, any claims related to copyright infringement, right of publicity violations, defamation, privacy violations, deepfakes, illegal activities, or any harm caused by outputs generated by the Model.</p><p><strong>3. Out-of-Scope Uses Forbidden</strong> All Out-of-Scope Uses are explicitly forbidden. The creator and affiliates bear no responsibility for any outputs generated from prohibited inputs. Your actions with this generative Model are solely your own.</p><p><strong>4. Assumption of Risk</strong> You assume all risks associated with the use of the Model. Any use outside the permitted fictional/non-real character inputs further releases TenStrip and all affiliates from any and all liability.</p><p><strong>5. Indemnification</strong> You agree to indemnify, defend, and hold harmless TenStrip and its affiliates from any and all claims, losses, liabilities, damages, and expenses (including reasonable attorneys’ fees) arising from your use or misuse of the Model.</p><p><strong>6. No Warranties</strong> The Model is provided “AS IS” with no warranties of any kind, express or implied.</p><p>This agreement is governed by the laws of the United States. If you do not agree to these terms, do not download or use the Model.</p><p><br /></p>",
"tags": [
"base model"
],
"allowNoCredit": true,
"allowCommercialUse": [
"Image"
],
"allowDerivatives": false,
"allowDifferentLicense": true
},
"files": [
{
"id": 2638973,
"sizeKB": 24545792.16992188,
"name": "ltx2310eros_beta.safetensors",
"type": "Model",
"pickleScanResult": "Success",
"pickleScanMessage": "No Pickle imports",
"virusScanResult": "Success",
"virusScanMessage": null,
"scannedAt": "2026-03-07T16:28:00.932Z",
"metadata": {
"format": "SafeTensor",
"size": "full",
"fp": "fp8"
},
"hashes": {
"AutoV1": "8D86DE60",
"AutoV2": "54FAF1FE42",
"SHA256": "54FAF1FE4236F8EF2FD5B7D9375B3E9D692F1A74E4BFAA58791D38865FC9C6F1",
"CRC32": "45C4BE7B",
"BLAKE3": "96715CD8B379AE1FC3A16533C7EBC3774193328A6D0579D8E848C7E1869648F7",
"AutoV3": "0A665BF1AFDC"
},
"primary": true,
"downloadUrl": "https://civitai.red/api/download/models/2752410"
}
],
"images": [
{
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c74b42bb-1eed-497a-bd71-ca580dda7450/original=true/123454034.mp4",
"nsfwLevel": 4,
"width": 1024,
"height": 1280,
"hash": "UCJ%@9=V=-wb000gJDRkD*IU9x%MyGRir=Rh",
"type": "video",
"metadata": {
"hash": "UCJ%@9=V=-wb000gJDRkD*IU9x%MyGRir=Rh",
"size": 7902810,
"audio": false,
"width": 1024,
"height": 1280,
"duration": 12.708
},
"minor": false,
"poi": false,
"meta": {
"seed": 931113663772944,
"steps": 13,
"prompt": "In this real video, a young woman holding a flower is walking through the desert. With a cute voice she talks to the camera casually, with a slightly flirty tone and sensual voiceline: \"Yeah, I'm not gonna be taking my clothes off or anything, sorry. This is the safe for work preview. This model is actually trained on like hardcore porn, which is gross. Swipe over to those other previews for that stuff.\" she talks while walking forward with the camera keeping pace while she holds her flower in both hands.",
"cfgScale": 1,
"negativePrompt": "pc game, yelling, console game, video game, cartoon, childish, ugly, text, blur, logo, wordmark, static, low quality, noise, white noise, bleep, censoring, censor, bleeping, beep, beeping, newscast, interview, podcast, non-english, foreign language, russian, chinese, japanese, mutant, horror, 70's, film grain, cinematic, comedy, stand-up "
},
"availability": "Public",
"hasMeta": true,
"hasPositivePrompt": true,
"onSite": false,
"remixOfId": null
},
{
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/10d2b117-50a2-47e6-94ba-f3eb354ec9c2/original=true/123457168.mp4",
"nsfwLevel": 8,
"width": 1024,
"height": 1024,
"hash": "UIJj*iD%%f%1_NoJnNSh.9RjxYWBIVx[M{RP",
"type": "video",
"metadata": {
"hash": "UIJj*iD%%f%1_NoJnNSh.9RjxYWBIVx[M{RP",
"size": 6680268,
"audio": false,
"width": 1024,
"height": 1024,
"duration": 10.042
},
"minor": false,
"poi": false,
"meta": {
"seed": 580105955547277,
"steps": 13,
"prompt": "Style: realistic - naughty sensual and sexy. A hot college-aged female in her thong and sports-bra bent over and laughing while looking back over her shoulder as she is wagging her rear-end and ass seen from behind in a low angle view at her all-fours pose. she is swaying her ass and hips sexily from from side to side. She talks back to the camera, delivering her line quickly in a valley girl accent with flirtatious sensual and sexual voice line delivery: \"I thought you were gonna help me do my laundry, not just stare at my ass.\" She reaches back and feels the side of her nice shapely butt. \"come on babe, we gotta go soon.\"",
"sampler": "DPM++ SDE",
"cfgScale": 1,
"negativePrompt": "still image, bad quality, subtitles, text, watermark, overlay effects, pc game, yelling, console game, video game, cartoon, childish, ugly, text, blur, logo, wordmark, static, low quality, noise, white noise, bleep, censoring, censor, bleeping, beep, beeping, newscast, interview, podcast, non-english, foreign language, russian, chinese, japanese, mutant, horror, 70's, film grain, cinematic, comedy, stand-up "
},
"availability": "Public",
"hasMeta": true,
"hasPositivePrompt": true,
"onSite": false,
"remixOfId": null
},
{
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/aac6f3a0-1dbe-4f6b-b9ba-746cdef1b62a/original=true/123465772.mp4",
"nsfwLevel": 16,
"width": 832,
"height": 1280,
"hash": "UTL:ip%M%#x]_NS4tmbH4on$%LRiE1aKoKRj",
"type": "video",
"metadata": {
"hash": "UTL:ip%M%#x]_NS4tmbH4on$%LRiE1aKoKRj",
"size": 5431112,
"audio": false,
"width": 832,
"height": 1280,
"duration": 10.042
},
"minor": false,
"poi": false,
"meta": {
"seed": 319445856647761,
"steps": 13,
"prompt": "In this real amateur male POV, a man's busty girlfriend is below him stroking his penis rapidly with her hand giving him a POV hand-job. The man's hands are forward and out, positioned on her breasts. The man squeezes and gropes her very large soft breasts, kneading them in circles and squishing his fingers into them, pushing them into a cleavage shape and back out, moving them in circles with his gripped hands on them while she lays down and gives him a stroking masturbation with her own hand while she puts her other hand near her lip forming and alluring mysterious expression. She looks into the camera with intense stare eye contact, with a sexy quick voiceline while she rubs on him, she says sensually: \"Yeah, you gonna cum baby, you gonna cum all over my fucking tits?\" The man is fully breathless, exerted, on the edge of orgasm, barely able to reply: \"yeah...\" \n\nSound of her rapid hand movement and erotic gasps and breathing and the man's breathless sexual groans.",
"sampler": "DPM++ SDE",
"cfgScale": 1,
"negativePrompt": "still image, bad quality, subtitles, text, watermark, overlay effects, pc game, yelling, console game, video game, cartoon, childish, ugly, text, blur, logo, wordmark, static, low quality, noise, white noise, bleep, censoring, censor, bleeping, beep, beeping, newscast, interview, podcast, non-english, foreign language, russian, chinese, japanese, mutant, horror, 70's, film grain, cinematic, comedy, stand-up "
},
"availability": "Public",
"hasMeta": true,
"hasPositivePrompt": true,
"onSite": false,
"remixOfId": null
},
{
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d7c5550b-4798-44d3-b22f-6559221c11fd/original=true/123467047.mp4",
"nsfwLevel": 16,
"width": 1024,
"height": 1088,
"hash": "UDHKqfxG4TSi~pxGZ$SN0|%Mxbt69Fs;buNF",
"type": "video",
"metadata": {
"hash": "UDHKqfxG4TSi~pxGZ$SN0|%Mxbt69Fs;buNF",
"size": 5860685,
"audio": false,
"width": 1024,
"height": 1088,
"duration": 12.708
},
"minor": false,
"poi": false,
"meta": {
"seed": 319445856647761,
"steps": 13,
"prompt": "The redhead on the left whispers a cute sex flirty voiceline: \"let's see how fast we can make him cum.\" \nThen the action begins with naughty giggles and exhales as the two girls start working on the mans stiff erect penis with blowjobs and music begins to play. Penis Licking, hand stroking, and loving attention oral sex and grabs and pulls on the penis with her hand stroking it upwards from the base to the tip of the penis with her hand and fingers gripped around it. multiple girl. Two very beautiful fully nude 18 year old redhead girls. Her hand slides up and down the shaft as she looks at the camera. The girl next to her moves her head up and down licking the side of the penis with her tongue stuck out of her mouth. The other girl bobs her head up and down on the tip of the penis. the man behind the camera groans in pleasure: \"ahh...\". cute voices, ASMR, and naughty quiet giggles and wet lip smacks and licks.\nSound of her rapid hand movement and erotic gasps and breathing overtop the other sounds is the man's breathless and quivering exerted vocal groan: \"ah-ahh-ahh...\"",
"sampler": "DPM++ SDE",
"cfgScale": 1,
"negativePrompt": "still image, bad quality, subtitles, text, watermark, overlay effects, pc game, yelling, console game, video game, cartoon, childish, ugly, text, blur, logo, wordmark, static, low quality, noise, white noise, bleep, censoring, censor, bleeping, beep, beeping, newscast, interview, podcast, non-english, foreign language, russian, chinese, japanese, mutant, horror, 70's, film grain, cinematic, comedy, stand-up "
},
"availability": "Public",
"hasMeta": true,
"hasPositivePrompt": true,
"onSite": false,
"remixOfId": null
},
{
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/6c87cd4f-2686-4e08-b43e-18959811254d/original=true/123472782.mp4",
"nsfwLevel": 16,
"width": 960,
"height": 1280,
"hash": "UOL:o-9F%#-o~qR5bcxuJ6S#xa%MRjozaef,",
"type": "video",
"metadata": {
"hash": "UOL:o-9F%#-o~qR5bcxuJ6S#xa%MRjozaef,",
"size": 6997590,
"audio": false,
"width": 960,
"height": 1280,
"duration": 10.042
},
"minor": false,
"poi": false,
"meta": {
"seed": 958121442773534,
"steps": 13,
"prompt": "The high-quality realistic futa 3D video features two nude realistic shemales in a fancy ornate bedroom, both with huge erect penises and huge soft breasts and only wearing black heels having riding anal sex in reverse anal cowgirl position crouched over the other one who lying on a bed with their huge penises wobbling up and down and thrusting, both of their testicles jiggling up and down from thrust and riding bounce sexual motions, and shemale explicit motions. Clear precum fluid begins to bead-up and ooze from the tip of her large penis and run down her shaft. The shemale below her thrusts upwards into her anus with deep anal sex while holding her waist and reaching around and stroking her penis, the shemale on top rides downwards on to her cock in an asynchronized hypnotic sexual motion. Intense female moans and breathing. The blonde on top looks down at her bulging cock and says \"oh fuck, fuck. I'm gonna cum. I'm gonna fucking cum\" then she turns while still moaning to kiss the other futa female with deep make-out kissing. ",
"sampler": "DPM++ SDE",
"cfgScale": 1,
"negativePrompt": "still image, bad quality, subtitles, text, watermark, overlay effects, pc game, yelling, console game, video game, cartoon, childish, ugly, text, blur, logo, wordmark, static, low quality, noise, white noise, bleep, censoring, censor, bleeping, beep, beeping, newscast, interview, podcast, non-english, foreign language, russian, chinese, japanese, mutant, horror, 70's, film grain, cinematic, comedy, stand-up "
},
"availability": "Public",
"hasMeta": true,
"hasPositivePrompt": true,
"onSite": false,
"remixOfId": null
},
{
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e8ea4793-bf8c-4269-83df-845e4d4c6653/original=true/123449704.mp4",
"nsfwLevel": 16,
"width": 896,
"height": 1280,
"hash": "UJHnd69G5QjF-=4.M{s.x^IUixWA~qs.o3V@",
"type": "video",
"metadata": {
"hash": "UJHnd69G5QjF-=4.M{s.x^IUixWA~qs.o3V@",
"size": 4616313,
"audio": false,
"width": 896,
"height": 1280,
"duration": 10.042
},
"minor": false,
"poi": false,
"meta": {
"seed": 213930345535827,
"steps": 13,
"prompt": "The video features a real female futa character with a huge stiff 2-foot long erect penis and anal beads stuck in her anus while she masturbates with a tenga. She is masturbating with a pink artificial vagina sex toy wrapped around her shaft as she slides the squishy pink toy up and down her penis slowly with smooth masturbation motions. She says with a cute ASMR whispering voice, quivering on the edge of an orgasm: \"oh fuck it's so hard-\" panting erotically with exerted breathing while she is on the edge of orgasm, \"I'm getting so close\" while she keeps sliding her soft silicon tenga with no friction slowly up and down her very hard solid penis shaft from her balls to the tip and up over the tip of her huge long erect penis with no friction and sexy continuous stroking.",
"cfgScale": 1,
"negativePrompt": "pc game, yelling, console game, video game, cartoon, childish, ugly, text, blur, logo, wordmark, static, low quality, noise, white noise, bleep, censoring, censor, bleeping, beep, beeping, newscast, interview, podcast, non-english, foreign language, russian, chinese, japanese, mutant, horror, 70's, film grain, cinematic, comedy, stand-up "
},
"availability": "Public",
"hasMeta": true,
"hasPositivePrompt": true,
"onSite": false,
"remixOfId": null
},
{
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/2cdaa2fc-24e0-4ca4-b962-aa9233bfb064/original=true/123465768.mp4",
"nsfwLevel": 16,
"width": 960,
"height": 1152,
"hash": "U9KA+z00D%^*PB0Kb_IU8wS%~qIo?wxFR5j]",
"type": "video",
"metadata": {
"hash": "U9KA+z00D%^*PB0Kb_IU8wS%~qIo?wxFR5j]",
"size": 5202641,
"audio": false,
"width": 960,
"height": 1152,
"duration": 10.042
},
"minor": false,
"poi": false,
"meta": {
"seed": 751517173168461,
"steps": 13,
"prompt": "In this POV animated boobjob video, a sexy anthro fox female character furry has a man's penis between her large furry tits. The camera captures the man's POV, point-of-view during breast sex titfuck. She gives an incredible boob-job and bounces up and down with the mans penis between her breasts. A male voice behind the camera gasps and says: \"oh fuck, oh fuck keep going!\" with his male voice coming out behind the camera. The man has an explosive orgasm and starts to cum and groans as squirts of white liquid shoot out of the tip of his erect penis flying up and the landing down on her soft breast fur. The man groans out as his penis is sliding up and down between her bouncing breasts. ",
"sampler": "DPM++ SDE",
"cfgScale": 1,
"negativePrompt": "still image, bad quality, subtitles, text, watermark, overlay effects, pc game, yelling, console game, video game, cartoon, childish, ugly, text, blur, logo, wordmark, static, low quality, noise, white noise, bleep, censoring, censor, bleeping, beep, beeping, newscast, interview, podcast, non-english, foreign language, russian, chinese, japanese, mutant, horror, 70's, film grain, cinematic, comedy, stand-up "
},
"availability": "Public",
"hasMeta": true,
"hasPositivePrompt": true,
"onSite": false,
"remixOfId": null
},
{
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ae32fb35-e500-428e-9a9a-c332a38e125d/original=true/123452993.mp4",
"nsfwLevel": 4,
"width": 832,
"height": 1536,
"hash": "UDG84W#nK6%MENWY-Us:?]EM-UxFw{IWODWp",
"type": "video",
"metadata": {
"hash": "UDG84W#nK6%MENWY-Us:?]EM-UxFw{IWODWp",
"size": 4735252,
"audio": false,
"width": 832,
"height": 1536,
"duration": 10.042
},
"minor": false,
"poi": false,
"meta": {
"seed": 145765577167015,
"steps": 13,
"prompt": "In this real solo amateur striptease video, a 20yo blonde girl with small firm breasts wearing a pink bikini her room filming herself in the mirror an amateur video post recorded by her smartphone. She has a young bored but flirty and sultry voice: \"Just got this bikini today. What do you guys think? It's a little too skimpy, but you guys probably just want me to take it off anyways\" and then she giggles. as she films herself holding her phone with handheld camera in the reflection with sexual allure and tease. ",
"cfgScale": 1,
"negativePrompt": "pc game, yelling, console game, video game, cartoon, childish, ugly, text, blur, logo, wordmark, static, low quality, noise, white noise, bleep, censoring, censor, bleeping, beep, beeping, newscast, interview, podcast, non-english, foreign language, russian, chinese, japanese, mutant, horror, 70's, film grain, cinematic, comedy, stand-up "
},
"availability": "Public",
"hasMeta": true,
"hasPositivePrompt": true,
"onSite": false,
"remixOfId": null
},
{
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/debc316f-8506-49a7-b16b-e35874011b53/original=true/123473850.mp4",
"nsfwLevel": 16,
"width": 896,
"height": 1408,
"hash": "UOHd?F%fozI;~qX8ozwb.8Rkt6M{?b$*R+V@",
"type": "video",
"metadata": {
"hash": "UOHd?F%fozI;~qX8ozwb.8Rkt6M{?b$*R+V@",
"size": 6011617,
"audio": false,
"width": 896,
"height": 1408,
"duration": 12.708
},
"minor": false,
"poi": false,
"meta": {
"seed": 16205714204781,
"steps": 13,
"prompt": "A high-quality real video of a man and is nude horny girlfriend embracing sexually. The man is a gigachad-type alpha male. He grabs his girlfriends ass with his hand. His prominent erect stiff penis wobble slightly with his body movements. The man looks at the camera and says with haughty meme-style male voice: \"Heh, I see you're still using Wan video. Me and the homies all switched to LTX2.\" His female girlfriend looks down at his hard erect penis and lightly touches it with her fingertips. The man continues: \"Well anyways, catch you on the flip side.\"",
"sampler": "DPM++ SDE",
"cfgScale": 1,
"negativePrompt": "still image, bad quality, subtitles, text, watermark, overlay effects, pc game, yelling, console game, video game, cartoon, childish, ugly, text, blur, logo, wordmark, static, low quality, noise, white noise, bleep, censoring, censor, bleeping, beep, beeping, newscast, interview, podcast, non-english, foreign language, russian, chinese, japanese, mutant, horror, 70's, film grain, cinematic, comedy, stand-up "
},
"availability": "Public",
"hasMeta": true,
"hasPositivePrompt": true,
"onSite": false,
"remixOfId": null
},
{
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c2af973e-ad1f-4f4e-aec6-a4370484e1ff/original=true/123457655.mp4",
"nsfwLevel": 4,
"width": 960,
"height": 1344,
"hash": "UiKTxr%M-;f,_4kWt8kC%Nayofofxuaej[og",
"type": "video",
"metadata": {
"hash": "UiKTxr%M-;f,_4kWt8kC%Nayofofxuaej[og",
"size": 5772346,
"audio": false,
"width": 960,
"height": 1344,
"duration": 10.042
},
"minor": false,
"poi": false,
"meta": {
"seed": 11932803743377,
"steps": 13,
"prompt": "In this real solo erotic video, a very busty russian model in a bikini does slow seductive moves, she uses both hands to unclip the front of her bikini top and pulls both separated halves of the top off to the sides, slowly revealing and exposing her breasts. A techno track play with thumping bassline, synth leads, and a whispering seductive female voice delivering JOI jerk-off instruction while moaning sexually and sensually whispering over the music track: \"ahh, oh fuck yes. Ten Eros, live out your deepest erotic fantasies\"",
"cfgScale": 1,
"negativePrompt": "still image, bad quality, subtitles, text, watermark, overlay effects, pc game, yelling, console game, video game, cartoon, childish, ugly, text, blur, logo, wordmark, static, low quality, noise, white noise, bleep, censoring, censor, bleeping, beep, beeping, newscast, interview, podcast, non-english, foreign language, russian, chinese, japanese, mutant, horror, 70's, film grain, cinematic, comedy, stand-up "
},
"availability": "Public",
"hasMeta": true,
"hasPositivePrompt": true,
"onSite": false,
"remixOfId": null
}
],
"downloadUrl": "https://civitai.red/api/download/models/2752410",
"creator": {
"username": "tenstrip",
"image": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/61720d15-539a-4833-941a-3c4ad7526d86/width=96/tenstrip.jpeg"
}
},
"tags": [
"base model"
],
"modelDescription": "<p><a target=\"_blank\" rel=\"ugc\" href=\"https://huggingface.co/TenStrip/LTX2.3-10Eros/tree/main\">HuggingFace backup</a></p><p><a rel=\"ugc\" href=\"https://huggingface.co/TenStrip/LTX2.3-10Eros_Workflows/tree/main\">My Workflows (v4 used on all previews)</a></p><p><a target=\"_blank\" rel=\"ugc\" href=\"https://github.com/TenStrip/10S-Comfy-nodes\">10S Nodes (also on manager)</a></p><p><u>Ver. 1.2</u></p><p>Additional adjustments. Basically a more polished version of v1. This may be the best LTX2.3 can do tbh. It has a bit more tensors. This FP8 is larger, I left all connectors on exclude because that was one small part of identity drift. Full bf16 for quants and training is on <a target=\"_blank\" rel=\"ugc\" href=\"https://huggingface.co/TenStrip/LTX2.3-10Eros/tree/main\">HuggingFace backup.</a> It can do anything v1 can with more 'stability' -- less tendency to do errant or odd moves and reaching more stable outputs at lower steps (8-10). <strong>Still best used to just animate sex images</strong>. Complex storytelling and prompts still requires additional guided frames and high effort, everyone knows LTX 2.3 is very clunky by now. Lighttricks seems to be 4 years behind everything, they just now decided to implement experts on the next version. I guess the totally true-proven method of autoregressive is too futuristic for them (literally the best method for video models - Seedance2, Grok, Kling).</p><p>This has slightly better initial character and likeness keep, but prompts can remove it unless care is taken. Expressions, dialogue, movement, and camera/pose change will all attack the guided character's look. Best to always train the likeness as a lora or have a guided endframe to give the model a future target.</p><p>Same bad tendencies in certain scenarios, same unrefined concepts.</p><p></p><p></p><hr /><p><u>Ver 1.0</u></p><p><a target=\"_blank\" rel=\"ugc\" href=\"https://huggingface.co/vantagewithai/LTX2.3-10Eros-GGUF/tree/main\">Quantized versions.</a></p><p></p><p></p><p>This is not the official <a target=\"_blank\" rel=\"ugc\" href=\"https://civitai.red/models/2594061/sulphur-2-base?modelVersionId=2914022\">Sulphur2 model</a>, that is also <a target=\"_blank\" rel=\"ugc\" href=\"https://huggingface.co/SulphurAI/Sulphur-2-base\">here</a>. They are the team that trained and manage the official model. I am only affiliated as an i2v tester and consultant. This is my personal merge of the actual data and it uses different training steps and layer scaling to create a consistent flexible I2V focused version. Future versions (v2+) will be actually fine tuned by me personally aimed at filling in gaps and weak concepts.</p><p></p><p><strong>Quality is entirely prompt, image, and workflow dependent. </strong>Aside for systemic issues with LTX: motion smear, artifacts, and identity loss, it still behaves like 2.3 requiring extensive prompt refinement, extra sampling, and resolution targeting for best results.</p><p></p><hr /><p><strong>This probably means nothing legally, but I just want to make it clear that you waive any right to blame or use the host site, me, or sulphur in your defense if you download and misuse this. It's ethical artistic intended use is clearly stated:</strong></p><p>By downloading, accessing, or using the <strong>10Eros</strong> Model (the “Model”), you (“User”) agree to the following terms:</p><p><strong>1. Permitted Use Only</strong> The Model may <strong>only</strong> be used with inputs of fictional or non-real characters. Any use involving real persons, celebrities, public figures, or identifiable individuals is strictly prohibited (“Out-of-Scope Use”).</p><p><strong>2. Disclaimer of Liability</strong> TenStrip (the creator of the Model), together with its affiliates (<a target=\"_blank\" rel=\"ugc\" href=\"http://CivitAI.com\">CivitAI.com</a> / <a target=\"_blank\" rel=\"ugc\" href=\"http://CivitAI.red\">CivitAI.red</a>, Lightricks Ltd., and Sulphur Team), collectively and individually disclaim all liability for any direct, indirect, incidental, consequential, special, or punitive damages arising from your use or misuse of the Model.</p><p>This includes, without limitation, any claims related to copyright infringement, right of publicity violations, defamation, privacy violations, deepfakes, illegal activities, or any harm caused by outputs generated by the Model.</p><p><strong>3. Out-of-Scope Uses Forbidden</strong> All Out-of-Scope Uses are explicitly forbidden. The creator and affiliates bear no responsibility for any outputs generated from prohibited inputs. Your actions with this generative Model are solely your own.</p><p><strong>4. Assumption of Risk</strong> You assume all risks associated with the use of the Model. Any use outside the permitted fictional/non-real character inputs further releases TenStrip and all affiliates from any and all liability.</p><p><strong>5. Indemnification</strong> You agree to indemnify, defend, and hold harmless TenStrip and its affiliates from any and all claims, losses, liabilities, damages, and expenses (including reasonable attorneys’ fees) arising from your use or misuse of the Model.</p><p><strong>6. No Warranties</strong> The Model is provided “AS IS” with no warranties of any kind, express or implied.</p><p>This agreement is governed by the laws of the United States. If you do not agree to these terms, do not download or use the Model.</p><p><br /></p>",
"civitai_deleted": false,
"favorite": false,
"exclude": false,
"db_checked": false,
"skip_metadata_refresh": false,
"metadata_source": "civitai_api",
"last_checked_at": 1782019073.229533,
"hash_status": "completed",
"usage_tips": "{}",
"sub_type": "checkpoint"
} |