Update app.py
Browse files
app.py
CHANGED
|
@@ -13,12 +13,19 @@ def generate_image(text, seed):
|
|
| 13 |
return model(text)
|
| 14 |
|
| 15 |
examples = [
|
| 16 |
-
["
|
| 17 |
-
["
|
| 18 |
-
["
|
| 19 |
-
["
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
]
|
| 21 |
|
|
|
|
| 22 |
interface = gr.Interface(
|
| 23 |
fn=generate_image,
|
| 24 |
inputs=[
|
|
|
|
| 13 |
return model(text)
|
| 14 |
|
| 15 |
examples = [
|
| 16 |
+
["Bioluminescent forest with glowing plants and animals, mystical night scene", None],
|
| 17 |
+
["Cyberpunk cityscape with neon lights and rainy streets, high detail", None],
|
| 18 |
+
["Ancient stone guardian statues in a dense jungle, sunlight breaking through trees", None],
|
| 19 |
+
["Futuristic underwater city with transparent domes and exotic marine life", None],
|
| 20 |
+
["Enchanted waterfall with floating islands and magical creatures, fantasy setting", None],
|
| 21 |
+
["Steampunk airship flying over a bustling Victorian city, clockwork details", None],
|
| 22 |
+
["Gigantic desert robot partially buried in sand, mysterious and weathered", None],
|
| 23 |
+
["Space station orbiting a colorful nebula, cosmic view", None],
|
| 24 |
+
["Medieval blacksmith forging a magical sword, glowing with energy", None],
|
| 25 |
+
["Nordic warrior facing a giant sea serpent in stormy waters, epic scene", None]
|
| 26 |
]
|
| 27 |
|
| 28 |
+
|
| 29 |
interface = gr.Interface(
|
| 30 |
fn=generate_image,
|
| 31 |
inputs=[
|