This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """5 Deeper.com style scenes — female-psyche oriented, white spanking bench as elegant design object.""" | |
| import json, urllib.request | |
| COMFY = "http://localhost:3000" | |
| PRODUCT = ( | |
| "white painted wooden A-frame design bench with two padded white leather upholstered platforms " | |
| "and polished gold brass D-ring hardware on the sides, modern minimalist furniture object" | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """2 Editorial luxury intimacy brand shots - elevated/feminine BDSM-light. Using CHROMA.""" | |
| import json, urllib.request | |
| COMFY = "http://localhost:3000" | |
| NEGATIVE = ( | |
| "low quality, blurry, soft focus, deformed, distorted, ugly, bad anatomy, bad hands, " | |
| "extra fingers, mutation, text, watermark, signature, cartoon, anime, illustration, " | |
| "painting, 3d render, doll, plastic skin, oversaturated, oversmooth, AI generated, " |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """Test Qwen Image 2512 + Lightning - one image.""" | |
| import json, urllib.request | |
| COMFY = "http://localhost:3000" | |
| w = { | |
| "1": {"class_type": "UnetLoaderGGUF", "inputs": {"unet_name": "qwen-image-2512-Q8_0.gguf"}}, | |
| "2": {"class_type": "CLIPLoader", "inputs": {"clip_name": "qwen_2.5_vl_7b_fp8_scaled.safetensors", "type": "qwen_image"}}, | |
| "3": {"class_type": "VAELoader", "inputs": {"vae_name": "qwen_image_vae.safetensors"}}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """Save Qwen Image 2512 (text-to-image) workflow to user's ComfyUI sidebar.""" | |
| import json, os | |
| WORKFLOWS_DIR = "/ComfyUI/user/default/workflows" | |
| os.makedirs(WORKFLOWS_DIR, exist_ok=True) | |
| LIGHTNING_LORA = "qwen2512_lightning/Qwen-Image-2512-Lightning-8steps-V1.0-bf16.safetensors" | |
| nodes = [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """Save 3 production-ready workflows to user's ComfyUI sidebar with full UI metadata.""" | |
| import json, os | |
| WORKFLOWS_DIR = "/ComfyUI/user/default/workflows" | |
| os.makedirs(WORKFLOWS_DIR, exist_ok=True) | |
| def save_workflow(name, nodes, links, last_node_id, last_link_id): | |
| """Save a UI-format workflow JSON.""" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """CHROMA v1-HD - 5 lifestyle/lingerie scenes for direct comparison with Qwen Sheer-Series.""" | |
| import json, urllib.request, urllib.error | |
| COMFY = "http://localhost:3000" | |
| NEGATIVE = ( | |
| "low quality, blurry, soft focus, deformed, distorted, low resolution, ugly, " | |
| "bad anatomy, bad hands, extra fingers, mutation, text, watermark, signature, " | |
| "cartoon, anime, illustration, painting, drawing, 3d render, doll, mannequin, " |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """CHROMA v1-HD - 5 lifestyle/lingerie scenes for direct comparison with Qwen Sheer-Series.""" | |
| import json, urllib.request, urllib.error | |
| COMFY = "http://localhost:3000" | |
| NEGATIVE = ( | |
| "low quality, blurry, soft focus, deformed, distorted, low resolution, ugly, " | |
| "bad anatomy, bad hands, extra fingers, mutation, text, watermark, signature, " | |
| "cartoon, anime, illustration, painting, drawing, 3d render, doll, mannequin, " |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """Room Generator v1 — vertical portrait luxury adult playroom shots in style of user's references.""" | |
| import json, urllib.request, urllib.error | |
| COMFY = "http://localhost:3000" | |
| # Quality suffix appended to every prompt | |
| QUALITY_SUFFIX = ( | |
| "Vertical portrait composition 9:16, wide-angle 18mm lens at low camera angle showing full " | |
| "ceiling and floor, deep focus throughout entire scene, real estate hospitality photography " |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """Submit 10 PDP scenes with X-frame product as reference. Pure product shots, no people.""" | |
| import json, urllib.request, urllib.error | |
| COMFY = "http://localhost:3000" | |
| NEGATIVE = ( | |
| "people, person, human, woman, man, model, low quality, blurry, soft focus, deformed, " | |
| "distorted, low resolution, ugly, text, watermark, signature, cartoon, anime, " | |
| "illustration, painting, drawing, 3d render, doll, oversaturated, overexposed, " |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """Dump ComfyUI history with full workflow details for last few prompts.""" | |
| import urllib.request, json, sys | |
| h = json.load(urllib.request.urlopen("http://localhost:3000/history?max_items=8", timeout=20)) | |
| for pid, r in list(h.items())[-8:]: | |
| print("=" * 70) | |
| print(f"prompt_id: {pid}") | |
| status = r.get("status", {}) |
NewerOlder