KingNish commited on
Commit
5e32c33
·
verified ·
1 Parent(s): 855644d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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,