Nechba commited on
Commit
b58084d
·
verified ·
1 Parent(s): f185462

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -4
app.py CHANGED
@@ -156,10 +156,7 @@ if prompt := st.chat_input():
156
 
157
  #response = generate_response(st.session_state.llm,prompt, context)
158
  st.session_state.messages.append({"role": "assistant", "content": response})
159
- # with st.chat_message("assistant"):
160
- # message_placeholder = st.empty()
161
- # message_placeholder.markdown("Search...")
162
- # message_placeholder.markdown(response)
163
  st.chat_message("assistant", avatar="🤖").write(response)
164
 
165
 
 
156
 
157
  #response = generate_response(st.session_state.llm,prompt, context)
158
  st.session_state.messages.append({"role": "assistant", "content": response})
159
+
 
 
 
160
  st.chat_message("assistant", avatar="🤖").write(response)
161
 
162