Update app.py
Browse files
app.py
CHANGED
@@ -61,7 +61,7 @@ container = st.container()
|
|
61 |
# User input and response display
|
62 |
with container:
|
63 |
with st.form(key='my_form', clear_on_submit=True):
|
64 |
-
user_input = st.text_area("Ask
|
65 |
submit_button = st.form_submit_button(label='Send')
|
66 |
|
67 |
if submit_button:
|
|
|
61 |
# User input and response display
|
62 |
with container:
|
63 |
with st.form(key='my_form', clear_on_submit=True):
|
64 |
+
user_input = st.text_area("Ask me questions please", key='input', height=100)
|
65 |
submit_button = st.form_submit_button(label='Send')
|
66 |
|
67 |
if submit_button:
|