nurindahpratiwi
commited on
Commit
•
aa01ead
1
Parent(s):
22b1490
fix line
Browse files
app.py
CHANGED
@@ -41,8 +41,8 @@ def language_model_pipeline(filepath):
|
|
41 |
|
42 |
title = st.title("PDF Summarization using LaMini")
|
43 |
uploaded_file = st.file_uploader("Upload your PDF file", type=['pdf'])
|
44 |
-
st.success("File Uploaded")
|
45 |
if uploaded_file is not None:
|
|
|
46 |
if st.button("Summarize"):
|
47 |
filepath = uploaded_file.name
|
48 |
with open(filepath, "wb") as temp_file:
|
|
|
41 |
|
42 |
title = st.title("PDF Summarization using LaMini")
|
43 |
uploaded_file = st.file_uploader("Upload your PDF file", type=['pdf'])
|
|
|
44 |
if uploaded_file is not None:
|
45 |
+
st.success("File Uploaded")
|
46 |
if st.button("Summarize"):
|
47 |
filepath = uploaded_file.name
|
48 |
with open(filepath, "wb") as temp_file:
|