Omnibus commited on
Commit
d5ef3b7
1 Parent(s): bdc2bfb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -3
app.py CHANGED
@@ -29,8 +29,11 @@ def find_it(inp):
29
 
30
 
31
  with gr.Blocks() as app:
32
- inp_url=gr.Textbox(label="Image URL")
33
- go_btn=gr.Button()
34
- inp_im=gr.Image()
 
 
 
35
  go_btn.click(find_it,inp_url,outp_text)
36
  app.launch()
 
29
 
30
 
31
  with gr.Blocks() as app:
32
+ with gr.Row():
33
+ with gr.Column():
34
+ inp_url=gr.Textbox(label="Image URL")
35
+ go_btn=gr.Button()
36
+ inp_im=gr.Image()
37
+ outp_text = gr.Textbox(lines=4)
38
  go_btn.click(find_it,inp_url,outp_text)
39
  app.launch()