Pamudu13 commited on
Commit
d44ec1e
·
verified ·
1 Parent(s): 18b7c16

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +18 -5
app.py CHANGED
@@ -51,15 +51,28 @@ async def generate_image():
51
 
52
 
53
  if style == "cinematic":
54
- style = "cinematic shot, dynamic lighting, 75mm, Technicolor, Panavision, cinemascope, sharp focus, fine details, 8k, HDR, realism, realistic, key visual, film still, superb cinematic color grading, depth of field"
55
  elif style == "realistic":
56
- style = "realistic style, natural lighting, true-to-life details, high resolution, sharp focus, fine textures, authentic colors, accurate proportions, high dynamic range, clear and photorealistic"
57
  elif style == "sci-fi":
58
- style = "sci-fi style, futuristic technology, cyberpunk cityscape, neon lights, advanced robotics, alien landscapes, holographic interfaces, space exploration, dystopian themes, high-tech machinery"
59
  elif style == "disney":
60
- style = "3d, Disney character style, animated, cartoonish, whimsical, colorful, playful, charming, magical, fantastical, cute, endearing, family-friendly, storybook quality, iconic, expressive, vibrant colors, smooth lines, simple shapes, happy and adventurous"
 
 
 
 
 
 
 
 
 
 
 
 
61
  else:
62
- style = "fantasy style, magical landscapes, mythical creatures, enchanted forests, fairy tale elements, mystical realms, legendary beings, glowing effects, ethereal atmosphere, magical artifacts, ancient ruins"
 
63
 
64
  seed = random.randint(0, 10000)
65
 
 
51
 
52
 
53
  if style == "cinematic":
54
+ style = "cinematic shot, dynamic lighting, 75mm, Technicolor, Panavision, cinemascope, sharp focus, fine details, 8k, HDR, realism, realistic, key visual, film still, superb cinematic color grading, depth of field"
55
  elif style == "realistic":
56
+ style = "realistic style, natural lighting, true-to-life details, high resolution, sharp focus, fine textures, authentic colors, accurate proportions, high dynamic range, clear and photorealistic"
57
  elif style == "sci-fi":
58
+ style = "sci-fi style, futuristic technology, cyberpunk cityscape, neon lights, advanced robotics, alien landscapes, holographic interfaces, space exploration, dystopian themes, high-tech machinery"
59
  elif style == "disney":
60
+ style = "3d, Disney character style, animated, cartoonish, whimsical, colorful, playful, charming, magical, fantastical, cute, endearing, family-friendly, storybook quality, iconic, expressive, vibrant colors, smooth lines, simple shapes, happy and adventurous"
61
+ elif style == "ghibli":
62
+ style = "ghibli studio art style, hand-drawn, whimsical, lush environments, soft color palette, dreamlike atmosphere, fantasy elements, vibrant yet gentle, emotional storytelling, childlike wonder, iconic character designs"
63
+ elif style == "dragon_ball_z":
64
+ style = "dragon ball z style, exaggerated muscles, sharp angular lines, intense action scenes, glowing energy auras, dynamic fight sequences, spiky hair, vibrant colors, iconic character designs, powerful transformations"
65
+ elif style == "naruto":
66
+ style = "naruto style, shinobi characters, village environments, hand signs for jutsu, ninja weapons, action-packed sequences, anime-style shading, emotional backstories, vibrant orange hues, iconic character designs, headbands"
67
+ elif style == "bleach":
68
+ style = "bleach style, samurai-inspired outfits, katana weapons, spiritual battles, dark and mysterious tones, hollow masks, high-speed action, supernatural powers, sleek and sharp character designs, dynamic fight scenes"
69
+ elif style == "one_piece":
70
+ style = "one piece style, pirate adventure, exaggerated expressions, unique character designs, bright and colorful, dynamic and fluid action scenes, iconic pirate flags, adventure and treasure hunt themes, larger-than-life abilities"
71
+ elif style == "anime":
72
+ style = "anime style, vibrant colors, exaggerated facial expressions, dynamic action scenes, unique character designs, emotional storytelling, fantasy elements, diverse genres from romance to action"
73
  else:
74
+ style = "fantasy style, magical landscapes, mythical creatures, enchanted forests, fairy tale elements, mystical realms, legendary beings, glowing effects, ethereal atmosphere, magical artifacts, ancient ruins"
75
+
76
 
77
  seed = random.randint(0, 10000)
78