Update app.py
Browse files
app.py
CHANGED
@@ -56,4 +56,4 @@ if st.button("Send"):
|
|
56 |
chat_text = ""
|
57 |
for user_msg, bot_msg in st.session_state.history:
|
58 |
chat_text += f"You: {user_msg}\nBot: {bot_msg}\n\n"
|
59 |
-
st.text_area("Chat", value=chat_text, height=300, disabled=
|
|
|
56 |
chat_text = ""
|
57 |
for user_msg, bot_msg in st.session_state.history:
|
58 |
chat_text += f"You: {user_msg}\nBot: {bot_msg}\n\n"
|
59 |
+
st.text_area("Chat", value=chat_text, height=300, disabled=False)
|