Update app.py
Browse files
app.py
CHANGED
@@ -54,6 +54,6 @@ def summarize(path):
|
|
54 |
gr.Interface(
|
55 |
fn=summarize,
|
56 |
title = 'Summarize Transcripts',
|
57 |
-
inputs = gr.File(file_types="text", label="Upload a text file.", interactive=True),
|
58 |
outputs = gr.Textbox(label="Summary", max_lines=120, interactive=False),
|
59 |
).launch()
|
|
|
54 |
gr.Interface(
|
55 |
fn=summarize,
|
56 |
title = 'Summarize Transcripts',
|
57 |
+
inputs = gr.File(file_types=["text"], label="Upload a text file.", interactive=True),
|
58 |
outputs = gr.Textbox(label="Summary", max_lines=120, interactive=False),
|
59 |
).launch()
|