kevinwang676 commited on
Commit
5ac9b32
·
1 Parent(s): 8f5dfc0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -80,7 +80,7 @@ with gr.Blocks(css="style.css") as demo:
80
  inp2 = gr.Textbox(label="Position Prompt (as simple as possible)")
81
  btn1 = gr.Button("GPT-4 Control", variant="primary")
82
  with gr.Column():
83
- out1 = gr.Image(label="Output Image", type="pil")
84
  btn1.click(gpt_control, [inp1, inp2], [out1])
85
 
86
 
 
80
  inp2 = gr.Textbox(label="Position Prompt (as simple as possible)")
81
  btn1 = gr.Button("GPT-4 Control", variant="primary")
82
  with gr.Column():
83
+ out1 = gr.Image(label="Output Image", type="pil", interactive=True)
84
  btn1.click(gpt_control, [inp1, inp2], [out1])
85
 
86