File size: 535 Bytes
c0ae847
46193fd
 
 
 
 
 
 
 
 
 
 
 
b3ec0ef
46193fd
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import streamlit as st
from extractive_model import summarize_pdf_with_textrank

st.title("PDF Summarization App")

pdf_file = st.file_uploader("Upload a PDF file", type=["pdf"])

if pdf_file is not None and st.button("Summarize"):
    # Save uploaded PDF to a temporary file
    with open("temp_pdf.pdf", "wb") as f:
        f.write(pdf_file.getbuffer())
    
    # Generate summary
    summary = summarize_pdf_with_textrank("temp_pdf.pdf", sentences_count=10)
    
    # Display summary
    st.write("Summary:")
    st.write(summary)