Spaces:
Runtime error
Runtime error
Rename app (1).py to app.py
Browse files- app (1).py → app.py +2 -1
app (1).py → app.py
RENAMED
@@ -47,6 +47,7 @@ interface = gr.Interface(
|
|
47 |
fn=summarize_pdf_abstract,
|
48 |
inputs=[gr.File(label="Upload PDF")],
|
49 |
outputs=[gr.Textbox(label="Summary"), gr.Audio()],
|
|
|
50 |
)
|
51 |
|
52 |
-
interface.launch(share=True)
|
|
|
47 |
fn=summarize_pdf_abstract,
|
48 |
inputs=[gr.File(label="Upload PDF")],
|
49 |
outputs=[gr.Textbox(label="Summary"), gr.Audio()],
|
50 |
+
description="This app summarizes the abstract of a PDF in one sentence.",
|
51 |
)
|
52 |
|
53 |
+
interface.launch(share=True)
|