EbubeJohnEnyi commited on
Commit
2934265
1 Parent(s): 328946e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -1
app.py CHANGED
@@ -62,7 +62,6 @@ if __name__ == '__main__':
62
  question_count = 0
63
  while True:
64
  user_input = st.text_area(f"Enter your question {question_count + 1}:")
65
- question_count += 1
66
  response = find_question_and_answer(json_file_path, user_input)
67
  st.write(response)
68
 
 
62
  question_count = 0
63
  while True:
64
  user_input = st.text_area(f"Enter your question {question_count + 1}:")
 
65
  response = find_question_and_answer(json_file_path, user_input)
66
  st.write(response)
67