Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -188,13 +188,12 @@ with gr.Blocks(css=css, theme=gr.themes.Soft()) as demo:
|
|
188 |
value=23,
|
189 |
)
|
190 |
|
191 |
-
|
192 |
-
with gr.Column(scale=1):
|
193 |
gr.Examples(
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
|
199 |
use_negative_prompt.change(
|
200 |
fn=lambda x: gr.update(visible=x),
|
|
|
188 |
value=23,
|
189 |
)
|
190 |
|
191 |
+
with gr.Column(scale=1): # Examples on right
|
|
|
192 |
gr.Examples(
|
193 |
+
examples=examples,
|
194 |
+
inputs=prompt,
|
195 |
+
cache_examples=False,
|
196 |
+
)
|
197 |
|
198 |
use_negative_prompt.change(
|
199 |
fn=lambda x: gr.update(visible=x),
|