Update app.py
Browse files
app.py
CHANGED
@@ -50,7 +50,7 @@ if st.button("Send"):
|
|
50 |
if user_input:
|
51 |
bot_response = generate(user_input, st.session_state.history)
|
52 |
st.session_state.history.append((user_input, bot_response))
|
53 |
-
st.session_state.user_input = ""
|
54 |
|
55 |
# Display conversation
|
56 |
chat_text = ""
|
|
|
50 |
if user_input:
|
51 |
bot_response = generate(user_input, st.session_state.history)
|
52 |
st.session_state.history.append((user_input, bot_response))
|
53 |
+
# st.session_state.user_input = ""
|
54 |
|
55 |
# Display conversation
|
56 |
chat_text = ""
|