mrsk1883 commited on
Commit
1481746
·
1 Parent(s): 151b692

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -58,7 +58,7 @@ interface = gr.Interface(
58
  inputs=[gr.File(label="Upload PDF")],
59
  outputs=[gr.Textbox(label="Summary"), gr.Audio()],
60
  title="PDF Summarization & Audio Tool",
61
- description="""PDF Summarization App. This app extracts the abstract from a PDF, summarizes it using the 'pszemraj/led-large-book-summary' model, and generates an audio of it. Only upload PDFs with abstracts. Please read the README.MD for information about the app and sample PDFs."""
62
  examples=[[os.path.join(os.path.dirname(__file__), "Article 11 Hidden Technical Debt in Machine Learning Systems.pdf")],[os.path.join(os.path.dirname(__file__), "Article 4 Experimental Evidence on the Productivity Effects of Generative Artificial Intelligence.pdf")]],cache_examples=True,
63
  )
64
 
 
58
  inputs=[gr.File(label="Upload PDF")],
59
  outputs=[gr.Textbox(label="Summary"), gr.Audio()],
60
  title="PDF Summarization & Audio Tool",
61
+ description="""PDF Summarization App. This app extracts the abstract from a PDF, summarizes it using the 'pszemraj/led-large-book-summary' model, and generates an audio of it. Only upload PDFs with abstracts. Please read the README.MD for information about the app and sample PDFs.""",
62
  examples=[[os.path.join(os.path.dirname(__file__), "Article 11 Hidden Technical Debt in Machine Learning Systems.pdf")],[os.path.join(os.path.dirname(__file__), "Article 4 Experimental Evidence on the Productivity Effects of Generative Artificial Intelligence.pdf")]],cache_examples=True,
63
  )
64