UNPKG

comfyui-node

Version:
26 lines 2.36 kB
/** * Generate a random image generation prompt for testing. */ export function promptGenerator() { const subjects = ["a cat", "a dog", "a futuristic city", "a beautiful landscape", "an astronaut", "a dragon", "a robot", "a magical forest"]; const styles = ["in the style of Van Gogh", "as a Pixar movie", "like a watercolor painting", "as a cyberpunk scene", "in a surrealist style", "like a comic book illustration"]; const actions = ["flying through the sky", "exploring a new world", "sitting on a throne", "dancing in the rain", "holding a glowing orb", "standing on a mountain peak"]; const subject = subjects[Math.floor(Math.random() * subjects.length)]; const style = styles[Math.floor(Math.random() * styles.length)]; const action = actions[Math.floor(Math.random() * actions.length)]; return `A high-resolution image of ${subject} ${action}, ${style}, vibrant colors, detailed, 4k resolution`; } /** * Generate a random prompt specifically for the Anime XL model. Using more anime-focused elements and danbooru-style tags. */ export function animeXLPromptGenerator() { const subjects = ["1girl", "2boys", "catgirl", "mecha", "futuristic city", "magical girl", "samurai", "ninja"]; const styles = ["anime style", "manga style", "chibi style", "cyberpunk anime", "fantasy anime", "mecha anime"]; const actions = ["holding a katana", "sitting under cherry blossoms", "flying through the sky", "exploring a futuristic city", "casting a spell", "standing on a rooftop"]; const subject = subjects[Math.floor(Math.random() * subjects.length)]; const style = styles[Math.floor(Math.random() * styles.length)]; const action = actions[Math.floor(Math.random() * actions.length)]; return `score_9, score_8_up, score_7_up, score_6_up, score_5_up, score_4_up, source_anime, BREAK, ${subject}, ${action}, ${style}`; } export const NEGATIVE_PROMPT = `modern, recent, old, oldest, cartoon, graphic, text, painting, crayon, graphite, abstract, glitch, deformed, mutated, ugly, disfigured, long body, lowres, bad anatomy, bad hands, missing fingers, extra digits, fewer digits, cropped, very displeasing, (worst quality, bad quality:1.2), bad anatomy, sketch, jpeg artifacts, signature, watermark, username, signature, simple background, conjoined,bad ai-generated`; //# sourceMappingURL=prompt-generator.js.map