mery22 commited on
Commit
6bc114e
·
verified ·
1 Parent(s): 0e4838c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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 st.button("Submit"):
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!")