From b382d6b6fc0fc9328a0ced4335176e87fa764b00 Mon Sep 17 00:00:00 2001 From: pliny <133052465+elder-plinius@users.noreply.github.com> Date: Thu, 30 Nov 2023 18:57:59 -0800 Subject: [PATCH] Create idea2img.py --- swarms/prompts/idea2img.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 swarms/prompts/idea2img.py diff --git a/swarms/prompts/idea2img.py b/swarms/prompts/idea2img.py new file mode 100644 index 00000000..9fc0f3fa --- /dev/null +++ b/swarms/prompts/idea2img.py @@ -0,0 +1,14 @@ +IMAGE_ENRICHMENT_PROMPT = ( + "Create a concise and effective image generation prompt within 400 characters or less, " + "based on Stable Diffusion and Dalle best practices. Starting prompt: \n\n'" + #f"{prompt}'\n\n" + "Improve the prompt with any applicable details or keywords by considering the following aspects: \n" + "1. Subject details (like actions, emotions, environment) \n" + "2. Artistic style (such as surrealism, hyperrealism) \n" + "3. Medium (digital painting, oil on canvas) \n" + "4. Color themes and lighting (like warm colors, cinematic lighting) \n" + "5. Composition and framing (close-up, wide-angle) \n" + "6. Additional elements (like a specific type of background, weather conditions) \n" + "7. Any other artistic or thematic details that can make the image more vivid and compelling." + ) +