uartimcs commited on
Commit
86fdbb7
·
verified ·
1 Parent(s): c695ced

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -32,7 +32,7 @@ def create_jsonl(csv_file):
32
 
33
  return output
34
 
35
- demo = gr.Interface(fn=create_jsonl,inputs=gr.File(),outputs="text", title=f"jsonl converter",)
36
  demo.launch()
37
 
38
 
 
32
 
33
  return output
34
 
35
+ demo = gr.Interface(fn=create_jsonl,inputs=gr.File(),outputs=gr.File(), title=f"jsonl converter",)
36
  demo.launch()
37
 
38