Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -125,7 +125,7 @@ with st.form(key='interaction_form'):
|
|
125 |
# Feedback submission
|
126 |
feedback_submit_button = st.form_submit_button("Submit Feedback")
|
127 |
|
128 |
-
if
|
129 |
if user_input.strip() and comment.strip():
|
130 |
save_feedback(user_input, bot_response, rating, comment)
|
131 |
st.success("Thank you for your feedback!")
|
|
|
125 |
# Feedback submission
|
126 |
feedback_submit_button = st.form_submit_button("Submit Feedback")
|
127 |
|
128 |
+
if feedback_submit_button:
|
129 |
if user_input.strip() and comment.strip():
|
130 |
save_feedback(user_input, bot_response, rating, comment)
|
131 |
st.success("Thank you for your feedback!")
|