adamelliotfields commited on
Commit
ad19934
1 Parent(s): 85432e1

Add random prompt

Browse files
Files changed (3) hide show
  1. app.css +4 -1
  2. app.py +61 -47
  3. data/prompts.json +154 -0
app.css CHANGED
@@ -61,10 +61,13 @@
61
  font-weight: var(--section-header-text-weight);
62
  font-size: var(--section-header-text-size);
63
  }
 
 
 
64
  .popover#clear:hover::after {
65
  content: 'Clear gallery';
66
  }
67
- .popover#random:hover::after {
68
  /* see config.py for default seed */
69
  content: var(--seed, "-1");
70
  }
 
61
  font-weight: var(--section-header-text-weight);
62
  font-size: var(--section-header-text-size);
63
  }
64
+ .popover#random:hover::after {
65
+ content: 'Random prompt';
66
+ }
67
  .popover#clear:hover::after {
68
  content: 'Clear gallery';
69
  }
70
+ .popover#refresh:hover::after {
71
  /* see config.py for default seed */
72
  content: var(--seed, "-1");
73
  }
app.py CHANGED
@@ -1,5 +1,6 @@
1
  import argparse
2
  import json
 
3
 
4
  import gradio as gr
5
 
@@ -7,10 +8,10 @@ import config as cfg
7
  from lib import generate
8
 
9
  # the CSS `content` attribute expects a string so we need to wrap the number in quotes
10
- random_seed_js = """
11
  () => {
12
  const n = Math.floor(Math.random() * Number.MAX_SAFE_INTEGER);
13
- const button = document.getElementById("random");
14
  button.style.setProperty("--seed", `"${n}"`);
15
  return n;
16
  }
@@ -18,7 +19,7 @@ random_seed_js = """
18
 
