Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -64,7 +64,7 @@ def main():
|
|
| 64 |
if uploaded_file is not None:
|
| 65 |
if st.button("Summarize"):
|
| 66 |
col1, col2 = st.columns([0.4,0.6])
|
| 67 |
-
filepath = "
|
| 68 |
|
| 69 |
with open(filepath, "wb") as temp_file:
|
| 70 |
temp_file.write(uploaded_file.read())
|
|
|
|
| 64 |
if uploaded_file is not None:
|
| 65 |
if st.button("Summarize"):
|
| 66 |
col1, col2 = st.columns([0.4,0.6])
|
| 67 |
+
filepath = "/"+uploaded_file.name
|
| 68 |
|
| 69 |
with open(filepath, "wb") as temp_file:
|
| 70 |
temp_file.write(uploaded_file.read())
|