Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -29,8 +29,11 @@ def find_it(inp):
|
|
29 |
|
30 |
|
31 |
with gr.Blocks() as app:
|
32 |
-
|
33 |
-
|
34 |
-
|
|
|
|
|
|
|
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()
|