Spaces:
Running
Running
fix: actually enable download button
Browse files
app.py
CHANGED
@@ -10,5 +10,5 @@ if text:
|
|
10 |
st.write(out)
|
11 |
stwrite(f"{type(out)}")
|
12 |
|
13 |
-
if len(out) > 100:
|
14 |
-
|
|
|
10 |
st.write(out)
|
11 |
stwrite(f"{type(out)}")
|
12 |
|
13 |
+
if len(out) > 100:
|
14 |
+
st.download_button("summary download", out, file_name="summersation.txt", mime="text/plain")
|