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,290 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 | {
"file_name": "ltx2310eros_v12",
"model_name": "LTX2.3 10Eros",
"file_path": "G:/AI/ComfyUI/models/diffusion_models/ltx2310eros_v12.safetensors",
"size": 34328894254,
"modified": 1782451287.912621,
"sha256": "e16addc014081ccd2e206bd0037b27a6552f389acbda69791cecc7ee7d801d5a",
"base_model": "LTXV 2.3",
"preview_url": "G:/AI/ComfyUI/models/diffusion_models/ltx2310eros_v12.mp4",
"preview_nsfw_level": 16,
"notes": "",
"from_civitai": true,
"civitai": {
"id": 3043807,
"modelId": 2447875,
"name": "v1.2",
"nsfwLevel": 60,
"createdAt": "2026-06-17T17:55:12.511Z",
"updatedAt": "2026-06-19T04:51:01.207Z",
"status": "Published",
"publishedAt": "2026-06-19T04:51:01.202Z",
"trainedWords": [],
"trainingStatus": null,
"trainingDetails": null,
"baseModel": "LTXV 2.3",
"baseModelType": "Standard",
"earlyAccessEndsAt": null,
"earlyAccessConfig": null,
"description": "<ul><li><p>Alternate additional exp lora, base model connectors adjustment.</p></li></ul>",
"uploadType": "Created",
"usageControl": "Download",
"licensingFee": 0,
"air": "urn:air:ltxv23:checkpoint:civitai:2447875@3043807",
"stats": {
"downloadCount": 5789,
"thumbsUpCount": 392
},
"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 target=\"_blank\" rel=\"ugc\" href=\"https://huggingface.co/TenStrip/LTX2.3-10Eros_Workflows/tree/main\">My Workflows (v4 used on all previews, v5 includes memory reference which almost fixes likeness drift and loss over long term.)</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": 2922592,
"sizeKB": 33524310.79492188,
"name": "ltx2310eros_v12.safetensors",
"type": "Model",
"pickleScanResult": "Success",
"pickleScanMessage": null,
"virusScanResult": "Success",
"virusScanMessage": null,
"scannedAt": "2026-06-17T18:54:15.265Z",
"metadata": {
"format": "SafeTensor",
"size": "full",
"fp": "fp8"
},
"hashes": {
"AutoV1": "2C553277",
"AutoV2": "E16ADDC014",
"SHA256": "E16ADDC014081CCD2E206BD0037B27A6552F389ACBDA69791CECC7EE7D801D5A",
"CRC32": "C9FFC96F",
"BLAKE3": "1CEAA78BC8F448875C9C3360C708DC041C7BB6EAD5422AE4204F6808496AE117",
"AutoV3": "802FEC12C7D1"
},
"primary": true,
"downloadUrl": "https://civitai.red/api/download/models/3043807"
}
],
"images": [
{
"url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/08b8c9de-37cc-4813-aec8-bcd9a9d00ada/original=true/134203863.mp4",
"nsfwLevel": 16,
"width": 1024,
"height": 1216,
"hash": "U7AJ7m0MEM~B%e58ofs:0M%2~A9a9ut7oKIp",
"type": "video",
"metadata": {
"hash": "U7AJ7m0MEM~B%e58ofs:0M%2~A9a9ut7oKIp",
"size": 2086547,
"audio": false,
"width": 1024,
"height": 1216,
"duration": 10.6
},
"minor": false,
"poi": false,
"meta": {
"seed": 192191887966764,
"steps": 9,
"prompt": "[0-2 sec] In a dark sensual setting a beautiful blonde woman with large breasts straddles a muscular man lying on his back as he looks up at her with desire. She breaths with slow arousal sometimes making audible sexual foley like: ooh, mmm... ah... ugh..\n\n[2-4 sec] The man leans forward and gently sucks and licks her erect nipple while cupping her breast with one hand. She holds his thick hard cock in her soft hand and begins a slow sensual handjob stroking up and down the full length.\n\n[4-6 sec] Her hand moves rhythmically twisting slightly around the shaft as she strokes him. The man continues licking and sucking her nipple switching between breasts with wet sucking sounds.\n\n[6-8 sec] She increases the pace of her handjob while moaning softly and arching her back to press her breast more firmly against his mouth. His tongue swirls around her nipple as her hand glides smoothly over his cock.\n\n[8-10 sec] The sensual handjob continues with steady strokes as the man lavishes attention on her breasts with his mouth. Soft breathy female moans wet licking and sucking sounds and the slick sound of her hand on his cock fill the intimate dark 10-second scene.",
"sampler": "Euler a",
"cfgScale": 1,
"negativePrompt": "VR, 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/0c321f38-c4e0-4988-9190-0a49858cf62b/original=true/134204122.mp4",
"nsfwLevel": 16,
"width": 1168,
"height": 1496,
"hash": "UJCG$C~VwFI_%KxZRiW?4T9FNfxvD%EOWAjE",
"type": "video",
"metadata": {
"hash": "UJCG$C~VwFI_%KxZRiW?4T9FNfxvD%EOWAjE",
"size": 24664841,
"audio": false,
"width": 1168,
"height": 1496,
"duration": 21.3
},
"minor": false,
"poi": false,
"meta": {
"seed": 501466751758918,
"steps": 9,
"prompt": "animated slimegirl cartoon. A translucent blue slime girl with large dripping breasts and flowing gooey hair straddles a man in a grand gothic bedroom with stone arches and candlelight. From a low angle the man's hands grip her gooey waist as his erect penis is buried deep inside her transparent pussy visible through her melty body and tinted blue through refraction. His long and very wide and thick blue tinted penis is visible with a xray view on her stomach. As she moves up and down on the penis and it moves down and up into her transparent gel body.\n\nThe bouncy slime girl rides vigorously on top bouncing up and down on the man's erect penis causing her large gooey breasts to slap and jiggle heavily with each downward thrust. Her translucent blue body deforms and ripples around the thick shaft with every motion while excess slime drips and splashes from her breasts hips and hair onto the man's torso. The man's hands squeeze and hold her slippery waist guiding her movements as her hips grind and bounce faster. Wet gooey pops and loud squelching sounds are accompanied by the constant dripping and splashing of slime. Only her cute hentai moans and the man groaning fill the scene as the intense riding continues with increasing speed.",
"sampler": "Euler a",
"cfgScale": 1,
"negativePrompt": "music, transition, VR, still image, bad quality, subtitles, text, watermark, overlay effects, pc game, yelling, console game, video game, cartoon, 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/6df7922b-bc8b-4420-afbb-5c827a6f9ed3/original=true/134203698.mp4",
"nsfwLevel": 16,
"width": 1080,
"height": 1912,
"hash": "UIK0sW.8b_~VBDtlkXxu9v-;-pj]?bxuxtjs",
"type": "video",
"metadata": {
"hash": "UIK0sW.8b_~VBDtlkXxu9v-;-pj]?bxuxtjs",
"size": 19718115,
"audio": false,
"width": 1080,
"height": 1912,
"duration": 15.042
},
"minor": false,
"poi": false,
"meta": {
"seed": 335203762564849,
"steps": 9,
"prompt": "From simulated male POV a beautiful redhead girlfriend with long wavy hair lies on her back on a gray couch with legs spread wide looking up at the camera with an aroused expression as the man's cock is deep inside her smooth shaved pussy.\n\n[0-4 sec] The man thrusts slowly and deeply into her tight pussy causing her large breasts to jiggle with each movement. She moans softly and runs her hands over her breasts and through her hair while maintaining eye contact.\n\n[4-6 sec] Her hips rock upward to meet the thrusts as her pussy grips the cock tightly. She bites her lip and lets out breathier moans as the pace increases slightly.\n\n[6-11 sec] The thrusting becomes faster and more rhythmic with visible slickness on the shaft. She reaches down to rub her clit while her breasts bounce heavily.\n\n[11+ sec] The man thrusts harder as she moans louder with pleasure building toward climax. Wet slapping sounds skin on skin contact her breathy female moans and the subtle creak of the couch fill the intimate simulated male POV sex scene with his girlfriend.",
"sampler": "Euler a",
"cfgScale": 1,
"negativePrompt": "music, transition, VR, still image, bad quality, subtitles, text, watermark, overlay effects, pc game, yelling, console game, video game, cartoon, 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/1ad298ce-69a5-48ad-8d75-491938617c0d/original=true/134203744.mp4",
"nsfwLevel": 16,
"width": 1280,
"height": 1520,
"hash": "UKJZ_FRP9FIp~pn$wKNG0yxvM{xZ9FbHNFs:",
"type": "video",
"metadata": {
"hash": "UKJZ_FRP9FIp~pn$wKNG0yxvM{xZ9FbHNFs:",
"size": 29160743,
"audio": false,
"width": 1280,
"height": 1520,
"duration": 19.24
},
"minor": false,
"poi": false,
"meta": {
"seed": 197703542008816,
"steps": 9,
"prompt": "A real POV explicit porn video with two very beautiful fully nude redhead women servicing a man's erection in front of them. The action begins with soft 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 as she 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. The move their mouths up and down the shaft in synchronized movements. The man behind the camera groans in pleasure: \"ahh...\". cute voices, ASMR, and naughty quiet giggles and wet lip smacks and licks.\n\n[6+ sec] the woman takes his penis into her open mouth, she deeply gives him a sucking blowjob with his penis going down into her throat with full oral sex.",
"sampler": "Euler a",
"cfgScale": 1,
"negativePrompt": "VR, 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/12009209-9275-4157-ab50-5bdb244b80e5/original=true/134204290.mp4",
"nsfwLevel": 16,
"width": 1248,
"height": 1664,
"hash": "UAN]2??a%201CmS4pJ9F0100tmt6yYn3EjMx",
"type": "video",
"metadata": {
"hash": "UAN]2??a%201CmS4pJ9F0100tmt6yYn3EjMx",
"size": 24788931,
"audio": false,
"width": 1248,
"height": 1664,
"duration": 21.8
},
"minor": false,
"poi": false,
"meta": {
"seed": 64645212754992,
"steps": 8,
"prompt": "POV with Two sexy fully nude JAV adult actresses with massive breasts and bushy pubes above their pussy starting with the left girl giving the man lying below them a boobjob moving her breasts up and down and squeezed around the top of his hard penis while the other girl holds the base of his penis in her hand. The left woman talks to him while the right woman does her titfucking with two different speakers. She talks to him with naughty Japanese dialogue in her cute voice. During the boob job they become aroused and horny, moaning slightly as she titfucks his long hard penis, with repetetive wet stroking sounds as the girls hands glides up and down his hard slick oiled penis.",
"sampler": "Euler",
"cfgScale": 1,
"negativePrompt": "transition, VR, 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, 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/8577b086-626c-4eaa-adb6-f3c4205f1c08/original=true/134204419.mp4",
"nsfwLevel": 16,
"width": 1216,
"height": 1990,
"hash": "UOH1lFx[0#wI_NtRIpjEcEs:wIfj^+xZIUI:",
"type": "video",
"metadata": {
"hash": "UOH1lFx[0#wI_NtRIpjEcEs:wIfj^+xZIUI:",
"size": 16286522,
"audio": false,
"width": 1216,
"height": 1990,
"duration": 12.501
},
"minor": false,
"poi": false,
"meta": {
"seed": 418034386650546,
"steps": 9,
"prompt": "A beautiful woman with brown hair wearing a light-colored sun hat and a pink off-shoulder top pulled down exposing her back lies on her stomach on a wooden lounge chair by the ocean at sunset. The man's erect penis is partially inserted into her pussy from behind in POV as his hands grip her hips.\n\nThe man slowly fucks her in deep POV doggystyle thrusts, pushing his thick cock all the way inside her until his crotch presses firmly against her ass, burying himself to the hilt. He then slowly pulls back until only the swollen tip of his penis remains inside her tight pussy before sliding back in with another long deliberate thrust. He repeats this teasing full-length motion continuously, each deep slow penetration causing an air toot as he clears the air from her vaginal canal with his cock in firm fitment inside her. She constantly looks over her shoulder at the camera with a loving aroused stare, mouth open in pleasure as her body rocks forward with every thrust and she shows cute loving expression changes of pleasure. Wet squelching sounds from her pussy mix with the rhythmic skin-on-skin slapping of his hips against her ass, the gentle lapping of ocean waves in the background, and her soft breathy moans growing into vocal pleasure sex moans with each deep stroke. Plaps and skin contact sounds from sex coincide with her intensifying orgasm.",
"sampler": "Euler a",
"cfgScale": 1,
"negativePrompt": "3D, VR, 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/8edaef37-c625-4c76-8cae-e4b761e8e464/original=true/134204243.mp4",
"nsfwLevel": 16,
"width": 1416,
"height": 1416,
"hash": "UDLp2E01CS={019a-oiv*0=^t8OF0gNaR5IA",
"type": "video",
"metadata": {
"hash": "UDLp2E01CS={019a-oiv*0=^t8OF0gNaR5IA",
"size": 3043376,
"audio": false,
"width": 1416,
"height": 1416,
"duration": 12.042
},
"minor": false,
"poi": false,
"meta": {
"seed": 1043997046288501,
"steps": 9,
"prompt": "Real lesbian porn scene with a dark-skinned woman with long black hair on the left with a central blonde woman with large bare breasts with her navel visible legs open shaved crotch and her vagina spread with pink labia while she is holding her bent knee and leg up along with another light-skinned blonde woman below her eating her pussy out, all nude together on white sheets in bed. The dark-skinned woman sucks on her nipple and gropes her breast with her dark hand cupping it and pulling on the blonde's soft breast. One continuous wandering orbiting shot capturing some slight angles on the central female. The dark-skinned woman is licking the central blonde's nipple and breast while the central blonde lies on her back with her mouth open in pleasure. The light-skinned blonde on the right buries her face between the central woman's spread thighs licking her pussy with her tongue extended while the blonde grinds her hips and slowly moves her crotch into her face. \nThe light-skinned blonde woman licks the central blonde's swollen clit and dripping labia with long hungry strokes before sucking the clit into her mouth and flicking it rapidly with her tongue rhythmically as her tongue curls up and beats the top of the blondes pussy and her soft clitoral hood flesh wiggles around moved by the tongue flicks. Then central blonde starts making out passionately with open-mouth tongue kissing and moans at maximum arousal while kissing the dark-skinned woman. All the while the blonde licking her pussy is relentless and keeps the same motion with wet squishy open mouth breaths and sounds from the intense pussy licking.",
"sampler": "Euler a",
"cfgScale": 1,
"negativePrompt": "music, transition, VR, still image, bad quality, subtitles, text, watermark, overlay effects, pc game, yelling, console game, video game, cartoon, 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/00f3e4d9-0f10-4bc0-8bb5-5f2d1955540a/original=true/134203986.mp4",
"nsfwLevel": 16,
"width": 1280,
"height": 1500,
"hash": "UAKJuq0KEm9F01_2?a?HE4%M~UWC.8Io%g^+",
"type": "video",
"metadata": {
"hash": "UAKJuq0KEm9F01_2?a?HE4%M~UWC.8Io%g^+",
"size": 19222931,
"audio": false,
"width": 1280,
"height": 1500,
"duration": 7.792
},
"minor": false,
"poi": false,
"meta": {
"seed": 239793767271040,
"steps": 9,
"prompt": "The viewer is a nude woman with large bare breasts and a bony ribcage on her torso, looking down her body from above while she is lying on her back on white bed sheets with her legs spread wide, a man's thick erect penis is deeply inserted into her wet pussy while he fucks the viewer thrusting down at the top of the clip between her legs. The female off-camera inhales sharply in stressed aroused breaths and groans.\n\nThe man begins thrusting his stiff erection and long penis in and out of her tight pussy with slow powerful strokes causing her large breasts to bounce and jiggle heavily with each deep penetration. Her hands rest on her own thighs as her body rocks back and forth from the rhythmic fucking. She looks down her body watching the thick shaft slide in and out between her spread legs while her hips lift slightly to meet each thrust. Wet squelching sounds from her creamy pussy mix with loud skin-slapping foley the creaking of the bed, the female moans with breathy pleasure as she gets fucked passionately",
"sampler": "Euler a",
"cfgScale": 1,
"negativePrompt": "music, transition, VR, still image, bad quality, subtitles, text, watermark, overlay effects, pc game, yelling, console game, video game, cartoon, 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/3043807",
"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 target=\"_blank\" rel=\"ugc\" href=\"https://huggingface.co/TenStrip/LTX2.3-10Eros_Workflows/tree/main\">My Workflows (v4 used on all previews, v5 includes memory reference which almost fixes likeness drift and loss over long term.)</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": 1782556617.805854,
"hash_status": "completed",
"usage_tips": "{}",
"sub_type": "checkpoint"
} |