Update app.py
Browse files
app.py
CHANGED
@@ -147,8 +147,8 @@ with chat_interface:
|
|
147 |
if st.button("Continue"):
|
148 |
st.session_state.need_continue = True
|
149 |
|
150 |
-
|
151 |
-
|
152 |
|
153 |
# When the user enters new text
|
154 |
if st.session_state.user_text:
|
|
|
147 |
if st.button("Continue"):
|
148 |
st.session_state.need_continue = True
|
149 |
|
150 |
+
# User input area (moved to the bottom)
|
151 |
+
st.session_state.user_text = st.chat_input(placeholder="Enter your text here.")
|
152 |
|
153 |
# When the user enters new text
|
154 |
if st.session_state.user_text:
|