Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -185,9 +185,9 @@ with gr.Blocks() as app:
|
|
185 |
output = gr.HTML("""""")
|
186 |
images = gr.HTML("""""")
|
187 |
with gr.Row() as im_row:
|
188 |
-
gr.Image()
|
189 |
|
190 |
|
191 |
search_btn.click(search_fn,[search_box,num_return],output)
|
192 |
-
btn.click(first,None,output).then(test,input,output).then(details_fn,input,[details,images]).then(up_im,None,
|
193 |
app.launch()
|
|
|
185 |
output = gr.HTML("""""")
|
186 |
images = gr.HTML("""""")
|
187 |
with gr.Row() as im_row:
|
188 |
+
im_list = gr.Image()
|
189 |
|
190 |
|
191 |
search_btn.click(search_fn,[search_box,num_return],output)
|
192 |
+
btn.click(first,None,output).then(test,input,output).then(details_fn,input,[details,images]).then(up_im,None,im_list)
|
193 |
app.launch()
|