Manel commited on
Commit
bc078cc
·
verified ·
1 Parent(s): bcc2308

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -60,8 +60,9 @@ def get_response(user_question):
60
 
61
 
62
  user_question = st.chat_input('What do you want to ask ..')
 
63
  if user_question is not None and user_question!="":
64
- with st.chat_message("Human", avatar="🙎‍♂️"):
65
  st.write(user_question)
66
  response = get_response(user_question)
67
  with st.chat_message("AI", avatar="🏛️"):
 
60
 
61
 
62
  user_question = st.chat_input('What do you want to ask ..')
63
+
64
  if user_question is not None and user_question!="":
65
+ with st.chat_message("Human"):
66
  st.write(user_question)
67
  response = get_response(user_question)
68
  with st.chat_message("AI", avatar="🏛️"):