Update app.py
Browse files
app.py
CHANGED
@@ -184,4 +184,4 @@ if llm_chain and (user_prompt := st.chat_input("Your message here", key="user_in
|
|
184 |
response = llm_chain.run(user_prompt)
|
185 |
st.session_state.messages.append({"role": "assistant", "content": response})
|
186 |
with st.chat_message("assistant"):
|
187 |
-
st.markdown(response)
|
|
|
184 |
response = llm_chain.run(user_prompt)
|
185 |
st.session_state.messages.append({"role": "assistant", "content": response})
|
186 |
with st.chat_message("assistant"):
|
187 |
+
st.markdown(response)
|