wiwaaw commited on
Commit
aa16423
1 Parent(s): f6818d0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -60,7 +60,7 @@ def main():
60
  if uploaded_file is not None:
61
  if st.button("Summarize"):
62
  col1, col2 = st.columns(2)
63
- filepath = "pdf/" + uploaded_file.name
64
  with open(filepath, "wb") as temp_file:
65
  temp_file.write(uploaded_file.read())
66
  with col1:
 
60
  if uploaded_file is not None:
61
  if st.button("Summarize"):
62
  col1, col2 = st.columns(2)
63
+ filepath = uploaded_file.name
64
  with open(filepath, "wb") as temp_file:
65
  temp_file.write(uploaded_file.read())
66
  with col1: