awacke1 commited on
Commit
e53cec4
Β·
verified Β·
1 Parent(s): f58a6a4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -231,7 +231,7 @@ with st.sidebar:
231
 
232
  # Download button for Markdown with new naming convention and double emoji label
233
  st.download_button(
234
- label="πŸ“πŸ“ Save Markdown",
235
  data=st.session_state.markdown_content,
236
  file_name=f"{prefix} {selected_md}.md" if selected_md else f"{prefix} default.md",
237
  mime="text/markdown"
@@ -250,7 +250,7 @@ with st.sidebar:
250
  with open(audio_file, "rb") as f:
251
  audio_bytes = f.read()
252
  st.download_button(
253
- label="πŸ”ŠπŸ”Š Save Audio",
254
  data=audio_bytes,
255
  file_name=audio_filename,
256
  mime="audio/mpeg"
@@ -269,7 +269,7 @@ with st.container():
269
 
270
  with st.sidebar:
271
  st.download_button(
272
- label="πŸ“„πŸ“„ Save PDF",
273
  data=pdf_bytes,
274
  file_name=f"{prefix} {selected_md}.pdf" if selected_md else f"{prefix} output.pdf",
275
  mime="application/pdf"
 
231
 
232
  # Download button for Markdown with new naming convention and double emoji label
233
  st.download_button(
234
+ label="πŸ’ΎπŸ“ Save Markdown",
235
  data=st.session_state.markdown_content,
236
  file_name=f"{prefix} {selected_md}.md" if selected_md else f"{prefix} default.md",
237
  mime="text/markdown"
 
250
  with open(audio_file, "rb") as f:
251
  audio_bytes = f.read()
252
  st.download_button(
253
+ label="πŸ’ΎπŸ”Š Save Audio",
254
  data=audio_bytes,
255
  file_name=audio_filename,
256
  mime="audio/mpeg"
 
269
 
270
  with st.sidebar:
271
  st.download_button(
272
+ label="πŸ’ΎπŸ“„ Save PDF",
273
  data=pdf_bytes,
274
  file_name=f"{prefix} {selected_md}.pdf" if selected_md else f"{prefix} output.pdf",
275
  mime="application/pdf"