Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -25,7 +25,6 @@ if st.button("Ask!"):
|
|
| 25 |
|
| 26 |
st.session_state["user_input"] = ""
|
| 27 |
|
| 28 |
-
st.write("### Chat History:")
|
| 29 |
for chat in st.session_state["history"]:
|
| 30 |
st.write(f"You: {chat['user']}")
|
| 31 |
st.write(f"Answer: {chat['bot']}")
|
|
|
|
| 25 |
|
| 26 |
st.session_state["user_input"] = ""
|
| 27 |
|
|
|
|
| 28 |
for chat in st.session_state["history"]:
|
| 29 |
st.write(f"You: {chat['user']}")
|
| 30 |
st.write(f"Answer: {chat['bot']}")
|