Manel commited on
Commit
f6540d5
·
verified ·
1 Parent(s): 99ce7bc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -62,9 +62,9 @@ def get_response(user_question):
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, avatar=![image/png](https://cdn-uploads.huggingface.co/production/uploads/6400916cf4ff62c2616ddc2f/_oA4aQ1fhb7d_Aias3N9H.png))
68
  with st.chat_message("AI", avatar="🏛️"):
69
  st.write(response)
70
 
 
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", avatar=![image/png](https://cdn-uploads.huggingface.co/production/uploads/6400916cf4ff62c2616ddc2f/_oA4aQ1fhb7d_Aias3N9H.png)):
66
  st.write(user_question)
67
+ response = get_response(user_question)
68
  with st.chat_message("AI", avatar="🏛️"):
69
  st.write(response)
70