Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -67,7 +67,6 @@ if prompt := st.chat_input("Ask me anything!"):
|
|
67 |
|
68 |
with st.chat_message("user"):
|
69 |
st.markdown(prompt)
|
70 |
-
st.session_state.messages.append({"role":"assistant","content":"Being a Q&A bot, remove the context information passed in the response provided by you"})
|
71 |
st.session_state.messages.append({"role": "user", "content": prompt})
|
72 |
|
73 |
with st.chat_message("assistant"):
|
|
|
67 |
|
68 |
with st.chat_message("user"):
|
69 |
st.markdown(prompt)
|
|
|
70 |
st.session_state.messages.append({"role": "user", "content": prompt})
|
71 |
|
72 |
with st.chat_message("assistant"):
|