Harsh2001 commited on
Commit
cf16595
·
verified ·
1 Parent(s): d422eee

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -19,7 +19,7 @@ if st.button("Send"):
19
 
20
  # Append both user input and bot response to conversation
21
  st.session_state.conversation.append(f"You: {user_input}")
22
- st.session_state.conversation.append(bot_response)
23
 
24
  # Clear the input box
25
  st.experimental_rerun()
 
19
 
20
  # Append both user input and bot response to conversation
21
  st.session_state.conversation.append(f"You: {user_input}")
22
+ st.session_state.conversation.append(f"Bot: {bot_response}")
23
 
24
  # Clear the input box
25
  st.experimental_rerun()