Alioth86 commited on
Commit
ba7e56a
1 Parent(s): ee20f06

Add application file

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -16,11 +16,12 @@ import tempfile
16
  import gradio as gr
17
 
18
  description = """**SpeechAbstractor**\n
19
- This app allows you to upload an article with Abstract in .pdf and summarize the Abstract itself and speak it out loud.
20
- Some examples are given here below. Please, help yourself!"""
 
21
 
22
  examples = [
23
- ["Article_7.pdf"],["Article_9.pdf"]
24
  ]
25
 
26
  #reporting the created functions for the part 1
 
16
  import gradio as gr
17
 
18
  description = """**SpeechAbstractor**\n
19
+ This app enables users to upload academic articles in PDF format, specifically focusing on abstracts.
20
+ It efficiently summarizes the abstract and provides an audio playback of the summarized content.
21
+ Below are some example PDFs for you to experiment with. Feel free to explore the functionality of SpeechAbstractor!"""
22
 
23
  examples = [
24
+ ["Article_7.pdf"],["Article_9.pdf"],["Article_11.pdf"]
25
  ]
26
 
27
  #reporting the created functions for the part 1