File size: 25,724 Bytes
af7b812 | 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 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 | {
"29": {
"inputs": {
"filename_prefix": "_tools\\Lora\\data_workflow\\4\\versions\\133\\VID_",
"images": [
"30:8",
0
]
},
"class_type": "SaveImage",
"_meta": {
"title": "Save Image"
}
},
"49": {
"inputs": {
"aspect_ratio": "2:3 (Portrait Photo)",
"megapixels": 1,
"multiple": 8
},
"class_type": "ResolutionSelector",
"_meta": {
"title": "Resolution Selector"
}
},
"360": {
"inputs": {
"aspect_ratio": "2:3 (Portrait Photo)",
"megapixels": 1,
"multiple": 8
},
"class_type": "ResolutionSelector",
"_meta": {
"title": "Resolution Selector"
}
},
"361": {
"inputs": {
"filename_prefix": "Krea2\\vid_",
"format": "auto",
"codec": "auto",
"video": [
"359:310",
0
]
},
"class_type": "SaveVideo",
"_meta": {
"title": "Save Video"
}
},
"30:6": {
"inputs": {
"text": [
"30:28",
0
],
"clip": [
"30:11",
0
]
},
"class_type": "CLIPTextEncode",
"_meta": {
"title": "CLIP Text Encode (Prompt)"
}
},
"30:5": {
"inputs": {
"width": [
"49",
0
],
"height": [
"49",
1
],
"batch_size": 1
},
"class_type": "EmptyLatentImage",
"_meta": {
"title": "Empty Latent Image"
}
},
"30:3": {
"inputs": {
"seed": 522416252331260,
"steps": 8,
"cfg": 1,
"sampler_name": "euler",
"scheduler": "simple",
"denoise": 1,
"model": [
"30:22",
0
],
"positive": [
"30:6",
0
],
"negative": [
"30:13",
0
],
"latent_image": [
"30:5",
0
]
},
"class_type": "KSampler",
"_meta": {
"title": "KSampler"
}
},
"30:8": {
"inputs": {
"samples": [
"30:3",
0
],
"vae": [
"30:12",
0
]
},
"class_type": "VAEDecode",
"_meta": {
"title": "VAE Decode"
}
},
"30:10": {
"inputs": {
"unet_name": "krea2_turbo_fp8_scaled.safetensors",
"weight_dtype": "default"
},
"class_type": "UNETLoader",
"_meta": {
"title": "Load Diffusion Model"
}
},
"30:11": {
"inputs": {
"clip_name": "qwen3vl_4b_fp8_scaled.safetensors",
"type": "krea2",
"device": "default"
},
"class_type": "CLIPLoader",
"_meta": {
"title": "Load CLIP"
}
},
"30:12": {
"inputs": {
"vae_name": "qwen_image_vae.safetensors"
},
"class_type": "VAELoader",
"_meta": {
"title": "Load VAE"
}
},
"30:13": {
"inputs": {
"conditioning": [
"30:6",
0
]
},
"class_type": "ConditioningZeroOut",
"_meta": {
"title": "ConditioningZeroOut"
}
},
"30:15": {
"inputs": {
"lora_name": "krea2_darkbrush.safetensors",
"strength_model": 0.8,
"model": [
"30:10",
0
]
},
"class_type": "LoraLoaderModelOnly",
"_meta": {
"title": "Load LoRA"
}
},
"30:16": {
"inputs": {
"prompt": [
"30:17",
0
],
"max_length": 512,
"sampling_mode": "on",
"sampling_mode.temperature": 0.7,
"sampling_mode.top_k": 64,
"sampling_mode.top_p": 0.95,
"sampling_mode.min_p": 0.05,
"sampling_mode.repetition_penalty": 1.05,
"sampling_mode.seed": 0,
"sampling_mode.presence_penalty": 0,
"thinking": false,
"use_default_template": true,
"clip": [
"30:11",
0
]
},
"class_type": "TextGenerate",
"_meta": {
"title": "Generate Text"
}
},
"30:17": {
"inputs": {
"string_a": [
"30:18",
0
],
"string_b": [
"30:19",
0
],
"delimiter": ""
},
"class_type": "StringConcatenate",
"_meta": {
"title": "Concatenate Text"
}
},
"30:18": {
"inputs": {
"value": "You are an expert prompt engineer for text-to-image models. Your task is to expand the user's prompt into a highly effective image-generation prompt.\n\nThink step by step about the request before writing the answer:\n- What is the subject and mood?\n- What visual styles, mediums, and lighting options would fit? Consider two or three alternatives and pick the one that best serves the caption.\n- What composition, framing, and grounded details will help the text-to-image model?\n\nThen output a single expanded prompt paragraph.\n\nFollow these rules strictly:\n1. **Faithfulness First:** Preserve all original subjects, actions, colors, and spatial relationships. Do not add new objects, props, characters, or animals unless the user clearly implies them.\n2. **Practical T2I Structure:** Write a prompt that a text-to-image model can parse cleanly. Group subjects with their own attributes and actions. Use grounded phrasing for poses, interactions, and spatial layout.\n3. **Style Planning Stays Internal:** Use your internal reasoning to choose style, medium, framing, and lighting. Do not emit planning tags or wrappers in the visible answer body.\n4. **Text Rendering:** If the user requests visible text, quotes, labels, or typography, specify the exact text clearly and wrap requested words in quotes.\n5. **Avoid Over-Specification:** Do not invent highly specific clothing, colors, materials, or scene details unless the input supports them.\n6. **Structure:** Write one cohesive paragraph after the thinking block. No bullets, JSON, or markdown.\n7. **Respect Existing Detail:** If the user's prompt is already detailed, lightly polish and finalize rather than heavily expanding — preserve their phrasing and direction.\n8. **Respect the Human Form:** Treat depictions of people with dignity. Assume clothing covers genitals and intimate anatomy.\n9. **Preserve User Medium:** When the user explicitly requests a medium (e.g. \"photo of\", \"photograph of\", \"illustration of\", \"painting of\", \"sketch of\", \"3D render of\"), honor it. Do not pivot to a different medium to avoid difficulty — match the user's stated intent.\n\nUser's Input:\n\n"
},
"class_type": "PrimitiveStringMultiline",
"_meta": {
"title": "Text String (System Prompt)"
}
},
"30:19": {
"inputs": {
"value": "Photorealistic 8K erotic image of an ultra-stunning, voluptuous young woman with an exaggerated hourglass figure, massively enormous breasts, tiny waist, wide hips and long toned legs. Soft emo aesthetic: pale skin, dark smoky eye makeup, black eyeliner, dark lips, long wavy black hair with subtle purple highlights.\nShe is wearing only an extremely sheer, almost transparent (crochet:1.15) black lace robe that is completely open at the front — it drapes over her shoulders and arms but leaves her entire body exposed. The delicate lace barely covers anything: her massive breasts are fully out, nipples hard and glistening, the thin fabric only framing her curves without hiding them.\nShe is in a breathtaking luxurious infinity pool overlooking the ocean at golden hour, crystal-clear turquoise water, dramatic cliffs, soft warm light and gentle mist.\nShe sits on the edge of the pool, legs spread wide, one hand aggressively squeezing and lifting her enormous breast while the other is buried between her thighs, fingers clearly moving inside herself. Extremely horny and desperate expression: eyes rolled back, mouth open in a deep moan, tongue slightly out, flushed skin, heavy breathing, glossy with water and arousal. She is right on the edge of a powerful orgasm. Highly detailed wet lace texture, glistening skin, water droplets, explicit wetness between her legs, soft cinematic lighting, highly erotic atmosphere, masterpiece."
},
"class_type": "PrimitiveStringMultiline",
"_meta": {
"title": "Text String (User Prompt)"
}
},
"30:20": {
"inputs": {
"source": [
"30:21",
0
]
},
"class_type": "PreviewAny",
"_meta": {
"title": "Preview as Text"
}
},
"30:21": {
"inputs": {
"switch": [
"30:24",
0
],
"on_false": [
"30:19",
0
],
"on_true": [
"30:16",
0
]
},
"class_type": "ComfySwitchNode",
"_meta": {
"title": "Switch"
}
},
"30:22": {
"inputs": {
"switch": [
"30:23",
0
],
"on_false": [
"30:10",
0
],
"on_true": [
"30:15",
0
]
},
"class_type": "ComfySwitchNode",
"_meta": {
"title": "Switch (Model)"
}
},
"30:23": {
"inputs": {
"value": false
},
"class_type": "PrimitiveBoolean",
"_meta": {
"title": "Boolean (Enable LoRA?)"
}
},
"30:24": {
"inputs": {
"value": false
},
"class_type": "PrimitiveBoolean",
"_meta": {
"title": "Boolean (Refine Prompt?)"
}
},
"30:27": {
"inputs": {
"string_a": [
"30:20",
0
],
"string_b": "muted minimalist sketch style",
"delimiter": ", "
},
"class_type": "StringConcatenate",
"_meta": {
"title": "Concatenate Text (LoRA Trigger Word)"
}
},
"30:28": {
"inputs": {
"switch": [
"30:23",
0
],
"on_false": [
"30:20",
0
],
"on_true": [
"30:27",
0
]
},
"class_type": "ComfySwitchNode",
"_meta": {
"title": "Switch"
}
},
"359:276": {
"inputs": {
"noise_seed": 42
},
"class_type": "RandomNoise",
"_meta": {
"title": "RandomNoise"
}
},
"359:277": {
"inputs": {
"noise_seed": 1234567890
},
"class_type": "RandomNoise",
"_meta": {
"title": "RandomNoise"
}
},
"359:278": {
"inputs": {
"video_latent": [
"359:288",
0
],
"audio_latent": [
"359:307",
1
]
},
"class_type": "LTXVConcatAVLatent",
"_meta": {
"title": "LTXVConcatAVLatent"
}
},
"359:280": {
"inputs": {
"sampler_name": "euler"
},
"class_type": "KSamplerSelect",
"_meta": {
"title": "KSamplerSelect"
}
},
"359:281": {
"inputs": {
"sigmas": "0.85, 0.7250, 0.4219, 0.0"
},
"class_type": "ManualSigmas",
"_meta": {
"title": "ManualSigmas"
}
},
"359:282": {
"inputs": {
"cfg": 1,
"model": [
"359:285",
0
],
"positive": [
"359:284",
0
],
"negative": [
"359:284",
1
]
},
"class_type": "CFGGuider",
"_meta": {
"title": "CFG Guider"
}
},
"359:283": {
"inputs": {
"noise": [
"359:277",
0
],
"guider": [
"359:314",
0
],
"sampler": [
"359:291",
0
],
"sigmas": [
"359:306",
0
],
"latent_image": [
"359:318",
0
]
},
"class_type": "SamplerCustomAdvanced",
"_meta": {
"title": "SamplerCustomAdvanced"
}
},
"359:284": {
"inputs": {
"positive": [
"359:304",
0
],
"negative": [
"359:304",
1
],
"latent": [
"359:307",
0
]
},
"class_type": "LTXVCropGuides",
"_meta": {
"title": "LTXVCropGuides"
}
},
"359:285": {
"inputs": {
"lora_name": "ltx_2.3_22b_distilled_1.1_lora_dynamic_fro09_avg_rank_111_bf16.safetensors",
"strength_model": 0.5,
"model": [
"359:316",
0
]
},
"class_type": "LoraLoaderModelOnly",
"_meta": {
"title": "Load LoRA"
}
},
"359:286": {
"inputs": {
"longer_edge": 1536,
"images": [
"359:290",
0
]
},
"class_type": "ResizeImagesByLongerEdge",
"_meta": {
"title": "Resize Images by Longer Edge (DEPRECATED)"
}
},
"359:287": {
"inputs": {
"samples": [
"359:307",
0
],
"upscale_model": [
"359:311",
0
],
"vae": [
"359:316",
2
]
},
"class_type": "LTXVLatentUpsampler",
"_meta": {
"title": "LTXVLatentUpsampler"
}
},
"359:288": {
"inputs": {
"strength": 1,
"bypass": [
"359:302",
0
],
"vae": [
"359:316",
2
],
"image": [
"359:289",
0
],
"latent": [
"359:287",
0
]
},
"class_type": "LTXVImgToVideoInplace",
"_meta": {
"title": "LTXVImgToVideoInplace"
}
},
"359:289": {
"inputs": {
"img_compression": 18,
"image": [
"359:286",
0
]
},
"class_type": "LTXVPreprocess",
"_meta": {
"title": "LTXV Preprocess"
}
},
"359:290": {
"inputs": {
"resize_type": "scale dimensions",
"resize_type.width": [
"359:312",
0
],
"resize_type.height": [
"359:299",
0
],
"resize_type.crop": "center",
"scale_method": "lanczos",
"input": [
"30:8",
0
]
},
"class_type": "ResizeImageMaskNode",
"_meta": {
"title": "Resize Image/Mask"
}
},
"359:291": {
"inputs": {
"sampler_name": "euler"
},
"class_type": "KSamplerSelect",
"_meta": {
"title": "KSamplerSelect"
}
},
"359:292": {
"inputs": {
"expression": "a/2",
"values.a": [
"359:312",
0
]
},
"class_type": "ComfyMathExpression",
"_meta": {
"title": "Math Expression"
}
},
"359:294": {
"inputs": {
"expression": "a/2",
"values.a": [
"359:299",
0
]
},
"class_type": "ComfyMathExpression",
"_meta": {
"title": "Math Expression"
}
},
"359:295": {
"inputs": {
"width": [
"359:292",
1
],
"height": [
"359:294",
1
],
"length": [
"359:323",
1
],
"batch_size": 1
},
"class_type": "EmptyLTXVLatentVideo",
"_meta": {
"title": "EmptyLTXVLatentVideo"
}
},
"359:296": {
"inputs": {
"strength": 0.7,
"bypass": [
"359:302",
0
],
"vae": [
"359:316",
2
],
"image": [
"359:289",
0
],
"latent": [
"359:295",
0
]
},
"class_type": "LTXVImgToVideoInplace",
"_meta": {
"title": "LTXVImgToVideoInplace"
}
},
"359:297": {
"inputs": {
"samples": [
"359:309",
1
],
"audio_vae": [
"359:279",
0
]
},
"class_type": "LTXVAudioVAEDecode",
"_meta": {
"title": "LTXV Audio VAE Decode"
}
},
"359:298": {
"inputs": {
"expression": "a",
"values.a": [
"359:300",
0
]
},
"class_type": "ComfyMathExpression",
"_meta": {
"title": "Math Expression"
}
},
"359:299": {
"inputs": {
"value": [
"360",
1
]
},
"class_type": "PrimitiveInt",
"_meta": {
"title": "Height"
}
},
"359:300": {
"inputs": {
"value": 24
},
"class_type": "PrimitiveInt",
"_meta": {
"title": "Frame Rate"
}
},
"359:301": {
"inputs": {
"value": 15
},
"class_type": "PrimitiveInt",
"_meta": {
"title": "Duration"
}
},
"359:302": {
"inputs": {
"value": false
},
"class_type": "PrimitiveBoolean",
"_meta": {
"title": "Switch to Text to Video?"
}
},
"359:303": {
"inputs": {
"text": [
"359:327",
0
],
"clip": [
"359:317",
0
]
},
"class_type": "CLIPTextEncode",
"_meta": {
"title": "CLIP Text Encode (Prompt)"
}
},
"359:304": {
"inputs": {
"frame_rate": [
"359:298",
0
],
"positive": [
"359:303",
0
],
"negative": [
"359:313",
0
]
},
"class_type": "LTXVConditioning",
"_meta": {
"title": "LTXVConditioning"
}
},
"359:305": {
"inputs": {
"frames_number": [
"359:323",
1
],
"frame_rate": [
"359:298",
1
],
"batch_size": 1,
"audio_vae": [
"359:279",
0
]
},
"class_type": "LTXVEmptyLatentAudio",
"_meta": {
"title": "LTXV Empty Latent Audio"
}
},
"359:306": {
"inputs": {
"sigmas": "1.0, 0.99375, 0.9875, 0.98125, 0.975, 0.909375, 0.725, 0.421875, 0.0"
},
"class_type": "ManualSigmas",
"_meta": {
"title": "ManualSigmas"
}
},
"359:307": {
"inputs": {
"av_latent": [
"359:283",
0
]
},
"class_type": "LTXVSeparateAVLatent",
"_meta": {
"title": "LTXVSeparateAVLatent"
}
},
"359:308": {
"inputs": {
"noise": [
"359:276",
0
],
"guider": [
"359:282",
0
],
"sampler": [
"359:280",
0
],
"sigmas": [
"359:281",
0
],
"latent_image": [
"359:278",
0
]
},
"class_type": "SamplerCustomAdvanced",
"_meta": {
"title": "SamplerCustomAdvanced"
}
},
"359:309": {
"inputs": {
"av_latent": [
"359:308",
0
]
},
"class_type": "LTXVSeparateAVLatent",
"_meta": {
"title": "LTXVSeparateAVLatent"
}
},
"359:310": {
"inputs": {
"fps": [
"359:298",
0
],
"bit_depth": 8,
"images": [
"359:315",
0
],
"audio": [
"359:297",
0
]
},
"class_type": "CreateVideo",
"_meta": {
"title": "Create Video"
}
},
"359:311": {
"inputs": {
"model_name": "ltx-2.3-spatial-upscaler-x2-1.1.safetensors"
},
"class_type": "LatentUpscaleModelLoader",
"_meta": {
"title": "Load Latent Upscale Model"
}
},
"359:312": {
"inputs": {
"value": [
"360",
0
]
},
"class_type": "PrimitiveInt",
"_meta": {
"title": "Width"
}
},
"359:313": {
"inputs": {
"text": "pc game, console game, video game, cartoon, childish, ugly",
"clip": [
"359:317",
0
]
},
"class_type": "CLIPTextEncode",
"_meta": {
"title": "CLIP Text Encode (Prompt)"
}
},
"359:314": {
"inputs": {
"cfg": 1,
"model": [
"359:285",
0
],
"positive": [
"359:304",
0
],
"negative": [
"359:304",
1
]
},
"class_type": "CFGGuider",
"_meta": {
"title": "CFG Guider"
}
},
"359:315": {
"inputs": {
"tile_size": 768,
"overlap": 64,
"temporal_size": 4096,
"temporal_overlap": 4,
"samples": [
"359:309",
0
],
"vae": [
"359:316",
2
]
},
"class_type": "VAEDecodeTiled",
"_meta": {
"title": "VAE Decode (Tiled)"
}
},
"359:316": {
"inputs": {
"ckpt_name": "ltx2310eros_v1.safetensors"
},
"class_type": "CheckpointLoaderSimple",
"_meta": {
"title": "Load Checkpoint"
}
},
"359:317": {
"inputs": {
"text_encoder": "gemma_3_12B_it.safetensors",
"ckpt_name": "ltx2310eros_v1.safetensors",
"device": "default"
},
"class_type": "LTXAVTextEncoderLoader",
"_meta": {
"title": "LTXV Audio Text Encoder Loader"
}
},
"359:318": {
"inputs": {
"video_latent": [
"359:296",
0
],
"audio_latent": [
"359:305",
0
]
},
"class_type": "LTXVConcatAVLatent",
"_meta": {
"title": "LTXVConcatAVLatent"
}
},
"359:319": {
"inputs": {
"value": "Photorealistic 8K cinematic erotic video, 15 seconds duration, smooth 24fps.\nVoluptuous stunning young woman with massively enormous breasts, tiny waist and perfect hourglass figure. Soft emo look: pale skin, dark smoky eyes, black eyeliner, dark lips, long wavy black hair with purple highlights.\nShe wears only an extremely sheer black lace robe that is fully open — it hangs off her shoulders but covers almost nothing. Her massive breasts are completely exposed, nipples hard, the transparent lace only framing her body without hiding anything.\nSetting: Luxurious infinity pool overlooking the ocean at golden hour, crystal water, dramatic cliffs, soft god rays and mist.\nVideo sequence:\n0-5 seconds: She slowly rises from the water, the sheer (crochet:1.15) lace robe clinging wet and transparent to her skin, completely open. She cups and squeezes her enormous breasts hard with both hands, pressing them together, staring at the camera with a filthy, needy expression, soft moans already escaping.\n5-10 seconds: She sits on the pool edge, spreads her legs wide and starts roughly groping and lifting her massive breasts. One hand slides straight between her thighs and begins openly fingering herself. Her face becomes pure lust — eyes half-closed, mouth open, biting her lip hard.\n10-15 seconds: She fingers herself faster and deeper, hips bucking hard against her hand, the other hand still mauling her breasts. Body trembling violently, water splashing, she throws her head back, mouth wide open in a loud desperate moan as she cums hard — thighs shaking, stomach contracting, visible wetness dripping, breasts bouncing heavily.\nHighly detailed wet sheer lace, glossy skin, explicit arousal fluids, cinematic lighting, shallow depth of field, smooth realistic motion, heavy breast physics.\nAudio: Soft feminine moans that quickly become loud, wet, desperate and breathy, explicit wet fingering sounds, water splashes, intense orgasmic cries."
},
"class_type": "PrimitiveStringMultiline",
"_meta": {
"title": "Prompt"
}
},
"359:323": {
"inputs": {
"expression": "a * b + 1",
"values.a": [
"359:301",
0
],
"values.b": [
"359:300",
0
]
},
"class_type": "ComfyMathExpression",
"_meta": {
"title": "Math Expression (length)"
}
},
"359:324": {
"inputs": {
"lora_name": "gemma-3-12b-it-abliterated_lora_rank64_bf16.safetensors",
"strength_model": 1,
"strength_clip": 1,
"model": [
"359:285",
0
],
"clip": [
"359:317",
0
]
},
"class_type": "LoraLoader",
"_meta": {
"title": "Load LoRA (Model and CLIP)"
}
},
"359:325": {
"inputs": {
"prompt": [
"359:319",
0
],
"max_length": 2048,
"sampling_mode": "on",
"sampling_mode.temperature": 0.7,
"sampling_mode.top_k": 64,
"sampling_mode.top_p": 0.95,
"sampling_mode.min_p": 0.05,
"sampling_mode.repetition_penalty": 1.05,
"sampling_mode.seed": 0,
"sampling_mode.presence_penalty": 0,
"thinking": false,
"use_default_template": true,
"clip": [
"359:324",
1
]
},
"class_type": "TextGenerateLTX2Prompt",
"_meta": {
"title": "Generate LTX2 Prompt"
}
},
"359:326": {
"inputs": {
"source": [
"359:327",
0
]
},
"class_type": "PreviewAny",
"_meta": {
"title": "Preview as Text"
}
},
"359:327": {
"inputs": {
"switch": [
"359:328",
0
],
"on_false": [
"359:319",
0
],
"on_true": [
"359:325",
0
]
},
"class_type": "ComfySwitchNode",
"_meta": {
"title": "Switch"
}
},
"359:328": {
"inputs": {
"value": false
},
"class_type": "PrimitiveBoolean",
"_meta": {
"title": "Boolean (Enable Prompt Enhance)"
}
},
"359:279": {
"inputs": {
"ckpt_name": "ltx2310eros_v1.safetensors"
},
"class_type": "LTXVAudioVAELoader",
"_meta": {
"title": "Load LTXV Audio VAE"
}
}
} |