Update app.py
Browse files
app.py
CHANGED
|
@@ -49,6 +49,6 @@ with gr.Blocks() as demo:
|
|
| 49 |
interactive=False,
|
| 50 |
wrap=True)
|
| 51 |
btn = gr.Button("Run")
|
| 52 |
-
btn.click(fn=
|
| 53 |
|
| 54 |
demo.launch()
|
|
|
|
| 49 |
interactive=False,
|
| 50 |
wrap=True)
|
| 51 |
btn = gr.Button("Run")
|
| 52 |
+
btn.click(fn=main, inputs=inp, outputs=[out1,out2])
|
| 53 |
|
| 54 |
demo.launch()
|