itsmariamaraki commited on
Commit
4a15dfd
β€’
1 Parent(s): 27631d0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -63,7 +63,13 @@ iface = gr.Interface(
63
  gr.Textbox(label='Summarization of the Abstract:'),
64
  gr.Audio(label="Audio Speech of the Abstract's Summary:")
65
  ],
66
- live = True
 
 
 
 
 
 
67
  )
68
 
69
  iface.launch()
 
63
  gr.Textbox(label='Summarization of the Abstract:'),
64
  gr.Audio(label="Audio Speech of the Abstract's Summary:")
65
  ],
66
+ live = True,
67
+ title = "PDF's Abstract Summarization & Audio Speech Processor",
68
+ description = "App that generates a one-line summary of the abstract & a speech audio of this summarization -- requirements: app only accepts PDFs which include an ABSTRACT section",
69
+ examples=['BloombergGPT.pdf',
70
+ 'Efficient_Estimation_of_Word_Representations.pdf',
71
+ 'Llama_2.pdf',
72
+ 'Hidden_Technical_Debt.pdf']
73
  )
74
 
75
  iface.launch()