File size: 271 Bytes
796edc7 3cde577 d12c712 26c09c0 41d4ee6 3cde577 796edc7 |
1 2 3 4 5 6 7 8 9 10 11 |
import gradio as gr
from processing import process_file
iface = gr.Interface(
fn=process_file,
inputs=gr.File(label="Upload your file"),
outputs=[gr.Textbox(label="Status"), gr.File(label="Download the file")],
live=False
)
iface.launch(title="Process") |