Update src/streamlit_app.py
Browse files- src/streamlit_app.py +0 -6
src/streamlit_app.py
CHANGED
|
@@ -86,12 +86,6 @@ if selected:
|
|
| 86 |
st.session_state["history"].append(f"👤 You: {user_input}")
|
| 87 |
st.session_state["history"].append(f"🧠 Mentor: {response.content}")
|
| 88 |
|
| 89 |
-
# Display conversation history
|
| 90 |
-
if st.session_state["history"]:
|
| 91 |
-
with output_container:
|
| 92 |
-
st.markdown("### 🗨️ Conversation")
|
| 93 |
-
for msg in st.session_state["history"]:
|
| 94 |
-
st.markdown(msg)
|
| 95 |
|
| 96 |
# Clear and download buttons
|
| 97 |
col_clear, col_download = st.columns(2)
|
|
|
|
| 86 |
st.session_state["history"].append(f"👤 You: {user_input}")
|
| 87 |
st.session_state["history"].append(f"🧠 Mentor: {response.content}")
|
| 88 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 89 |
|
| 90 |
# Clear and download buttons
|
| 91 |
col_clear, col_download = st.columns(2)
|