19
  seed_js = """
20
  (seed) => {
21
- const button = document.getElementById("random");
22
  button.style.setProperty("--seed", `"${seed}"`);
23
  return seed;
24
  }
@@ -30,7 +31,14 @@ def read_file(path: str) -> str:
30
  return file.read()
31
 
32
 
33
- def handle_generate(*args):
 
 
 
 
 
 
 
34
  if len(args) > 0:
35
  prompt = args[0]
36
  else:
@@ -44,9 +52,6 @@ def handle_generate(*args):
44
  return images
45
 
46
 
47
- with open("./data/styles.json", "r") as f:
48
- styles = json.load(f)
49
-
50
  with gr.Blocks(
51
  head=read_file("./partials/head.html"),
52
  css="./app.css",
@@ -88,7 +93,6 @@ with gr.Blocks(
88
  placeholder="ugly, bad",
89
  lines=2,
90
  )
91
-
92
  model = gr.Dropdown(
93
  choices=cfg.MODELS,
94
  filterable=False,
@@ -97,12 +101,12 @@ with gr.Blocks(
97
  )
98
 
99
  with gr.Row():
 
100
  style = gr.Dropdown(
101
  value=cfg.STYLE,
102
  label="Style",
103
  min_width=200,
104
- choices=[("None", None)]
105
- + [(style["name"], style["id"]) for style in styles],
106
  )
107
  scheduler = gr.Dropdown(
108
  choices=cfg.SCHEDULERS,
@@ -112,41 +116,10 @@ with gr.Blocks(
112
  filterable=False,
113
  )
114
 
115
- with gr.Row():
116
- width = gr.Slider(
117
- value=cfg.WIDTH,
118
- label="Width",
119
- min_width=200,
120
- minimum=320,
121
- maximum=768,
122
- step=32,
123
- )
124
- height = gr.Slider(
125
- value=cfg.HEIGHT,
126
- label="Height",
127
- minimum=320,
128
- maximum=768,
129
- step=32,
130
- )
131
- num_images = gr.Dropdown(
132
- choices=list(range(1, 5)),
133
- value=cfg.NUM_IMAGES,
134
- filterable=False,
135
- label="Images",
136
- )
137
- scale = gr.Dropdown(
138
- choices=[(f"{s}x", s) for s in cfg.SCALES],
139
- filterable=False,
140
- value=cfg.SCALE,
141
- label="Scale",
142
- min_width=200,
143
- )
144
-
145
  with gr.Row():
146
  guidance_scale = gr.Slider(
147
  value=cfg.GUIDANCE_SCALE,
148
  label="Guidance Scale",
149
- min_width=200,
150
  minimum=1.0,
151
  maximum=15.0,
152
  step=0.1,
@@ -165,6 +138,36 @@ with gr.Blocks(
165
  maximum=(2**64) - 1,
166
  )
167
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
168
  with gr.Row():
169
  use_karras = gr.Checkbox(
170
  elem_classes=["checkbox"],
@@ -183,7 +186,7 @@ with gr.Blocks(
183
  )
184
  increment_seed = gr.Checkbox(
185
  elem_classes=["checkbox"],
186
- label="Autoincrement seed",
187
  value=True,
188
  )
189
 
@@ -246,14 +249,20 @@ with gr.Blocks(
246
  )
247
 
248
  with gr.Row():
249
- generate_btn = gr.Button("Generate", variant="primary", scale=6, elem_classes=[])
250
  random_btn = gr.Button(
251
  elem_classes=["icon-button", "popover"],
252
  variant="secondary",
253
  elem_id="random",
254
  min_width=0,
255
  value="🎲",
256
- scale=1,
 
 
 
 
 
 
257
  )
258
  clear_btn = gr.ClearButton(
259
  elem_classes=["icon-button", "popover"],
@@ -262,11 +271,16 @@ with gr.Blocks(
262
  elem_id="clear",
263
  min_width=0,
264
  value="🗑️",
265
- scale=1,
266
  )
267
 
 
 
 
 
 
 
268
  # update the seed using JavaScript
269
- random_btn.click(None, outputs=[seed], js=random_seed_js)
270
 
271
  seed.change(
272
  None,
@@ -283,7 +297,7 @@ with gr.Blocks(
283
 
284
  gr.on(
285
  triggers=[generate_btn.click, prompt.submit],
286
- fn=handle_generate,
287
  api_name="api",
288
  concurrency_limit=5,
289
  outputs=[output_images],
 
1
  import argparse
2
  import json
3
+ import random
4
 
5
  import gradio as gr
6
 
 
8
  from lib import generate
9
 
10
  # the CSS `content` attribute expects a string so we need to wrap the number in quotes
11
+ refresh_seed_js = """
12
  () => {
13
  const n = Math.floor(Math.random() * Number.MAX_SAFE_INTEGER);
14
+ const button = document.getElementById("refresh");
15
  button.style.setProperty("--seed", `"${n}"`);
16
  return n;
17
  }
 
19
 
