Update app.py
Browse files
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 =
|
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:
|