Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -82,12 +82,24 @@ with gr.Blocks(css="style.css") as demo:
|
|
82 |
gr.Examples(
|
83 |
fn=generate,
|
84 |
examples=[
|
|
|
|
|
|
|
85 |
["A girl smiling", "4 Steps"],
|
86 |
-
["An astronaut riding a horse", "4 Steps"]
|
|
|
|
|
|
|
|
|
|
|
87 |
],
|
88 |
inputs=[prompt, option],
|
89 |
outputs=img,
|
90 |
cache_examples=True,
|
91 |
)
|
|
|
|
|
|
|
|
|
92 |
|
93 |
demo.queue().launch()
|
|
|
82 |
gr.Examples(
|
83 |
fn=generate,
|
84 |
examples=[
|
85 |
+
["An owl perches quietly on a twisted branch deep within an ancient forest.", "1 Step"],
|
86 |
+
["A lion in the galaxy, octane render", "2 Steps"],
|
87 |
+
["A dolphin leaps through the waves, set against a backdrop of bright blues and teal hues.", "2 Steps"],
|
88 |
["A girl smiling", "4 Steps"],
|
89 |
+
["An astronaut riding a horse", "4 Steps"],
|
90 |
+
["A fish on a bicycle, colorful art", "4 Steps"],
|
91 |
+
["A close-up of an Asian lady with sunglasses.", "4 Steps"],
|
92 |
+
["Man portrait, ethereal", "8 Steps"],
|
93 |
+
["Rabbit portrait in a forest, fantasy", "8 Steps"],
|
94 |
+
["A panda swimming", "8 Steps"],
|
95 |
],
|
96 |
inputs=[prompt, option],
|
97 |
outputs=img,
|
98 |
cache_examples=True,
|
99 |
)
|
100 |
+
|
101 |
+
gr.HTML(
|
102 |
+
"<p><small><center>This demo is built together by the community</center></small></p>" +
|
103 |
+
)
|
104 |
|
105 |
demo.queue().launch()
|