EbubeJohnEnyi commited on
Commit
187169b
1 Parent(s): f350594

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -59,9 +59,7 @@ def find_question_and_answer(json_file, question):
59
  return selected_response
60
 
61
  if __name__ == '__main__':
62
- # question_count = 0
63
- # while True:
64
- user_input = st.text_area(f"Enter your question:")
65
  response = find_question_and_answer(json_file_path, user_input)
66
  st.write(response)
67
 
 
59
  return selected_response
60
 
61
  if __name__ == '__main__':
62
+ user_input = st.text_area("Enter your question: ")
 
 
63
  response = find_question_and_answer(json_file_path, user_input)
64
  st.write(response)
65