20
  seed_js = """
21
  (seed) => {
22
+ const button = document.getElementById("refresh");
23
  button.style.setProperty("--seed", `"${seed}"`);
24
  return seed;
25
  }
 
31
  return file.read()
32
 
33
 
34
+ def random_fn():
35
+ prompts = read_file("data/prompts.json")
36
+ prompts = json.loads(prompts)
37
+ index = random.randint(0, len(prompts) - 1)
38
+ return gr.Textbox(value=prompts[index])
39
+
40
+
41
+ def generate_fn(*args):
42
  if len(args) > 0:
43
  prompt = args[0]
44
  else:
 
52
  return images
53
 
54
 
 
 
 
55
  with gr.Blocks(
56
  head=read_file("./partials/head.html"),
57
  css="./app.css",
 
93
  placeholder="ugly, bad",
94
  lines=2,
95
  )
 
96
  model = gr.Dropdown(
97
  choices=cfg.MODELS,
98
  filterable=False,
 
101
  )
102
 
103
  with gr.Row():
104
+ styles = json.loads(read_file("data/styles.json"))
105
  style = gr.Dropdown(
106
  value=cfg.STYLE,
107
  label="Style",
108
  min_width=200,
109
+ choices=[("None", None)] + [(s["name"], s["id"]) for s in styles],
 
110
  )
111
  scheduler = gr.Dropdown(
112
  choices=cfg.SCHEDULERS,
 
116
  filterable=False,
117
  )
118
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
119
  with gr.Row():
120
  guidance_scale = gr.Slider(
121
  value=cfg.GUIDANCE_SCALE,
122
  label="Guidance Scale",
 
123
  minimum=1.0,
124
  maximum=15.0,
125
  step=0.1,
 
138
  maximum=(2**64) - 1,
139
  )
140
 
141
+ with gr.Row():
142
+ width = gr.Slider(
143
+ value=cfg.WIDTH,
144
+ label="Width",
145
+ minimum=320,
146
+ maximum=768,
147
+ step=16,
148
+ )
149
+ height = gr.Slider(
150
+ value=cfg.HEIGHT,
151
+ label="Height",
152
+ minimum=320,
153
+ maximum=768,
154
+ step=16,
155
+ )
156
+ scale = gr.Dropdown(
157
+ choices=[(f"{s}x", s) for s in cfg.SCALES],
158
+ filterable=False,
159
+ value=cfg.SCALE,
160
+ label="Scale",
161
+ min_width=100,
162
+ )
163
+ num_images = gr.Dropdown(
164
+ choices=list(range(1, 5)),
165
+ value=cfg.NUM_IMAGES,
166
+ filterable=False,
167
+ label="Images",
168
+ min_width=60,
169
+ )
170
+
171
  with gr.Row():
172
  use_karras = gr.Checkbox(
173
  elem_classes=["checkbox"],
 
186
  )
187
  increment_seed = gr.Checkbox(
188
  elem_classes=["checkbox"],
189
+ label="Autoincrement",
190
  value=True,
191
  )
192
 
 
249
  )
250
 
251
  with gr.Row():
252
+ generate_btn = gr.Button("Generate", variant="primary")
253
  random_btn = gr.Button(
254
  elem_classes=["icon-button", "popover"],
255
  variant="secondary",
256
  elem_id="random",
257
  min_width=0,
258
  value="🎲",
259
+ )
260
+ refresh_btn = gr.Button(
261
+ elem_classes=["icon-button", "popover"],
262
+ variant="secondary",
263
+ elem_id="refresh",
264
+ min_width=0,
265
+ value="🔄",
266
  )
267
  clear_btn = gr.ClearButton(
268
  elem_classes=["icon-button", "popover"],
 
271
  elem_id="clear",
272
  min_width=0,
273
  value="🗑️",
 
274
  )
275
 
276
+ random_btn.click(
277
+ fn=random_fn,
278
+ inputs=[],
279
+ outputs=[prompt],
280
+ )
281
+
282
  # update the seed using JavaScript
283
+ refresh_btn.click(None, outputs=[seed], js=refresh_seed_js)
284
 
285
  seed.change(
286
  None,
 
297
 
298
  gr.on(
299
  triggers=[generate_btn.click, prompt.submit],
300
+ fn=generate_fn,
301
  api_name="api",
302
  concurrency_limit=5,
303
  outputs=[output_images],
data/prompts.json ADDED
@@ -0,0 +1,154 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "Stunning sunset over a futuristic city, with towering skyscrapers and flying vehicles, golden hour lighting and dramatic clouds, high detail, moody atmosphere",
3
+ "Mystical forest with glowing mushrooms and a babbling brook, surrounded by towering trees and shrouded in mist, ethereal, dreamlike, stylized",
4
+ "Majestic dragon, perched atop a cliff overlooking a fiery landscape, with smoke and ash rising into the air, intense, detailed, scales, dynamic, epic",
5
+ "Serene beach scene with crystal clear water and white sand, tropical palm trees swaying in the breeze, perfect paradise, seascape",
6
+ "Post-apocalyptic wasteland with rusted and abandoned vehicles, dust storms and towering dust clouds, gritty, dark, dramatic, apocalyptic, stylized",
7
+ "Mystical underwater world with vibrant coral and exotic sea creatures, sun beams shining through the water, mysterious, magical, otherworldly",
8
+ "Snowy winter wonderland with a lone cabin in the distance, surrounded by frosty trees and fresh snowfall, peaceful, serene, detailed, winter landscape",
9
+ "Mysterious and abandoned temple in the jungle, surrounded by lush vegetation and tall trees, atmospheric, ancient, moody",
10
+ "Vibrant and bustling city street with busy traffic, bright lights, and towering skyscrapers, chaotic, fast-paced, cityscape, high detail",
11
+ "Gothic cathedral in a stormy night, with lightning illuminating the sky and rain pouring down, dramatic, atmospheric, high detail, moody",
12
+ "Fantasy castle on a hilltop, surrounded by rolling hills and a beautiful sunset, magical, serene, high detail, romantic, stylized",
13
+ "Vast desert with sand dunes and a lone oasis in the distance, hot sun and clear blue sky, peaceful, serene, desertscape, high resolution",
14
+ "Ethereal aurora borealis over a snowy mountain range, with a full moon shining in the background, mystical, peaceful, serene, winter landscape, high detail",
15
+ "Giant robots fighting in a futuristic city, with buildings falling and explosions all around, intense, fast-paced, dramatic, stylized, futuristic",
16
+ "Medieval market square with vendors selling goods, colorful banners, and bustling crowds, lively, busy, historic, high detail, architectural",
17
+ "Abandoned prison on a cliff, with a stormy sea below, eerie, moody, atmospheric, architectural, stylized",
18
+ "Beautiful waterfall in a lush jungle, with sunlight shining through the trees, serene, peaceful, tropical, jungle landscape, high detail",
19
+ "Surreal carnival scene with bright lights, strange creatures, and a full moon, dreamlike, vibrant, stylized, surreal, high detail",
20
+ "Breathtaking mountain range with a clear river running through it, surrounded by tall trees and misty clouds, serene, peaceful, mountain landscape, high detail",
21
+ "Historic battlefield with armies clashing and smoke rising, intense, fast-paced, dramatic, historic, high detail",
22
+ "Enchanted forest with glowing fireflies and a babbling brook, surrounded by towering trees and shrouded in mist, magical, ethereal, dreamlike, stylized",
23
+ "Sunken ship in a vibrant coral reef, with schools of colorful fish swimming by, mysterious, magical, high detail",
24
+ "Futuristic city with towering skyscrapers and flying vehicles, set against a vibrant sunset, futuristic, serene, high detail",
25
+ "Volcanic island with a boiling crater and ash clouds rising into the air, intense, dramatic, natural disaster, high detail, volcanic landscape",
26
+ "Lonely lighthouse on a rocky coast during a storm, with waves crashing and lightning flashing, moody, atmospheric, seascape, high detail",
27
+ "Ruined castle on a cliff overlooking the sea, with a stormy sky and crashing waves, eerie, moody, atmospheric",
28
+ "Vibrant street fair with colorful stalls and bustling crowds, lively, busy, high detail",
29
+ "Mysterious underground cave with glowing crystals and an underground river, dark, mysterious, underground landscape, high detail",
30
+ "Glorious sunrise over a cityscape, with the city slowly coming to life and the sky turning orange and pink, serene, peaceful, cityscape, high detail",
31
+ "Breathtaking view of a snowy mountain range, with crisp clear air and a brilliant blue sky, serene, peaceful, majestic, high detail, winter landscape",
32
+ "Enchanting waterfall in a lush jungle, surrounded by exotic plants and wildlife, tranquil, serene, high detail, tropical landscape",
33
+ "Glowing aurora borealis over a frozen lake, with towering mountains in the distance, ethereal, magical, winter landscape, high detail",
34
+ "Rushing rapids in a crystal clear river, surrounded by towering trees and lush vegetation, energetic, serene, high detail, river landscape",
35
+ "Vibrant flower field in full bloom, surrounded by rolling hills and a brilliant blue sky, colorful, serene, high detail, spring landscape",
36
+ "Glimpses of a herd of wild elephants crossing a savanna, surrounded by tall grass and a brilliant orange sunset, majestic, peaceful, high detail, safari landscape",
37
+ "Tranquil pond surrounded by tall trees, with a beautiful lily pad garden and calm reflection of the sky, serene, peaceful, high detail, water landscape",
38
+ "Giant redwoods in a misty forest, with towering trees and lush vegetation, peaceful, serene, high detail, forest landscape",
39
+ "Breathtaking view of a desert landscape, with towering sand dunes and a brilliant blue sky, serene, vast, high detail, desert landscape",
40
+ "Stunning sunset over an ocean horizon, with orange and pink hues spreading across the sky, peaceful, serene, high detail, seascape",
41
+ "Massive airship floating above a sprawling metropolis, with towering skyscrapers and busy streets below, futuristic, detailed, high resolution, urban landscape",
42
+ "Steampunk submarine exploring a coral reef, surrounded by exotic sea creatures and vibrant coral, detailed, surreal, steampunk style",
43
+ "Medieval castle on a cliff, surrounded by a moat and rolling green hills, majestic, medieval, high detail",
44
+ "Towering robot statue in a desolate wasteland, with dust storms and abandoned vehicles in the distance, mechanical, dystopian, high detail, post-apocalyptic landscape",
45
+ "Massive statue of a dragon in a lush jungle, surrounded by exotic plants and tall trees, mysterious, ancient, high detail, tropical landscape",
46
+ "Ancient temple in a mountain range, surrounded by misty clouds and tall peaks, mysterious, ancient, high detail",
47
+ "Crashed spaceship in a dense forest, surrounded by tall trees and exotic vegetation, futuristic, detailed, high detail, sci-fi landscape",
48
+ "Lighthouse on a stormy beach, surrounded by crashing waves and dramatic clouds, intense, detailed, high detail, coastal landscape",
49
+ "Steam locomotive in a snowy mountain range, surrounded by tall peaks and crisp clear air, nostalgic, detailed, high detail, winter landscape",
50
+ "Old western town in the desert, surrounded by towering sand dunes and a brilliant blue sky, nostalgic, detailed, high detail, western landscape",
51
+ "Futuristic cyborg, sleek metal enhancements and glowing circuits, standing in high-tech laboratory, intense, detailed, high resolution, sci-fi portrait",
52
+ "Medieval knight, armor and shining sword, standing on battle-scarred battlefield, intense, detailed, high detail, portrait",
53
+ "Powerful sorceress, flowing robes and mystical staff, standing in dark and ominous forest, mysterious, detailed, high detail, fantasy portrait",
54
+ "Rogue adventurer, backpack and rugged appearance, standing in dense jungle, adventurous, detailed, high detail, portrait",
55
+ "Wise wizard, long beard and mysterious tome, standing in dimly lit library, wise, detailed, high detail, portrait",
56
+ "Daring astronaut, space suit and helmet, standing in front of futuristic spaceship, adventurous, detailed, high detail, portrait",
57
+ "Skilled archer, bow and quiver of arrows, standing in forest clearing, intense, detailed, high detail, portrait",
58
+ "Daring treasure hunter, map and compass, standing in desolate desert, adventurous, detailed, high detail, portrait",
59
+ "Cosmic swirl of stars and galaxies, swirling in endless black void, otherworldly, abstract, high detail, space",
60
+ "Psychedelic mandala of patterns and shapes, kaleidoscopic, trippy, detailed, abstract art",
61
+ "Fractal landscape of geometric shapes and patterns, complex, intricate, abstract, digital art",
62
+ "Glowing nebula of vibrant gas and dust, celestial, otherworldly, abstract, space art",
63
+ "Hypnotic vortex of swirling colors, intense, detailed, abstract, digital art",
64
+ "Aurora borealis, vibrant lights dancing in the night sky, ethereal, abstract, high detail, nature art",
65
+ "Phantasmagoric carnival, carnival attractions shifting and changing, dreamlike, abstract, high detail, surreal art",
66
+ "Radiant nebula, star clusters and gas clouds shining brightly, celestial, otherworldly, abstract, space art",
67
+ "Iconic Parisian street with quaint cafes and bistros, charming, romantic, high detail, cityscape",
68
+ "Golden hour New York City skyline, towering skyscrapers and bustling streets, iconic, dramatic",
69
+ "Beautiful Venice canals with gondolas and bridges, charming, romantic, high detail, cityscape",
70
+ "Majestic Machu Picchu, set against a backdrop of towering mountains, breathtaking, high detail, landscape",
71
+ "Breathtaking view of the Grand Canyon, vast and awe-inspiring, high detail, landscape",
72
+ "Charming Santorini island with pristine beaches and iconic white buildings, Mediterranean, high detail, seascape",
73
+ "The iconic Great Wall of China, stretching along the countryside, historical, high detail, landscape",
74
+ "Stunning view of the Sydney Opera House, with the harbor and cityscape in the background, iconic, high detail, cityscape",
75
+ "The stunning Taj Mahal, set against a backdrop of lush greenery, historic, high detail, landmark",
76
+ "Breathtaking view of the Serengeti with roaming wildlife, vast, high detail, nature landscape",
77
+ "Giant rubber duck floating in the ocean with a small island on its back, surrounded by tropical palm trees and crystal clear water, bright and sunny day, calm seas, vivid colors, cinematic lighting, high detail",
78
+ "Giant hamster wheel in the middle of a city, with skyscrapers and busy streets in the background, centralized, low details, stylized graphics, night time, lit up, neon lights, no shadows",
79
+ "Humongous teacup and saucer floating in the sky, surrounded by clouds and rainbows, abstract, surreal, dreamlike, stylized oil painting style, vivid colors, detailed, high resolution, wide angled, otherworldly, fantastic",
80
+ "Giant ice cream cone melting and creating a river through a city, with boats floating down it, dramatic, intense, chaotic, high detail, fast-paced, wide angled, aerial view, colorful, fun, stylized graphics",
81
+ "Giant snail racing a car, high speed, intense, dynamic, detailed, cartoon style, wide angled, overhead view, vibrant colors, whimsical, absurd, surreal, fun",
82
+ "A group of giant robots playing a game of soccer, intense, dynamic, high detail, 3D, stylized, futuristic, metallic, robots, absurd, fantastic, wide angled, overhead view, colorful, fun",
83
+ "A city built entirely out of food, colorful, detailed, stylized, fun, absurd, vivid, delicious, overhead view, centralized, wide angled, vibrant, fantastical",
84
+ "Giant fruit and vegetable parade, with various different fruits and vegetables marching down a city street, colorful, detailed, stylized, absurd, fun, vivid, delicious, overhead view, centralized, wide angled",
85
+ "Giant caterpillar riding a bicycle, surreal, absurd, whimsical, stylized, detailed, vivid, high resolution, centralized, overhead view, colorful, fun",
86
+ "A bustling city made entirely of candy, with gumdrop buildings and sugar-coated streets, bright colors, whimsical, playful, detailed",
87
+ "A floating city in the clouds, with airships docking at sky-high platforms and clouds serving as roads, futuristic, whimsical, high-altitude, detailed",
88
+ "An underground city, filled with steam-powered trains, strange creatures, and intricate tunnels and cave systems, dark, detailed, subterranean, steampunk",
89
+ "A jungle city, with vines and roots serving as roads and buildings made of leaves, colorful, detailed, natural, tropical",
90
+ "A city made of ice, with ice slides, frozen rivers, and snow-covered buildings, winter, magical, detailed, cold",
91
+ "A pirate port, with ships setting sail, blacksmiths crafting weapons, and treasure-filled caves, adventurous, detailed, historic, swashbuckling",
92
+ "A space station, with spaceships coming and going, astronauts on EVA missions, and maintenance robots hard at work, futuristic, high-tech, detailed, intergalactic",
93
+ "A dragon's lair, with dragons hoarding treasure, sleeping on piles of gold, and shooting fire from their nostrils, mythical, detailed, adventurous, fantastical",
94
+ "Bowl of steaming hot ramen with a perfect egg in the center, surrounded by thin slices of meat, green onions, and nori, with a flavorful broth and perfect noodles, high detail, focused on texture and steam",
95
+ "Delectable pizza with melted cheese, juicy tomato sauce, and an array of toppings including pepperoni, mushrooms, and black olives, served hot and fresh, high resolution, stylized, focused on ingredients and melted cheese",
96
+ "Sizzling hot sirloin steak with a perfect crust, seared to perfection and topped with herbs and spices, served with a side of roasted vegetables and mashed potatoes, juicy, delicious, high detail",
97
+ "Assorted fruit platter with ripe, juicy strawberries, sweet grapes, tangy citrus, and juicy watermelon, set on a bed of greens and accented with mint leaves, high resolution, vibrant, natural",
98
+ "Chocolate cake with rich, fudgy frosting and perfectly layered cake, garnished with fresh berries and drizzled with melted chocolate, decadent, sweet, high detail, food photography",
99
+ "Baked salmon fillet with a perfectly crispy skin and tender, flaky flesh, served with a side of steamed vegetables and quinoa, healthy, flavorful, high detail, food photography",
100
+ "Bowl of hearty chili with tender chunks of beef, rich tomato sauce, and a mix of spices, topped with grated cheddar cheese and green onions, high detail, focused on texture and heat, comfort food",
101
+ "Platter of sushi rolls with colorful and flavorful ingredients, including avocado, tuna, salmon, and crab, arranged with precision and beauty, high resolution, Asian-style, focused on texture and color",
102
+ "Stuffed bell peppers filled with tender ground beef, flavorful rice, and melted cheese, baked to perfection, juicy, flavorful, high detail, food photography",
103
+ "Tasty tacos filled with seasoned beef, fresh salsa, melted cheese, and crunchy lettuce, served on a warm corn tortilla, Mexican-style, high resolution, focused on texture and flavor, food photography",
104
+ "Contemporary living room with large windows overlooking a cityscape, neutral color palette, minimalistic design, sleek modern furniture, gallery wall of abstract art, warm lighting, high detail, open floor plan",
105
+ "Rustic kitchen with exposed brick wall, reclaimed wood cabinetry, large farmhouse sink, industrial lighting fixtures, antique baking tools on open shelving, cast iron cookware, vintage accents, warm and inviting, detailed textures",
106
+ "Luxurious bathroom with freestanding bathtub, rain shower, heated flooring, marble tiles, brass fixtures, floating vanity with double sink, elegant chandelier, high contrast lighting, spa-like atmosphere, high resolution",
107
+ "Elegant dining room with crystal chandelier, dark wood table, velvet upholstered chairs, large statement art piece, tall windows with lush garden view, sophisticated color scheme, detailed textures, candlelit ambiance",
108
+ "Industrial-style office with concrete floors, raw steel beams, large wooden desk, leather office chair, wall of bookshelves, minimalist design, warm lighting, high detail, organized and professional",
109
+ "Cozy bedroom with four-poster bed, plush bedding, soft lighting, large windows with natural light, statement wallpaper, decorative throw pillows, high resolution textures, intimate and relaxing",
110
+ "Glamorous dressing room with large mirror, Hollywood lights, plush velvet seating, glass shelves displaying designer shoes, hanging rods for clothes, detailed textures, high contrast lighting, organized and stylish",
111
+ "Modern nursery with minimalistic design, white crib, rocking chair, wall mounted bookshelves, abstract art, neutral color palette, warm lighting, high detail, cozy and inviting",
112
+ "Minimalistic home gym with rubber flooring, wall-mounted TV, weight bench, medicine ball, dumbbells, yoga mats, high-tech equipment, high detail, organized and efficient",
113
+ "Traditional library with floor-to-ceiling bookcases, rolling ladder, large wooden desk, leather armchair, antique rug, warm lighting, high resolution textures, intellectual and inviting atmosphere",
114
+ "Contemporary glass and steel building with sleek lines and an innovative facade, surrounded by an urban landscape, modern, high resolution",
115
+ "Sleek and modern shopping center with an emphasis on natural light, an open-air interior, and eco-friendly features, contemporary, high detail, architectural renderings",
116
+ "High-rise residential building with a unique form and facade, featuring terraces and stunning views, minimalist, high-end, architectural design",
117
+ "Contemporary office building with a focus on sustainability, including green roofs and walls, modern, cutting-edge, architectural illustration",
118
+ "Contemporary cultural center with a distinct form, featuring a vibrant public plaza and innovative exhibition spaces, futuristic, visually stunning, architectural drawings",
119
+ "Stylish and modern apartment building with a clean, minimalist design and a focus on natural light, contemporary, high-end, architectural rendering",
120
+ "Innovative mixed-use development featuring an interplay of form and function, with cutting-edge technology and sustainability features, contemporary, visually striking, architectural illustration",
121
+ "Stylish and contemporary hotel with a unique form and facade, featuring luxury amenities and stunning views, modern, visually stunning",
122
+ "Sleek and modern shopping mall with a focus on sustainable design, featuring natural light and innovative materials, contemporary, cutting-edge, architectural drawings",
123
+ "Innovative and contemporary transportation hub with a unique form, featuring cutting-edge technology and sustainable features, modern, visually stunning, architectural illustration",
124
+ "Race car with sleek design, captured in a high speed motion blur, dramatic lighting and shallow depth of field, motorsports, adrenaline, studio lighting",
125
+ "Vintage hot rod with custom flame paint job, captured in low key lighting with selective focus on the chrome details, classic car, retro, high resolution",
126
+ "Luxury sports car with aerodynamic curves, shot in a high contrast, high key lighting with shallow depth of field, exotic, detailed, sporty, studio lighting",
127
+ "Majestic yacht with sleek lines, captured in a serene sunset light, with a shallow depth of field, boating, lifestyle",
128
+ "Futuristic flying car with smooth lines, shot in a low light high contrast studio setting, science fiction, cutting edge, high detail, moody atmosphere",
129
+ "Sturdy pickup truck, captured in a dramatic golden hour light with deep shadows, off-roading, rugged, dramatic, high resolution",
130
+ "Vintage motorcycle with gleaming chrome and polished leather, captured in soft natural light with selective focus on the engine, classic, retro, detailed",
131
+ "Luxury sports car with aggressive lines, shot in a high contrast, high key lighting with shallow depth of field, detailed, sporty, sleek, studio lighting",
132
+ "Massive semi-truck with chrome details, captured in a high key lighting with shallow depth of field, transportation, commercial, detailed, high resolution",
133
+ "Vintage sports car with classic curves, captured in a moody, low key light with selective focus on the grille, classic, retro, moody, detailed",
134
+ "Oil painting of a bustling harbor town, with fishing boats, seagulls, and a lighthouse in the background, high contrast, dramatic lighting, heavily textured brushstrokes",
135
+ "Watercolor painting of a rolling countryside, with fields of flowers, a red barn, and a white picket fence, soft and delicate brushstrokes, pastel colors",
136
+ "Acrylic painting of a mountain landscape, with a stormy sky and a cabin nestled in the forest, high contrast, bold brushstrokes, high-resolution",
137
+ "Oil painting of a sunset over the ocean, with orange and pink hues, gently rolling waves, and palm trees, heavily textured brushstrokes, dramatic lighting",
138
+ "Pen and ink drawing of a cityscape, with tall skyscrapers and bustling city life, high-contrast, detailed linework, dramatic lighting",
139
+ "Oil painting of a enchanted forest, with glowing mushrooms, fireflies, and a unicorn, soft brushstrokes, pastel colors, dream-like atmosphere",
140
+ "Watercolor painting of a desert landscape, with sand dunes, mountains, and a blazing sun, soft and delicate brushstrokes, warm and vibrant colors",
141
+ "Acrylic painting of a futuristic city, with neon lights, advanced technology, and flying cars, bold brushstrokes, high-contrast, highly stylized",
142
+ "Oil painting of a tranquil lake surrounded by mountains, with a cabin on the shore, boats, and a sunset, heavily textured brushstrokes, warm and vibrant colors",
143
+ "Pen and ink drawing of a mystical underwater world, with schools of fish, coral reefs, and a mermaid, highly detailed linework, high-contrast, stylized",
144
+ "Watercolor painting of a rolling countryside, with fields of wheat, a red barn, and a white picket fence, soft and delicate brushstrokes, warm and vibrant colors",
145
+ "Bronze statue of a powerful warrior, with a sword in hand, chiseled muscles, and a determined expression, highly detailed, dramatic lighting, intense gaze",
146
+ "Marble statue of a serene goddess, with flowing robes, delicate features, and a tranquil expression, highly detailed, soft lighting, grace and beauty",
147
+ "Wooden sculpture of a majestic animal, with intricate carving, textured fur, and piercing eyes, highly detailed, natural lighting, raw and powerful",
148
+ "Stone statue of a mythological creature, with wings, horns, and a fierce expression, highly detailed, dramatic lighting, intense and otherworldly",
149
+ "Bronze statue of a philosopher, with a wise expression, long beard, and a tome, highly detailed, soft lighting, introspective gaze",
150
+ "Marble statue of a dancers, with fluid movements, intricate details, and grace, highly detailed, dramatic lighting, intense expression",
151
+ "Wooden sculpture of a seascape, with waves, boats, and sea creatures, intricate carving, textured surface, high-resolution, natural lighting",
152
+ "Bronze statue of a king, with regal attire, a crown, and a stern expression, highly detailed, dramatic lighting, commanding presence",
153
+ "Wooden sculpture of a tree, with intricate branches, textured bark, and a strong trunk, highly detailed, natural lighting, grounding presence"
154
+ ]