Update app.py
Browse files
app.py
CHANGED
|
@@ -85,5 +85,5 @@ if prompt := st.chat_input():
|
|
| 85 |
assistant_message_placeholder.write_stream(response_stream)
|
| 86 |
|
| 87 |
# Append the final assistant's response to the chat history
|
| 88 |
-
st.session_state["messages"].append({"role": "assistant", "content":
|
| 89 |
|
|
|
|
| 85 |
assistant_message_placeholder.write_stream(response_stream)
|
| 86 |
|
| 87 |
# Append the final assistant's response to the chat history
|
| 88 |
+
st.session_state["messages"].append({"role": "assistant", "content": response_stream})
|
| 89 |
|