Sayandip commited on
Commit
c4c7a20
·
verified ·
1 Parent(s): d9a4424

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -187,9 +187,9 @@ def main():
187
  pdf_path = export_conversation_to_pdf(st.session_state.conversation)
188
  with open(pdf_path, "rb") as f:
189
  st.download_button(
190
- label="📥 Download Cleaned Conversation as PDF",
191
  data=f,
192
- file_name="clean_conversation.pdf",
193
  mime="application/pdf"
194
  )
195
 
 
187
  pdf_path = export_conversation_to_pdf(st.session_state.conversation)
188
  with open(pdf_path, "rb") as f:
189
  st.download_button(
190
+ label="📥 Export Conversation as PDF",
191
  data=f,
192
+ file_name="Conversation.pdf",
193
  mime="application/pdf"
194
  )
195