merve HF staff commited on
Commit
38f88ff
1 Parent(s): b82833a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -27,11 +27,11 @@ for msg in message_history:
27
 
28
  placeholder = st.empty() # placeholder for latest message
29
 
30
- with placeholder.container():
31
- last_message = message_history[-1]
32
- if last_message != "":
33
 
34
- message(last_message["text"], last_message["is_user"]) # display the latest message
35
 
36
  input = st.text_input("Ask me 🤗")
37
  message(input, is_user=True) # align's the message to the right
 
27
 
28
  placeholder = st.empty() # placeholder for latest message
29
 
30
+ #with placeholder.container():
31
+ # last_message = message_history[-1]
32
+ # if last_message != "":
33
 
34
+ # message(last_message["text"], last_message["is_user"]) # display the latest message
35
 
36
  input = st.text_input("Ask me 🤗")
37
  message(input, is_user=True) # align's the message to the right