knilkantha commited on
Commit
52eada4
1 Parent(s): 9f98acc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -18,7 +18,7 @@ question = st.text_input("Enter Question", "")
18
  # Button to find the answer
19
  if st.button("Find Answer"):
20
  if context and question:
21
- # Perform question answering
22
  answer = question_answerer(context=context, question=question)
23
 
24
  # Display the answer
 
18
  # Button to find the answer
19
  if st.button("Find Answer"):
20
  if context and question:
21
+ # Perform question-answering
22
  answer = question_answerer(context=context, question=question)
23
 
24
  # Display the answer