Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -447,6 +447,12 @@ with demo:
|
|
447 |
# blz --------------------
|
448 |
with gr.Row():
|
449 |
gr.Button("Download", link="/file=public/results.csv")
|
|
|
|
|
|
|
|
|
|
|
|
|
450 |
# end blz -------------------
|
451 |
|
452 |
with gr.Row():
|
|
|
447 |
# blz --------------------
|
448 |
with gr.Row():
|
449 |
gr.Button("Download", link="/file=public/results.csv")
|
450 |
+
face = gr.Interface(
|
451 |
+
fn=print,
|
452 |
+
inputs="button",
|
453 |
+
outputs=gr.File(label="Output File", file_count="single", file_types=[".csv"])
|
454 |
+
)
|
455 |
+
iface.launch()
|
456 |
# end blz -------------------
|
457 |
|
458 |
with gr.Row():
|