Update app.py
Browse files
app.py
CHANGED
@@ -866,7 +866,7 @@ def main():
|
|
866 |
|
867 |
st.sidebar.markdown("### 💬 Chat Dialog")
|
868 |
chat_content = asyncio.run(load_chat())
|
869 |
-
|
870 |
numbered_content = "\n".join(f"{i+1}. {line}" for i, line in enumerate(chat_content))
|
871 |
st.code(numbered_content, language="python")
|
872 |
|
|
|
866 |
|
867 |
st.sidebar.markdown("### 💬 Chat Dialog")
|
868 |
chat_content = asyncio.run(load_chat())
|
869 |
+
with st.sidebar.expander("Chat History"):
|
870 |
numbered_content = "\n".join(f"{i+1}. {line}" for i, line in enumerate(chat_content))
|
871 |
st.code(numbered_content, language="python")
|
872 |
|