merve HF staff commited on
Commit
43881b2
1 Parent(s): 13a6a54

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -51,15 +51,15 @@ with gr.Blocks(theme="gradio/soft") as demo:
51
 
52
 
53
  with gr.Column(elem_id="generated-gallery"):
54
- openai_output = gr.Textbox(lines=4)
55
  sd_output = gr.Gallery().style(grid=3, height="auto")
 
56
 
57
 
58
  enter_username.click(get_images,
59
  inputs = [
60
  input_text
61
  ],
62
- outputs = [openai_output, sd_output]
63
  )
64
 
65
 
 
51
 
52
 
53
  with gr.Column(elem_id="generated-gallery"):
 
54
  sd_output = gr.Gallery().style(grid=3, height="auto")
55
+ openai_output = gr.Textbox(lines=4)
56
 
57
 
58
  enter_username.click(get_images,
59
  inputs = [
60
  input_text
61
  ],
62
+ outputs = [sd_output, openai_output]
63
  )
64
 
65