From c585e53ed48ce99026104a62f2819f2cd25a4c8c Mon Sep 17 00:00:00 2001 From: William Gill Date: Sun, 19 Apr 2026 12:36:44 -0500 Subject: [PATCH] Bake quality-focused default negatives into the static workflows MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Open WebUI overwrites node 7's text when the request supplies a negative_prompt, so the default only takes effect when one isn't provided — which is the common case for the image-button path since the chat UI doesn't expose the field. Generic quality terms only (no style or content restrictions) so the default is safe across SD/SDXL/Flux swaps and doesn't fight whichever checkpoint is loaded. The smart_image_gen Tool already had per-style defaults; this only affects the non-Tool image-gen path. Co-Authored-By: Claude Opus 4.7 (1M context) --- workflows/img2img.json | 2 +- workflows/txt2img.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/workflows/img2img.json b/workflows/img2img.json index 0584cbb..40ee59d 100644 --- a/workflows/img2img.json +++ b/workflows/img2img.json @@ -30,7 +30,7 @@ "7": { "class_type": "CLIPTextEncode", "inputs": { - "text": "", + "text": "lowres, blurry, jpeg artifacts, watermark, text, signature, bad anatomy, extra limbs, missing fingers, deformed, ugly, low quality, worst quality", "clip": ["4", 1] } }, diff --git a/workflows/txt2img.json b/workflows/txt2img.json index 490a8c9..c427f92 100644 --- a/workflows/txt2img.json +++ b/workflows/txt2img.json @@ -38,7 +38,7 @@ "7": { "class_type": "CLIPTextEncode", "inputs": { - "text": "", + "text": "lowres, blurry, jpeg artifacts, watermark, text, signature, bad anatomy, extra limbs, missing fingers, deformed, ugly, low quality, worst quality", "clip": ["4", 1] } },