lllyasviel commited on
Commit
c44c3ed
·
1 Parent(s): 3c7e7d2
Files changed (1) hide show
  1. webui.py +3 -0
webui.py CHANGED
@@ -35,6 +35,9 @@ with gr.Blocks() as demo:
35
  with gr.Column(scale=0.15, min_width=0):
36
  btn = gr.UploadButton("Generate", file_types=["image"])
37
 
 
 
 
38
  txt_msg = txt.submit(add_text, [chatbot, txt], [chatbot, txt], queue=False).then(
39
  bot, chatbot, chatbot
40
  )
 
35
  with gr.Column(scale=0.15, min_width=0):
36
  btn = gr.UploadButton("Generate", file_types=["image"])
37
 
38
+ with gr.Row():
39
+ gr.Checkbox(label='Advanced Setting', value=False, container=False)
40
+
41
  txt_msg = txt.submit(add_text, [chatbot, txt], [chatbot, txt], queue=False).then(
42
  bot, chatbot, chatbot
43
  )