Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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="📥
|
| 191 |
data=f,
|
| 192 |
-
file_name="
|
| 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 |
|