Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -301,18 +301,26 @@ with gr.Blocks(
|
|
301 |
gallery_html += "</div>"
|
302 |
gr.HTML(gallery_html)
|
303 |
|
|
|
304 |
|
305 |
-
# Gradio ์ธํฐํ์ด์ค์ Examples ๋ถ๋ถ์ ์์
|
306 |
# Examples ์น์
|
307 |
-
gr.
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
316 |
|
317 |
def update_seed():
|
318 |
return get_random_seed()
|
|
|
301 |
gallery_html += "</div>"
|
302 |
gr.HTML(gallery_html)
|
303 |
|
304 |
+
# Gradio ์ธํฐํ์ด์ค ๋ถ๋ถ์์ Examples ์น์
์ ๋ค์๊ณผ ๊ฐ์ด ์์
|
305 |
|
|
|
306 |
# Examples ์น์
|
307 |
+
with gr.Row():
|
308 |
+
gr.Examples(
|
309 |
+
label="Example Prompts",
|
310 |
+
examples=[
|
311 |
+
"A 3D Star Wars Darth Vader helmet, highly detailed metallic finish",
|
312 |
+
"A 3D Iron Man mask with glowing eyes and metallic red-gold finish",
|
313 |
+
"A 3D Pokemon Pikachu figure with glossy surface",
|
314 |
+
"A 3D geometric abstract cube transforming into a sphere, metallic finish",
|
315 |
+
"A 3D steampunk mechanical heart with brass and copper details",
|
316 |
+
"A 3D crystal dragon with transparent iridescent scales",
|
317 |
+
"A 3D futuristic hovering drone with neon light accents",
|
318 |
+
"A 3D ancient Greek warrior helmet with ornate details",
|
319 |
+
"A 3D robotic butterfly with mechanical wings and metallic finish",
|
320 |
+
"A 3D floating magical crystal orb with internal energy swirls"
|
321 |
+
],
|
322 |
+
inputs=prompt
|
323 |
+
)
|
324 |
|
325 |
def update_seed():
|
326 |
return get_random_seed()
|