mrsk1883 commited on
Commit
474df1c
1 Parent(s): 76c6529

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -61,7 +61,7 @@ interface = gr.Interface(
61
  title="PDF Summarization & Audio Generation Tool",
62
  description="""PDF Summarization App. This app extracts the abstract from a PDF, summarizes it using the 'pszemraj/led-large-book-summary' model into one sentence summary, and generates an audio of it. Only upload PDFs with abstracts. Example
63
  PDF's are given below, and please click on them to see the summarized text and audio generated. Please read the README.MD for more information about the app.""",
64
- 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,
65
  )
66
 
67
  interface.launch()
 
61
  title="PDF Summarization & Audio Generation Tool",
62
  description="""PDF Summarization App. This app extracts the abstract from a PDF, summarizes it using the 'pszemraj/led-large-book-summary' model into one sentence summary, and generates an audio of it. Only upload PDFs with abstracts. Example
63
  PDF's are given below, and please click on them to see the summarized text and audio generated. Please read the README.MD for more information about the app.""",
64
+ examples=[["Article 11 Hidden Technical Debt in Machine Learning Systems.pdf"],["Article 4 Experimental Evidence on the Productivity Effects of Generative Artificial Intelligence.pdf"]],cache_examples=True,
65
  )
66
 
67
  interface.launch()