From 800c9c488cd490811e3ab13da2cc6ced99e5223f Mon Sep 17 00:00:00 2001 From: Madison Grubb Date: Fri, 5 Sep 2025 09:49:54 -0400 Subject: [PATCH] lower cfg to 2. --- imageGenerator.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/imageGenerator.js b/imageGenerator.js index 75db994..7435fc0 100644 --- a/imageGenerator.js +++ b/imageGenerator.js @@ -7,7 +7,7 @@ const __dirname = path.dirname(fileURLToPath(import.meta.url)); const COMFYUI_URL = process.env.COMFYUI_URL || "http://localhost:8188"; // Drawing style prefix -const STYLE_PREFIX = `clean line art, minimalist sketch, concept art sketch, black and white line drawing, lots of white space, sparse shading, simple hatching, very low detail, subtle color accent`; +const STYLE_PREFIX = `clean line art, minimalist sketch, concept art sketch, black and white line drawing, lots of white space, sparse shading, simple black hatching, very low detail, subtle color accent`; // 1. Generate engineered visual prompt async function generateVisualPrompt(flavor) { @@ -51,7 +51,7 @@ function buildComfyWorkflow(promptText, negativeText = "") { "inputs": { "seed": Math.floor(Math.random() * 100000), "steps": 4, - "cfg": 3, + "cfg": 2, "sampler_name": "euler", "scheduler": "simple", "denoise": 1,