Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -132,7 +132,7 @@ with gr.Blocks(css=css) as demo:
|
|
132 |
run_button = gr.Button("Run", scale=0)
|
133 |
result = gr.Gallery(label="Result", columns=1)
|
134 |
with gr.Row():
|
135 |
-
style = gr.Radio(choices=["Default","BEST","3D", "PixelART","Logo","Origami"],label="Style", value="Default")
|
136 |
with gr.Accordion("Advanced options", open=False):
|
137 |
with gr.Row():
|
138 |
use_negative_prompt = gr.Checkbox(label="Use negative prompt", value=True)
|
@@ -207,6 +207,7 @@ with gr.Blocks(css=css) as demo:
|
|
207 |
fn=generate,
|
208 |
inputs=[
|
209 |
prompt,
|
|
|
210 |
negative_prompt,
|
211 |
use_negative_prompt,
|
212 |
seed,
|
|
|
132 |
run_button = gr.Button("Run", scale=0)
|
133 |
result = gr.Gallery(label="Result", columns=1)
|
134 |
with gr.Row():
|
135 |
+
style = gr.Radio(choices=["Default","BEST","3D", "PixelART","Logo","Origami"],label="Style", value="Default", interactive=True)
|
136 |
with gr.Accordion("Advanced options", open=False):
|
137 |
with gr.Row():
|
138 |
use_negative_prompt = gr.Checkbox(label="Use negative prompt", value=True)
|
|
|
207 |
fn=generate,
|
208 |
inputs=[
|
209 |
prompt,
|
210 |
+
style,
|
211 |
negative_prompt,
|
212 |
use_negative_prompt,
|
213 |
seed,
|