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

Edit emojies

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -61,10 +61,10 @@ def get_response(user_question):
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="πŸ‘€πŸ™Žβ€β™‚οΈ"):
68
  st.write(response)
69
 
70
 
 
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="πŸ›οΈ"):
68
  st.write(response)
69
 
70